mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 06:05:58 -06:00
28 lines
891 B
C++
28 lines
891 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_Options_h_
|
|
#define _MyUppApp_Options_h_
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
|
|
#define LAYOUTFILE <MyUppApp/Options.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
#define IMAGECLASS OptionsImg
|
|
#define IMAGEFILE <MyUppApp/Options.iml>
|
|
#include <Draw/iml_header.h>
|
|
|
|
const String cfgfile = "myuppapp.cfg"; // MyUppApp's configuration file
|
|
|
|
class Options : public WithOptionsLayout<TopWindow> {
|
|
void onbtnSave(); // get and save settings when Save button is clicked.
|
|
public:
|
|
typedef Options CLASSNAME;
|
|
Options();
|
|
};
|
|
#endif
|