kicad/eeschema/dialog_edit_label.h

47 lines
1.3 KiB
C
Raw Normal View History

2007-05-06 16:03:28 +00:00
/////////////////////////////////////////////////////////////////////////////
// Name: dialog_edit_label.h
// Author: jean-pierre Charras
2008-03-20 01:50:21 +00:00
// Modified by:
// Licence: GPL
2007-05-06 16:03:28 +00:00
/////////////////////////////////////////////////////////////////////////////
#ifndef _DIALOG_EDIT_LABEL_H_
#define _DIALOG_EDIT_LABEL_H_
#include "dialog_edit_label_base.h"
2007-05-06 16:03:28 +00:00
class DialogLabelEditor : public DialogLabelEditor_Base
2008-03-20 01:50:21 +00:00
{
private:
WinEDA_SchematicFrame * m_Parent;
2008-03-20 01:50:21 +00:00
SCH_TEXT * m_CurrentText;
2007-05-06 16:03:28 +00:00
void init();
protected:
// these are protected so that the static ShowModally() gets used.
DialogLabelEditor( WinEDA_SchematicFrame* parent, SCH_TEXT * CurrentText);
~DialogLabelEditor(){};
public:
/**
* Function ShowModally
* is a static function that constructs and then displays one of these dialogs.
* @param parent
* @param CurrentText is one of several classes derived from SCH_TEXT
* @return int - the result Dialog::ShowModal()
*/
static int ShowModally( WinEDA_SchematicFrame* parent, SCH_TEXT * CurrentText );
private:
void OnInitDialog( wxInitDialogEvent& event );
void OnButtonOKClick( wxCommandEvent& event );
void OnButtonCANCEL_Click( wxCommandEvent& event );
void TextPropertiesAccept( wxCommandEvent& event );
2007-05-06 16:03:28 +00:00
};
#endif // _DIALOG_EDIT_LABEL_H_