diff options
Diffstat (limited to 'doc/html/motif-walkthrough-2.html')
-rw-r--r-- | doc/html/motif-walkthrough-2.html | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/doc/html/motif-walkthrough-2.html b/doc/html/motif-walkthrough-2.html index cbe236daa..3b44a6e1e 100644 --- a/doc/html/motif-walkthrough-2.html +++ b/doc/html/motif-walkthrough-2.html @@ -53,18 +53,18 @@ way up the dependency tree until all the pieces have been migrated. <em>Main Window</em> widget with popup-menu hierarchy, and finally the <em>View</em> widget. <p> However, we are not ready to begin just yet. The migration process can be long, but it does not have to be difficult. The <em>Open</em>, <em>Save As</em>, <em>Page Delete</em> and <em>IO Error</em> dialogs use Motif <tt>XmFileSelectionBox</tt> and <tt>XmMessageBox</tt> dialogs. TQt provides similar -functionality with <a href="qfiledialog.html">TQFileDialog</a> and <a href="qmessagebox.html">TQMessageBox</a>, which we can begin +functionality with <a href="ntqfiledialog.html">TQFileDialog</a> and <a href="ntqmessagebox.html">TQMessageBox</a>, which we can begin using immediately. <p> The <em>Print</em> dialog is special, however. The <em>Print</em> dialog cannot be replaced until after we have replaced the <em>View</em> widget. TQt provides -a complete printing mechanism with <a href="qprinter.html">TQPrinter</a>, but we cannot start using +a complete printing mechanism with <a href="ntqprinter.html">TQPrinter</a>, but we cannot start using it until we have replaced the <em>View</em> widget. <p> <h2> Removing the <em>Help</em> Dialog </h2> <a name="1"></a><p> The <em>Help</em> dialog is also special. Instead of replacing the <em>Help</em> -dialog with a custom <a href="qdialog.html">TQDialog</a>, we will use the <a href="helpsystem.html">TQt +dialog with a custom <a href="ntqdialog.html">TQDialog</a>, we will use the <a href="helpsystem.html">TQt Help System</a> classes to provide a more advanced online help. -However, we cannot start using classes like <a href="qtooltip.html">TQToolTip</a> and <a href="qwhatsthis.html">TQWhatsThis</a> +However, we cannot start using classes like <a href="ntqtooltip.html">TQToolTip</a> and <a href="ntqwhatsthis.html">TQWhatsThis</a> until we replace the <em>Main Window</em> and <em>View</em> widgets. <p> The help text included with the original project is very small and only contains information about the <tt>XmNoteBook</tt> widget. The use of @@ -83,7 +83,7 @@ creates the <em>Help</em> dialog. We will also remove the code to create the <em>Help</em> menu, since this menu is now empty. Finally, we remove the <tt>help_cb()</tt> function implementation. <p> The <em>Help</em> dialog is now removed from our project. We cannot add -<a href="qtooltip.html">TQToolTip</a> and <a href="qwhatsthis.html">TQWhatsThis</a> help at the moment, since we are still using +<a href="ntqtooltip.html">TQToolTip</a> and <a href="ntqwhatsthis.html">TQWhatsThis</a> help at the moment, since we are still using <tt>XmMainWindow</tt> for the <em>Main Window</em> widget. Once we have migrated the <em>Main Window</em> and the popup-menu hierarchy, we can begin using TQToolTip and TQWhatsThis for online help. |