~azzar1/unity/fix-crash-acc-controller

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
// -*- Mode: C++; indent-tabs-mode: nil; tab-width: 2 -*-
/*
 * Copyright (C) 2013 Canonical Ltd
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 3 as
 * published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 *
 * Authored by: Marco Trevisan <marco.trevisan@canonical.com>
 */

#ifndef UNITY_DECORATION_STYLE
#define UNITY_DECORATION_STYLE

#include <NuxCore/Property.h>
#include <NuxCore/Rect.h>
#include <cairo/cairo.h>

#include <memory>
#include <vector>

struct _GtkStyleContext;

namespace unity
{
namespace decoration
{

enum class Side : unsigned
{
  TOP = 0,
  LEFT,
  RIGHT,
  BOTTOM,
};

enum class Alignment
{
  LEFT,
  CENTER,
  RIGHT,
  FLOATING
};

enum class WidgetState : unsigned
{
  NORMAL,
  PRELIGHT,
  PRESSED,
  DISABLED,
  BACKDROP,
  BACKDROP_PRELIGHT,
  BACKDROP_PRESSED,
  Size
};

enum class WindowButtonType : unsigned
{
  CLOSE,
  MINIMIZE,
  UNMAXIMIZE,
  MAXIMIZE,
  Size
};

enum class WMEvent
{
  DOUBLE_CLICK = 1,
  MIDDLE_CLICK = 2,
  RIGHT_CLICK = 3
};

enum class WMAction
{
  TOGGLE_SHADE,
  TOGGLE_MAXIMIZE,
  TOGGLE_MAXIMIZE_HORIZONTALLY,
  TOGGLE_MAXIMIZE_VERTICALLY,
  MINIMIZE,
  SHADE,
  MENU,
  LOWER,
  NONE
};

struct Border
{
  Border(int top, int left, int right, int bottom)
    : top(top)
    , left(left)
    , right(right)
    , bottom(bottom)
  {}

  Border()
    : Border(0, 0, 0, 0)
  {}

  int top;
  int left;
  int right;
  int bottom;
};

class Style
{
public:
  typedef std::shared_ptr<Style> Ptr;

  static Style::Ptr const& Get();
  ~Style();

  nux::ROProperty<std::string> theme;
  nux::ROProperty<std::string> font;
  nux::Property<std::string> title_font;
  nux::Property<unsigned> grab_wait;
  nux::Property<double> font_scale;

  decoration::Border const& Border() const;
  decoration::Border const& InputBorder() const;
  decoration::Border const& CornerRadius() const;
  decoration::Border Padding(Side, WidgetState ws = WidgetState::NORMAL) const;

  nux::Point ShadowOffset() const;
  nux::Color ActiveShadowColor() const;
  unsigned ActiveShadowRadius() const;
  nux::Color InactiveShadowColor() const;
  unsigned InactiveShadowRadius() const;

  unsigned GlowSize() const;
  nux::Color const& GlowColor() const;

  Alignment TitleAlignment() const;
  float TitleAlignmentValue() const;
  int TitleIndent() const;
  nux::Size TitleNaturalSize(std::string const&);
  nux::Size MenuItemNaturalSize(std::string const&);

  std::string ThemedFilePath(std::string const& basename, std::vector<std::string> const& extra_folders = {}) const;

  std::string WindowButtonFile(WindowButtonType, WidgetState) const;
  void DrawWindowButton(WindowButtonType, WidgetState, cairo_t*, double width, double height);

  WMAction WindowManagerAction(WMEvent) const;
  int DoubleClickMaxDistance() const;
  int DoubleClickMaxTimeDelta() const;

  void DrawSide(Side, WidgetState, cairo_t*, double width, double height);
  void DrawTitle(std::string const&, WidgetState, cairo_t*, double width, double height, nux::Rect const& bg_geo = nux::Rect(), _GtkStyleContext* ctx = nullptr);
  void DrawMenuItem(WidgetState, cairo_t*, double width, double height);
  void DrawMenuItemEntry(std::string const&, WidgetState, cairo_t*, double width, double height, nux::Rect const& bg_geo = nux::Rect());
  void DrawMenuItemIcon(std::string const&, WidgetState, cairo_t*, int size);

private:
  Style();
  Style(Style const&) = delete;
  Style& operator=(Style const&) = delete;

  struct Impl;
  std::unique_ptr<Impl> impl_;
};

} // decoration namespace
} // unity namespace

#endif