kword
KWordTableFrameSetIface.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef KWORD_TABLEFRAMESET_IFACE_H
00021 #define KWORD_TABLEFRAMESET_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 KWTableFrameSet;
00030 class KWordViewIface;
00031
00032 class KWordTableFrameSetIface : public KWordFrameSetIface
00033 {
00034 K_DCOP
00035 public:
00036 KWordTableFrameSetIface( KWTableFrameSet *_frame );
00037
00038 k_dcop:
00039 uint nbRows();
00040 uint numCols();
00041 uint numCells() ;
00042
00043 DCOPRef cell( int pos );
00044 DCOPRef cell( uint row, uint col );
00045 DCOPRef startEditingCell(uint row, uint col );
00046
00047 private:
00048 KWTableFrameSet *m_table;
00049 };
00050
00051 #endif
|