Forgot some more instances of QtUiSettings vs. UiSettings
[quassel.git] / src / qtui / verticaldock.cpp
1 /***************************************************************************
2  *   Copyright (C) 2005/06 by the Quassel Project                          *
3  *   devel@quassel-irc.org                                                 *
4  *                                                                         *
5  *   This program is free software; you can redistribute it and/or modify  *
6  *   it under the terms of the GNU General Public License as published by  *
7  *   the Free Software Foundation; either version 2 of the License, or     *
8  *   (at your option) version 3.                                           *
9  *                                                                         *
10  *   This program is distributed in the hope that it will be useful,       *
11  *   but WITHOUT ANY WARRANTY; without even the implied warranty of        *
12  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the         *
13  *   GNU General Public License for more details.                          *
14  *                                                                         *
15  *   You should have received a copy of the GNU General Public License     *
16  *   along with this program; if not, write to the                         *
17  *   Free Software Foundation, Inc.,                                       *
18  *   59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.             *
19  ***************************************************************************/
20
21 #include "verticaldock.h"
22
23 #include <QLayout>
24 #include <QPainter>
25
26 #include <QDebug>
27
28 VerticalDockTitle::VerticalDockTitle(QDockWidget *parent)
29   : QWidget(parent)
30 {
31 }
32
33 QSize VerticalDockTitle::sizeHint() const {
34   return QSize(8, 15);
35 }
36
37 QSize VerticalDockTitle::minimumSizeHint() const {
38   return QSize(8, 10);
39 }
40
41 void VerticalDockTitle::paintEvent(QPaintEvent *event) {
42   Q_UNUSED(event);
43
44   QPainter painter(this);
45   
46   if(rect().isValid() && rect().height() > minimumSizeHint().height()) {
47     for(int i = 0; i < 2; i++) {
48       QPoint topLeft = rect().topLeft() + QPoint(3 + i*2, 2);
49       QPoint bottomRight = rect().topLeft() + QPoint(3 + i*2, rect().height() - 2);
50       qDrawShadeLine(&painter, topLeft, bottomRight, palette());
51     }
52   }
53 }
54
55 // ==============================
56 //  Vertical Dock
57 // ==============================
58 VerticalDock::VerticalDock(const QString &title, QWidget *parent, Qt::WindowFlags flags)
59   : QDockWidget(title, parent, flags)
60 {
61   setDefaultTitleWidget();
62 }
63
64 VerticalDock::VerticalDock(QWidget *parent, Qt::WindowFlags flags)
65   : QDockWidget(parent, flags)
66 {
67   setDefaultTitleWidget();
68   setContentsMargins(0, 0, 0, 0);
69 }
70
71 void VerticalDock::setDefaultTitleWidget() {
72   QWidget *oldDockTitle = titleBarWidget();
73   QWidget *newDockTitle = new VerticalDockTitle(this);
74
75   setAllowedAreas(Qt::TopDockWidgetArea | Qt::BottomDockWidgetArea);
76   setFeatures(features() | QDockWidget::DockWidgetVerticalTitleBar);
77   setTitleBarWidget(newDockTitle);
78   
79   if(oldDockTitle)
80     oldDockTitle->deleteLater();
81 }
82
83 void VerticalDock::showTitle(bool show) {
84   QWidget *oldDockTitle = titleBarWidget();
85   QWidget *newDockTitle = 0;
86   
87   if(show)
88     newDockTitle = new VerticalDockTitle(this);
89   else
90     newDockTitle = new EmptyDockTitle(this);
91
92   setTitleBarWidget(newDockTitle);
93   if(oldDockTitle)
94     oldDockTitle->deleteLater();
95 }