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.
39 lines
850 B
39 lines
850 B
#include "page_font.h"
|
|
#include "tqapplication.h"
|
|
PageFont::PageFont( TQWidget *parent, const char *name ) :
|
|
TQWidget( parent, name)
|
|
{
|
|
layout = new TQHBoxLayout(this);
|
|
fontchooser = new TDEFontChooser(this);
|
|
layout->addWidget(fontchooser);
|
|
connect(fontchooser,TQT_SIGNAL(fontSelected ( const TQFont&)), this, TQT_SLOT(update()));
|
|
}
|
|
|
|
PageFont::~PageFont( )
|
|
{
|
|
|
|
}
|
|
|
|
void PageFont::update( void ){
|
|
emit modified();
|
|
}
|
|
|
|
void PageFont::saveConfig( void )
|
|
{
|
|
ksopts->defaultFont = fontchooser->font();
|
|
TQApplication::setFont(fontchooser->font(), true, "KSirc::TextView" );
|
|
}
|
|
|
|
void PageFont::readConfig( const KSOColors * opts )
|
|
{
|
|
/* Just set the font from the preferences */
|
|
fontchooser->setFont( opts->defaultFont );
|
|
}
|
|
|
|
void PageFont::defaultConfig( void )
|
|
{
|
|
fontchooser->setFont( ksopts->defaultFont );
|
|
}
|
|
|
|
#include "page_font.moc"
|