KHelpMenu Class Reference
This class provides the standard KDE help menu with the default "about" dialog boxes and help entry. Standard KDE help menu with dialog boxes. More...
#include <khelpmenu.h>
Inheritance diagram for KHelpMenu:

Public Slots | |
void | appHelpActivated () |
Opens the help page for the application. | |
void | contextHelpActivated () |
Activates What's This help for the application. | |
void | aboutApplication () |
Opens an application specific dialog box. | |
void | aboutKDE () |
Opens the standard "About KDE" dialog box. | |
void | reportBug () |
Opens the standard "Report Bugs" dialog box. | |
Signals | |
void | showAboutApplication () |
This signal is emitted from aboutApplication() if no "about application" string has been defined. | |
Public Methods | |
KHelpMenu (QWidget *parent=0, const QString &aboutAppText=QString::null, bool showWhatsThis=true) | |
Constructor. | |
KHelpMenu (QWidget *parent, const KAboutData *aboutData, bool showWhatsThis=true, KActionCollection *actions=0) | |
Constructor. | |
~KHelpMenu () | |
Destructor. | |
KPopupMenu * | menu () |
Returns a popup menu you can use in the menu bar or where you need it. |
Detailed Description
This class provides the standard KDE help menu with the default "about" dialog boxes and help entry. Standard KDE help menu with dialog boxes.This class is used in KMainWindow so normally you don't need to use this class yourself. However, if you need the help menu or any of its dialog boxes in your code that is not subclassed from KMainWindow you should use this class.
The usage is simple:
mHelpMenu = new KHelpMenu( this, <someText> ); kmenubar->insertItem(i18n("&Help"), mHelpMenu->menu() );
or if you just want to open a dialog box:
mHelpMenu = new KHelpMenu( this, <someText> ); connect( this, SIGNAL(someSignal()), mHelpMenu,SLOT(mHelpMenu->aboutKDE()));
IMPORTANT: The first time you use KHelpMenu::menu(), a KPopupMenu object is allocated. Only one object is created by the class so if you call KHelpMenu::menu() twice or more, the same pointer is returned. The class will destroy the popupmenu in the destructor so do not delete this pointer yourself.
The KHelpMenu object will be deleted when its parent is destroyed but you can delete it yourself if you want. The code below will always work.
MyClass::~MyClass() { delete mHelpMenu; }
Using your own "about application" dialog box:
The standard "about application" dialog box is quite simple. If you need a dialog box with more functionality you must design that one yourself. When you want to display the dialog you can choose one of two methods. Common for both is that you must make a help menu object with no text argument If the text is missing the default dialog box will not be displayed:
Example 1 Using showAboutApplication signal (preferred)
void MyClass::myFunc() { .. KHelpMenu *helpMenu = new KHelpMenu( this ); connect( helpMenu, SIGNAL(showAboutApplication()), this, SLOT(myDialogSlot())); .. } void MyClass::myDialogSlot() { <activate your custom dialog> }
Example 2 Old style - connecting directly to the menu entry.
void MyClass::myFunc() { KHelpMenu *helpMenu = new KHelpMenu( this ); KPopupMenu *help = mHelpMenu->menu(); help->connectItem( KHelpMenu::menuAboutApp, this, SLOT(myDialogSlot()) ); } void MyClass::myDialogSlot() { <activate your custom dialog> }
- Author:
- Espen Sand (espen@kde.org)
- Version:
- Id:
- khelpmenu.h,v 1.24 2002/08/01 14:19:52 coolo Exp
Definition at line 129 of file khelpmenu.h.
Constructor & Destructor Documentation
|
Constructor.
Definition at line 60 of file khelpmenu.cpp. |
|
Constructor.
Definition at line 71 of file khelpmenu.cpp. References KStdAction::aboutApp(), aboutApplication(), aboutKDE(), KStdAction::aboutKDE(), appHelpActivated(), contextHelpActivated(), KStdAction::helpContents(), reportBug(), KStdAction::reportBug(), and KStdAction::whatsThis(). |
|
Destructor. Destroys dialogs and the menu pointer retuned by menu Definition at line 95 of file khelpmenu.cpp. |
Member Function Documentation
|
Returns a popup menu you can use in the menu bar or where you need it. Note: This method will only create one instance of the menu. If you call this method twice or more the same pointer is returned Definition at line 105 of file khelpmenu.cpp. References aboutApplication(), KInstance::aboutData(), aboutKDE(), appHelpActivated(), QObject::connect(), QPopupMenu::connectItem(), contextHelpActivated(), QObject::destroyed(), QString::fromLatin1(), QToolButton::iconSet(), QPopupMenu::insertItem(), QPopupMenu::insertSeparator(), KGlobal::instance(), KAboutData::programName(), reportBug(), QPopupMenu::setAccel(), KIcon::SizeSmall, and QWhatsThis::whatsThisButton(). Referenced by KMainWindow::customHelpMenu(), and KMainWindow::helpMenu(). |
|
Opens the help page for the application. The application name is used as a key to determine what to display and the system will attempt to open <appName>/index.html. Definition at line 171 of file khelpmenu.cpp. Referenced by KMainWindow::appHelpActivated(), KHelpMenu(), and menu(). |
|
Activates What's This help for the application.
Definition at line 274 of file khelpmenu.cpp. References QWhatsThis::enterWhatsThisMode(), QWidget::isTopLevel(), QWidget::parentWidget(), QCursor::pos(), and QApplication::widgetAt(). Referenced by KHelpMenu(), and menu(). |
|
Opens an application specific dialog box. The dialog box will display the string that was defined in the constructor. If that string was empty the showAboutApplication() is emitted instead. Definition at line 177 of file khelpmenu.cpp. References QObject::connect(), KDialogBase::disableResize(), QString::isEmpty(), KDialog::marginHint(), KDialogBase::setMainWidget(), QLabel::setPixmap(), KDialog::setPlainCaption(), QHBox::setSpacing(), QLabel::setText(), QDialog::show(), showAboutApplication(), and KDialog::spacingHint(). Referenced by KHelpMenu(), and menu(). |
|
Opens the standard "About KDE" dialog box.
Definition at line 221 of file khelpmenu.cpp. References QObject::connect(), and KAboutDialog::show(). Referenced by KHelpMenu(), and menu(). |
|
Opens the standard "Report Bugs" dialog box.
Definition at line 232 of file khelpmenu.cpp. References QObject::connect(), and QDialog::show(). Referenced by KHelpMenu(), and menu(). |
|
This signal is emitted from aboutApplication() if no "about application" string has been defined. The standard application specific dialog box that is normally activated in aboutApplication() will not be displayed when this signal is emitted. Referenced by aboutApplication(). |
The documentation for this class was generated from the following files: