ultimatepp/bazaar/TestHelpViewer/main.cpp
micio 1f21aeb9f5 Test for HelpViewer class
git-svn-id: svn://ultimatepp.org/upp/trunk@2650 f0d560ea-af0d-0410-9eb7-867de7ffcac7
2010-09-01 15:45:13 +00:00

20 lines
416 B
C++

#include <CtrlLib/CtrlLib.h>
#include <HelpViewer/HelpViewer.h>
using namespace Upp;
#define TOPICFILE <TestHelpViewer/app.tpp/all.i>
#include <Core/topic_group.h>
GUI_APP_MAIN
{
HelpViewer helpViewer;
helpViewer.Title("HelpViewer test");
helpViewer.Clear();
helpViewer.LoadTOC("topic://TestHelpViewer/app/TOC$it-it");
helpViewer.LoadTOC("topic://TestHelpViewer/app/TOC$it-it");
helpViewer.Execute();
}