mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
30 lines
862 B
C++
30 lines
862 B
C++
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
// Program : MyUppApp.exe
|
|
// Version : 0.0.3 Alpha
|
|
// Date : November 2006
|
|
// Copyright : Copyright(C) 2006 by Yeoh HS
|
|
// Author : Yeoh HS
|
|
////////////////////////////////////////////////////////////////////////////////////////////////
|
|
#include "About.h"
|
|
|
|
#define IMAGECLASS AboutImg
|
|
#define IMAGEFILE <MyUppApp/About.iml>
|
|
#include <Draw/iml_source.h>
|
|
|
|
// If the "Enter" key is pressed, close this window.
|
|
bool
|
|
About::Key(dword key, int count)
|
|
{
|
|
if (key == K_ENTER)
|
|
Break(IDOK);
|
|
return true;
|
|
}
|
|
|
|
// This displays the "About" window with icon, the About text and image.
|
|
About::About()
|
|
{
|
|
CtrlLayout(*this,"About");
|
|
Icon(AboutImg::About());
|
|
rtvAbout = GetTopic("topic://MyUppApp/app/About$en-us").text;
|
|
}
|
|
// end of file
|