Mercurial > mercurial > hgweb_golang.cgi
view src/kaigo/Porori/include/porori.h @ 62:a2c9a535cdd3
add watcher.go
author | pyon@macmini |
---|---|
date | Wed, 14 Oct 2020 21:30:04 +0900 |
parents | 34a474fb83c3 |
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(); };