diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-19 23:15:02 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2014-11-19 23:15:02 -0600 |
commit | ac2a2efee3834bba4eb17228b7f405829242cd96 (patch) | |
tree | 955a74225aaf611e454fb6519c5da883cfa9e09d /kcontrol/accessibility/accessibility.h | |
parent | 0a8ecfb93b699a519ad9af9e548279d50c50093b (diff) | |
parent | 3b73654a279458e28f225b2cce77bee098fe1739 (diff) | |
download | tdebase-ac2a2efee3834bba4eb17228b7f405829242cd96.tar.gz tdebase-ac2a2efee3834bba4eb17228b7f405829242cd96.zip |
Merge branch 'master' of https://scm.trinitydesktop.org/scm/git/tdebase
Diffstat (limited to 'kcontrol/accessibility/accessibility.h')
-rw-r--r-- | kcontrol/accessibility/accessibility.h | 71 |
1 files changed, 0 insertions, 71 deletions
diff --git a/kcontrol/accessibility/accessibility.h b/kcontrol/accessibility/accessibility.h deleted file mode 100644 index 9b4c833c3..000000000 --- a/kcontrol/accessibility/accessibility.h +++ /dev/null @@ -1,71 +0,0 @@ -/**************************************************************************** - accessibility.h - KDE Control Accessibility module to control Bell, Keyboard and ?Mouse? - ------------------- - Copyright : (c) 2000 Matthias Hölzer-Klüpfel - ------------------- - Original Author: Matthias Hölzer-Klüpfel - Contributors: José Pablo Ezequiel "Pupeno" Fernández <pupeno@kde.org> - Current Maintainer: José Pablo Ezequiel "Pupeno" Fernández <pupeno@kde.org> - ****************************************************************************/ - -/**************************************************************************** - * * - * This program is free software; you can redistribute it and/or modify * - * it under the terms of the GNU General Public License as published by * - * the Free Software Foundation; either version 2 of the License, or * - * (at your option) any later version. * - * * - ****************************************************************************/ - -#ifndef _ACCESSIBILITY_H_ -#define _ACCESSIBILITY_H_ - -#include <kdebug.h> - -#include "accessibilityconfigwidget.h" - -class AccessibilityConfig : public AccessibilityConfigWidget { - Q_OBJECT - - public: - /** - * Constructor - */ - AccessibilityConfig(TQWidget *parent = 0L, const char *name = 0L, const TQStringList &foo = TQStringList()); - - /** - * Destructor - */ - virtual ~AccessibilityConfig(); - - /** - * This method is invoked whenever the module should read its - * configuration (most of the times from a config file) and update the - * user interface. This happens when the user clicks the "Reset" button in - * the control center, to undo all of his changes and restore the currently - * valid settings. NOTE that this is not called after the modules is loaded, - * so you probably want to call this method in the constructor. - */ - void load(); - void load( bool useDefaults ); - - /** - * This function gets called when the user wants to save the settings in - * the user interface, updating the config files or wherever the - * configuration is stored. The method is called when the user clicks "Apply" - * or "Ok". - */ - void save(); - - /** - * This function is called to set the settings in the module to sensible - * default values. It gets called when hitting the "Default" button. The - * default values should probably be the same as the ones the application - * uses when started without a config file. - */ - void defaults(); - -}; - -#endif // _ACCESSIBILITY_H_ |