mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
27 lines
784 B
C++
27 lines
784 B
C++
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Program : MyUppApp.exe
|
|
// Version : 0.0.3 Alpha
|
|
// Date : November 2006
|
|
// Copyright : Copyright(C) 2006 by Yeoh HS
|
|
// Author : Yeoh HS
|
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _MyUppApp_About_h_
|
|
#define _MyUppApp_About_h_
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
#define LAYOUTFILE <MyUppApp/About.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
#define IMAGECLASS AboutImg
|
|
#define IMAGEFILE <MyUppApp/About.iml>
|
|
#include <Draw/iml_header.h>
|
|
|
|
|
|
class About : public WithAboutLayout<TopWindow> {
|
|
bool Key(dword key, int count); // respond to key press
|
|
public:
|
|
typedef About CLASSNAME;
|
|
About();
|
|
};
|
|
#endif
|