diff options
Diffstat (limited to 'ksirc/KSPrefs/page_font.h')
-rw-r--r-- | ksirc/KSPrefs/page_font.h | 62 |
1 files changed, 62 insertions, 0 deletions
diff --git a/ksirc/KSPrefs/page_font.h b/ksirc/KSPrefs/page_font.h new file mode 100644 index 00000000..0d2fa673 --- /dev/null +++ b/ksirc/KSPrefs/page_font.h @@ -0,0 +1,62 @@ +#ifndef _PAGE_FONT +#define _PAGE_FONT +#include <kfontdialog.h> // For the font selection widget +#include <qlayout.h> // For the layout +#include "ksopts.h" // For storing the info. + +/** + * A page for the preferences dialog to set the standard font + * + * @author Markus Weimer <[email protected]> + */ +class PageFont : public QWidget +{ + Q_OBJECT + + public: + /** + * Create the Widget + */ + PageFont( QWidget *parent = 0, const char *name = 0 ); + + + /* + * Standard destructor + */ + ~PageFont(); + + + /** + * Save the config set by the user to the global ksopts object. + * + */ + void saveConfig( void ); + + + /** + * Reset the current user config to the one stored in the global + * ksopts object. + * + */ + void defaultConfig( void ); + + + /** + * Read the configuration from the given KSOptions object + * + * @param opts the KSOptions object to modify + */ + void readConfig( const KSOColors* opts=ksopts ); + + public slots: + void update( void ); + + signals: + void modified(); + + private: + KFontChooser* fontchooser; /** The font choosing widget from kdelib */ + QHBoxLayout* layout; +}; + +#endif |