view include/ccnframe.h @ 19:710be7b6a873

arranged FrameCnn's controls.
author pyon@macmini
date Mon, 18 Jul 2011 22:08:04 +0900
parents 17e78fc76e1f
children eb3f5c7c990f
line wrap: on
line source

// Filename   : ccnframe.h
// Last Change: 18-Jul-2011.
//

#ifndef __ccnframe__
#define __ccnframe__
#include "wx/wxprec.h"

#ifndef WX_PRECOMP
    #include "wx/wx.h"
    #include <wx/listctrl.h>
    #include <wx/sizer.h>
    #include <wx/button.h>
    #include <wx/datectrl.h>
    #include <wx/gbsizer.h>
#endif

///////////////////////////////////////////////////////////////////////////

///////////////////////////////////////////////////////////////////////////////
/// Class FrameCcn
///////////////////////////////////////////////////////////////////////////////
class FrameCcn : public wxFrame 
{
    DECLARE_EVENT_TABLE()
	private:
		wxPanel*          m_Panel;
		wxStaticText*     m_staticText1;
		wxStaticText*     m_staticText2;
		wxStaticText*     m_staticText3;
		wxListCtrl*       m_listCtrlYmd;
		wxStaticText*     m_staticText4;
		wxListCtrl*       m_listCtrlCcn;
		wxStaticText*     m_staticText5;
		wxListCtrl*       m_listCtrlHhs;
		wxButton*         m_btnPrevThu;
		wxButton*         m_btnNextThu;
		wxDatePickerCtrl* m_datePicker;
		wxButton*         m_btnMkIdX;
		wxButton*         m_btnClose;
	
	public:
		FrameCcn( wxWindow* parent, wxWindowID id = ID_FRAMECCN, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxFRAME_NO_TASKBAR|wxCAPTION|wxCLOSE_BOX|wxRESIZE_BORDER|wxSTAY_ON_TOP|wxTAB_TRAVERSAL );
		~FrameCcn();

        void InitListCtrl(void);
};

#endif //__ccnframe__