00001 /**************************************************************************** 00002 accessibility.h 00003 KDE Control Accessibility module to control Bell, Keyboard and ?Mouse? 00004 ------------------- 00005 Copyright : (c) 2000 Matthias Hölzer-Klüpfel 00006 ------------------- 00007 Original Author: Matthias Hölzer-Klüpfel 00008 Contributors: José Pablo Ezequiel "Pupeno" Fernández <pupeno@kde.org> 00009 Current Maintainer: José Pablo Ezequiel "Pupeno" Fernández <pupeno@kde.org> 00010 ****************************************************************************/ 00011 00012 /**************************************************************************** 00013 * * 00014 * This program is free software; you can redistribute it and/or modify * 00015 * it under the terms of the GNU General Public License as published by * 00016 * the Free Software Foundation; either version 2 of the License, or * 00017 * (at your option) any later version. * 00018 * * 00019 ****************************************************************************/ 00020 00021 #ifndef _ACCESSIBILITY_H_ 00022 #define _ACCESSIBILITY_H_ 00023 00024 #include <kdebug.h> 00025 00026 #include "accessibilityconfigwidget.h" 00027 00028 class AccessibilityConfig : public AccessibilityConfigWidget { 00029 Q_OBJECT 00030 00031 public: 00035 AccessibilityConfig(TQWidget *parent = 0L, const char *name = 0L, const TQStringList &foo = TQStringList()); 00036 00040 virtual ~AccessibilityConfig(); 00041 00050 void load(); 00051 void load( bool useDefaults ); 00052 00059 void save(); 00060 00067 void defaults(); 00068 00069 }; 00070 00071 #endif // _ACCESSIBILITY_H_
1.6.1