view include/about.h @ 0:7c3921bf511e

Beta2
author pyon@macmini
date Sat, 20 Oct 2012 16:07:42 +0900
parents
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__