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"
33 class SimpleScreen
: public Screen
{
36 SimpleScreen(QObject
* parent
, int id
, const QSize
& resolution
, const QPoint
& position
, bool privacy
);
37 SimpleScreen(QObject
* parent
);
42 virtual QPoint
position();
44 virtual bool isPrivacyMode();
45 virtual void setPrivacyMode(bool b
);
47 QList
<Output
*> outputs();
50 void _setSize(const QSize
& size
);
51 void _setPosition(const QPoint
& position
);
52 void _setGeom(const QRect
& geom
);
53 QList
<Output
*> & _outputs();
56 void privacyModeChangeRequested(SimpleScreen
* screen
, bool privacy
);
63 QList
<Output
*> m_outputs
;
69 #endif // KEPHAL_SIMPLESCREEN_H