58 const wxString& msg1,
const wxString msg2);
60 const wxString& hint,
const wxPoint& pos,
61 const wxSize& size,
long style,
const wxString& msg1,
62 const wxString& msg2);
65 bool Create(wxWindow* parent, wxWindowID
id,
const wxString& caption,
66 const wxString& hint,
const wxPoint& pos,
const wxSize& size,
67 long style,
const wxString& msg1,
const wxString& msg2);
69 void SetMessage(
const wxString& message);
70 void SetCheck1Message(
const wxString& message);
72 bool GetCheck1Value() {
return m_pCheck1->GetValue(); }
75 void CreateControls(
const wxString& hint,
const wxString& msg1,
78 void OnCancelClick(wxCommandEvent& event);
79 void OnOKClick(wxCommandEvent& event);
81 wxButton* m_CancelButton;
83 wxStaticText* premtext;
84 wxCheckBox* m_pCheck1;
85 wxString m_checkbox1_msg;
94 PINCreateDialog(wxWindow* parent, wxWindowID
id,
const wxString& caption,
95 const wxString& hint,
const wxPoint& pos,
const wxSize& size,
101 wxDialog* Initiate(
const std::string& msg,
const std::string& text1);
104 bool Create(wxWindow* parent, wxWindowID
id = SYMBOL_STG_IDNAME,
105 const wxString& caption = SYMBOL_STG_TITLE,
106 const wxString& hint = SYMBOL_STG_TITLE,
107 const wxPoint& pos = SYMBOL_STG_POSITION,
108 const wxSize& size = SYMBOL_STG_SIZE,
109 long style = SYMBOL_STG_STYLE);
110 void SetMessage(
const wxString& message);
111 void SetText1Message(
const wxString& message);
113 wxString GetText1Value() {
return m_pText1->GetValue(); }
116 void CreateControls(
const wxString& hint);
118 void OnCancelClick(wxCommandEvent& event);
119 void OnOKClick(wxCommandEvent& event);
121 wxButton* m_CancelButton;
122 wxButton* m_OKButton;
123 wxStaticText* premtext;
124 wxTextCtrl* m_pText1;
125 wxString m_checkbox1_msg;