1 | /****************************************************************************
|
---|
2 | **
|
---|
3 | ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
---|
4 | ** Contact: Qt Software Information ([email protected])
|
---|
5 | **
|
---|
6 | ** This file is part of the demonstration applications of the Qt Toolkit.
|
---|
7 | **
|
---|
8 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
9 | ** Commercial Usage
|
---|
10 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
11 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
12 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
13 | ** a written agreement between you and Nokia.
|
---|
14 | **
|
---|
15 | ** GNU Lesser General Public License Usage
|
---|
16 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
17 | ** General Public License version 2.1 as published by the Free Software
|
---|
18 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
19 | ** packaging of this file. Please review the following information to
|
---|
20 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
21 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
22 | **
|
---|
23 | ** In addition, as a special exception, Nokia gives you certain
|
---|
24 | ** additional rights. These rights are described in the Nokia Qt LGPL
|
---|
25 | ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this
|
---|
26 | ** package.
|
---|
27 | **
|
---|
28 | ** GNU General Public License Usage
|
---|
29 | ** Alternatively, this file may be used under the terms of the GNU
|
---|
30 | ** General Public License version 3.0 as published by the Free Software
|
---|
31 | ** Foundation and appearing in the file LICENSE.GPL included in the
|
---|
32 | ** packaging of this file. Please review the following information to
|
---|
33 | ** ensure the GNU General Public License version 3.0 requirements will be
|
---|
34 | ** met: http://www.gnu.org/copyleft/gpl.html.
|
---|
35 | **
|
---|
36 | ** If you are unsure which license is appropriate for your use, please
|
---|
37 | ** contact the sales department at [email protected].
|
---|
38 | ** $QT_END_LICENSE$
|
---|
39 | **
|
---|
40 | ****************************************************************************/
|
---|
41 |
|
---|
42 | #ifndef ARTHURWIDGETS_H
|
---|
43 | #define ARTHURWIDGETS_H
|
---|
44 |
|
---|
45 | #include "arthurstyle.h"
|
---|
46 | #include <QBitmap>
|
---|
47 | #include <QPushButton>
|
---|
48 | #include <QGroupBox>
|
---|
49 |
|
---|
50 | #if defined(QT_OPENGL_SUPPORT)
|
---|
51 | #include <QGLWidget>
|
---|
52 | class GLWidget : public QGLWidget
|
---|
53 | {
|
---|
54 | public:
|
---|
55 | GLWidget(QWidget *parent)
|
---|
56 | : QGLWidget(QGLFormat(QGL::SampleBuffers), parent) {}
|
---|
57 | void disableAutoBufferSwap() { setAutoBufferSwap(false); }
|
---|
58 | void paintEvent(QPaintEvent *) { parentWidget()->update(); }
|
---|
59 | };
|
---|
60 | #endif
|
---|
61 |
|
---|
62 | QT_FORWARD_DECLARE_CLASS(QTextDocument)
|
---|
63 | QT_FORWARD_DECLARE_CLASS(QTextEdit)
|
---|
64 | QT_FORWARD_DECLARE_CLASS(QVBoxLayout)
|
---|
65 |
|
---|
66 | class ArthurFrame : public QWidget
|
---|
67 | {
|
---|
68 | Q_OBJECT
|
---|
69 | public:
|
---|
70 | ArthurFrame(QWidget *parent);
|
---|
71 | virtual void paint(QPainter *) {}
|
---|
72 |
|
---|
73 |
|
---|
74 | void paintDescription(QPainter *p);
|
---|
75 |
|
---|
76 | void loadDescription(const QString &filename);
|
---|
77 | void setDescription(const QString &htmlDesc);
|
---|
78 |
|
---|
79 | void loadSourceFile(const QString &fileName);
|
---|
80 |
|
---|
81 | bool preferImage() const { return m_prefer_image; }
|
---|
82 |
|
---|
83 | #if defined(QT_OPENGL_SUPPORT)
|
---|
84 | QGLWidget *glWidget() const { return glw; }
|
---|
85 | #endif
|
---|
86 |
|
---|
87 | public slots:
|
---|
88 | void setPreferImage(bool pi) { m_prefer_image = pi; }
|
---|
89 | void setDescriptionEnabled(bool enabled);
|
---|
90 | void showSource();
|
---|
91 |
|
---|
92 | #if defined(QT_OPENGL_SUPPORT)
|
---|
93 | void enableOpenGL(bool use_opengl);
|
---|
94 | bool usesOpenGL() { return m_use_opengl; }
|
---|
95 | #endif
|
---|
96 |
|
---|
97 | signals:
|
---|
98 | void descriptionEnabledChanged(bool);
|
---|
99 |
|
---|
100 | protected:
|
---|
101 | void paintEvent(QPaintEvent *);
|
---|
102 | void resizeEvent(QResizeEvent *);
|
---|
103 |
|
---|
104 | #if defined(QT_OPENGL_SUPPORT)
|
---|
105 | GLWidget *glw;
|
---|
106 | bool m_use_opengl;
|
---|
107 | #endif
|
---|
108 | QPixmap m_tile;
|
---|
109 |
|
---|
110 | bool m_show_doc;
|
---|
111 | bool m_prefer_image;
|
---|
112 | QTextDocument *m_document;
|
---|
113 |
|
---|
114 | QString m_sourceFileName;
|
---|
115 |
|
---|
116 | };
|
---|
117 |
|
---|
118 | #endif
|
---|