summaryrefslogtreecommitdiffstats
path: root/ksquirrel/sq_glview.h
blob: 102c0eb16a0bce5d24275324c74f113dbb5b591b (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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
/***************************************************************************
                          sq_glview.h  -  description
                             -------------------
    begin                : ??? ??? 5 2004
    copyright            : (C) 2004 by Baryshev Dmitry
    email                : ksquirrel.iv@gmail.com
 ***************************************************************************/

/***************************************************************************
 *                                                                         *
 *   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.                                   *
 *                                                                         *
 ***************************************************************************/

#ifndef SQ_GLVIEW_H
#define SQ_GLVIEW_H

#include <tqvbox.h>
#include <tqmap.h>

#include <ktoolbar.h>

class SQ_GLWidget;
class SQ_LibraryListener;
class SQ_LibraryHandler;
class SQ_Config;

class KStatusBar;
class KTabBar;

class TQLabel;

class SQ_ToolBar : public KToolBar
{
    public:
        SQ_ToolBar(TQWidget *parent);
        ~SQ_ToolBar();

    protected:
        void mouseReleaseEvent(TQMouseEvent *);
};

/*
 *  SQ_GLView represents a widget containing SQ_GLWidget, toolbar and statusbar.
 *
 *
 *  + -------------------------------------------------+
 *  |  | | | | | | | | | | | | | | | | |               |  <= toolbar with actions (SQ_ToolBar)
 *  |--------------------------------------------------|
 *  |                                                  |
 *  |                                                  |
 *  |                                                  |
 *  |                                                  |
 *  |                                                  |
 *  |                                                  |  <= OpenGL widget (SQ_GLWidget)
 *  |                                                  |
 *  |                                                  |
 *  |                                                  |
 *  |                                                  |
 *  |                                                  |
 *  |                                                  |
 *  |                                                  |
 *  |--------------------------------------------------|  <= statusbar (KStatusBar)
 *  +--------------------------------------------------+
 *
 *
 */

class SQ_GLView : public TQVBox
{
    Q_OBJECT
  TQ_OBJECT

    public: 
        SQ_GLView(TQWidget *parent = 0);
        ~SQ_GLView();

        void leftTab();
        void rightTab();

        void addPage(const TQString &label);

        void removePage(int);
        void removeTabs();
        void setupTabbar();

        bool tabs() const;
        bool tabsClose() const;


        /*
         *  Save current position and size to config
         */
        void saveGeometry();
        void restoreGeometry();

        /*
         *  Reset all statusbar's labels to default values.
         */
        void resetStatusBar();

        /*
         *  Get a pointer to statusbar.
         */
        KStatusBar* statusbar();


        KTabBar* tabbar();

        /*
         *  Get a poniter to toolbar with actions (next file, zoom, rotate...)
         */ 
        SQ_ToolBar* toolbar();

        TQWidget* boxBar();

        /*
         *  Get a pointer to a widget in statusbar by name.
         */
        TQLabel* sbarWidget(const TQString &name) const;

        static SQ_GLView* window() { return m_instance; }

    private slots:
        void slotTabCountChanged();

    protected:

        /*
         *  We want to eat close events. If current version is not 'small',
         *  ignore close event. If current version is 'small', save all important
         *  parameters to config file and accept close event (exit).
         */
        void closeEvent(TQCloseEvent *e);

    private:

        /*
         *  Internal.
         */
        void createContent();

        virtual bool eventFilter(TQObject *watched, TQEvent *e);

    private:
        SQ_GLWidget             *gl;
        KStatusBar              *sbar;
        TQMap<TQString, TQLabel* > names;
        SQ_ToolBar              *m_toolbar;
        KTabBar                 *m_tabbar;
        bool                    m_tabs, m_tabsclose;
        TQVBox                   *box;

        static SQ_GLView *m_instance;
};

inline
SQ_ToolBar* SQ_GLView::toolbar()
{
    return m_toolbar;
}

inline
KTabBar* SQ_GLView::tabbar()
{
    return m_tabbar;
}

inline
KStatusBar* SQ_GLView::statusbar()
{
    return sbar;
}

inline
TQLabel* SQ_GLView::sbarWidget(const TQString &name) const
{
    return names[name];
}

inline
bool SQ_GLView::tabs() const
{
    return m_tabs;
}

inline
bool SQ_GLView::tabsClose() const
{
    return m_tabsclose;
}

inline
TQWidget* SQ_GLView::boxBar()
{
    return box;
}

#endif