tdeprint
kmconfigpreview.cpp
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #include "kmconfigpreview.h"
00021
00022 #include <tqcheckbox.h>
00023 #include <tqlayout.h>
00024 #include <tqgroupbox.h>
00025 #include <tqlabel.h>
00026
00027 #include <tdelocale.h>
00028 #include <kurlrequester.h>
00029 #include <tdeconfig.h>
00030 #include <kdialog.h>
00031
00032 KMConfigPreview::KMConfigPreview(TQWidget *parent, const char *name)
00033 : KMConfigPage(parent, name)
00034 {
00035 setPageName(i18n("Preview"));
00036 setPageHeader(i18n("Preview Settings"));
00037 setPagePixmap("filefind");
00038
00039 TQGroupBox *box = new TQGroupBox(0, Qt::Vertical, i18n("Preview Program"), this);
00040
00041 m_useext = new TQCheckBox(i18n("&Use external preview program"), box);
00042 m_program = new KURLRequester(box);
00043 TQLabel *lab = new TQLabel(box);
00044 lab->setText(i18n("You can use an external preview program (PS viewer) instead of the "
00045 "TDE built-in preview system. Note that if the TDE default PS viewer "
00046 "(KGhostView) cannot be found, TDE tries automatically to find another "
00047 "external PostScript viewer"));
00048 lab->setTextFormat(TQt::RichText);
00049
00050 TQVBoxLayout *l0 = new TQVBoxLayout(this, 0, KDialog::spacingHint());
00051 l0->addWidget(box);
00052 l0->addStretch(1);
00053 TQVBoxLayout *l1 = new TQVBoxLayout(TQT_TQLAYOUT(box->layout()), KDialog::spacingHint());
00054 l1->addWidget(lab);
00055 l1->addWidget(m_useext);
00056 l1->addWidget(m_program);
00057
00058 connect(m_useext, TQT_SIGNAL(toggled(bool)), m_program, TQT_SLOT(setEnabled(bool)));
00059 m_program->setEnabled(false);
00060 }
00061
00062 void KMConfigPreview::loadConfig(TDEConfig *conf)
00063 {
00064 conf->setGroup("General");
00065 m_useext->setChecked(conf->readBoolEntry("ExternalPreview", false));
00066 m_program->setURL(conf->readPathEntry("PreviewCommand", "gv"));
00067 }
00068
00069 void KMConfigPreview::saveConfig(TDEConfig *conf)
00070 {
00071 conf->setGroup("General");
00072 conf->writeEntry("ExternalPreview", m_useext->isChecked());
00073 conf->writePathEntry("PreviewCommand", m_program->url());
00074 }