You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
64 lines
1.1 KiB
64 lines
1.1 KiB
#ifndef _PAGE_FONT
|
|
#define _PAGE_FONT
|
|
#include <tdefontdialog.h> // For the font selection widget
|
|
#include <tqlayout.h> // For the tqlayout
|
|
#include "ksopts.h" // For storing the info.
|
|
|
|
/**
|
|
* A page for the preferences dialog to set the standard font
|
|
*
|
|
* @author Markus Weimer <markus.weimer@web.de>
|
|
*/
|
|
class PageFont : public TQWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
|
|
public:
|
|
/**
|
|
* Create the Widget
|
|
*/
|
|
PageFont( TQWidget *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:
|
|
TDEFontChooser* fontchooser; /** The font choosing widget from kdelib */
|
|
TQHBoxLayout* layout;
|
|
};
|
|
|
|
#endif
|