Deactivate selections on click
[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 <QPainter>
24
25 #include <QDebug>
26
27 VerticalDockTitle::VerticalDockTitle(QDockWidget *parent)
28   : QWidget(parent)
29 {
30 }
31
32 QSize VerticalDockTitle::sizeHint() const {
33   return QSize(10, 15);
34 }
35
36 QSize VerticalDockTitle::minimumSizeHint() const {
37   return QSize(10, 15);
38 }
39
40 void VerticalDockTitle::paintEvent(QPaintEvent *event) {
41   Q_UNUSED(event);
42
43   QPainter painter(this);
44   
45   if(rect().isValid() && rect().height() > minimumSizeHint().height()) {
46     for(int i = 0; i < 2; i++) {
47       QPoint topLeft = rect().topLeft() + QPoint(3 + i*2, 5);
48       QPoint bottomRight = rect().topLeft() + QPoint(3 + i*2, rect().height() - 5);
49       qDrawShadeLine(&painter, topLeft, bottomRight, palette());
50     }
51   }
52
53 }
54
55
56
57 // ==============================
58 //  Vertical Dock
59 // ==============================
60 VerticalDock::VerticalDock(const QString &title, QWidget *parent, Qt::WindowFlags flags)
61   : QDockWidget(title, parent, flags)
62 {
63   setDefaultTitleWidget();
64 }
65
66 VerticalDock::VerticalDock(QWidget *parent, Qt::WindowFlags flags)
67   : QDockWidget(parent, flags)
68 {
69   setDefaultTitleWidget();
70 }
71
72 void VerticalDock::setDefaultTitleWidget() {
73   QWidget *oldDockTitle = titleBarWidget();
74   QWidget *newDockTitle = new VerticalDockTitle(this);
75
76   setAllowedAreas(Qt::TopDockWidgetArea | Qt::BottomDockWidgetArea);
77   setFeatures(features() | QDockWidget::DockWidgetVerticalTitleBar);
78   setTitleBarWidget(newDockTitle);
79   
80   if(oldDockTitle)
81     oldDockTitle->deleteLater();
82 }
83
84 void VerticalDock::showTitle(bool show) {
85   QWidget *oldDockTitle = titleBarWidget();
86   QWidget *newDockTitle = 0;
87   
88   if(show)
89     newDockTitle = new VerticalDockTitle(this);
90   else
91     newDockTitle = new EmptyDockTitle(this);
92
93   setTitleBarWidget(newDockTitle);
94   if(oldDockTitle)
95     oldDockTitle->deleteLater();
96 }