~ubuntu-branches/ubuntu/wily/kwin/wily-proposed

« back to all changes in this revision

Viewing changes to backends/fbdev/screens_fb.cpp

  • Committer: Package Import Robot
  • Author(s): Jonathan Riddell
  • Date: 2015-08-10 23:16:37 UTC
  • mfrom: (1.1.10)
  • Revision ID: package-import@ubuntu.com-20150810231637-5zb2tstjkez93hml
Tags: 4:5.3.95-0ubuntu1
new upstream beta release

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/********************************************************************
 
2
 KWin - the KDE window manager
 
3
 This file is part of the KDE project.
 
4
 
 
5
Copyright (C) 2015 Martin Gräßlin <mgraesslin@kde.org>
 
6
 
 
7
This program is free software; you can redistribute it and/or modify
 
8
it under the terms of the GNU General Public License as published by
 
9
the Free Software Foundation; either version 2 of the License, or
 
10
(at your option) any later version.
 
11
 
 
12
This program is distributed in the hope that it will be useful,
 
13
but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
GNU General Public License for more details.
 
16
 
 
17
You should have received a copy of the GNU General Public License
 
18
along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
*********************************************************************/
 
20
#include "screens_fb.h"
 
21
#include "fb_backend.h"
 
22
 
 
23
namespace KWin
 
24
{
 
25
 
 
26
FramebufferScreens::FramebufferScreens(FramebufferBackend *backend, QObject *parent)
 
27
    : Screens(parent)
 
28
    , m_backend(backend)
 
29
{
 
30
}
 
31
 
 
32
FramebufferScreens::~FramebufferScreens() = default;
 
33
 
 
34
void FramebufferScreens::init()
 
35
{
 
36
    KWin::Screens::init();
 
37
    updateCount();
 
38
    emit changed();
 
39
}
 
40
 
 
41
QRect FramebufferScreens::geometry(int screen) const
 
42
{
 
43
    if (screen == 0) {
 
44
        return QRect(QPoint(0, 0), size(screen));
 
45
    }
 
46
    return QRect();
 
47
}
 
48
 
 
49
QSize FramebufferScreens::size(int screen) const
 
50
{
 
51
    if (screen == 0) {
 
52
        return m_backend->size();
 
53
    }
 
54
    return QSize();
 
55
}
 
56
 
 
57
void FramebufferScreens::updateCount()
 
58
{
 
59
    setCount(1);
 
60
}
 
61
 
 
62
int FramebufferScreens::number(const QPoint &pos) const
 
63
{
 
64
    Q_UNUSED(pos)
 
65
    return 0;
 
66
}
 
67
 
 
68
}