okular/ui/annotationwidgets.h

280 lines
6.3 KiB
C
Raw Normal View History

/***************************************************************************
* 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;
2014-10-06 05:41:26 +00:00
class QSpinBox;
class KFontRequester;
class AnnotationWidget;
class PixmapPreviewSelector
: public QWidget
{
Q_OBJECT
public:
2017-03-02 19:09:32 +00:00
explicit PixmapPreviewSelector( QWidget * parent = nullptr );
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 );
Q_SIGNALS:
void iconChanged( const QString& );
private Q_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:
2018-09-01 08:25:57 +00:00
explicit AnnotationWidget( Okular::Annotation * ann );
virtual ~AnnotationWidget();
virtual Okular::Annotation::SubType annotationType() const;
QWidget * appearanceWidget();
QWidget * extraWidget();
virtual void applyChanges();
Q_SIGNALS:
void dataChanged();
protected:
QWidget * createAppearanceWidget();
virtual QWidget * createStyleWidget();
virtual QWidget * createExtraWidget();
private:
virtual bool hasColorButton() const { return true; }
virtual bool hasOpacityBox() const { return true; }
Okular::Annotation * m_ann;
QWidget * m_appearanceWidget { nullptr };
QWidget * m_extraWidget { nullptr };
KColorButton *m_colorBn { nullptr };
QSpinBox *m_opacity { nullptr };
};
class QVBoxLayout;
class QGridLayout;
class TextAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
2015-08-18 13:27:20 +00:00
explicit TextAnnotationWidget( Okular::Annotation * ann );
2017-03-02 19:39:24 +00:00
void applyChanges() override;
protected:
2017-03-02 19:39:24 +00:00
QWidget * createStyleWidget() override;
private:
virtual bool hasColorButton() const override;
virtual bool hasOpacityBox() const override;
void createPopupNoteStyleUi( QWidget * widget, QVBoxLayout * layout );
void createInlineNoteStyleUi( QWidget * widget, QVBoxLayout * layout );
void createTypewriterStyleUi( QWidget * widget, QVBoxLayout * layout );
void addPixmapSelector( QWidget * widget, QLayout * layout );
void addFontRequester( QWidget * widget, QGridLayout * layout );
void addTextColorButton( QWidget * widget, QGridLayout * layout );
void addTextAlignComboBox( QWidget * widget, QGridLayout * layout );
void addWidthSpinBox( QWidget * widget, QGridLayout * layout );
inline bool isTypewriter() const { return ( m_textAnn->inplaceIntent() == Okular::TextAnnotation::TypeWriter ); }
Okular::TextAnnotation * m_textAnn;
PixmapPreviewSelector * m_pixmapSelector { nullptr };
KFontRequester * m_fontReq { nullptr };
KColorButton *m_textColorBn { nullptr };
QComboBox * m_textAlign { nullptr };
QDoubleSpinBox * m_spinWidth { nullptr };
};
class StampAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
2015-08-18 13:27:20 +00:00
explicit StampAnnotationWidget( Okular::Annotation * ann );
2017-03-02 19:39:24 +00:00
void applyChanges() override;
protected:
2017-03-02 19:39:24 +00:00
QWidget * createStyleWidget() override;
private:
Okular::StampAnnotation * m_stampAnn;
PixmapPreviewSelector * m_pixmapSelector;
};
class LineAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
2015-08-18 13:27:20 +00:00
explicit LineAnnotationWidget( Okular::Annotation * ann );
2017-03-02 19:39:24 +00:00
void applyChanges() override;
protected:
2017-03-02 19:40:09 +00:00
QWidget * createStyleWidget() override;
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:
2015-08-18 13:27:20 +00:00
explicit HighlightAnnotationWidget( Okular::Annotation * ann );
2017-03-02 19:39:24 +00:00
void applyChanges() override;
protected:
2017-03-02 19:39:24 +00:00
QWidget * createStyleWidget() override;
private:
Okular::HighlightAnnotation * m_hlAnn;
QComboBox * m_typeCombo;
};
class GeomAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
2015-08-18 13:27:20 +00:00
explicit GeomAnnotationWidget( Okular::Annotation * ann );
2017-03-02 19:39:24 +00:00
void applyChanges() override;
protected:
2017-03-02 19:39:24 +00:00
QWidget * createStyleWidget() override;
private:
Okular::GeomAnnotation * m_geomAnn;
QComboBox * m_typeCombo;
QCheckBox * m_useColor;
KColorButton * m_innerColor;
QDoubleSpinBox * m_spinSize;
};
class FileAttachmentAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
2015-08-18 13:27:20 +00:00
explicit FileAttachmentAnnotationWidget( Okular::Annotation * ann );
2017-03-02 19:39:24 +00:00
void applyChanges() override;
protected:
2017-03-02 19:39:24 +00:00
QWidget * createStyleWidget() override;
QWidget * createExtraWidget() override;
private:
Okular::FileAttachmentAnnotation * m_attachAnn;
PixmapPreviewSelector * m_pixmapSelector;
};
class CaretAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
2015-08-18 13:27:20 +00:00
explicit CaretAnnotationWidget( Okular::Annotation * ann );
2017-03-02 19:39:24 +00:00
void applyChanges() override;
protected:
2017-03-02 19:39:24 +00:00
QWidget * createStyleWidget() override;
private:
Okular::CaretAnnotation * m_caretAnn;
PixmapPreviewSelector * m_pixmapSelector;
};
class InkAnnotationWidget
: public AnnotationWidget
{
Q_OBJECT
public:
2015-08-18 13:27:20 +00:00
explicit InkAnnotationWidget( Okular::Annotation * ann );
2017-03-02 19:39:24 +00:00
void applyChanges() override;
protected:
2017-03-02 19:39:24 +00:00
QWidget * createStyleWidget() override;
private:
Okular::InkAnnotation * m_inkAnn;
QDoubleSpinBox * m_spinSize;
};
#endif