summaryrefslogtreecommitdiff
path: root/src/frontend/displaywindow/cwritewindow.h
blob: e2ffc54c8b947c65b73a4a4be5d6cef694f644f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*********
*
* This file is part of BibleTime's source code, http://www.bibletime.info/.
*
* Copyright 1999-2008 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 "cdisplaywindow.h"


class CWriteDisplay;
class QString;
class BtActionCollection;

/**The base class for all write-only display windows.
  *@author The BibleTime team
  */

class CWriteWindow : public CDisplayWindow  {
        Q_OBJECT
    public:
        static void insertKeyboardActions( BtActionCollection* const a );

        CWriteWindow(QList<CSwordModuleInfo*> modules, CMDIArea* parent);
        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);
        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 lookupSwordKey( 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( CDisplay* display );
        virtual CDisplayWindow::WriteWindowType writeWindowType() = 0;
        virtual bool queryClose();
        virtual void saveCurrentText( const QString& key ) = 0;

    protected slots:
        /** Save text to the module
        */
        void saveCurrentText();
        /**
         */
        virtual void beforeKeyChange(const QString&);

    private:
        CWriteDisplay* m_writeDisplay;
};

#endif