1 /***************************************************************************
2 * Copyright (C) 2005/06 by the Quassel Project *
3 * devel@quassel-irc.org *
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. *
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. *
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 ***************************************************************************/
21 #include "verticaldock.h"
28 VerticalDockTitle::VerticalDockTitle(QDockWidget *parent)
33 QSize VerticalDockTitle::sizeHint() const {
37 QSize VerticalDockTitle::minimumSizeHint() const {
41 void VerticalDockTitle::paintEvent(QPaintEvent *event) {
44 QPainter painter(this);
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());
55 // ==============================
57 // ==============================
58 VerticalDock::VerticalDock(const QString &title, QWidget *parent, Qt::WindowFlags flags)
59 : QDockWidget(title, parent, flags)
61 setDefaultTitleWidget();
64 VerticalDock::VerticalDock(QWidget *parent, Qt::WindowFlags flags)
65 : QDockWidget(parent, flags)
67 setDefaultTitleWidget();
68 setContentsMargins(0, 0, 0, 0);
71 void VerticalDock::setDefaultTitleWidget() {
72 QWidget *oldDockTitle = titleBarWidget();
73 QWidget *newDockTitle = new VerticalDockTitle(this);
75 setAllowedAreas(Qt::TopDockWidgetArea | Qt::BottomDockWidgetArea);
76 setFeatures(features() | QDockWidget::DockWidgetVerticalTitleBar);
77 setTitleBarWidget(newDockTitle);
80 oldDockTitle->deleteLater();
83 void VerticalDock::showTitle(bool show) {
84 QWidget *oldDockTitle = titleBarWidget();
85 QWidget *newDockTitle = 0;
88 newDockTitle = new VerticalDockTitle(this);
90 newDockTitle = new EmptyDockTitle(this);
92 setTitleBarWidget(newDockTitle);
94 oldDockTitle->deleteLater();