acb0a115c9f79d89a950bbb7cd442deb315d3cf1
[quassel.git] / src / uisupport / verticaldocktitle.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 "verticaldocktitle.h"
22 #include <QDockWidget>
23 #include <QPainter>
24 #include <QStyleOption>
25
26 #include <QDebug>
27
28 VerticalDockTitle::VerticalDockTitle(QDockWidget *parent)
29   : QWidget(parent)
30 {
31 }
32
33 VerticalDockTitle::~VerticalDockTitle() {
34 }
35
36 QSize VerticalDockTitle::sizeHint() const {
37   return QSize(10, 20);
38 }
39
40 QSize VerticalDockTitle::minimumSizeHint() const {
41   return QSize(10, 20);
42 }
43
44 void VerticalDockTitle::paintEvent(QPaintEvent *event) {
45   Q_UNUSED(event);
46   
47   QPainter painter(this);
48   
49   if(rect().isValid() && rect().height() > minimumSizeHint().height()) {
50     for(int i = 0; i < 2; i++) {
51       QPoint topLeft = rect().topLeft() + QPoint(3 + i*2, 5);
52       QPoint bottomRight = rect().topLeft() + QPoint(3 + i*2, rect().height() - 5);
53       qDrawShadeLine(&painter, topLeft, bottomRight, palette());
54     }
55   }
56   
57 }