00001 /*************************************************************************** 00002 kcmkonsole.h 00003 ------------------- 00004 begin : mar apr 17 16:44:59 CEST 2001 00005 copyright : (C) 2001 by Andrea Rizzi 00006 email : rizzi@kde.org 00007 ***************************************************************************/ 00008 00009 /*************************************************************************** 00010 * * 00011 * This program is free software; you can redistribute it and/or modify * 00012 * it under the terms of the GNU General Public License as published by * 00013 * the Free Software Foundation; either version 2 of the License, or * 00014 * (at your option) any later version. * 00015 * * 00016 ***************************************************************************/ 00017 00018 #ifndef KCMKONSOLE_H 00019 #define KCMKONSOLE_H 00020 00021 #include <kcmodule.h> 00022 00023 #include "kcmkonsoledialog.h" 00024 00025 class TQFont; 00026 class TQStringList; 00027 00028 class KCMKonsole 00029 : public KCModule 00030 { 00031 Q_OBJECT 00032 00033 public: 00034 KCMKonsole (TQWidget *parent = 0, const char *name = 0, const TQStringList& = 0); 00035 00036 void load(); 00037 void load(bool useDefaults); 00038 void save(); 00039 void defaults(); 00040 private: 00041 KCMKonsoleDialog *dialog; 00042 bool xonXoffOrig; 00043 bool bidiOrig; 00044 }; 00045 00046 #endif
1.6.1