From 4aed2c8219774f5d797760606b8489a92ddc5163 Mon Sep 17 00:00:00 2001 From: toma Date: Wed, 25 Nov 2009 17:56:58 +0000 Subject: Copy the KDE 3.5 branch to branches/trinity for new KDE 3.5 features. BUG:215923 git-svn-id: svn://anonsvn.kde.org/home/kde/branches/trinity/kdebase@1054174 283d02a7-25f6-0310-bc7c-ecb5cbfe19da --- kcontrol/konqhtml/appearance.h | 70 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 kcontrol/konqhtml/appearance.h (limited to 'kcontrol/konqhtml/appearance.h') diff --git a/kcontrol/konqhtml/appearance.h b/kcontrol/konqhtml/appearance.h new file mode 100644 index 000000000..dd16626bd --- /dev/null +++ b/kcontrol/konqhtml/appearance.h @@ -0,0 +1,70 @@ +// -*- c-basic-offset: 2 -*- +// (c) Martin R. Jones 1996 +// (c) Bernd Wuebben 1998 +// KControl port & modifications +// (c) Torben Weis 1998 +// End of the KControl port, added 'kfmclient configure' call. +// (c) David Faure 1998 +// Cleanup and modifications for KDE 2.1 +// (c) Daniel Molkentin 2000 + +#ifndef __APPEARANCE_H__ +#define __APPEARANCE_H__ + +#include +#include + +#include + +class QSpinBox; +class KFontCombo; + +class KAppearanceOptions : public KCModule +{ + Q_OBJECT +public: + KAppearanceOptions(KConfig *config, QString group, QWidget *parent=0, const char *name=0); + ~KAppearanceOptions(); + + virtual void load(); + virtual void load( bool useDefaults ); + virtual void save(); + virtual void defaults(); + +public slots: + void slotFontSize( int ); + void slotMinimumFontSize( int ); + void slotStandardFont(const QString& n); + void slotFixedFont(const QString& n); + void slotSerifFont( const QString& n ); + void slotSansSerifFont( const QString& n ); + void slotCursiveFont( const QString& n ); + void slotFantasyFont( const QString& n ); + void slotEncoding( const QString& n); + void slotFontSizeAdjust( int value ); + +private: + void updateGUI(); + +private: + + KConfig *m_pConfig; + QString m_groupname; + QStringList m_families; + + KIntNumInput* m_minSize; + KIntNumInput* m_MedSize; + KIntNumInput* m_pageDPI; + KFontCombo* m_pFonts[6]; + QComboBox* m_pEncoding; + QSpinBox *m_pFontSizeAdjust; + + int fSize; + int fMinSize; + QStringList encodings; + QStringList fonts; + QStringList defaultFonts; + QString encodingName; +}; + +#endif // __APPEARANCE_H__ -- cgit v1.2.1