~ubuntu-branches/ubuntu/gutsy/kdebase-workspace/gutsy-backports

« back to all changes in this revision

Viewing changes to kcontrol/kxkb/kxkb_part.h

  • Committer: Bazaar Package Importer
  • Author(s): Jonathan Riddell
  • Date: 2007-09-05 20:45:14 UTC
  • Revision ID: james.westby@ubuntu.com-20070905204514-632hhspl0nvrc84i
Tags: upstream-3.93.0
ImportĀ upstreamĀ versionĀ 3.93.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __kxkb_part_h
 
2
#define __kxkb_part_h
 
3
 
 
4
#include <kparts/part.h>
 
5
 
 
6
class QWidget;
 
7
class QString;
 
8
 
 
9
class KxkbPart : public KParts::ReadWritePart
 
10
{
 
11
  Q_OBJECT
 
12
 public:
 
13
  KxkbPart( QWidget* parentWidget,
 
14
               QObject* parent,
 
15
               const QStringList& args = QStringList() );
 
16
  virtual ~KxkbPart() {}
 
17
 
 
18
 protected slots:
 
19
  bool setLayout(const QString& layoutPair);
 
20
 
 
21
};
 
22
 
 
23
#endif