mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
22 lines
341 B
C++
22 lines
341 B
C++
#ifndef _WebWord_WebWord_h_
|
|
#define _WebWord_WebWord_h_
|
|
|
|
#include <RichEdit/RichEdit.h>
|
|
#include <PdfDraw/PdfDraw.h>
|
|
|
|
using namespace Upp;
|
|
|
|
struct WebWord : public TopWindow {
|
|
public:
|
|
RichEditWithToolBar editor;
|
|
StatusBar statusbar;
|
|
|
|
void ShowInfo();
|
|
|
|
public:
|
|
typedef WebWord CLASSNAME;
|
|
|
|
WebWord();
|
|
};
|
|
|
|
#endif
|