summaryrefslogtreecommitdiff
path: root/src/frontend/cmdiarea.cpp
blob: 91f3eae1e9da36a1cab2d4f6ce53a2ad8e8ad685 (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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
/*********
*
* 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.
*
**********/

#include "cmdiarea.h"

//QT includes
#include <QTimer>
#include <QEvent>
#include <QWindowStateChangeEvent>
#include <QMdiSubWindow>
#include <QDebug>

CMDIArea::CMDIArea(QWidget *parent) : QMdiArea(parent),
        m_mdiArrangementMode(ArrangementModeManual) {
    setActivationOrder( CreationOrder ); //keep window order consistent
    connect(this, SIGNAL(subWindowActivated(QMdiSubWindow*)), this, SLOT(slotClientActivated(QMdiSubWindow*)));
}

QMdiSubWindow* CMDIArea::addSubWindow(QWidget * widget, Qt::WindowFlags windowFlags) {
    QMdiSubWindow* subWindow = QMdiArea::addSubWindow(widget, windowFlags);
    subWindow->installEventFilter(this);

    //If we do have a maximized Window, set it to normal so that the new window can be seen
    if (activeSubWindow() && activeSubWindow()->isMaximized()) {
        activeSubWindow()->showNormal();
    }

    if (m_mdiArrangementMode == ArrangementModeManual) {
        subWindow->resize(400, 400); //set the window to be big enough
        subWindow->raise();
    }
    else {
        triggerWindowUpdate();
    }
    return subWindow;
}

void CMDIArea::deleteAll() {
    closeAllSubWindows();
}

void CMDIArea::setMDIArrangementMode( const MDIArrangementMode newArrangementMode ) {
    m_mdiArrangementMode = newArrangementMode;
    triggerWindowUpdate();
}

CMDIArea::MDIArrangementMode CMDIArea::getMDIArrangementMode(void) const {
    return m_mdiArrangementMode;
}

void CMDIArea::myTileVertical() {
    if (!updatesEnabled() || !usableWindowList().count() ) {
        return;
    }

    QList<QMdiSubWindow*> windows = usableWindowList();
    if (activeSubWindow() && activeSubWindow()->isMaximized()) {
        if (activeSubWindow()->size() != this->size()) {
            activeSubWindow()->resize(this->size());
        }
    }
    else if (windows.count() == 1) {
        windows.at(0)->showMaximized();
    }
    else {
        setUpdatesEnabled(false);
        QMdiSubWindow* active = activeSubWindow();
        QMdiArea::tileSubWindows();
        if (active) active->setFocus();
        setUpdatesEnabled(true);
    }
    emitWindowCaptionChanged();
}

void CMDIArea::myTileHorizontal() {
    if (!updatesEnabled() || !usableWindowList().count() ) {
        return;
    }

    QList<QMdiSubWindow*> windows = usableWindowList();

    if (activeSubWindow() && activeSubWindow()->isMaximized()) {
        if (activeSubWindow()->size() != this->size()) {
            activeSubWindow()->resize(this->size());
        }
    }
    else if (windows.count() == 1) {
        windows.at(0)->showMaximized();
    }
    else {
        setUpdatesEnabled(false);

        QMdiSubWindow* active = activeSubWindow();

        const int heightForEach = height() / windows.count();
        unsigned int y = 0;
        foreach (QMdiSubWindow *window, windows) {
            window->showNormal();

            const int preferredHeight = window->minimumHeight() + window->baseSize().height();
            const int actHeight = qMax(heightForEach, preferredHeight);

            window->setGeometry( 0, y, width(), actHeight );
            y += actHeight;
        }
        active->setFocus();
        setUpdatesEnabled(true);
    }
    emitWindowCaptionChanged();
}

void CMDIArea::myCascade() {
    if (!updatesEnabled() || !usableWindowList().count() ) {
        return;
    }

    QList<QMdiSubWindow*> windows = usableWindowList();

    if (activeSubWindow() && activeSubWindow()->isMaximized()) {
        if (activeSubWindow()->size() != this->size()) {
            activeSubWindow()->resize(this->size());
        }
    }
    else if (windows.count() == 1) {
        windows.at(0)->showMaximized();
    }
    else {
        setUpdatesEnabled(false);

        QMdiSubWindow* active = activeSubWindow();

        const unsigned int offsetX = 40;
        const unsigned int offsetY = 40;
        const unsigned int windowWidth =  width() - (windows.count() - 1) * offsetX;
        const unsigned int windowHeight = height() - (windows.count() - 1) * offsetY;
        unsigned int x = 0;
        unsigned int y = 0;

        foreach (QMdiSubWindow* window, windows) {
            if (window == active) { //leave out the active window which should be the top window
                continue;
            }
            window->raise(); //make it the on-top-of-window-stack window to make sure they're in the right order
            window->setGeometry(x, y, windowWidth, windowHeight);
            x += offsetX;
            y += offsetY;
        }
        active->setGeometry(x, y, windowWidth, windowHeight);
        active->raise();
        active->activateWindow();

        setUpdatesEnabled(true);
    }
    emitWindowCaptionChanged();
}

void CMDIArea::emitWindowCaptionChanged() {
    QString appCaption;
    if (activeSubWindow()) {
        appCaption = activeSubWindow()->windowTitle();
    }
    emit sigSetToplevelCaption(appCaption);
}

QList<QMdiSubWindow*> CMDIArea::usableWindowList() {
    //Take care: when new windows are added, they will not appear
    //in subWindowList() when their ChildAdded-Event is triggered
    QList<QMdiSubWindow*> ret;
    foreach(QMdiSubWindow* w, subWindowList()) {
        if (w->isMinimized() || w->isHidden()) { //not usable for us
            continue;
        }
        ret.append( w );
    }
    return ret;
}

void CMDIArea::slotClientActivated(QMdiSubWindow* client) {
    if (!client || !updatesEnabled()) {
        return;
    }
    emit sigSetToplevelCaption( client->windowTitle().trimmed() );
}

//resize event of the MDI area itself, update layout if necessary
void CMDIArea::resizeEvent(QResizeEvent* /*e*/) {
    //do not call QMdiArea::resizeEvent(e), this would mess up our layout
    if (updatesEnabled()) triggerWindowUpdate();
}

//handle events of the client windows to update layout if necessary
bool CMDIArea::eventFilter(QObject *o, QEvent *e) {
    QMdiSubWindow* w = dynamic_cast<QMdiSubWindow*>(o);
    if (!w) return false; //let the event be handled by other filters too

    if (e->type() == QEvent::WindowStateChange) {
        Qt::WindowStates newState =  w->windowState();
        Qt::WindowStates oldState = ((QWindowStateChangeEvent*)e)->oldState();

        //Do not handle window activation or deactivation here, it will produce wrong
        //results because this event is handled too early. Let slotClientActivated() handle this.

        bool needsLayoutUpdate = false;
        //Window was maximized or un-maximized
        if ((newState ^ oldState) & Qt::WindowMaximized) needsLayoutUpdate = true;
        //Window was minimized or de-minimized
        if ((newState ^ oldState) & Qt::WindowMinimized) needsLayoutUpdate = true;
        //update Layout?
        if (needsLayoutUpdate) triggerWindowUpdate();
    }
    if (e->type() == QEvent::Close) {
        triggerWindowUpdate();
    }
    return false; //let the event be handled by other filters too
}

void CMDIArea::triggerWindowUpdate() {
    if (updatesEnabled()) {
        switch (m_mdiArrangementMode) {
            case ArrangementModeTileVertical:
                QTimer::singleShot(0, this, SLOT(myTileVertical()));
                break;
            case ArrangementModeTileHorizontal:
                QTimer::singleShot(0, this, SLOT(myTileHorizontal()));
                break;
            case ArrangementModeCascade:
                QTimer::singleShot(0, this, SLOT(myCascade()));
                break;
            default:
                break;
        }
    }
}