view include/about.h @ 3:eea479fc2a28 default tip

redesign form.
author pyon@macmini
date Sun, 25 Nov 2012 12:59:11 +0900
parents 7c3921bf511e
children
line wrap: on
line source

// Filename   : about.h
// Last Change: 23-Jun-2012.
//
#ifndef __ABOUT_H__
#define __ABOUT_H__

#include "common.h"

class AboutDialog : public wxDialog 
{
	private:
	
	protected:
		wxStaticBitmap* m_bitmap;
		wxStaticText*   m_staticTextDesc;
		wxButton*       m_buttonOK;
		wxRichTextCtrl* m_richText;
	
	public:
		AboutDialog( wxWindow* parent, wxWindowID id = wxID_ANY, const wxString& title = wxEmptyString, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxDEFAULT_DIALOG_STYLE|wxSTAY_ON_TOP ); 
		~AboutDialog();
        void LoadChangeLog( void );
};

#endif //__ABOUT_H__