OSDN Git Service

It's 2011 now.
[qt-creator-jp/qt-creator-jp.git] / tests / manual / dockwidgets / mainwindow.cpp
1 /**************************************************************************
2 **
3 ** This file is part of Qt Creator
4 **
5 ** Copyright (c) 2011 Nokia Corporation and/or its subsidiary(-ies).
6 **
7 ** Contact: Nokia Corporation (qt-info@nokia.com)
8 **
9 ** No Commercial Usage
10 **
11 ** This file contains pre-release code and may not be distributed.
12 ** You may use this file in accordance with the terms and conditions
13 ** contained in the Technology Preview License Agreement accompanying
14 ** this package.
15 **
16 ** GNU Lesser General Public License Usage
17 **
18 ** Alternatively, this file may be used under the terms of the GNU Lesser
19 ** General Public License version 2.1 as published by the Free Software
20 ** Foundation and appearing in the file LICENSE.LGPL included in the
21 ** packaging of this file.  Please review the following information to
22 ** ensure the GNU Lesser General Public License version 2.1 requirements
23 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
24 **
25 ** In addition, as a special exception, Nokia gives you certain additional
26 ** rights.  These rights are described in the Nokia Qt LGPL Exception
27 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
28 **
29 ** If you have questions regarding the use of this file, please contact
30 ** Nokia at qt-info@nokia.com.
31 **
32 **************************************************************************/
33
34 #include "qdockarrows.h"
35 #include "mainwindow.h"
36
37 #include <QtGui>
38
39 class TestTool : public QWidget
40 {
41     Q_OBJECT
42
43 public:
44     TestTool(QWidget *parent = 0) : QWidget(parent) {
45         m_widget = new QLabel("Test", this);
46         qDebug() << m_tmp.width() << m_tmp.height();
47     }
48
49     QSize sizeHint() const
50     {
51         return QSize(20, 100);
52     }
53
54 protected:
55     void paintEvent(QPaintEvent *event)
56     {
57         m_widget->setVisible(false);
58
59         QStyleOptionTabV2 opt;
60         opt.initFrom(this);
61         opt.shape = QTabBar::RoundedWest;
62         opt.text = tr("Hello");
63
64         QStylePainter p(this);
65         p.drawControl(QStyle::CE_TabBarTab, opt);
66
67         m_tmp = QPixmap::grabWidget(m_widget, 10, 0, 10, 10);
68
69         QPainter pn(this);
70         pn.drawPixmap(0,0,m_tmp);
71
72         QWidget::paintEvent(event);
73     }
74
75 private:
76     QPixmap m_tmp;
77     QLabel *m_widget;
78 };
79
80 MainWindow::MainWindow()
81 {
82     centralWidget = new QLabel(tr("Central Widget"));
83     setCentralWidget(centralWidget);
84
85     QToolBar *tb = this->addToolBar("Normal Toolbar");
86     tb->addAction("Test");
87
88     tb = this->addToolBar("Test Toolbar");
89     tb->setMovable(false);
90     tb->addWidget(new TestTool(this));
91     this->addToolBar(Qt::RightToolBarArea, tb);
92
93     createDockWindows();
94
95     setWindowTitle(tr("Dock Widgets"));
96 }
97
98 void MainWindow::createDockWindows()
99 {
100     QDockArrowManager *manager = new QDockArrowManager(this);
101
102     for (int i=0; i<5; ++i) {
103         QArrowManagedDockWidget *dock = new QArrowManagedDockWidget(manager);
104         QLabel *label = new QLabel(tr("Widget %1").arg(i), dock);
105         label->setWindowTitle(tr("Widget %1").arg(i));
106         label->setObjectName(tr("widget_%1").arg(i));
107         dock->setObjectName(tr("dock_%1").arg(i));
108         dock->setWidget(label);
109         addDockWidget(Qt::RightDockWidgetArea, dock);
110     }
111 }
112
113 #include "mainwindow.moc"