1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256
|
/***************************************************************************
* Copyright (C) 2006 by Pino Toscano <pino@kde.org> *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
***************************************************************************/
#ifndef _ANNOTATIONWIDGETS_H_
#define _ANNOTATIONWIDGETS_H_
#include <qwidget.h>
#include "core/annotations.h"
class QCheckBox;
class QComboBox;
class QDoubleSpinBox;
class QLabel;
class QWidget;
class KColorButton;
class KIntNumInput;
class KFontRequester;
class AnnotationWidget;
class PixmapPreviewSelector
: public QWidget
{
Q_OBJECT
public:
explicit PixmapPreviewSelector( QWidget * parent = 0 );
virtual ~PixmapPreviewSelector();
void setIcon( const QString& icon );
QString icon() const;
void addItem( const QString& item, const QString& id );
void setPreviewSize( int size );
int previewSize() const;
void setEditable( bool editable );
signals:
void iconChanged( const QString& );
private slots:
void iconComboChanged( const QString& icon );
private:
QString m_icon;
QLabel * m_iconLabel;
QComboBox * m_comboItems;
int m_previewSize;
};
/**
* A factory to create AnnotationWidget's.
*/
class AnnotationWidgetFactory
{
public:
static AnnotationWidget * widgetFor( Okular::Annotation * ann );
};
class AnnotationWidget
: public QObject
{
Q_OBJECT
public:
AnnotationWidget( Okular::Annotation * ann );
virtual ~AnnotationWidget();
virtual Okular::Annotation::SubType annotationType() const;
QWidget * appearanceWidget();
QWidget * extraWidget();
virtual void applyChanges();
signals:
void dataChanged();
protected:
QWidget * createAppearanceWidget();
virtual QWidget * createStyleWidget();
virtual QWidget * createExtraWidget();
Okular::Annotation * m_ann;
QWidget * m_appearanceWidget;
QWidget * m_extraWidget;
KColorButton *m_colorBn;
KIntNumInput *m_opacity;
};
class TextAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
TextAnnotationWidget( Okular::Annotation * ann );
virtual void applyChanges();
protected:
virtual QWidget * createStyleWidget();
private:
Okular::TextAnnotation * m_textAnn;
PixmapPreviewSelector * m_pixmapSelector;
KFontRequester * m_fontReq;
QComboBox * m_textAlign;
};
class StampAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
StampAnnotationWidget( Okular::Annotation * ann );
virtual void applyChanges();
protected:
virtual QWidget * createStyleWidget();
private:
Okular::StampAnnotation * m_stampAnn;
PixmapPreviewSelector * m_pixmapSelector;
};
class LineAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
LineAnnotationWidget( Okular::Annotation * ann );
virtual void applyChanges();
protected:
virtual QWidget * createStyleWidget();
private:
Okular::LineAnnotation * m_lineAnn;
int m_lineType;
QDoubleSpinBox * m_spinLL;
QDoubleSpinBox * m_spinLLE;
QCheckBox * m_useColor;
KColorButton * m_innerColor;
QDoubleSpinBox * m_spinSize;
};
class HighlightAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
HighlightAnnotationWidget( Okular::Annotation * ann );
virtual void applyChanges();
protected:
virtual QWidget * createStyleWidget();
private:
Okular::HighlightAnnotation * m_hlAnn;
QComboBox * m_typeCombo;
};
class GeomAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
GeomAnnotationWidget( Okular::Annotation * ann );
virtual void applyChanges();
protected:
virtual QWidget * createStyleWidget();
private:
Okular::GeomAnnotation * m_geomAnn;
QComboBox * m_typeCombo;
QCheckBox * m_useColor;
KColorButton * m_innerColor;
QDoubleSpinBox * m_spinSize;
};
class FileAttachmentAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
FileAttachmentAnnotationWidget( Okular::Annotation * ann );
virtual void applyChanges();
protected:
virtual QWidget * createStyleWidget();
virtual QWidget * createExtraWidget();
private:
Okular::FileAttachmentAnnotation * m_attachAnn;
PixmapPreviewSelector * m_pixmapSelector;
};
class CaretAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
CaretAnnotationWidget( Okular::Annotation * ann );
virtual void applyChanges();
protected:
virtual QWidget * createStyleWidget();
private:
Okular::CaretAnnotation * m_caretAnn;
PixmapPreviewSelector * m_pixmapSelector;
};
class InkAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
InkAnnotationWidget( Okular::Annotation * ann );
virtual void applyChanges();
protected:
virtual QWidget * createStyleWidget();
private:
Okular::InkAnnotation * m_inkAnn;
QDoubleSpinBox * m_spinSize;
};
#endif
|