not quite so much needs to be delayed to the init() function
[personal-kdebase.git] / workspace / libs / kephal / configurations / externalconfiguration.h
blob420ce04dafec7086af1568296a013a2d4461605b
1 /*
2 * Copyright 2008 Aike J Sommer <dev@aikesommer.name>
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2,
7 * or (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details
14 * You should have received a copy of the GNU Library General Public
15 * License along with this program; if not, write to the
16 * Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
21 #ifndef KEPHAL_EXTERNALCONFIGURATION_H
22 #define KEPHAL_EXTERNALCONFIGURATION_H
24 #include "backendconfigurations.h"
27 namespace Kephal {
29 class ExternalConfiguration : public BackendConfiguration {
30 Q_OBJECT
31 public:
32 ExternalConfiguration(BackendConfigurations * parent);
34 QString name();
35 bool isModifiable();
36 bool isActivated();
37 QMap<int, QPoint> layout();
38 int primaryScreen();
39 public Q_SLOTS:
40 void activate();
41 Q_SIGNALS:
42 void activateExternal();
43 private:
44 BackendConfigurations * m_parent;
49 #endif