diff Porori/include/porori.h @ 0:2b4fc52a96d9

porori.
author pyon@macmini
date Wed, 12 Feb 2020 18:57:24 +0900
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/Porori/include/porori.h	Wed Feb 12 18:57:24 2020 +0900
@@ -0,0 +1,50 @@
+/* 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();
+
+};
+