kword
KWordPictureFrameSetIface.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KWORD_PICTUREFRAMESET_IFACE_H
00021 #define KWORD_PICTUREFRAMESET_IFACE_H
00022
00023 #include <KoDocumentIface.h>
00024 #include "KWordFrameSetIface.h"
00025 #include <dcopref.h>
00026
00027 #include <qstring.h>
00028 #include <qcolor.h>
00029 class KWPictureFrameSet;
00030 class KWordViewIface;
00031
00032 class KWordPictureFrameSetIface : public KWordFrameSetIface
00033 {
00034 K_DCOP
00035 public:
00036 KWordPictureFrameSetIface( KWPictureFrameSet *_frame );
00037
00038 k_dcop:
00039 bool keepAspectRatio() const;
00040 void setKeepAspectRatio( bool b );
00041 void loadImage( const QString &image );
00042
00043 private:
00044 KWPictureFrameSet *m_frame;
00045 };
00046
00047 #endif
|