mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-16 22:02:58 -06:00
26 lines
357 B
C++
26 lines
357 B
C++
#ifndef _FontDB_FontDB_h
|
|
#define _FontDB_FontDB_h
|
|
|
|
#include <CtrlLib/CtrlLib.h>
|
|
#include <Painter/Painter.h>
|
|
|
|
using namespace Upp;
|
|
|
|
#define LAYOUTFILE <FontDB/FontDB.lay>
|
|
#include <CtrlCore/lay.h>
|
|
|
|
|
|
|
|
class FontDB : public TopWindow {
|
|
ArrayCtrl list;
|
|
|
|
public:
|
|
typedef FontDB CLASSNAME;
|
|
|
|
void Perform();
|
|
|
|
FontDB();
|
|
};
|
|
|
|
#endif
|
|
|