(fix broken markup (<code cppqt3> -> <code cpp>) |
Neverendingo (Talk | contribs) m (Text replace - "<code cpp>" to "<syntaxhighlight lang="cpp">") |
||
| Line 18: | Line 18: | ||
From the programmer's point of view, Qt provides an easy to use API for online | From the programmer's point of view, Qt provides an easy to use API for online | ||
help. To assign a tooltip to widget, simply use its setToolTip() method. | help. To assign a tooltip to widget, simply use its setToolTip() method. | ||
| − | < | + | <syntaxhighlight lang="cpp"> |
widget->setToolTip(i18n("This widget does something.")) | widget->setToolTip(i18n("This widget does something.")) | ||
</code> | </code> | ||
| Line 25: | Line 25: | ||
of the [http://api.kde.org/4.x-api/kdelibs-apidocs/kdeui/html/classKAction.html KAction] constructor: | of the [http://api.kde.org/4.x-api/kdelibs-apidocs/kdeui/html/classKAction.html KAction] constructor: | ||
| − | < | + | <syntaxhighlight lang="cpp"> |
action = new KAction(i18n("&Delete"), "editdelete", | action = new KAction(i18n("&Delete"), "editdelete", | ||
SHIFT+Key_Delete, actionCollection(), "del") | SHIFT+Key_Delete, actionCollection(), "del") | ||
| Line 32: | Line 32: | ||
Here it is also possible to assign a text which is shown in the status bar when the respective menu item is highlighted: | Here it is also possible to assign a text which is shown in the status bar when the respective menu item is highlighted: | ||
| − | < | + | <syntaxhighlight lang="cpp"> |
action->setStatusText(i18n("Deletes the marked file")) | action->setStatusText(i18n("Deletes the marked file")) | ||
</code> | </code> | ||
| Line 39: | Line 39: | ||
code: | code: | ||
| − | < | + | <syntaxhighlight lang="cpp"> |
widget->setWhatsThis(i18n("<qt>This demonstrates <b>Qt</b>'s" | widget->setWhatsThis(i18n("<qt>This demonstrates <b>Qt</b>'s" | ||
" rich text engine.<ul>" | " rich text engine.<ul>" | ||
| Line 48: | Line 48: | ||
For menu items, use | For menu items, use | ||
| − | < | + | <syntaxhighlight lang="cpp"> |
action->setWhatsThis(i18n("Deletes the marked file")) | action->setWhatsThis(i18n("Deletes the marked file")) | ||
</code> | </code> | ||
| Line 56: | Line 56: | ||
class. In order to show the manual of your application, just use the static method: | class. In order to show the manual of your application, just use the static method: | ||
| − | < | + | <syntaxhighlight lang="cpp"> |
KToolInvocation::invokeHelp() | KToolInvocation::invokeHelp() | ||
</code> | </code> | ||
Languages: عربي | Asturianu | Català | Česky | Kaszëbsczi | Dansk | Deutsch | English | Esperanto | Español | Eesti | فارسی | Suomi | Français | Galego | Italiano | 日本語 | 한국어 | Norwegian | Polski | Português Brasileiro | Română | Русский | Svenska | Slovenčina | Slovenščina | српски | Türkçe | Tiếng Việt | Українська | 简体中文 | 繁體中文
KDE Architecture - Providing online help
Making a program easy and intuitive to use involves a wide range of facilities which are usually called online help. Online help has several, partially conflicting goals: on the one, it should give the user answers to the question "How can I do a certain task?", on the other hand it should help the user exploring the application and finding features he doesn't yet know about. It is important to recognize that this can only be achieved by offering several levels of help:
From the programmer's point of view, Qt provides an easy to use API for online help. To assign a tooltip to widget, simply use its setToolTip() method.
widget->setToolTip(i18n("This widget does something.")) </code> If the menu bars and tool bars are created using the [[../Action Pattern|action pattern]], the string used as tooltip is derived from the first argument of the [http://api.kde.org/4.x-api/kdelibs-apidocs/kdeui/html/classKAction.html KAction] constructor: <syntaxhighlight lang="cpp"> action = new KAction(i18n("&Delete"), "editdelete", SHIFT+Key_Delete, actionCollection(), "del") </code> Here it is also possible to assign a text which is shown in the status bar when the respective menu item is highlighted: <syntaxhighlight lang="cpp"> action->setStatusText(i18n("Deletes the marked file")) </code> The API for "What's this?' help is very similar. In dialogs, use the following code: <syntaxhighlight lang="cpp"> widget->setWhatsThis(i18n("<qt>This demonstrates <b>Qt</b>'s" " rich text engine.<ul>" "<li>Foo</li>" "<li>Bar</li>" "</ul></qt>")) </code> For menu items, use <syntaxhighlight lang="cpp"> action->setWhatsThis(i18n("Deletes the marked file")) </code> The invocation of khelpcenter is encapsulated in the [http://api.kde.org/4.x-api/kdelibs-apidocs/kdecore/html/classKToolInvocation.html KToolInvocation] class. In order to show the manual of your application, just use the static method: <syntaxhighlight lang="cpp"> KToolInvocation::invokeHelp() </code> This displays the first page with the table of contents. When you want to display only a certain section of the manual, you can give an additional argument to invokeHelp() determining the anchor which the browser jumps to. ''Initial Author:'' [mailto:bernd@kdevelop.org Bernd Gehrmann] [[Category:KDE4]] [[Category:Architecture]]