view include/about.h @ 3:1a64119ab257

Equipment Regist print-target by Drag & Drop.
author pyon@macmini
date Tue, 27 Aug 2013 18:50:00 +0900
parents 0c0701a935f8
children a2ad87cad48b
line wrap: on
line source

// Filename   : about.h
// Last Change: 21-Jul-2013.
//
#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, const wxString& title, const wxPoint& pos, const wxSize& size, long style ); 
		~AboutDialog();
        void LoadChangeLog( void );
};

#endif //__ABOUT_H__