56 const wxString& msg1,
const wxString msg2);
58 const wxString& hint,
const wxPoint& pos,
59 const wxSize& size,
long style,
const wxString& msg1,
60 const wxString& msg2);
63 bool Create(wxWindow* parent, wxWindowID
id,
const wxString& caption,
64 const wxString& hint,
const wxPoint& pos,
const wxSize& size,
65 long style,
const wxString& msg1,
const wxString& msg2);
67 void SetMessage(
const wxString& message);
68 void SetCheck1Message(
const wxString& message);
70 bool GetCheck1Value() {
return m_pCheck1->GetValue(); }
73 void CreateControls(
const wxString& hint,
const wxString& msg1,
76 void OnCancelClick(wxCommandEvent& event);
77 void OnOKClick(wxCommandEvent& event);
79 wxButton* m_CancelButton;
81 wxStaticText* premtext;
82 wxCheckBox* m_pCheck1;
83 wxString m_checkbox1_msg;
92 PINCreateDialog(wxWindow* parent, wxWindowID
id,
const wxString& caption,
93 const wxString& hint,
const wxPoint& pos,
const wxSize& size,
99 wxDialog* Initiate(
const std::string& msg,
const std::string& text1);
102 bool Create(wxWindow* parent, wxWindowID
id = SYMBOL_STG_IDNAME,
103 const wxString& caption = SYMBOL_STG_TITLE,
104 const wxString& hint = SYMBOL_STG_TITLE,
105 const wxPoint& pos = SYMBOL_STG_POSITION,
106 const wxSize& size = SYMBOL_STG_SIZE,
107 long style = SYMBOL_STG_STYLE);
108 void SetMessage(
const wxString& message);
109 void SetText1Message(
const wxString& message);
111 wxString GetText1Value() {
return m_pText1->GetValue(); }
114 void CreateControls(
const wxString& hint);
116 void OnCancelClick(wxCommandEvent& event);
117 void OnOKClick(wxCommandEvent& event);
119 wxButton* m_CancelButton;
120 wxButton* m_OKButton;
121 wxStaticText* premtext;
122 wxTextCtrl* m_pText1;
123 wxString m_checkbox1_msg;