ultimatepp/reference/WebWord/WebWord.h
oblivion 64fe2a043d reference: WebWord example is updated to reflect the new Turtle package.
git-svn-id: svn://ultimatepp.org/upp/trunk@14945 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2020-08-31 12:22:46 +00:00

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