Kexi API Documentation (2.0 alpha)

KexiMainWindowImpl::Private Class Reference

#include <keximainwindowimpl_p.h>

List of all members.

Public Types

enum  PendingJobType { NoJob = 0, DialogOpeningJob, DialogClosingJob }
 Job type. Currently used for marking items as being opened or closed. More...
enum  ActionToExecuteWhenPendingJobsAreFinished { NoAction, QuitAction, CloseProjectAction }
 Used in executeActionWhenPendingJobsAreFinished(). More...

Public Member Functions

 Private (KexiMainWindowImpl *w)
 ~Private ()
KexiDialogBaseopenedDialogFor (const KexiPart::Item *item, PendingJobType &pendingType)
KexiDialogBaseopenedDialogFor (int identifier, PendingJobType &pendingType)
void insertDialog (KexiDialogBase *dlg)
void addItemToPendingDialogs (const KexiPart::Item *item, PendingJobType jobType)
bool pendingDialogsExist ()
void updateDialogId (KexiDialogBase *dlg, int oldItemID)
void removeDialog (int identifier)
void removePendingDialog (int identifier)
uint openedDialogsCount ()
void clearDialogs ()
 Used in KexiMainWindowImple::closeProject().
void toggleLastCheckedMode ()
void showStartProcessMsg (const QStringList &args)
void hideMenuItem (const QString &menuName, const QString &itemText, bool alsoSeparator)
void disableMenuItem (const QString &menuName, const QString &itemText)
void updatePropEditorVisibility (int viewMode)
void restoreNavigatorWidth ()
template<class type>
type * openedCustomObjectsForItem (KexiPart::Item *item, const char *name)
void addOpenedCustomObjectForItem (KexiPart::Item *item, QObject *object, const char *name)
void executeActionWhenPendingJobsAreFinished ()

Public Attributes

KexiMainWindowImplwnd
KexiStatusBarstatusBar
KexiProjectprj
KConfig * config
KexiContextHelpctxHelp
KexiBrowsernav
KTabWidgetpropEditorTabWidget
QGuardedPtr< KexiPart::PartpartForPreviouslySetupPropertyPanelTabs
 poits to kexi part which has been previously used to setup proppanel's tabs using KexiPart::setupCustomPropertyPanelTabs(), in updateCustomPropertyPanelTabs().
QMap< KexiPart::Part *, int > recentlySelectedPropertyPanelPages
QGuardedPtr< KexiPropertyEditorViewpropEditor
QGuardedPtr< KoProperty::Set > propBuffer
KXMLGUIClient * curDialogGUIClient
KXMLGUIClient * curDialogViewGUIClient
KXMLGUIClient * closedDialogGUIClient
KXMLGUIClient * closedDialogViewGUIClient
QGuardedPtr< KexiDialogBasecurDialog
KexiNameDialognameDialog
QTimer timer
QAsciiDict< QPopupMenu > popups
QPopupMenu * createMenu
QString origAppCaption
QString appCaptionPrefix
KActionMenu * dummy_action
KActionaction_save
 project menu
KActionaction_save_as
 project menu
KActionaction_close
 project menu
KActionaction_project_properties
 project menu
KActionaction_open_recent_more
 project menu
KActionaction_project_relations
 project menu
KActionaction_project_import_data_table
 project menu
KActionaction_project_export_data_table
 project menu
KActionaction_project_print
 project menu
KActionaction_project_print_preview
 project menu
KActionaction_project_print_setup
 project menu
KActionMenu * action_open_recent
KActionMenu * action_show_other
int action_open_recent_projects_title_id
int action_open_recent_connections_title_id
KActionaction_edit_delete
 edit menu
KActionaction_edit_delete_row
 edit menu
KActionaction_edit_cut
 edit menu
KActionaction_edit_copy
 edit menu
KActionaction_edit_paste
 edit menu
KActionaction_edit_select_all
 edit menu
KActionaction_edit_undo
 edit menu
KActionaction_edit_redo
 edit menu
KActionaction_edit_insert_empty_row
 edit menu
KActionaction_edit_edititem
 edit menu
KActionaction_edit_clear_table
 edit menu
KActionaction_edit_paste_special_data_table
 edit menu
KActionaction_edit_copy_special_data_table
 edit menu
KActionaction_view_nav
 view menu
KActionaction_view_propeditor
 view menu
KActionaction_view_mainarea
 view menu
KRadioAction * action_view_data_mode
KRadioAction * action_view_design_mode
KRadioAction * action_view_text_mode
QIntDict< KRadioAction > actions_for_view_modes
KToggleActionaction_show_helper
KActionaction_data_save_row
 data menu
KActionaction_data_cancel_row_changes
KActionaction_data_execute
KActionaction_format_font
 format menu
KActionaction_tools_data_migration
 tools menu
KActionaction_tools_compact_database
 tools menu
KActionMenu * action_tools_scripts
KActionaction_window_next
 window menu
KActionaction_window_previous
 window menu
KActionaction_configure
 settings menu
KMdiToolViewAccessor * navToolWindow
 for dock windows
KMdiToolViewAccessor * propEditorToolWindow
QGuardedPtr< QWidgetfocus_before_popup
int privateIDCounter
 counter: ID for private "document" like Relations window
bool block_KMdiMainFrm_eventFilter: 1
bool forceDialogClosing: 1
 Set to true only in destructor, used by closeDialog() to know if user can cancel dialog closing.
bool insideCloseDialog: 1
 Indicates that we're inside closeDialog() method - to avoid inf.
ActionToExecuteWhenPendingJobsAreFinished actionToExecuteWhenPendingJobsAreFinished
QPtrList< KexiDialogBasewindowsToClose
 Used for delayed dialogs closing for 'close all'.
QIntDict< KexiDialogBasepageSetupDialogs
 Opened page setup dialogs, used by printOrPrintPreviewForItem().
QMap< int, int > pageSetupDialogItemID2dataItemID_map
bool showImportantInfoOnStartup: 1
 Used in several places to show info dialog at startup (only once per session) before displaying other stuff.
bool userMode: 1
 Indicates if project is started in User Mode.
bool isProjectNavigatorVisible: 1
 Indicates if project navigator should be visible.
bool maximizeFirstOpenedChildFrm: 1
 Used on opening 1st child window.
bool forceShowProjectNavigatorOnCreation: 1
 Set in restoreSettings() and used in initNavigator() to customize navigator visibility on startup.
bool forceHideProjectNavigatorOnCreation: 1
bool navWasVisibleBeforeProjectClosing: 1
bool saveSettingsForShowProjectNavigator: 1
QAsciiDict< QObject > m_openedCustomObjectsForItem
 Used by openedCustomObjectsForItem() and addOpenedCustomObjectForItem().
int propEditorDockSeparatorPos
int navDockSeparatorPos
bool wasAutoOpen
bool dialogExistedBeforeCloseProject
KMdi::MdiMode mdiModeToSwitchAfterRestart

Protected Attributes

KexiDialogDict dialogs
QMap< int, PendingJobTypependingDialogs
 part item identifiers for dialogs whoose opening has been started


Member Enumeration Documentation

enum KexiMainWindowImpl::Private::ActionToExecuteWhenPendingJobsAreFinished
 

Used in executeActionWhenPendingJobsAreFinished().

Enumeration values:
NoAction 
QuitAction 
CloseProjectAction 

Definition at line 439 of file keximainwindowimpl_p.h.

enum KexiMainWindowImpl::Private::PendingJobType
 

Job type. Currently used for marking items as being opened or closed.

Enumeration values:
NoJob 
DialogOpeningJob 
DialogClosingJob 

Definition at line 93 of file keximainwindowimpl_p.h.


Constructor & Destructor Documentation

KexiMainWindowImpl::Private::Private KexiMainWindowImpl w  )  [inline]
 

Definition at line 32 of file keximainwindowimpl_p.h.

References action_open_recent_connections_title_id, action_open_recent_projects_title_id, action_view_mainarea, action_view_nav, action_view_propeditor, actionToExecuteWhenPendingJobsAreFinished, block_KMdiMainFrm_eventFilter, closedDialogGUIClient, closedDialogViewGUIClient, createMenu, curDialog, curDialogGUIClient, curDialogViewGUIClient, dialogExistedBeforeCloseProject, dummy_action, focus_before_popup, forceDialogClosing, forceHideProjectNavigatorOnCreation, forceShowProjectNavigatorOnCreation, insideCloseDialog, m_openedCustomObjectsForItem, maximizeFirstOpenedChildFrm, mdiModeToSwitchAfterRestart, nameDialog, nav, navDockSeparatorPos, navToolWindow, navWasVisibleBeforeProjectClosing, NoAction, privateIDCounter, prj, propEditor, propEditorDockSeparatorPos, propEditorTabWidget, propEditorToolWindow, saveSettingsForShowProjectNavigator, showImportantInfoOnStartup, userMode, wasAutoOpen, and wnd.

KexiMainWindowImpl::Private::~Private  )  [inline]
 

Definition at line 88 of file keximainwindowimpl_p.h.


Member Function Documentation

void KexiMainWindowImpl::Private::addItemToPendingDialogs const KexiPart::Item item,
PendingJobType  jobType
[inline]
 

Definition at line 140 of file keximainwindowimpl_p.h.

References KexiPart::Item::identifier(), and pendingDialogs.

Referenced by KexiMainWindowImpl::closeDialog(), and KexiMainWindowImpl::openObject().

void KexiMainWindowImpl::Private::addOpenedCustomObjectForItem KexiPart::Item item,
QObject *  object,
const char *  name
[inline]
 

Definition at line 327 of file keximainwindowimpl_p.h.

References m_openedCustomObjectsForItem.

Referenced by KexiMainWindowImpl::printPreviewForItem().

void KexiMainWindowImpl::Private::clearDialogs  )  [inline]
 

Used in KexiMainWindowImple::closeProject().

Definition at line 180 of file keximainwindowimpl_p.h.

References dialogs, and pendingDialogs.

Referenced by KexiMainWindowImpl::closeProject().

void KexiMainWindowImpl::Private::disableMenuItem const QString menuName,
const QString itemText
[inline]
 

Definition at line 244 of file keximainwindowimpl_p.h.

References popups.

Referenced by KexiMainWindowImpl::KexiMainWindowImpl().

void KexiMainWindowImpl::Private::executeActionWhenPendingJobsAreFinished  )  [inline]
 

Definition at line 446 of file keximainwindowimpl_p.h.

References actionToExecuteWhenPendingJobsAreFinished, KexiMainWindowImpl::closeProject(), CloseProjectAction, NoAction, QuitAction, and wnd.

Referenced by KexiMainWindowImpl::closeDialog(), and KexiMainWindowImpl::openObject().

void KexiMainWindowImpl::Private::hideMenuItem const QString menuName,
const QString itemText,
bool  alsoSeparator
[inline]
 

Definition at line 225 of file keximainwindowimpl_p.h.

References popups.

void KexiMainWindowImpl::Private::insertDialog KexiDialogBase dlg  )  [inline]
 

Definition at line 131 of file keximainwindowimpl_p.h.

References dialogs, and pendingDialogs.

Referenced by KexiMainWindowImpl::registerChild().

template<class type>
type* KexiMainWindowImpl::Private::openedCustomObjectsForItem KexiPart::Item item,
const char *  name
[inline]
 

Definition at line 316 of file keximainwindowimpl_p.h.

References KexiPart::Item::identifier(), and m_openedCustomObjectsForItem.

Referenced by KexiMainWindowImpl::printPreviewForItem().

KexiDialogBase* KexiMainWindowImpl::Private::openedDialogFor int  identifier,
PendingJobType pendingType
[inline]
 

Definition at line 104 of file keximainwindowimpl_p.h.

References DialogOpeningJob, dialogs, NoJob, and pendingDialogs.

KexiDialogBase* KexiMainWindowImpl::Private::openedDialogFor const KexiPart::Item item,
PendingJobType pendingType
[inline]
 

Definition at line 99 of file keximainwindowimpl_p.h.

References KexiPart::Item::identifier().

Referenced by KexiMainWindowImpl::activateWindow(), KexiMainWindowImpl::closeObject(), KexiMainWindowImpl::openObject(), KexiMainWindowImpl::openObjectFromNavigator(), KexiMainWindowImpl::printActionForItem(), KexiMainWindowImpl::removeObject(), and KexiMainWindowImpl::slotObjectRenamed().

uint KexiMainWindowImpl::Private::openedDialogsCount  )  [inline]
 

Definition at line 174 of file keximainwindowimpl_p.h.

References dialogs.

Referenced by KexiMainWindowImpl::childClosed(), KexiMainWindowImpl::closeDialog(), and KexiMainWindowImpl::closeProject().

bool KexiMainWindowImpl::Private::pendingDialogsExist  )  [inline]
 

Definition at line 145 of file keximainwindowimpl_p.h.

References pendingDialogs.

Referenced by KexiMainWindowImpl::closeDialog(), KexiMainWindowImpl::closeProject(), KexiMainWindowImpl::openObject(), KexiMainWindowImpl::queryClose(), and KexiMainWindowImpl::renameObject().

void KexiMainWindowImpl::Private::removeDialog int  identifier  )  [inline]
 

Definition at line 162 of file keximainwindowimpl_p.h.

References dialogs.

Referenced by KexiMainWindowImpl::childClosed(), and KexiMainWindowImpl::closeDialog().

void KexiMainWindowImpl::Private::removePendingDialog int  identifier  )  [inline]
 

Definition at line 168 of file keximainwindowimpl_p.h.

References pendingDialogs.

Referenced by KexiMainWindowImpl::childClosed(), KexiMainWindowImpl::closeDialog(), and KexiMainWindowImpl::openObject().

void KexiMainWindowImpl::Private::restoreNavigatorWidth  )  [inline]
 

Definition at line 283 of file keximainwindowimpl_p.h.

References config, nav, KDockSplitter::setSeparatorPosInPercent(), wasAutoOpen, and wnd.

Referenced by KexiMainWindowImpl::slotAutoOpenObjectsLater().

void KexiMainWindowImpl::Private::showStartProcessMsg const QStringList &  args  )  [inline]
 

Definition at line 219 of file keximainwindowimpl_p.h.

References KEXI_APP_NAME, KexiGUIMessageHandler::showErrorMessage(), and wnd.

Referenced by KexiMainWindowImpl::openProjectInExternalKexiInstance(), and KexiMainWindowImpl::slotProjectNew().

void KexiMainWindowImpl::Private::toggleLastCheckedMode  )  [inline]
 

Toggles last checked view mode radio action, if available.

Definition at line 189 of file keximainwindowimpl_p.h.

References actions_for_view_modes, and curDialog.

Referenced by KexiMainWindowImpl::switchToViewMode().

void KexiMainWindowImpl::Private::updateDialogId KexiDialogBase dlg,
int  oldItemID
[inline]
 

Definition at line 153 of file keximainwindowimpl_p.h.

References dialogs, KexiDialogBase::id(), and pendingDialogs.

Referenced by KexiMainWindowImpl::saveObject().

void KexiMainWindowImpl::Private::updatePropEditorVisibility int  viewMode  )  [inline]
 

Definition at line 259 of file keximainwindowimpl_p.h.

References Kexi::DataViewMode, propEditor, propEditorTabWidget, propEditorToolWindow, and wnd.

Referenced by KexiMainWindowImpl::activeWindowChanged(), KexiMainWindowImpl::closeDialog(), KexiMainWindowImpl::openObject(), KexiMainWindowImpl::slotAutoOpenObjectsLater(), and KexiMainWindowImpl::switchToViewMode().


Member Data Documentation

KAction * KexiMainWindowImpl::Private::action_close
 

project menu

Definition at line 369 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KAction* KexiMainWindowImpl::Private::action_configure
 

settings menu

Definition at line 415 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::slotShowSettings().

KAction* KexiMainWindowImpl::Private::action_data_cancel_row_changes
 

Definition at line 401 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KAction* KexiMainWindowImpl::Private::action_data_execute
 

Definition at line 402 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KAction* KexiMainWindowImpl::Private::action_data_save_row
 

data menu

Definition at line 400 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::printActionForItem().

KAction * KexiMainWindowImpl::Private::action_edit_clear_table
 

edit menu

Definition at line 382 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KAction * KexiMainWindowImpl::Private::action_edit_copy
 

edit menu

Definition at line 382 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KAction * KexiMainWindowImpl::Private::action_edit_copy_special_data_table
 

edit menu

Definition at line 382 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KAction * KexiMainWindowImpl::Private::action_edit_cut
 

edit menu

Definition at line 382 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KAction* KexiMainWindowImpl::Private::action_edit_delete
 

edit menu

Definition at line 382 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KAction * KexiMainWindowImpl::Private::action_edit_delete_row
 

edit menu

Definition at line 382 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KAction * KexiMainWindowImpl::Private::action_edit_edititem
 

edit menu

Definition at line 382 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KAction * KexiMainWindowImpl::Private::action_edit_insert_empty_row
 

edit menu

Definition at line 382 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KAction * KexiMainWindowImpl::Private::action_edit_paste
 

edit menu

Definition at line 382 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KAction * KexiMainWindowImpl::Private::action_edit_paste_special_data_table
 

edit menu

Definition at line 382 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KAction * KexiMainWindowImpl::Private::action_edit_redo
 

edit menu

Definition at line 382 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KAction * KexiMainWindowImpl::Private::action_edit_select_all
 

edit menu

Definition at line 382 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KAction * KexiMainWindowImpl::Private::action_edit_undo
 

edit menu

Definition at line 382 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KAction* KexiMainWindowImpl::Private::action_format_font
 

format menu

Definition at line 405 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KActionMenu* KexiMainWindowImpl::Private::action_open_recent
 

Definition at line 376 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::slotProjectOpenRecentAboutToShow().

int KexiMainWindowImpl::Private::action_open_recent_connections_title_id
 

Definition at line 378 of file keximainwindowimpl_p.h.

Referenced by Private(), and KexiMainWindowImpl::slotProjectOpenRecentAboutToShow().

KAction * KexiMainWindowImpl::Private::action_open_recent_more
 

project menu

Definition at line 369 of file keximainwindowimpl_p.h.

int KexiMainWindowImpl::Private::action_open_recent_projects_title_id
 

Definition at line 378 of file keximainwindowimpl_p.h.

Referenced by Private(), and KexiMainWindowImpl::slotProjectOpenRecentAboutToShow().

KAction * KexiMainWindowImpl::Private::action_project_export_data_table
 

project menu

Definition at line 369 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KAction * KexiMainWindowImpl::Private::action_project_import_data_table
 

project menu

Definition at line 369 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KAction * KexiMainWindowImpl::Private::action_project_print
 

project menu

Definition at line 369 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KAction * KexiMainWindowImpl::Private::action_project_print_preview
 

project menu

Definition at line 369 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KAction * KexiMainWindowImpl::Private::action_project_print_setup
 

project menu

Definition at line 369 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KAction * KexiMainWindowImpl::Private::action_project_properties
 

project menu

Definition at line 369 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KAction * KexiMainWindowImpl::Private::action_project_relations
 

project menu

Definition at line 369 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KAction* KexiMainWindowImpl::Private::action_save
 

project menu

Definition at line 369 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KAction * KexiMainWindowImpl::Private::action_save_as
 

project menu

Definition at line 369 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KToggleAction* KexiMainWindowImpl::Private::action_show_helper
 

Definition at line 397 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KActionMenu * KexiMainWindowImpl::Private::action_show_other
 

Definition at line 376 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KAction * KexiMainWindowImpl::Private::action_tools_compact_database
 

tools menu

Definition at line 408 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KAction* KexiMainWindowImpl::Private::action_tools_data_migration
 

tools menu

Definition at line 408 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions().

KActionMenu* KexiMainWindowImpl::Private::action_tools_scripts
 

Definition at line 409 of file keximainwindowimpl_p.h.

KRadioAction* KexiMainWindowImpl::Private::action_view_data_mode
 

Definition at line 393 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), KexiMainWindowImpl::invalidateProjectWideActions(), and KexiMainWindowImpl::invalidateViewModeActions().

KRadioAction * KexiMainWindowImpl::Private::action_view_design_mode
 

Definition at line 393 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), KexiMainWindowImpl::invalidateProjectWideActions(), and KexiMainWindowImpl::invalidateViewModeActions().

KAction * KexiMainWindowImpl::Private::action_view_mainarea
 

view menu

Definition at line 392 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), KexiMainWindowImpl::invalidateProjectWideActions(), and Private().

KAction* KexiMainWindowImpl::Private::action_view_nav
 

view menu

Definition at line 392 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), KexiMainWindowImpl::invalidateProjectWideActions(), and Private().

KAction * KexiMainWindowImpl::Private::action_view_propeditor
 

view menu

Definition at line 392 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), KexiMainWindowImpl::invalidateProjectWideActions(), and Private().

KRadioAction * KexiMainWindowImpl::Private::action_view_text_mode
 

Definition at line 393 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::initActions(), KexiMainWindowImpl::invalidateProjectWideActions(), and KexiMainWindowImpl::invalidateViewModeActions().

KAction* KexiMainWindowImpl::Private::action_window_next
 

window menu

Definition at line 412 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::eventFilter(), KexiMainWindowImpl::fillWindowMenu(), KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

KAction * KexiMainWindowImpl::Private::action_window_previous
 

window menu

Definition at line 412 of file keximainwindowimpl_p.h.

Referenced by KexiMainWindowImpl::fillWindowMenu(), KexiMainWindowImpl::initActions(), and KexiMainWindowImpl::invalidateProjectWideActions().

QIntDict<KRadioAction> KexiMainWindowImpl::Private::actions_for_view_modes
 

Definition at line 394 of file k