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.
81 lines
2.7 KiB
81 lines
2.7 KiB
// optionDiologWidget.cpp |
|
// |
|
// Part of KDVI - A DVI previewer for the KDE desktop environemt |
|
// |
|
// (C) 2003 Stefan Kebekus |
|
// Distributed under the GPL |
|
|
|
// Add header files alphabetically |
|
|
|
#include <kconfig.h> |
|
#include <kcombobox.h> |
|
#include <kdebug.h> |
|
#include <kinstance.h> |
|
#include <klocale.h> |
|
#include <qbuttongroup.h> |
|
#include <qcheckbox.h> |
|
#include <qtooltip.h> |
|
#include <qwhatsthis.h> |
|
|
|
#include "../config.h" |
|
#include "fontpool.h" |
|
#include "optionDialogFontsWidget.h" |
|
|
|
|
|
// Constructs a optionDialogWidget_base which is a child of 'parent', with |
|
// the name 'name' and widget flags set to 'f'. |
|
optionDialogFontsWidget::optionDialogFontsWidget( QWidget* parent, const char* name, WFlags fl ) |
|
: optionDialogFontsWidget_base( parent, name, fl ) |
|
{ |
|
instance = 0; |
|
config = 0; |
|
instance = new KInstance("kdvi"); |
|
config = instance->config(); |
|
|
|
// Important! The default values here must be the same as in kdvi_multipage.cpp |
|
for(int i=0; i<NumberOfMFModes; i++) |
|
metafontMode->insertItem(QString("%1 dpi / %2").arg(MFResolutions[i]).arg(MFModenames[i])); |
|
|
|
config->setGroup("kdvi"); |
|
metafontMode->setCurrentItem( config->readNumEntry( "MetafontMode" , DefaultMFMode )); |
|
|
|
#ifdef HAVE_FREETYPE |
|
usePFBCheckBox->setChecked( config->readBoolEntry( "UseType1Fonts", true ) ); |
|
useFontHintingCheckBox->setChecked( config->readBoolEntry( "UseFontHints", true ) ); |
|
useFontHintingCheckBox->setEnabled(usePFBCheckBox->isChecked()); |
|
#else |
|
usePFBCheckBox->setChecked(false); |
|
usePFBCheckBox->setEnabled(false); |
|
useFontHintingCheckBox->setEnabled(false); |
|
useFontHintingCheckBox->setChecked(false); |
|
QToolTip::add(PFB_ButtonGroup, i18n("This version of KDVI does not support type 1 fonts.")); |
|
QWhatsThis::add(PFB_ButtonGroup, i18n("KDVI needs the FreeType library to access type 1 fonts. This library " |
|
"was not present when KDVI was compiled. If you want to use type 1 " |
|
"fonts, you must either install the FreeType library and recompile KDVI " |
|
"yourself, or find a precompiled software package for your operating " |
|
"system.")); |
|
#endif |
|
|
|
fontGenerationCheckBox->setChecked( config->readBoolEntry( "MakePK", true ) ); |
|
} |
|
|
|
optionDialogFontsWidget::~optionDialogFontsWidget() |
|
{ |
|
if (instance != 0L) |
|
delete instance; // that will also delete the config |
|
} |
|
|
|
void optionDialogFontsWidget::apply(void) |
|
{ |
|
config->setGroup("kdvi"); |
|
#ifdef HAVE_FREETYPE |
|
config->writeEntry( "UseType1Fonts", usePFBCheckBox->isChecked() ); |
|
config->writeEntry( "UseFontHints", useFontHintingCheckBox->isChecked() ); |
|
#endif |
|
config->writeEntry( "MetafontMode", metafontMode->currentItem() ); |
|
config->writeEntry( "MakePK", fontGenerationCheckBox->isChecked() ); |
|
config->sync(); |
|
} |
|
|
|
|
|
#include "optionDialogFontsWidget.moc"
|
|
|