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

« back to all changes in this revision

Viewing changes to wayland_cursor_theme.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_WAYLAND_CURSOR_THEME_H
 
21
#define KWIN_WAYLAND_CURSOR_THEME_H
 
22
 
 
23
#include <kwin_export.h>
 
24
 
 
25
#include <QObject>
 
26
 
 
27
struct wl_cursor_image;
 
28
struct wl_cursor_theme;
 
29
 
 
30
namespace KWayland
 
31
{
 
32
namespace Client
 
33
{
 
34
class ShmPool;
 
35
}
 
36
}
 
37
 
 
38
namespace KWin
 
39
{
 
40
 
 
41
class KWIN_EXPORT WaylandCursorTheme : public QObject
 
42
{
 
43
    Q_OBJECT
 
44
public:
 
45
    explicit WaylandCursorTheme(KWayland::Client::ShmPool *shm, QObject *parent = nullptr);
 
46
    virtual ~WaylandCursorTheme();
 
47
 
 
48
    wl_cursor_image *get(Qt::CursorShape shape);
 
49
 
 
50
private:
 
51
    void loadTheme();
 
52
    void destroyTheme();
 
53
    wl_cursor_theme *m_theme;
 
54
    KWayland::Client::ShmPool *m_shm = nullptr;
 
55
};
 
56
 
 
57
}
 
58
 
 
59
#endif