mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 14:16:07 -06:00
26 lines
429 B
C++
26 lines
429 B
C++
#ifndef _WebWord_WebWord_h
|
|
#define _WebWord_WebWord_h
|
|
|
|
#ifdef flagTURTLEGUI
|
|
#include <Turtle/Turtle.h>
|
|
#else
|
|
#include <CtrlLib/CtrlLib.h>
|
|
#endif
|
|
|
|
#include <RichEdit/RichEdit.h>
|
|
#include <PdfDraw/PdfDraw.h>
|
|
|
|
namespace Upp {
|
|
|
|
class WebWord : public TopWindow {
|
|
public:
|
|
typedef WebWord CLASSNAME;
|
|
WebWord();
|
|
void ShowInfo();
|
|
|
|
RichEditWithToolBar editor;
|
|
StatusBar statusbar;
|
|
};
|
|
|
|
}
|
|
#endif
|