summaryrefslogtreecommitdiffstats
path: root/src/configuration.h
blob: 7b763c0fa464015c189dff6e2a33880ee880008e (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/***************************************************************************
 *   Copyright (C) 2005 by Daniel Stöckel                                  *
 *   [email protected]                                                    *
 *                                                                         *
 *   This program is free software; you can redistribute it and/or modify  *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This program is distributed in the hope that it will be useful,       *
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
 *   GNU General Public License for more details.                          *
 *                                                                         *
 *   You should have received a copy of the GNU General Public License     *
 *   along with this program; if not, write to the                         *
 *   Free Software Foundation, Inc.,                                       *
 *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
 ***************************************************************************/
#ifndef CONFIG_H
#define CONFIG_H

#include <ntqdom.h>
#include <menulistviewitem.h>

#include "kommando.h"
#include "commandobutton.h"
#include "kommandoview.h"

class TQWidgetStack;

class Config{
    public:
        static Config& getSingleton(){
            static Config instance;
            return instance;
        }

        ~Config();

        bool readConfigFile();
        bool writeConfigFile();
        void fromConfigDlg(KommandoViewList& listViews);
        void toListView(KommandoViewList& listViews, TQWidgetStack* listViewParent);
        void toKommandoMenu(Kommando* buttonParent);
        void setDefaultValues();

        void setShortcut(const TQString& cut){ mShortcut = cut; }
        TQString Shortcut() const{ return mShortcut; }

        void setTintColor(const TQColor& theValue){ mTintColor = theValue; }
        TQColor tintColor() const { return mTintColor; }

        void setOpacity(const float value){mOpacity=value;}
        float opacity() const {return mOpacity;}

        void setMenuButtonSize(unsigned short theValue){ mMenuButtonSize = theValue; }
        unsigned short menuButtonSize() const { return mMenuButtonSize; }

        void setNavButtonSize (unsigned short theValue){ mNavButtonSize = theValue; }
        unsigned short navButtonSize() const { return mNavButtonSize; }

        void setMenuRadius(unsigned int theValue){ mMenuRadius = theValue; }
        unsigned int menuSize() const { return mMenuRadius*2; }
        unsigned int menuRadius() const{ return mMenuRadius; }
        unsigned int buttonDistance() const { return (mMenuRadius-static_cast<int>(mMenuButtonSize*1.38)); }

        void setScheme(const TQString& theValue){ mScheme = theValue; }
        TQString scheme() const{ return mScheme; }

    protected:
        Config();
        Config(const Config&);
        void createDefaultConfigFile();
    
        TQString mConfigPath;
        TQString mShortcut;
        TQColor mTintColor;
        float mOpacity;
        TQString mScheme;
        unsigned short mMenuButtonSize;
        unsigned short mNavButtonSize;
        unsigned int mMenuRadius;
        bool mAddDefalutMenuLink;
        TQDomDocument* doc;

        //Factory functions
        Menu* menuFromXML(const TQDomElement& ownNode, Kommando* buttonParent, Menu* parent=NULL);
        CommandoButton* comButtonFromXML(const TQDomElement& ownNode, Kommando* parent);
        TQListView* newListView(TQWidget * parent, const char* name);

        void menuItemToXML(TQDomNode& parent, MenuListViewItem* item);

        //The following 3 methods could have been implemented in just 1 method, if there would be no need in overriding the parent argument
        //so I put the code both menuItemFromXML methods share in itemHelper to reduce redundancy
        void menuItemFromXML(KommandoView* parent,  TQListViewItem* after, const TQDomElement& ownNode);
        void menuItemFromXML(TQListViewItem* parent,  TQListViewItem* after, const TQDomElement& ownNode);
        void itemHelper(const TQDomElement& ownNode, MenuListViewItem* item);

        //Some factory functions that allow to setup a xml file quickly
        TQDomElement newNode(const TQString& nodename, TQDomNode& parent, int value);
        TQDomElement newNode(const TQString& nodename, TQDomNode& parent, float value);
        TQDomElement newNode(const TQString& nodename, TQDomNode& parent, const TQString& value);
        TQDomElement newNode(const TQString& nodename, TQDomNode& parent, const TQString& value, const TQString& attrname, const TQString& attrvalue);
        TQDomElement newButton(TQDomNode& parent, const TQString& icon, const TQString& command);
        TQDomElement newMenu(TQDomNode& parent, const TQString& appName = TQString::null, const TQString& icon = TQString::null);
};

#endif