summaryrefslogtreecommitdiff
path: root/src/frontend/displaywindow/cdisplaywindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/displaywindow/cdisplaywindow.h')
-rw-r--r--src/frontend/displaywindow/cdisplaywindow.h251
1 files changed, 124 insertions, 127 deletions
diff --git a/src/frontend/displaywindow/cdisplaywindow.h b/src/frontend/displaywindow/cdisplaywindow.h
index 733f06e..5a32f9f 100644
--- a/src/frontend/displaywindow/cdisplaywindow.h
+++ b/src/frontend/displaywindow/cdisplaywindow.h
@@ -39,190 +39,187 @@ class BtActionCollection;
* @author The BibleTime team
*/
-class CDisplayWindow : public QMainWindow, public CPointers
-{
- Q_OBJECT
-public:
- enum WriteWindowType
- {
- HTMLWindow = 1,
- PlainTextWindow = 2
- };
+class CDisplayWindow : public QMainWindow, public CPointers {
+ Q_OBJECT
+ public:
+ enum WriteWindowType {
+ HTMLWindow = 1,
+ PlainTextWindow = 2
+ };
- // Insert the keyboard accelerators of this window into the given KAccel object.
- static void insertKeyboardActions( BtActionCollection* const a );
+ // Insert the keyboard accelerators of this window into the given KAccel object.
+ static void insertKeyboardActions( BtActionCollection* const a );
- CMDIArea* mdi() const;
+ CMDIArea* mdi() const;
- // Returns the right window caption.
- const QString windowCaption();
+ // Returns the right window caption.
+ const QString windowCaption();
- // Returns the used modules as a QPtrList
- QList<CSwordModuleInfo*> modules();
+ // Returns the used modules as a QPtrList
+ QList<CSwordModuleInfo*> modules();
- // Store the settings of this window in the given CProfileWindow object.
- virtual void storeProfileSettings( Profile::CProfileWindow* profileWindow ) = 0;
+ // Store the settings of this window in the given CProfileWindow object.
+ virtual void storeProfileSettings( Profile::CProfileWindow* profileWindow ) = 0;
- // Store the settings of this window in the given profile window.
- virtual void applyProfileSettings( Profile::CProfileWindow* profileWindow ) = 0;
+ // Store the settings of this window in the given profile window.
+ virtual void applyProfileSettings( Profile::CProfileWindow* profileWindow ) = 0;
- // Set the window caption.
- virtual void setCaption( const QString& );
+ // Set the window caption.
+ virtual void setCaption( const QString& );
- // Sets the new filter options of this window.
- void setFilterOptions( CSwordBackend::FilterOptions& filterOptions );
+ // Sets the new filter options of this window.
+ void setFilterOptions( CSwordBackend::FilterOptions& filterOptions );
- // Sets the new display options for this window.
- void setDisplayOptions( const CSwordBackend::DisplayOptions& displayOptions );
+ // Sets the new display options for this window.
+ void setDisplayOptions( const CSwordBackend::DisplayOptions& displayOptions );
- // Returns the display options used by this display window.
- CSwordBackend::DisplayOptions& displayOptions();
+ // Returns the display options used by this display window.
+ CSwordBackend::DisplayOptions& displayOptions();
- // Returns the filter options used by this window.
- CSwordBackend::FilterOptions& filterOptions();
+ // Returns the filter options used by this window.
+ CSwordBackend::FilterOptions& filterOptions();
- // Set the ready status
- void setReady( const bool& ready );
+ // Set the ready status
+ void setReady( const bool& ready );
- // Returns true if the widget is ready for use.
- bool isReady() const;
+ // Returns true if the widget is ready for use.
+ bool isReady() const;
- // Returns true if the window may be closed.
- virtual bool queryClose();
+ // Returns true if the window may be closed.
+ virtual bool queryClose();
- // Returns the keychooser widget of this display window.
- CKeyChooser* keyChooser() const;
+ // Returns the keychooser widget of this display window.
+ CKeyChooser* keyChooser() const;
- // Sets the new sword key.
- void setKey( CSwordKey* key );
+ // Sets the new sword key.
+ void setKey( CSwordKey* key );
- // Returns the key of this display window.
- CSwordKey* key() const;
+ // Returns the key of this display window.
+ CSwordKey* key() const;
- // Initialize the window. Call this method from the outside, because calling this in the constructor is not possible!
- virtual bool init();
+ // Initialize the window. Call this method from the outside, because calling this in the constructor is not possible!
+ virtual bool init();
- // Sets the main toolbar.
- void setMainToolBar( QToolBar* bar );
+ // Sets the main toolbar.
+ void setMainToolBar( QToolBar* bar );
- // Sets the buttons toolbar.
- void setButtonsToolBar( QToolBar* bar );
+ // Sets the buttons toolbar.
+ void setButtonsToolBar( QToolBar* bar );
- // Returns the main toolbar.
- QToolBar* mainToolBar() const;
+ // Returns the main toolbar.
+ QToolBar* mainToolBar() const;
- // Returns the buttons toolbar.
- QToolBar* buttonsToolBar() const;
+ // Returns the buttons toolbar.
+ QToolBar* buttonsToolBar() const;
- // Initialize the toolbars
- virtual void initToolbars() = 0;
+ // Initialize the toolbars
+ virtual void initToolbars() = 0;
- // Returns the display settings button
- CDisplaySettingsButton* displaySettingsButton() const;
+ // Returns the display settings button
+ CDisplaySettingsButton* displaySettingsButton() const;
- // Sets the display settings button.
- void setDisplaySettingsButton( CDisplaySettingsButton* button );
+ // Sets the display settings button.
+ void setDisplaySettingsButton( CDisplaySettingsButton* button );
- virtual void setupPopupMenu() = 0;
+ virtual void setupPopupMenu() = 0;
- // Returns the display widget used by this implementation of CDisplayWindow.
- virtual CDisplay* displayWidget() const;
+ // Returns the display widget used by this implementation of CDisplayWindow.
+ virtual CDisplay* displayWidget() const;
- // Sets the display widget used by this display window.
- virtual void setDisplayWidget( CDisplay* newDisplay );
+ // Sets the display widget used by this display window.
+ virtual void setDisplayWidget( CDisplay* newDisplay );
- // Returns whether syncs to the active window are allowed at this time for this display window
- // @return boolean value whether sync is allowed
- virtual bool syncAllowed() const
- {
- return false;
- };
+ // Returns whether syncs to the active window are allowed at this time for this display window
+ // @return boolean value whether sync is allowed
+ virtual bool syncAllowed() const {
+ return false;
+ };
- BtActionCollection* actionCollection();
+ BtActionCollection* actionCollection();
-public slots:
+ public slots:
- // Lookup the specified key in the given module. If the module is not chosen withing
- // this display window create a new displaywindow with the right module in it.
- virtual void lookupModKey( const QString& module, const QString& key );
+ // Lookup the specified key in the given module. If the module is not chosen withing
+ // this display window create a new displaywindow with the right module in it.
+ virtual void lookupModKey( const QString& module, const QString& key );
- // Lookup the key in the chosen modules.
- virtual void lookupKey( const QString& key );
+ // Lookup the key in the chosen modules.
+ virtual void lookupKey( const QString& key );
- // Refresh the settings of this window.
- virtual void reload(CSwordBackend::SetupChangedReason reason);
+ // Refresh the settings of this window.
+ virtual void reload(CSwordBackend::SetupChangedReason reason);
-protected:
- friend class CMDIArea;
- friend class CBibleReadWindow;
+ protected:
+ friend class CMDIArea;
+ friend class CBibleReadWindow;
- CDisplayWindow(QList<CSwordModuleInfo*> modules, CMDIArea* parent);
- virtual ~CDisplayWindow();
+ CDisplayWindow(QList<CSwordModuleInfo*> modules, CMDIArea* parent);
+ virtual ~CDisplayWindow();
- // Initializes the intern keyboard actions.
- virtual void initActions();
+ // Initializes the intern keyboard actions.
+ virtual void initActions();
- // Sets the keychooser widget for this display window.
- void setKeyChooser( CKeyChooser* ck );
+ // Sets the keychooser widget for this display window.
+ void setKeyChooser( CKeyChooser* ck );
- // Returns the module chooser bar.
- CModuleChooserBar* moduleChooserBar() const;
+ // Returns the module chooser bar.
+ CModuleChooserBar* moduleChooserBar() const;
- // Lookup the given key.
- virtual void lookupSwordKey( CSwordKey* ) = 0;
+ // Lookup the given key.
+ virtual void lookupSwordKey( CSwordKey* ) = 0;
- // Sets the module chooser bar.
- void setModuleChooserBar( CModuleChooserBar* bar );
+ // Sets the module chooser bar.
+ void setModuleChooserBar( CModuleChooserBar* bar );
- // Sets the modules.
- void setModules( const QList<CSwordModuleInfo*>& modules );
+ // Sets the modules.
+ void setModules( const QList<CSwordModuleInfo*>& modules );
- // Initializes the signal / slot connections of this display window.
- virtual void initConnections() = 0;
+ // Initializes the signal / slot connections of this display window.
+ virtual void initConnections() = 0;
- // Initialize the view of this display window.
- virtual void initView() = 0;
+ // Initialize the view of this display window.
+ virtual void initView() = 0;
- // Returns the installed popup menu.
- QMenu* popup();
+ // Returns the installed popup menu.
+ QMenu* popup();
- virtual void closeEvent(QCloseEvent* e);
+ virtual void closeEvent(QCloseEvent* e);
-protected slots:
- virtual void modulesChanged();
+ protected slots:
+ virtual void modulesChanged();
- // Lookup the current key. Used to refresh the display.
- void lookup();
+ // Lookup the current key. Used to refresh the display.
+ void lookup();
- virtual void updatePopupMenu();
+ virtual void updatePopupMenu();
- void slotSearchInModules();
+ void slotSearchInModules();
- void printAll();
+ void printAll();
- void printAnchorWithText();
+ void printAnchorWithText();
- void setFocusKeyChooser();
+ void setFocusKeyChooser();
-private:
- BtActionCollection* m_actionCollection;
- CMDIArea* m_mdi;
+ private:
+ BtActionCollection* m_actionCollection;
+ CMDIArea* m_mdi;
- //we may only cache the module names bacause after a backend relaod the pointers are invalid!
- QStringList m_modules;
+ //we may only cache the module names bacause after a backend relaod the pointers are invalid!
+ QStringList m_modules;
- CSwordBackend::FilterOptions m_filterOptions;
- CSwordBackend::DisplayOptions m_displayOptions;
+ CSwordBackend::FilterOptions m_filterOptions;
+ CSwordBackend::DisplayOptions m_displayOptions;
- CDisplaySettingsButton* m_displaySettingsButton;
- CKeyChooser* m_keyChooser;
- CSwordKey* m_swordKey;
- bool m_isReady;
- CModuleChooserBar* m_moduleChooserBar;
- QToolBar* m_mainToolBar;
- QToolBar* m_buttonsToolBar;
- QMenu* m_popupMenu;
- CDisplay* m_displayWidget;
+ CDisplaySettingsButton* m_displaySettingsButton;
+ CKeyChooser* m_keyChooser;
+ CSwordKey* m_swordKey;
+ bool m_isReady;
+ CModuleChooserBar* m_moduleChooserBar;
+ QToolBar* m_mainToolBar;
+ QToolBar* m_buttonsToolBar;
+ QMenu* m_popupMenu;
+ CDisplay* m_displayWidget;
};
#endif