diff options
Diffstat (limited to 'examples/helpsystem')
-rw-r--r-- | examples/helpsystem/helpsystem.doc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/helpsystem/helpsystem.doc b/examples/helpsystem/helpsystem.doc index 34d3a39a4..e18d75a62 100644 --- a/examples/helpsystem/helpsystem.doc +++ b/examples/helpsystem/helpsystem.doc @@ -4,7 +4,7 @@ \ingroup examples \title Helpsystem - This example demonstrates the different Qt classes + This example demonstrates the different TQt classes that can be used to provide context sensitive help in an application. @@ -12,7 +12,7 @@ dynamic balloon help for the widgets in the application, and QToolTipGroup to display extended information for each tooltip in the statusbar. QAssistantClient is used to display help - pages using Qt Assistant. + pages using TQt Assistant. The application has a user interface based on a QMainWindow with a menubar, statusbar and a toolbar, and uses @@ -148,15 +148,15 @@ \printuntil }; A QMainWindow is used to create a user interface that uses the - above classes in addition to Qt Assistant to provide context + above classes in addition to TQt Assistant to provide context sensitive help in the application. The MainWindow class declares a slot called assistantSlot() - which creates an instance of Qt Assistant when it is called. + which creates an instance of TQt Assistant when it is called. The class keeps references to the tooltip classes as members because they are not QObjects and need to be deleted explicitly. The class has a reference to QAssistantClient as a - member as well, to allow easier access to Qt Assistant later on. + member as well, to allow easier access to TQt Assistant later on. \quotefile helpsystem/mainwindow.cpp \skipto MainWindow::MainWindow @@ -195,7 +195,7 @@ \printto MainWindow::~MainWindow Signals and slots are connected, so that the relevant pages will - be displayed in Qt Assistant when clicking on a hyperlink or on + be displayed in TQt Assistant when clicking on a hyperlink or on the assistant button. \printuntil } @@ -207,7 +207,7 @@ The assistantSlot() uses applicationDirPath() to find the location of the documentation files and shows the specified page - in Qt Assistant. + in TQt Assistant. \quotefile helpsystem/main.cpp \skipto #include \printuntil } |