00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044 #ifndef ARTHURWIDGETS_H
00045 #define ARTHURWIDGETS_H
00046
00047 #include "arthurstyle.h"
00048 #include <QBitmap>
00049 #include <QPushButton>
00050 #include <QGroupBox>
00051
00052 #if defined(QT_OPENGL_SUPPORT)
00053 #include <QGLWidget>
00054 class ArthurGLWidget : public QGLWidget
00055 {
00056 public:
00057 ArthurGLWidget(QWidget *parent)
00058 : QGLWidget(QGLFormat(QGL::SampleBuffers), parent) {}
00059 void disableAutoBufferSwap() { setAutoBufferSwap(false); }
00060 void paintEvent(QPaintEvent *) { parentWidget()->update(); }
00061 };
00062 #endif
00063
00064 class QTextDocument;
00065 class QTextEdit;
00066 class QVBoxLayout;
00067
00068 class ArthurFrame : public QWidget
00069 {
00070 Q_OBJECT
00071 public:
00072 ArthurFrame(QWidget *parent);
00073 virtual void paint(QPainter *) {}
00074
00075
00076 void paintDescription(QPainter *p);
00077
00078 void loadDescription(const QString &filename);
00079 void setDescription(const QString &htmlDesc);
00080
00081 void loadSourceFile(const QString &fileName);
00082
00083 bool preferImage() const { return m_prefer_image; }
00084
00085 #if defined(QT_OPENGL_SUPPORT)
00086 QGLWidget *glWidget() const { return glw; }
00087 #endif
00088
00089 public slots:
00090 void setPreferImage(bool pi) { m_prefer_image = pi; }
00091 void setDescriptionEnabled(bool enabled);
00092 void showSource();
00093
00094 #if defined(QT_OPENGL_SUPPORT)
00095 void enableOpenGL(bool use_opengl);
00096 bool usesOpenGL() { return m_use_opengl; }
00097 #endif
00098
00099 signals:
00100 void descriptionEnabledChanged(bool);
00101
00102 protected:
00103 void paintEvent(QPaintEvent *);
00104 void resizeEvent(QResizeEvent *);
00105
00106 #if defined(QT_OPENGL_SUPPORT)
00107 ArthurGLWidget *glw;
00108 bool m_use_opengl;
00109 #endif
00110 QPixmap m_tile;
00111
00112 bool m_show_doc;
00113 bool m_prefer_image;
00114 QTextDocument *m_document;
00115
00116 QString m_sourceFileName;
00117
00118 };
00119
00120 #endif