lib
KoFontTab.h00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __kofonttab_h__
00021 #define __kofonttab_h__
00022
00023 #include <kofonttabbase.h>
00024 #include <qfont.h>
00025
00026 class KoFontTab : public KoFontTabBase
00027 {
00028 Q_OBJECT
00029
00030 public:
00031 KoFontTab( uint fontListCriteria=0, QWidget* parent=0, const char* name=0, WFlags fl=0 );
00032 ~KoFontTab();
00033
00034 QFont getSelection();
00035
00036 public slots:
00037 void setSelection( const QFont &font );
00038
00039 signals:
00040 void familyChanged();
00041 void boldChanged();
00042 void italicChanged();
00043 void sizeChanged();
00044
00045 private:
00046 QFont comparisonFont;
00047
00048 private slots:
00049 void slotFontChanged( const QFont &font );
00050 };
00051
00052 #endif
|