Mercurial > mercurial > hgweb_porori.cgi
view Porori/include/porori.h @ 1:bcbe8663e582 default tip
bug fix.
author | pyon@macmini |
---|---|
date | Fri, 14 Feb 2020 18:48:53 +0900 |
parents | 2b4fc52a96d9 |
children |
line wrap: on
line source
/* Filename : porori.h Last Change: 2020-02-12 15:55:27. by Takayuki Mutoh */ #pragma once #include <wx/artprov.h> #include <wx/xrc/xmlres.h> #include <wx/datectrl.h> #include <wx/dateevt.h> #include <wx/gdicmn.h> #include <wx/font.h> #include <wx/colour.h> #include <wx/settings.h> #include <wx/string.h> #include <wx/stattext.h> #include <wx/bitmap.h> #include <wx/image.h> #include <wx/icon.h> #include <wx/button.h> #include <wx/sizer.h> #include <wx/frame.h> #include <wx/textfile.h> class PororiFrame : public wxFrame { private: enum { ID_PROCESS = 1000 }; protected: wxDatePickerCtrl* m_datePickerFrom; wxStaticText* m_staticText; wxDatePickerCtrl* m_datePickerTo; wxButton* m_button; wxString m_json = wxT("porori.json"); wxString m_icon = wxT("sample"); // Virtual event handlers, overide them in your derived class virtual void OnClick(wxCommandEvent& event); public: PororiFrame(wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("Porori"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_FRAME_STYLE|wxTAB_TRAVERSAL); ~PororiFrame(); };