Mercurial > mercurial > hgweb_qlipbrd.cgi
diff include/adddialog.h @ 3:fd4361d2cbbd default tip
add remember function.
author | pyon@macmini |
---|---|
date | Thu, 24 Sep 2015 07:45:26 +0900 |
parents | e4aa0e7a07ad |
children |
line wrap: on
line diff
--- a/include/adddialog.h Mon Sep 14 19:25:51 2015 +0900 +++ b/include/adddialog.h Thu Sep 24 07:45:26 2015 +0900 @@ -1,5 +1,5 @@ // Filename: adddialog.h -// Last Change: 2015-09-12 Sat 11:49:15. +// Last Change: 2015-09-24 Thu 06:08:43. // #ifndef __ADDDLG_H__ @@ -26,6 +26,7 @@ bool m_owrite; int m_maxat; int m_maxlt; + bool m_remember; wxString m_desc; protected: @@ -37,21 +38,31 @@ }; wxStaticText* m_staticText; + wxStaticText* m_staticTextText; wxTextCtrl* m_textCtrlText; wxStaticText* m_staticTextText2; + wxStaticText* m_staticTextOverwrite; wxCheckBox* m_checkBoxOverwrite; wxStaticText* m_staticTextOverwrite2; + wxStaticText* m_staticTextMaxLive; wxSpinCtrl* m_spinCtrlMaxLive; wxStaticText* m_staticTextMaxLive2; + wxStaticText* m_staticTextMaxActive; wxSpinCtrl* m_spinCtrlMaxActive; wxStaticText* m_staticTextMaxActive2; + + wxStaticText* m_staticTextRemember; + wxCheckBox* m_checkBoxRemember; + wxStaticText* m_staticTextRemember2; + wxStaticText* m_staticTextDesc; wxTextCtrl* m_textCtrlDesc; wxStaticText* m_staticTextDesc2; + wxButton* m_buttonAdd; wxButton* m_buttonCancel; @@ -63,11 +74,12 @@ void Init(); void SetValidators(); - wxString GetText() { return m_text; }; - bool GetOverwrite() { return m_owrite; }; - int GetMaxActiveTime() { return m_maxat; }; - int GetMaxLiveTime() { return m_maxlt; }; - wxString GetDesc() { return m_desc; }; + wxString GetText() { return m_text; }; + bool GetOverwrite() { return m_owrite; }; + int GetMaxActiveTime() { return m_maxat; }; + int GetMaxLiveTime() { return m_maxlt; }; + wxString GetDesc() { return m_desc; }; + bool GetRemember() { return m_remember; }; }; #endif //__ADDDLG_H__