~ubuntu-branches/ubuntu/utopic/kde-workspace/utopic-proposed

« back to all changes in this revision

Viewing changes to ksmserver/kcm/smserverconfigimpl.h

  • Committer: Bazaar Package Importer
  • Author(s): Michał Zając
  • Date: 2011-07-09 08:31:15 UTC
  • Revision ID: james.westby@ubuntu.com-20110709083115-ohyxn6z93mily9fc
Tags: upstream-4.6.90
Import upstream version 4.6.90

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/***************************************************************************
 
2
                          smserverconfigimpl.h  -  description
 
3
                             -------------------
 
4
    begin                : Thu May 17 2001
 
5
    copyright            : (C) 2001 by stulle
 
6
    email                : stulle@tux
 
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 SMSERVERCONFIGIMPL_H
 
19
#define SMSERVERCONFIGIMPL_H
 
20
 
 
21
#include <QWidget>
 
22
#include "ui_smserverconfigdlg.h"
 
23
 
 
24
/**
 
25
  *@author stulle
 
26
  */
 
27
 
 
28
class SMServerConfigDlg : public QWidget, public Ui::SMServerConfigDlg
 
29
{
 
30
public:
 
31
  SMServerConfigDlg( QWidget *parent ) : QWidget( parent ) {
 
32
    setupUi( this );
 
33
  }
 
34
};
 
35
 
 
36
 
 
37
class SMServerConfigImpl : public SMServerConfigDlg  {
 
38
   Q_OBJECT
 
39
public:
 
40
        SMServerConfigImpl(QWidget *parent=0);
 
41
        ~SMServerConfigImpl();
 
42
public Q_SLOTS: // Public slots
 
43
  /** No descriptions */
 
44
  void configChanged();
 
45
Q_SIGNALS: // Signals
 
46
  /** No descriptions */
 
47
  void changed();
 
48
};
 
49
 
 
50
#endif