diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-09 22:07:33 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-10-09 22:07:33 -0500 |
commit | cc12a51c629cfaec41a6170a480ea0a757b26f54 (patch) | |
tree | 636f3cbfde6fc6d7c7afb51cf9a99690423414e5 /kcontrol/kicker | |
parent | 4e5a99f6d298ecd31eb229b14fabaaf4fb5b8d8e (diff) | |
download | tdebase-cc12a51c629cfaec41a6170a480ea0a757b26f54.tar.gz tdebase-cc12a51c629cfaec41a6170a480ea0a757b26f54.zip |
Link tabs to handbook sections in Style and Panels tdecontrol modules
This relates to Bug 1850
Diffstat (limited to 'kcontrol/kicker')
-rw-r--r-- | kcontrol/kicker/hidingconfig.cpp | 5 | ||||
-rw-r--r-- | kcontrol/kicker/hidingconfig.h | 2 | ||||
-rw-r--r-- | kcontrol/kicker/lookandfeelconfig.cpp | 5 | ||||
-rw-r--r-- | kcontrol/kicker/lookandfeelconfig.h | 2 | ||||
-rw-r--r-- | kcontrol/kicker/lookandfeeltab_kcm.cpp | 4 | ||||
-rw-r--r-- | kcontrol/kicker/lookandfeeltab_kcm.h | 2 | ||||
-rw-r--r-- | kcontrol/kicker/main.cpp | 2 | ||||
-rw-r--r-- | kcontrol/kicker/menuconfig.cpp | 5 | ||||
-rw-r--r-- | kcontrol/kicker/menuconfig.h | 2 | ||||
-rw-r--r-- | kcontrol/kicker/positionconfig.cpp | 5 | ||||
-rw-r--r-- | kcontrol/kicker/positionconfig.h | 2 |
11 files changed, 35 insertions, 1 deletions
diff --git a/kcontrol/kicker/hidingconfig.cpp b/kcontrol/kicker/hidingconfig.cpp index e1e71dc86..506eebdfb 100644 --- a/kcontrol/kicker/hidingconfig.cpp +++ b/kcontrol/kicker/hidingconfig.cpp @@ -92,3 +92,8 @@ void HidingConfig::defaults() // while we manage some of the widgets ourselves TQTimer::singleShot(0, this, TQT_SLOT(changed())); } + +TQString HidingConfig::handbookSection() const +{ + return "panel-hiding"; +} diff --git a/kcontrol/kicker/hidingconfig.h b/kcontrol/kicker/hidingconfig.h index 8aee0fb51..1a6e22472 100644 --- a/kcontrol/kicker/hidingconfig.h +++ b/kcontrol/kicker/hidingconfig.h @@ -33,6 +33,8 @@ public: void save(); void defaults(); + virtual TQString handbookSection() const; + public slots: void notChanged(); void aboutToNotifyKicker(); diff --git a/kcontrol/kicker/lookandfeelconfig.cpp b/kcontrol/kicker/lookandfeelconfig.cpp index af451421e..d7cbadf28 100644 --- a/kcontrol/kicker/lookandfeelconfig.cpp +++ b/kcontrol/kicker/lookandfeelconfig.cpp @@ -92,3 +92,8 @@ void LookAndFeelConfig::defaults() // while we manage some of the widgets ourselves TQTimer::singleShot(0, this, TQT_SLOT(changed())); } + +TQString LookAndFeelConfig::handbookSection() const +{ + return "panel-appearance"; +}
\ No newline at end of file diff --git a/kcontrol/kicker/lookandfeelconfig.h b/kcontrol/kicker/lookandfeelconfig.h index cd368ce36..ff8a55b38 100644 --- a/kcontrol/kicker/lookandfeelconfig.h +++ b/kcontrol/kicker/lookandfeelconfig.h @@ -33,6 +33,8 @@ public: void save(); void defaults(); + virtual TQString handbookSection() const; + public slots: void notChanged(); void aboutToNotifyKicker(); diff --git a/kcontrol/kicker/lookandfeeltab_kcm.cpp b/kcontrol/kicker/lookandfeeltab_kcm.cpp index b3c657c14..5695e3869 100644 --- a/kcontrol/kicker/lookandfeeltab_kcm.cpp +++ b/kcontrol/kicker/lookandfeeltab_kcm.cpp @@ -92,3 +92,7 @@ TQString LookAndFeelConfig::quickHelp() const " manipulation of the panel's buttons and applets."); } +TQString LookAndFeelConfig::handbookSection() const +{ + return "panel-appearance"; +}
\ No newline at end of file diff --git a/kcontrol/kicker/lookandfeeltab_kcm.h b/kcontrol/kicker/lookandfeeltab_kcm.h index d4d113687..32a89b4f8 100644 --- a/kcontrol/kicker/lookandfeeltab_kcm.h +++ b/kcontrol/kicker/lookandfeeltab_kcm.h @@ -34,6 +34,8 @@ public: void defaults(); TQString quickHelp() const; + virtual TQString handbookSection() const; + public slots: void configChanged(); diff --git a/kcontrol/kicker/main.cpp b/kcontrol/kicker/main.cpp index c8de607b9..da73da7c3 100644 --- a/kcontrol/kicker/main.cpp +++ b/kcontrol/kicker/main.cpp @@ -358,7 +358,7 @@ TDEAboutData *KickerConfig::aboutData() = new TDEAboutData(I18N_NOOP("kcmkicker"), I18N_NOOP("TDE Panel Control Module"), 0, 0, TDEAboutData::License_GPL, - I18N_NOOP("(c) 2009 - 2010 Timothy Pearson\n" + I18N_NOOP("(c) 2009 - 2014 Timothy Pearson\n" "(c) 1999 - 2001 Matthias Elter\n" "(c) 2002 - 2003 Aaron J. Seigo")); diff --git a/kcontrol/kicker/menuconfig.cpp b/kcontrol/kicker/menuconfig.cpp index 26624ff92..4f8a68605 100644 --- a/kcontrol/kicker/menuconfig.cpp +++ b/kcontrol/kicker/menuconfig.cpp @@ -92,3 +92,8 @@ void MenuConfig::defaults() // while we manage some of the widgets ourselves TQTimer::singleShot(0, this, TQT_SLOT(changed())); } + +TQString MenuConfig::handbookSection() const +{ + return "panel-menus"; +} diff --git a/kcontrol/kicker/menuconfig.h b/kcontrol/kicker/menuconfig.h index e6e548f83..a5fa29daf 100644 --- a/kcontrol/kicker/menuconfig.h +++ b/kcontrol/kicker/menuconfig.h @@ -33,6 +33,8 @@ public: void save(); void defaults(); + virtual TQString handbookSection() const; + public slots: void notChanged(); void aboutToNotifyKicker(); diff --git a/kcontrol/kicker/positionconfig.cpp b/kcontrol/kicker/positionconfig.cpp index a65a32341..00b571d13 100644 --- a/kcontrol/kicker/positionconfig.cpp +++ b/kcontrol/kicker/positionconfig.cpp @@ -92,3 +92,8 @@ void PositionConfig::defaults() // while we manage some of the widgets ourselves TQTimer::singleShot(0, this, TQT_SLOT(changed())); } + +TQString PositionConfig::handbookSection() const +{ + return "panel-arrangement"; +} diff --git a/kcontrol/kicker/positionconfig.h b/kcontrol/kicker/positionconfig.h index 6c4ec3680..93d7cb533 100644 --- a/kcontrol/kicker/positionconfig.h +++ b/kcontrol/kicker/positionconfig.h @@ -33,6 +33,8 @@ public: void save(); void defaults(); + virtual TQString handbookSection() const; + public slots: void notChanged(); void aboutToNotifyKicker(); |