diff options
Diffstat (limited to 'kcontrol/konqhtml/htmlopts.h')
-rw-r--r-- | kcontrol/konqhtml/htmlopts.h | 72 |
1 files changed, 72 insertions, 0 deletions
diff --git a/kcontrol/konqhtml/htmlopts.h b/kcontrol/konqhtml/htmlopts.h new file mode 100644 index 000000000..bdfa3cd81 --- /dev/null +++ b/kcontrol/konqhtml/htmlopts.h @@ -0,0 +1,72 @@ +// +// +// "Misc Options" Tab for KFM configuration +// +// (c) Sven Radej 1998 +// (c) David Faure 1998 +// +// -------------------------------------------------------------- +// - 2013/10/16 Michele Calgaro +// Move some options to the 'advancedTabDialog' dialog + +#ifndef __KMISCHTML_OPTIONS_H +#define __KMISCHTML_OPTIONS_H + +#include <tqstrlist.h> +#include <tqcheckbox.h> +#include <tqlineedit.h> +#include <tqcombobox.h> + + +//----------------------------------------------------------------------------- +// The "Misc Options" Tab for the HTML view contains : + +// Change cursor over links +// Underline links +// AutoLoad Images +// Smooth Scrolling +// ... there is room for others :)) + + +#include <tqstring.h> +#include <tdeconfig.h> +#include <tdecmodule.h> +class TQRadioButton; +class KIntNumInput; + +class KMiscHTMLOptions : public TDECModule +{ + Q_OBJECT + +public: + KMiscHTMLOptions(TDEConfig *config, TQString group, TQWidget *parent = 0L, const char *name = 0L ); + ~KMiscHTMLOptions(); + virtual void load(); + virtual void load( bool useDefaults ); + virtual void save(); + virtual void defaults(); + +private slots: + void slotChanged(); + +private: + TDEConfig* m_pConfig; + TQString m_groupname; + + TQComboBox* m_pUnderlineCombo; + TQComboBox* m_pAnimationsCombo; + TQComboBox* m_pSmoothScrollingCombo; + TQCheckBox* m_cbCursor; + TQCheckBox* m_pAutoLoadImagesCheckBox; + TQCheckBox* m_pEnableFavIconCheckBox; + TQCheckBox* m_pUnfinishedImageFrameCheckBox; + TQCheckBox* m_pAutoRedirectCheckBox; + TQCheckBox* m_pOpenMiddleClick; + TQCheckBox* m_pBackRightClick; + TQCheckBox* m_pFormCompletionCheckBox; + TQCheckBox* m_pAdvancedAddBookmarkCheckBox; + TQCheckBox* m_pOnlyMarkedBookmarksCheckBox; + KIntNumInput* m_pMaxFormCompletionItems; +}; + +#endif |