diff options
Diffstat (limited to 'doc/html/ntqwhatsthis.html')
-rw-r--r-- | doc/html/ntqwhatsthis.html | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/doc/html/ntqwhatsthis.html b/doc/html/ntqwhatsthis.html index 6a26b2e0b..1aeaf0655 100644 --- a/doc/html/ntqwhatsthis.html +++ b/doc/html/ntqwhatsthis.html @@ -76,9 +76,9 @@ something else. will not work.) <p> To add "What's this?" text to a widget you simply call <a href="#add">TQWhatsThis::add</a>() for the widget. For example, to assign text to a -menu item, call <a href="ntqmenudata.html#setWhatsThis">TQMenuData::setWhatsThis</a>(); for a global +menu item, call <a href="tqmenudata.html#setWhatsThis">TQMenuData::setWhatsThis</a>(); for a global accelerator key, call <a href="ntqaccel.html#setWhatsThis">TQAccel::setWhatsThis</a>() and If you're using -actions, use <a href="ntqaction.html#setWhatsThis">TQAction::setWhatsThis</a>(). +actions, use <a href="tqaction.html#setWhatsThis">TQAction::setWhatsThis</a>(). <p> The text can be either rich text or plain text. If you specify a rich text formatted string, it will be rendered using the default stylesheet. This makes it possible to embed images. See @@ -90,8 +90,8 @@ stylesheet. This makes it possible to embed images. See "You can also select the <b>Open</b> command " "from the <b>File</b> menu.</p>"; <a name="x2104"></a> TQMimeSourceFactory::<a href="qmimesourcefactory.html#defaultFactory">defaultFactory</a>()->setPixmap( "document-open", - <a name="x2102"></a> fileOpenAction-><a href="ntqaction.html#iconSet">iconSet</a>().pixmap() ); - <a name="x2103"></a> fileOpenAction-><a href="ntqaction.html#setWhatsThis">setWhatsThis</a>( fileOpenText ); + <a name="x2102"></a> fileOpenAction-><a href="tqaction.html#iconSet">iconSet</a>().pixmap() ); + <a name="x2103"></a> fileOpenAction-><a href="tqaction.html#setWhatsThis">setWhatsThis</a>( fileOpenText ); </pre> <p> An alternative way to enter "What's this?" mode is to use the ready-made tool bar tool button from @@ -101,8 +101,8 @@ user switches into "What's this?" mode. If they now click on a widget the appropriate help text is shown. The mode is left when help is given or when the user presses Esc. <p> <center><img src="whatsthis.png"></center> -<p> If you are using <a href="ntqmainwindow.html">TQMainWindow</a> you can also use the -<a href="ntqmainwindow.html#whatsThis">TQMainWindow::whatsThis</a>() slot to invoke the mode from a menu item. +<p> If you are using <a href="tqmainwindow.html">TQMainWindow</a> you can also use the +<a href="tqmainwindow.html#whatsThis">TQMainWindow::whatsThis</a>() slot to invoke the mode from a menu item. <p> For more control you can create a dedicated TQWhatsThis object for a special widget. By subclassing and reimplementing <a href="#text">TQWhatsThis::text</a>() it is possible to have different help texts, @@ -114,7 +114,7 @@ manually see <a href="tqwidget.html#customWhatsThis">TQWidget::customWhatsThis</ <p> The What's This object can be removed using <a href="#remove">TQWhatsThis::remove</a>(), although this is rarely necessary because it is automatically removed when the widget is destroyed. -<p> <p>See also <a href="ntqtooltip.html">TQToolTip</a> and <a href="helpsystem.html">Help System</a>. +<p> <p>See also <a href="tqtooltip.html">TQToolTip</a> and <a href="helpsystem.html">Help System</a>. <hr><h2>Member Function Documentation</h2> <h3 class=fn><a name="TQWhatsThis"></a>TQWhatsThis::TQWhatsThis ( <a href="tqwidget.html">TQWidget</a> * widget ) @@ -216,9 +216,9 @@ subclassed to make the text that is displayed position dependent. consideration as well when looking for what's this help text. <p> <p>See also <a href="#add">add</a>(). -<h3 class=fn><a href="ntqtoolbutton.html">TQToolButton</a> * <a name="whatsThisButton"></a>TQWhatsThis::whatsThisButton ( <a href="tqwidget.html">TQWidget</a> * parent )<tt> [static]</tt> +<h3 class=fn><a href="tqtoolbutton.html">TQToolButton</a> * <a name="whatsThisButton"></a>TQWhatsThis::whatsThisButton ( <a href="tqwidget.html">TQWidget</a> * parent )<tt> [static]</tt> </h3> -Creates a <a href="ntqtoolbutton.html">TQToolButton</a> preconfigured to enter "What's this?" mode +Creates a <a href="tqtoolbutton.html">TQToolButton</a> preconfigured to enter "What's this?" mode when clicked. You will often use this with a tool bar as <em>parent</em>: <pre> (void) TQWhatsThis::whatsThisButton( my_help_tool_bar ); |