add more spacing
[personal-kdebase.git] / workspace / libs / kephal / screens / simplescreen.h
blob6f5b6a7ce62139270f00bbee5682499397379095
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_SIMPLESCREEN_H
22 #define KEPHAL_SIMPLESCREEN_H
24 #include "kephal/screens.h"
26 #include <QSize>
27 #include <QPoint>
28 #include <QObject>
31 namespace Kephal {
33 class SimpleScreen : public Screen {
34 Q_OBJECT
35 public:
36 SimpleScreen(QObject * parent, int id, const QSize & resolution, const QPoint & position, bool privacy);
37 SimpleScreen(QObject * parent);
39 virtual int id();
41 virtual QSize size();
42 virtual QPoint position();
44 virtual bool isPrivacyMode();
45 virtual void setPrivacyMode(bool b);
47 QList<Output *> outputs();
49 void _setId(int id);
50 void _setSize(const QSize & size);
51 void _setPosition(const QPoint & position);
52 void _setGeom(const QRect & geom);
53 QList<Output *> & _outputs();
55 Q_SIGNALS:
56 void privacyModeChangeRequested(SimpleScreen * screen, bool privacy);
58 private:
59 int m_id;
60 QSize m_size;
61 QPoint m_position;
62 bool m_privacy;
63 QList<Output *> m_outputs;
69 #endif // KEPHAL_SIMPLESCREEN_H