57 const wxString& msg1,
const wxString msg2);
59 const wxString& hint,
const wxPoint& pos,
60 const wxSize& size,
long style,
const wxString& msg1,
61 const wxString& msg2);
64 bool Create(wxWindow* parent, wxWindowID
id,
const wxString& caption,
65 const wxString& hint,
const wxPoint& pos,
const wxSize& size,
66 long style,
const wxString& msg1,
const wxString& msg2);
68 void SetMessage(
const wxString& message);
69 void SetCheck1Message(
const wxString& message);
71 bool GetCheck1Value() {
return m_pCheck1->GetValue(); }
74 void CreateControls(
const wxString& hint,
const wxString& msg1,
77 void OnCancelClick(wxCommandEvent& event);
78 void OnOKClick(wxCommandEvent& event);
80 wxButton* m_CancelButton;
82 wxStaticText* premtext;
83 wxCheckBox* m_pCheck1;
84 wxString m_checkbox1_msg;
93 PINCreateDialog(wxWindow* parent, wxWindowID
id,
const wxString& caption,
94 const wxString& hint,
const wxPoint& pos,
const wxSize& size,
100 wxDialog* Initiate(
const std::string& msg,
const std::string& text1);
103 bool Create(wxWindow* parent, wxWindowID
id = SYMBOL_STG_IDNAME,
104 const wxString& caption = SYMBOL_STG_TITLE,
105 const wxString& hint = SYMBOL_STG_TITLE,
106 const wxPoint& pos = SYMBOL_STG_POSITION,
107 const wxSize& size = SYMBOL_STG_SIZE,
108 long style = SYMBOL_STG_STYLE);
109 void SetMessage(
const wxString& message);
110 void SetText1Message(
const wxString& message);
112 wxString GetText1Value() {
return m_pText1->GetValue(); }
115 void CreateControls(
const wxString& hint);
117 void OnCancelClick(wxCommandEvent& event);
118 void OnOKClick(wxCommandEvent& event);
120 wxButton* m_CancelButton;
121 wxButton* m_OKButton;
122 wxStaticText* premtext;
123 wxTextCtrl* m_pText1;
124 wxString m_checkbox1_msg;