kpresenter
KPrPictureProperty.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef PICTUREPROPERTY_H
00022 #define PICTUREPROPERTY_H
00023
00024 #include <qwidget.h>
00025
00026 #include "KPrCommand.h"
00027
00028 class PicturePropertyUI;
00029 class QPixmap;
00030
00031 class KPrPictureProperty : public QWidget
00032 {
00033 Q_OBJECT
00034 public:
00035 KPrPictureProperty( QWidget *parent, const char *name, const QPixmap &pixmap,
00036 KPrPictureSettingCmd::PictureSettings pictureSettings );
00037 ~KPrPictureProperty();
00038
00039 int getPicturePropertyChange() const;
00040 KPrPictureSettingCmd::PictureSettings getPictureSettings() const;
00041
00042 void apply();
00043
00044 private:
00045 PicturePropertyUI *m_ui;
00046
00047 KPrPictureSettingCmd::PictureSettings m_pictureSettings;
00048
00049 protected slots:
00050 void slotReset();
00051 };
00052
00053 #endif
|