~alan-griffiths/miral/0.4

« back to all changes in this revision

Viewing changes to miral/xcursor_loader.h

  • Committer: Alan Griffiths
  • Date: 2016-11-04 16:24:05 UTC
  • mfrom: (330.2.106 miral)
  • Revision ID: alan@octopull.co.uk-20161104162405-662hz4qujwrun0tr
Release 0.4.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2014 Canonical Ltd.
 
3
 *
 
4
 * This program is free software: you can redistribute it and/or modify it
 
5
 * under the terms of the GNU General Public License version 3,
 
6
 * as published by the Free Software Foundation.
 
7
 *
 
8
 * This program is distributed in the hope that it will be useful,
 
9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
11
 * GNU General Public License for more details.
 
12
 *
 
13
 * You should have received a copy of the GNU General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Authored by: Robert Carr <robert.carr@canonical.com>
 
17
 */
 
18
 
 
19
 
 
20
#ifndef MIRAL_CURSOR_LOADER_H_
 
21
#define MIRAL_CURSOR_LOADER_H_
 
22
 
 
23
#include "mir/input/cursor_images.h"
 
24
 
 
25
#include <memory>
 
26
#include <string>
 
27
#include <map>
 
28
#include <mutex>
 
29
 
 
30
// Unfortunately this library does not compile as C++ so we can not namespace it.
 
31
extern "C"
 
32
{
 
33
struct _XcursorImages;
 
34
}
 
35
 
 
36
namespace mir { namespace graphics { class CursorImage; } }
 
37
 
 
38
namespace miral
 
39
{
 
40
class XCursorLoader : public mir::input::CursorImages
 
41
{
 
42
public:
 
43
    XCursorLoader();
 
44
 
 
45
    explicit XCursorLoader(std::string const& theme);
 
46
 
 
47
    virtual ~XCursorLoader() = default;
 
48
 
 
49
    std::shared_ptr<mir::graphics::CursorImage> image(std::string const& cursor_name, mir::geometry::Size const& size);
 
50
 
 
51
protected:
 
52
    XCursorLoader(XCursorLoader const&) = delete;
 
53
    XCursorLoader& operator=(XCursorLoader const&) = delete;
 
54
 
 
55
private:
 
56
    std::mutex guard;
 
57
 
 
58
    std::map<std::string, std::shared_ptr<mir::graphics::CursorImage>> loaded_images;
 
59
 
 
60
    void load_cursor_theme(std::string const& theme_name);
 
61
    void load_appropriately_sized_image(_XcursorImages *images);
 
62
};
 
63
}
 
64
 
 
65
 
 
66
#endif /* MIRAL_CURSOR_LOADER_H_ */