kword
KWordFootNoteFrameSetIface.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KWORD_FOOTNOTEFRAMESET_IFACE_H
00021 #define KWORD_FOOTNOTEFRAMESET_IFACE_H
00022
00023 #include <KoDocumentIface.h>
00024 #include <dcopref.h>
00025
00026 #include <qstring.h>
00027 #include <qcolor.h>
00028 #include <qfont.h>
00029 #include "KWordTextFrameSetIface.h"
00030 class KWFootNoteFrameSet;
00031
00032 class KWFootNoteFrameSetIface : public KWordTextFrameSetIface
00033 {
00034 K_DCOP
00035 public:
00036 KWFootNoteFrameSetIface( KWFootNoteFrameSet *_note );
00037
00038 k_dcop:
00039 QString footEndNoteText() const;
00040 bool isFootNote() const;
00041 bool isEndNote() const;
00042 void setCounterText( const QString& text );
00043 private:
00044 KWFootNoteFrameSet *m_footNote;
00045
00046 };
00047
00048 #endif
|