view include/param.h @ 5:52697c869ce8

delete move&detect button.
author pyon@macmini
date Tue, 18 Oct 2011 07:53:48 +0900
parents 7bf900d47e9e
children 9c85d71cad7c
line wrap: on
line source

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

#ifndef __param__
#define __param__

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

		wxTextCtrl*   m_textCtrlZMin;
		wxStaticText* m_staticTextZ;
		wxTextCtrl*   m_textCtrlZmax;

		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__