~ubuntu-branches/ubuntu/lucid/kdebase/lucid

« back to all changes in this revision

Viewing changes to kcontrol/konsole/kcmkonsole.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2008-05-27 12:09:48 UTC
  • mfrom: (1.1.13 upstream)
  • Revision ID: james.westby@ubuntu.com-20080527120948-dottsyd5rcwhzd36
Tags: 4:4.0.80-1ubuntu1
* Merge with Debian
 - remove 97_fix_target_link_libraries.diff
 - Add replaces/conflicts on -kde4 packages

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/***************************************************************************
2
 
                          kcmkonsole.h 
3
 
                             -------------------
4
 
    begin                : mar apr 17 16:44:59 CEST 2001
5
 
    copyright            : (C) 2001 by Andrea Rizzi
6
 
    email                : rizzi@kde.org
7
 
 ***************************************************************************/
8
 
 
9
 
/***************************************************************************
10
 
 *                                                                         *
11
 
 *   This program is free software; you can redistribute it and/or modify  *
12
 
 *   it under the terms of the GNU General Public License as published by  *
13
 
 *   the Free Software Foundation; either version 2 of the License, or     *
14
 
 *   (at your option) any later version.                                   *
15
 
 *                                                                         *
16
 
 ***************************************************************************/
17
 
 
18
 
#ifndef KCMKONSOLE_H
19
 
#define KCMKONSOLE_H
20
 
 
21
 
#include <kcmodule.h>
22
 
 
23
 
#include "kcmkonsoledialog.h"
24
 
 
25
 
class QFont;
26
 
class QStringList;
27
 
 
28
 
class KCMKonsole
29
 
        : public KCModule
30
 
{
31
 
        Q_OBJECT
32
 
 
33
 
public:
34
 
        KCMKonsole (QWidget *parent = 0, const char *name = 0, const QStringList& = 0);
35
 
        
36
 
        void load();
37
 
        void load(bool useDefaults);
38
 
        void save();
39
 
        void defaults();
40
 
private:
41
 
        KCMKonsoleDialog *dialog;
42
 
        bool xonXoffOrig;
43
 
        bool bidiOrig;
44
 
};
45
 
 
46
 
#endif