view src/kaigo/Porori/include/porori.h @ 44:b50f2a581cf8

bug fix.
author pyon@macmini
date Tue, 17 Mar 2020 18:29:20 +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();

};