MainWindow Class Reference
Handles the multiple document interface modes.. More...
#include <mainwindow.h>
Inheritance diagram for MainWindow:


Public Types | |
enum | EView { OutputView, TreeView } |
Public Slots | |
void | setCaption (const QString &) |
void | createGUI (KParts::Part *part) |
void | gotoNextWindow () |
void | gotoPreviousWindow () |
void | gotoFirstWindow () |
void | gotoLastWindow () |
virtual void | fillWindowMenu () |
Reimplemented from KMdiMainFrm. | |
virtual void | switchToToplevelMode () |
Reimplemented from KMdiMainFrm to save chosen mode. | |
virtual void | switchToChildframeMode () |
Reimplemented from KMdiMainFrm to save chosen mode. | |
virtual void | switchToTabPageMode () |
Reimplemented from KMdiMainFrm to save chosen mode. | |
virtual void | switchToIDEAlMode () |
Reimplemented from KMdiMainFrm to save chosen mode. | |
virtual void | raiseEditor () |
virtual void | fillOutputToolViewsMenu () |
Fills the show-hide menu for the output views. | |
virtual void | fillTreeToolViewsMenu () |
Fills the show-hide menu for the tree views. | |
virtual void | toggleSingleToolWin (const ViewMenuActionPrivateData &ActionData) |
Changes the show-hide state of a single tree or output tool window. | |
virtual void | toggleToolDockBaseState (const ViewMenuActionPrivateData &ActionData) |
Changes the show-hide state of a tool dock base (either output or tree tool view). | |
virtual void | showAllToolWin (EView eView, bool show) |
Shows all tools views of a type (OutputView or TreeView. | |
virtual void | updateActionState () |
Updates the toggle state of the actions to show or hide the tool windows. | |
Public Member Functions | |
MainWindow (QWidget *parent=0, const char *name=0, KMdi::MdiMode=KMdi::IDEAlMode) | |
~MainWindow () | |
void | embedPartView (QWidget *view, const QString &title, const QString &toolTip=QString::null) |
Embeds a view as part view in the main working area at position (0,0). | |
void | embedSelectView (QWidget *view, const QString &title, const QString &toolTip) |
Embeds a view as select view in the left docking area. | |
void | embedOutputView (QWidget *view, const QString &title, const QString &toolTip) |
Embeds a view as output view in the bottom docking area. | |
void | embedSelectViewRight (QWidget *view, const QString &title, const QString &toolTip) |
We do not have a right pane so this is just a wrapper to embedSelectView(. | |
void | removeView (QWidget *view) |
void | setViewAvailable (QWidget *pView, bool bEnabled) |
void | raiseView (QWidget *view) |
void | lowerView (QWidget *view) |
void | lowerAllViews () |
void | loadSettings () |
KMainWindow * | main () |
Returns a pointer to the KMainWindow base class of this. | |
void | init () |
void | prepareToCloseViews () |
void | guiRestoringFinished () |
virtual void | setUserInterfaceMode (const QString &uiMode) |
virtual void | callCommand (const QString &command) |
this allows to order the mainwindow to do anything special, we use it to trigger the execution of a hack | |
virtual void | childWindowCloseRequest (KMdiChildView *pWnd) |
Reimplemented from KMdiChildView to handle save prompt. | |
void | storeOutputViewTab () |
Store the currently active view tab/window of the output view/window. | |
void | restoreOutputViewTab () |
Restore the previously saved view tab/window to the output view/window. | |
Protected Member Functions | |
KParts::ReadOnlyPart * | getPartFromWidget (const QWidget *pWidget) const |
void | resizeEvent (QResizeEvent *ev) |
Reimplemented from QWidget just to get the info, that the window will now be shown. | |
Private Slots | |
void | slotReactToProjectOpened () |
Adds a tool view window to the output or tree views. | |
void | slotRestoreAdditionalViewProperties (const QString &viewName, const QDomElement *viewEl) |
void | slotSaveAdditionalViewProperties (const QString &viewName, QDomElement *viewEl) |
void | slotToggleViewbar () |
void | slotViewActivated (KMdiChildView *view) |
void | slotPartURLChanged (KParts::ReadOnlyPart *) |
Private Member Functions | |
void | fillToolViewsMenu (EView eView) |
Fills the show-hide menu for a tool view (output or tree view). | |
void | setWindowMenu (QPopupMenu *menu) |
Allows to override kmdi default "Window" menu. | |
virtual bool | queryClose () |
virtual bool | queryExit () |
KMdiChildView * | wrapper (QWidget *view, const QString &name) |
Creates a wrapper of type KMdiChildView for the given view. | |
void | createStatusBar () |
void | createFramework () |
void | createActions () |
This function adds a number of actions to the KActionCollection of the base class KXMLGUIClient. | |
void | saveSettings () |
void | saveMDISettings () |
void | loadMDISettings () |
void | clearWindowMenu () |
void | checkAndFixToolViewObjectName (QWidget *view, const QString &shortName) |
Private Attributes | |
QMap< QWidget *, KMdiChildView * > | m_widgetMap |
Key: QWidget* --> Data:KMdiChildView*. Contains the same pairs as m_childViewMap. | |
QMap< KMdiChildView *, QWidget * > | m_childViewMap |
Key: KMdiChildView* --> Data:QWidget*. Contains the same pairs as m_widgetMap. | |
QDict< KMdiChildView > | m_captionDict |
Key: caption string --> Data:KMdiChildView*. | |
QPtrList< QWidget > | m_outputViews |
Lists all output tool views. | |
QPtrList< QWidget > | m_selectViews |
Lists all select tool views. | |
QPtrList< KMdiChildView > | m_partViews |
Lists all part views. | |
QPtrList< QWidget > | m_unavailableViews |
Lists all tool views set to unavailable. | |
bool | m_myWindowsReady |
true: kdevelop s windows are ready | |
ViewMenuAction * | m_pShowOutputViews |
Shows or hides all output views. | |
ViewMenuAction * | m_pShowTreeViews |
Shows or hides all tree views. | |
KActionMenu * | m_pTreeToolViewsMenu |
Menu for changing the show-hide state of the tree tool views. | |
KActionMenu * | m_pOutputToolViewsMenu |
Menu for changing the show-hide state of the output tool views. | |
QString | m_CurrentOutputTab |
Holds the previously active output tool view, if all output views have been hidden. | |
QString | m_CurrentTreeTab |
Holds the previously active tree tool view, if all output views have been hidden. | |
KToggleAction * | m_toggleViewbar |
MainWindowShare * | m_pMainWindowShare |
QValueList< int > | m_windowMenus |
bool | m_bUiModeSwitchPending |
bool | m_bRemoveViewPending |
int | mdiStyle |
Detailed Description
Handles the multiple document interface modes..
Definition at line 42 of file mainwindow.h.
Member Enumeration Documentation
|
Definition at line 80 of file mainwindow.h. |
Constructor & Destructor Documentation
|
|
Definition at line 325 of file mainwindow.cpp. References TopLevel::invalidateInstance(). |
Member Function Documentation
|
this allows to order the mainwindow to do anything special, we use it to trigger the execution of a hack
Reimplemented from KDevMainWindow. Definition at line 1349 of file mainwindow.cpp. References KMdiChildFrm::captionHeight(), KMdiMainFrm::createIterator(), KMdiChildView::isAttached(), KMdiMainFrm::isInMaximizedChildFrmMode(), KMdiMainFrm::mdiMode(), and KMdiChildView::mdiParent(). |
|
Definition at line 471 of file mainwindow.cpp. Referenced by embedOutputView(), embedSelectView(), and embedSelectViewRight(). |
|
Reimplemented from KMdiChildView to handle save prompt.
Reimplemented from KMdiMainFrm. Definition at line 766 of file mainwindow.cpp. References PartController::getInstance(), and m_childViewMap. |
|
Definition at line 1417 of file mainwindow.cpp. References m_windowMenus. Referenced by fillWindowMenu(). |
|
This function adds a number of actions to the KActionCollection of the base class KXMLGUIClient. They are added to menus by means of the GUI-File kdevelopui.rc. Definition at line 364 of file mainwindow.cpp. References MainWindowShare::createActions(), ViewMenuActionPrivateData::eView, fillOutputToolViewsMenu(), fillTreeToolViewsMenu(), gotoFirstWindow(), gotoLastWindow(), gotoNextWindow(), gotoPreviousWindow(), KActionMenu::insert(), m_pMainWindowShare, m_pOutputToolViewsMenu, m_pShowOutputViews, m_pShowTreeViews, m_pTreeToolViewsMenu, m_toggleViewbar, ViewMenuActionPrivateData::pChildView, ViewMenuActionPrivateData::pDockWidget, KActionMenu::popupMenu(), raiseEditor(), KAction::setEnabled(), KAction::setStatusText(), KAction::setText(), KAction::setToolTip(), KAction::setWhatsThis(), KStdAction::showToolbar(), KMdiMainFrm::showViewTaskBar(), slotToggleViewbar(), toggleToolDockBaseState(), and updateActionState(). Referenced by init(). |
|
Definition at line 353 of file mainwindow.cpp. References PartController::createInstance(), and KMdiMainFrm::setMenuForSDIModeSysButtons(). Referenced by init(). |
|
Definition at line 671 of file mainwindow.cpp. References m_pMainWindowShare, setCaption(), and MainWindowShare::slotGUICreated(). Referenced by init(). |
|
Definition at line 347 of file mainwindow.cpp. Referenced by init(). |
|
Embeds a view as output view in the bottom docking area.
Implements KDevMainWindow. Definition at line 551 of file mainwindow.cpp. References KMdiMainFrm::addToolWindow(), checkAndFixToolViewObjectName(), length(), and m_outputViews. |
|
Embeds a view as part view in the main working area at position (0,0).
Implements KDevMainWindow. Definition at line 443 of file mainwindow.cpp. References KMdiMainFrm::addWindow(), KMdiMainFrm::isInMaximizedChildFrmMode(), m_captionDict, m_partViews, KMdiMainFrm::mdiMode(), KMdiChildView::mdiParent(), and wrapper(). |
|
Embeds a view as select view in the left docking area.
Implements KDevMainWindow. Definition at line 497 of file mainwindow.cpp. References KMdiMainFrm::addToolWindow(), checkAndFixToolViewObjectName(), kdDebug(), length(), m_selectViews, and KMdiMainFrm::mdiMode(). Referenced by embedSelectViewRight(). |
|
We do not have a right pane so this is just a wrapper to embedSelectView(.
Implements KDevMainWindow. Definition at line 522 of file mainwindow.cpp. References KMdiMainFrm::addToolWindow(), checkAndFixToolViewObjectName(), embedSelectView(), kdDebug(), length(), m_selectViews, and KMdiMainFrm::mdiMode(). |
|
Fills the show-hide menu for the output views.
Definition at line 927 of file mainwindow.cpp. References fillToolViewsMenu(), and OutputView. Referenced by createActions(). |
|
Fills the show-hide menu for a tool view (output or tree view). The menu has the following entries:
Definition at line 948 of file mainwindow.cpp. References ToolDockBaseState::dockBaseIsHidden, ViewMenuActionPrivateData::eView, ToolDockBaseState::hasDockBaseWindow, KActionMenu::insert(), m_myWindowsReady, m_unavailableViews, ToolDockBaseState::noViews, ViewMenuActionPrivateData::pChildView, ViewMenuActionPrivateData::pDockWidget, KActionMenu::popupMenu(), KDockWidget::tabPageLabel(), toggleSingleToolWin(), and ToolWindowState::viewMenuChecked. Referenced by fillOutputToolViewsMenu(), and fillTreeToolViewsMenu(). |
|
Fills the show-hide menu for the tree views.
Definition at line 933 of file mainwindow.cpp. References fillToolViewsMenu(), and TreeView. Referenced by createActions(). |
|
Reimplemented from KMdiMainFrm.
Reimplemented from KMdiMainFrm. Definition at line 793 of file mainwindow.cpp. References KMdiMainFrm::cascadeMaximized(), KMdiMainFrm::cascadeWindows(), clearWindowMenu(), KMdiMainFrm::expandHorizontal(), KMdiMainFrm::expandVertical(), getPartFromWidget(), KMdiChildView::getTimeStamp(), KMdiMainFrm::iconifyAllViews(), KMdiChildView::isToolView(), m_childViewMap, m_windowMenus, KURL::prettyURL(), KMdiMainFrm::tileAnodine(), KMdiMainFrm::tilePragma(), KMdiMainFrm::tileVertically(), and KParts::ReadOnlyPart::url(). Referenced by setWindowMenu(). |
|
Definition at line 1168 of file mainwindow.cpp. References KParts::Part::widget(). Referenced by fillWindowMenu(). |
|
Definition at line 781 of file mainwindow.cpp. References KMdiMainFrm::activateFirstWin(). Referenced by createActions(). |
|
Definition at line 786 of file mainwindow.cpp. References KMdiMainFrm::activateLastWin(). Referenced by createActions(). |
|
Definition at line 771 of file mainwindow.cpp. References KMdiMainFrm::activateNextWin(). Referenced by createActions(). |
|
Definition at line 776 of file mainwindow.cpp. References KMdiMainFrm::activatePrevWin(). Referenced by createActions(). |
|
Implements KDevMainWindow. Definition at line 731 of file mainwindow.cpp. |
|
|
Definition at line 689 of file mainwindow.cpp. References KConfigBase::readBoolEntry(), KConfigBase::readNumEntry(), KMdiMainFrm::setEnableMaximizedChildFrmMode(), KConfigBase::setGroup(), switchToIDEAlMode(), switchToTabPageMode(), and switchToToplevelMode(). Referenced by loadSettings(). |
|
Implements KDevMainWindow. Definition at line 681 of file mainwindow.cpp. References ProjectManager::getInstance(), loadMDISettings(), and ProjectManager::loadSettings(). |
|
Implements KDevMainWindow. Definition at line 665 of file mainwindow.cpp. |
|
Implements KDevMainWindow. Definition at line 660 of file mainwindow.cpp. |
|
Returns a pointer to the KMainWindow base class of this.
Implements KDevMainWindow. Definition at line 341 of file mainwindow.cpp. Referenced by init(). |
|
Implements KDevMainWindow. Definition at line 736 of file mainwindow.cpp. |
|
Definition at line 330 of file mainwindow.cpp. References Core::getInstance(), and Core::queryClose(). |
|
Definition at line 335 of file mainwindow.cpp. References saveSettings(). |
|
Definition at line 1455 of file mainwindow.cpp. References KParts::PartManager::activePart(), API::getInstance(), k_funcinfo, kdDebug(), and API::partController(). Referenced by createActions(). |
|
Implements KDevMainWindow. Definition at line 643 of file mainwindow.cpp. References m_myWindowsReady, m_widgetMap, and wrapper(). |
|
Implements KDevMainWindow. Definition at line 592 of file mainwindow.cpp. References KMdiMainFrm::closeWindow(), KMdiMainFrm::deleteToolWindow(), kdDebug(), m_bRemoveViewPending, m_captionDict, m_childViewMap, m_outputViews, m_partViews, m_selectViews, m_widgetMap, KMdiMainFrm::removeWindowFromMdi(), and wrapper(). |
|
Reimplemented from QWidget just to get the info, that the window will now be shown.
Reimplemented from KMdiMainFrm. Definition at line 760 of file mainwindow.cpp. References KMdiMainFrm::resizeEvent(), and KMdiMainFrm::setSysButtonsAtMenuPosition(). |
|
Restore the previously saved view tab/window to the output view/window.
Implements KDevMainWindow. Definition at line 1399 of file mainwindow.cpp. |
|
Definition at line 749 of file mainwindow.cpp. References KMdiMainFrm::isInMaximizedChildFrmMode(), KMdiMainFrm::mdiMode(), mdiStyle, KConfigBase::setGroup(), and KConfigBase::writeEntry(). Referenced by saveSettings(), switchToChildframeMode(), switchToIDEAlMode(), switchToTabPageMode(), and switchToToplevelMode(). |
|
Definition at line 741 of file mainwindow.cpp. References ProjectManager::getInstance(), saveMDISettings(), and ProjectManager::saveSettings(). Referenced by queryExit(). |
|
Definition at line 1434 of file mainwindow.cpp. References API::getInstance(), KDevApi::project(), and KDevProject::projectName(). Referenced by createGUI(). |
|
Reimplemented from KDevMainWindow. Definition at line 1332 of file mainwindow.cpp. References switchToChildframeMode(), switchToIDEAlMode(), switchToTabPageMode(), and switchToToplevelMode(). |
|
Implements KDevMainWindow. Definition at line 571 of file mainwindow.cpp. References m_unavailableViews, KDockWidget::makeDockVisible(), and KDockWidget::undock(). |
|
Allows to override kmdi default "Window" menu. This allows to use "Window" menu actions from KParts among with kmdi default window actions. Definition at line 1425 of file mainwindow.cpp. References fillWindowMenu(). Referenced by init(). |
|
Shows all tools views of a type (OutputView or TreeView.
Definition at line 1048 of file mainwindow.cpp. References ToolDockBaseState::dockBaseIsHidden, ViewMenuActionPrivateData::eView, m_myWindowsReady, m_outputViews, m_unavailableViews, ViewMenuActionPrivateData::pChildView, ViewMenuActionPrivateData::pDockWidget, toggleSingleToolWin(), toggleToolDockBaseState(), and ToolWindowState::viewMenuChecked. Referenced by toggleToolDockBaseState(). |
|
Definition at line 431 of file mainwindow.cpp. References KURL::fileName(), m_widgetMap, KMdiChildView::setMDICaption(), KParts::ReadOnlyPart::url(), and KParts::Part::widget(). Referenced by init(). |
|
Adds a tool view window to the output or tree views.
Definition at line 1244 of file mainwindow.cpp. References m_unavailableViews, and KDockWidget::undock(). Referenced by init(). |
|
Definition at line 1259 of file mainwindow.cpp. References KMdiChildView::attach(), KMdiChildView::detach(), KMdiChildView::isAttached(), m_captionDict, KMdiMainFrm::mdiMode(), KMdiChildView::minimize(), KMdiChildView::setInternalGeometry(), and KMdiChildView::setRestoreGeometry(). Referenced by init(). |
|
Definition at line 1297 of file mainwindow.cpp. References KMdiChildView::internalGeometry(), KMdiChildView::isAttached(), KMdiChildView::isMaximized(), KMdiChildView::isMinimized(), m_captionDict, KMdiMainFrm::mdiMode(), and KMdiChildView::restoreGeometry(). Referenced by init(). |
|
Definition at line 1327 of file mainwindow.cpp. References KMdiMainFrm::slot_toggleTaskBar(). Referenced by createActions(), switchToChildframeMode(), switchToIDEAlMode(), switchToTabPageMode(), and switchToToplevelMode(). |
|
Definition at line 319 of file mainwindow.cpp. References PartController::getInstance(), and kdDebug(). Referenced by init(). |
|
Store the currently active view tab/window of the output view/window.
Implements KDevMainWindow. Definition at line 1379 of file mainwindow.cpp. |
|
Reimplemented from KMdiMainFrm to save chosen mode.
Reimplemented from KMdiMainFrm. Definition at line 1196 of file mainwindow.cpp. References m_bUiModeSwitchPending, m_toggleViewbar, KMdiMainFrm::mdiMode(), saveMDISettings(), KAction::setEnabled(), slotToggleViewbar(), KMdiMainFrm::switchToChildframeMode(), and updateActionState(). Referenced by setUserInterfaceMode(). |
|
Reimplemented from KMdiMainFrm to save chosen mode.
Reimplemented from KMdiMainFrm. Definition at line 1228 of file mainwindow.cpp. References KMdiMainFrm::isViewTaskBarOn(), m_bUiModeSwitchPending, m_toggleViewbar, saveMDISettings(), KAction::setEnabled(), slotToggleViewbar(), KMdiMainFrm::switchToIDEAlMode(), and updateActionState(). Referenced by loadMDISettings(), and setUserInterfaceMode(). |
|
Reimplemented from KMdiMainFrm to save chosen mode.
Reimplemented from KMdiMainFrm. Definition at line 1212 of file mainwindow.cpp. References KMdiMainFrm::isViewTaskBarOn(), m_bUiModeSwitchPending, m_toggleViewbar, saveMDISettings(), KAction::setEnabled(), slotToggleViewbar(), KMdiMainFrm::switchToTabPageMode(), and updateActionState(). Referenced by loadMDISettings(), and setUserInterfaceMode(). |
|
Reimplemented from KMdiMainFrm to save chosen mode.
Reimplemented from KMdiMainFrm. Definition at line 1180 of file mainwindow.cpp. References m_bUiModeSwitchPending, m_toggleViewbar, KMdiMainFrm::mdiMode(), saveMDISettings(), KAction::setEnabled(), slotToggleViewbar(), KMdiMainFrm::switchToToplevelMode(), and updateActionState(). Referenced by loadMDISettings(), and setUserInterfaceMode(). |
|
Changes the show-hide state of a single tree or output tool window.
Definition at line 1089 of file mainwindow.cpp. References KDockWidget::changeHideShowState(), ViewMenuActionPrivateData::eView, first(), m_outputViews, m_partViews, KDockWidget::manualDock(), KDockWidget::mayBeHide(), KMdiMainFrm::mdiMode(), ToolDockBaseState::noViews, OutputView, KDockWidget::parentDockTabGroup(), ViewMenuActionPrivateData::pChildView, and ViewMenuActionPrivateData::pDockWidget. Referenced by fillToolViewsMenu(), and showAllToolWin(). |
|
Changes the show-hide state of a tool dock base (either output or tree tool view).
Definition at line 1020 of file mainwindow.cpp. References KDockWidget::dockBack(), ToolDockBaseState::dockBaseIsHidden, ToolDockBaseState::dockBaseIsVisible, ToolDockBaseState::dockBaseMayBeDockBack, ViewMenuActionPrivateData::eView, m_myWindowsReady, m_outputViews, ToolDockBaseState::pDockBaseWindow, KDockWidget::show(), showAllToolWin(), and KDockWidget::undock(). Referenced by createActions(), and showAllToolWin(). |
|
Updates the toggle state of the actions to show or hide the tool windows.
Definition at line 1008 of file mainwindow.cpp. References ToolDockBaseState::dockBaseIsVisible, m_bUiModeSwitchPending, m_outputViews, m_pShowOutputViews, m_pShowTreeViews, m_selectViews, and KToggleAction::setChecked(). Referenced by createActions(), switchToChildframeMode(), switchToIDEAlMode(), switchToTabPageMode(), and switchToToplevelMode(). |
|
Creates a wrapper of type KMdiChildView for the given view.
After a call to wrapper(), the given view is included in the frame of kdevelop in the following way:
Definition at line 417 of file mainwindow.cpp. References KMdiMainFrm::createWrapper(), length(), m_childViewMap, and m_widgetMap. Referenced by embedPartView(), raiseView(), and removeView(). |
Member Data Documentation
|
Definition at line 210 of file mainwindow.h. Referenced by removeView(). |
|
Definition at line 209 of file mainwindow.h. Referenced by switchToChildframeMode(), switchToIDEAlMode(), switchToTabPageMode(), switchToToplevelMode(), and updateActionState(). |
|
Key: caption string --> Data:KMdiChildView*.
Definition at line 188 of file mainwindow.h. Referenced by embedPartView(), removeView(), slotRestoreAdditionalViewProperties(), and slotSaveAdditionalViewProperties(). |
|
Key: KMdiChildView* --> Data:QWidget*.
Definition at line 186 of file mainwindow.h. Referenced by childWindowCloseRequest(), fillWindowMenu(), removeView(), and wrapper(). |
|
Holds the previously active output tool view, if all output views have been hidden.
Definition at line 201 of file mainwindow.h. |
|
Holds the previously active tree tool view, if all output views have been hidden.
Definition at line 202 of file mainwindow.h. |
|
true: kdevelop s windows are ready
Definition at line 196 of file mainwindow.h. Referenced by fillToolViewsMenu(), raiseView(), showAllToolWin(), and toggleToolDockBaseState(). |
|
Lists all output tool views.
Definition at line 190 of file mainwindow.h. Referenced by embedOutputView(), removeView(), showAllToolWin(), toggleSingleToolWin(), toggleToolDockBaseState(), and updateActionState(). |
|
Lists all part views.
Definition at line 192 of file mainwindow.h. Referenced by embedPartView(), removeView(), and toggleSingleToolWin(). |
|
Definition at line 205 of file mainwindow.h. Referenced by createActions(), createGUI(), init(), and MainWindow(). |
|
Menu for changing the show-hide state of the output tool views.
Definition at line 200 of file mainwindow.h. Referenced by createActions(). |
|
Shows or hides all output views.
Definition at line 197 of file mainwindow.h. Referenced by createActions(), and updateActionState(). |
|
Shows or hides all tree views.
Definition at line 198 of file mainwindow.h. Referenced by createActions(), and updateActionState(). |
|
Menu for changing the show-hide state of the tree tool views.
Definition at line 199 of file mainwindow.h. Referenced by createActions(). |
|
Lists all select tool views.
Definition at line 191 of file mainwindow.h. Referenced by embedSelectView(), embedSelectViewRight(), removeView(), and updateActionState(). |
|
Definition at line 203 of file mainwindow.h. Referenced by createActions(), switchToChildframeMode(), switchToIDEAlMode(), switchToTabPageMode(), and switchToToplevelMode(). |
|
Lists all tool views set to unavailable.
Definition at line 193 of file mainwindow.h. Referenced by fillToolViewsMenu(), setViewAvailable(), showAllToolWin(), and slotReactToProjectOpened(). |
|
Key: QWidget* --> Data:KMdiChildView*.
Definition at line 184 of file mainwindow.h. Referenced by raiseView(), removeView(), slotPartURLChanged(), and wrapper(). |
|
Definition at line 207 of file mainwindow.h. Referenced by clearWindowMenu(), and fillWindowMenu(). |
|
Definition at line 212 of file mainwindow.h. Referenced by MainWindow(), and saveMDISettings(). |
The documentation for this class was generated from the following files:
- src/mainwindow.h
- src/mainwindow.cpp