summaryrefslogtreecommitdiffstats
path: root/bibletime/frontend/displaywindow/cwritewindow.h
diff options
context:
space:
mode:
authortpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-10 05:14:00 +0000
committertpearson <tpearson@283d02a7-25f6-0310-bc7c-ecb5cbfe19da>2010-09-10 05:14:00 +0000
commitfa949b6b7fa553547f26305d4227e8baa0091c1f (patch)
tree9199255f7d3e0f276f6f53000f13fb0081f3c4c5 /bibletime/frontend/displaywindow/cwritewindow.h
downloadbibletime-fa949b6b7fa553547f26305d4227e8baa0091c1f.tar.gz
bibletime-fa949b6b7fa553547f26305d4227e8baa0091c1f.zip
Added initial Trinity version of BibleTime
git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/applications/bibletime@1173688 283d02a7-25f6-0310-bc7c-ecb5cbfe19da
Diffstat (limited to 'bibletime/frontend/displaywindow/cwritewindow.h')
-rw-r--r--bibletime/frontend/displaywindow/cwritewindow.h79
1 files changed, 79 insertions, 0 deletions
diff --git a/bibletime/frontend/displaywindow/cwritewindow.h b/bibletime/frontend/displaywindow/cwritewindow.h
new file mode 100644
index 0000000..dfa4c1a
--- /dev/null
+++ b/bibletime/frontend/displaywindow/cwritewindow.h
@@ -0,0 +1,79 @@
+/*********
+*
+* This file is part of BibleTime's source code, http://www.bibletime.info/.
+*
+* Copyright 1999-2006 by the BibleTime developers.
+* The BibleTime source code is licensed under the GNU General Public License version 2.0.
+*
+**********/
+
+
+
+#ifndef CWRITEWINDOW_H
+#define CWRITEWINDOW_H
+
+//BibleTime includes
+#include "frontend/display/cwritedisplay.h"
+#include "cdisplaywindow.h"
+
+//Qt includes
+#include <qwidget.h>
+
+/**The base class for all write-only display windows.
+ *@author The BibleTime team
+ */
+
+class CWriteWindow : public CDisplayWindow {
+ Q_OBJECT
+public:
+ static void insertKeyboardActions( KActionCollection* const a );
+
+ CWriteWindow(ListCSwordModuleInfo modules, CMDIArea* parent, const char *name=0);
+ virtual ~CWriteWindow();
+ /**
+ * Store the settings of this window in the given CProfileWindow object.
+ */
+ virtual void storeProfileSettings(Profile::CProfileWindow * const settings);
+ /**
+ * Store the settings of this window in the given CProfileWindow object.
+ */
+ virtual void applyProfileSettings(Profile::CProfileWindow * const settings);
+ /**
+ * Returns the write display widget used by this window.
+ */
+ CWriteDisplay* const displayWidget();
+ virtual void initConnections();
+ virtual void initActions();
+
+public slots:
+ /**
+ * Look up the given key and display the text. In our case we offer to edit the text.
+ */
+ virtual void lookup( CSwordKey* key );
+
+
+protected: // Protected methods
+ /**
+ * Saves the given text as text of the given key. Use this function
+ * as backend in each write window implementation.
+ */
+ void setDisplayWidget( CWriteDisplay* display );
+ virtual const CDisplayWindow::WriteWindowType writeWindowType() = 0;
+ virtual bool queryClose();
+ virtual void saveCurrentText( const QString& key ) = 0;
+
+protected slots:
+ /** Save text to the module
+ */
+ void saveCurrentText() {
+ if(key()) {
+ saveCurrentText(key()->key());
+ };
+ };
+ virtual void beforeKeyChange(const QString&);
+
+private:
+ CWriteDisplay* m_writeDisplay;
+};
+
+#endif