From 0e787fb7f5b56b4fe87cd8ada64ae740bbca87bc Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Wed, 24 Jul 2024 19:37:05 +0900 Subject: Rename text class nt* related files to equivalent tq* Signed-off-by: Michele Calgaro --- doc/html/helpsystem-example.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'doc/html/helpsystem-example.html') diff --git a/doc/html/helpsystem-example.html b/doc/html/helpsystem-example.html index 5afaeebfd..5e19cd6c2 100644 --- a/doc/html/helpsystem-example.html +++ b/doc/html/helpsystem-example.html @@ -37,7 +37,7 @@ body { background: #ffffff; color: black; } This example demonstrates the different TQt classes that can be used to provide context sensitive help in an application. -

It uses TQToolTip and TQWhatsThis to provide both static and +

It uses TQToolTip and TQWhatsThis to provide both static and dynamic balloon help for the widgets in the application, and TQToolTipGroup to display extended information for each tooltip in the statusbar. TQAssistantClient is used to display help @@ -163,13 +163,13 @@ in a tooltip and to provide text for the TQToolTip

The WhatsThis class is a subclass of both TQObject and -TQWhatsThis and serves as a base class for the HeaderWhatsThis +TQWhatsThis and serves as a base class for the HeaderWhatsThis and TableWhatsThis classes. (1) WhatsThis reimplements clicked() which will be called when the user clicks inside the "What's this?" window. It also declares a signal linkClicked() which will be emitted when a hyperlink is clicked.

    WhatsThis::WhatsThis( TQWidget *w, TQWidget *watch )
-    : TQWhatsThis( watch ? watch : w ), widget( w )
+    : TQWhatsThis( watch ? watch : w ), widget( w )
     {
     }
 
@@ -379,7 +379,7 @@ so that the system path is used.

A TQTable is used as the central widget and the table, the menus and the toolbar are populated. -

        TQWhatsThis::whatsThisButton( toolbar );
+
        TQWhatsThis::whatsThisButton( toolbar );
 

The static function whatsThisButton() creates a TQToolButton which will enter "What's this?" mode when clicked. @@ -406,7 +406,7 @@ specifies the widget we want to add dynamic tooltips for and the second argument specifies the TQToolTipGroup they should belong to.

        // set up whats this
-        TQWhatsThis::add ( assistantButton, "This is a toolbutton which opens Assistant" );
+        TQWhatsThis::add ( assistantButton, "This is a toolbutton which opens Assistant" );
 
         HeaderWhatsThis *horizontalWhatsThis = new HeaderWhatsThis( table->horizontalHeader() );
         HeaderWhatsThis *verticalWhatsThis = new HeaderWhatsThis( table->verticalHeader() );
@@ -480,7 +480,7 @@ Note that moc requires that T
 is the first base class.  Back... 
  • Note that we have to explicitly scope the orientation -(TQObject or TQWhatsThis) since HeaderWhatsThis uses multiple +(TQObject or TQWhatsThis) since HeaderWhatsThis uses multiple inheritance. Back...

    See also Examples. -- cgit v1.2.3