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

« back to all changes in this revision

Viewing changes to screens_fb.h

  • 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
 
#ifndef KWIN_SCREENS_FRAMEBUFFER_H
21
 
#define KWIN_SCREENS_FRAMEBUFFER_H
22
 
#include "screens.h"
23
 
 
24
 
namespace KWin
25
 
{
26
 
class FramebufferBackend;
27
 
 
28
 
class FramebufferScreens : public Screens
29
 
{
30
 
    Q_OBJECT
31
 
public:
32
 
    FramebufferScreens(FramebufferBackend *backend, QObject *parent = nullptr);
33
 
    virtual ~FramebufferScreens();
34
 
    void init() override;
35
 
    QRect geometry(int screen) const override;
36
 
    int number(const QPoint &pos) const override;
37
 
    QSize size(int screen) const override;
38
 
    void updateCount() override;
39
 
 
40
 
private:
41
 
    FramebufferBackend *m_backend;
42
 
};
43
 
 
44
 
}
45
 
 
46
 
#endif