view include/param.h @ 3:870860d435a1

auto detect done.
author pyon@macmini
date Sun, 16 Oct 2011 00:18:18 +0900
parents 7bf900d47e9e
children 52697c869ce8
line wrap: on
line source

// Filename   : param.h
// Last Change: 15-Oct-2011.
//

#ifndef __param__
#define __param__

#include "common.h"
///////////////////////////////////////////////////////////////////////////////
/// Class MyFrame
///////////////////////////////////////////////////////////////////////////////
class ParamDialog : public wxDialog 
{
    DECLARE_EVENT_TABLE();
	private:
	
	protected:
		wxTextCtrl*   m_textCtrlLenMIn;
		wxStaticText* m_staticTextLen;
		wxTextCtrl*   m_textCtrlLenMax;

		wxTextCtrl*   m_textCtrlBMin;
		wxStaticText* m_staticTextBlack;
		wxTextCtrl*   m_textCtrlBmax;

		wxStaticText* m_staticTextlDummy;
		wxButton*     m_buttonCancel;
		wxButton*     m_buttonSave;
	
	public:
		ParamDialog( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxT("パラメータ設定"), const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxCAPTION|wxDEFAULT_DIALOG_STYLE );
		~ParamDialog();

        void GetParam(void);
        void SaveParam(wxCommandEvent& event);
	
};

#endif //__param.h__