Whitespace fixes in canvas.h
[ardour.git] / libs / canvas / canvas / canvas.h
1 /*
2     Copyright (C) 2011-2013 Paul Davis
3     Author: Carl Hetherington <cth@carlh.net>
4
5     This program is free software; you can redistribute it and/or modify
6     it under the terms of the GNU General Public License as published by
7     the Free Software Foundation; either version 2 of the License, or
8     (at your option) any later version.
9
10     This program is distributed in the hope that it will be useful,
11     but WITHOUT ANY WARRANTY; without even the implied warranty of
12     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13     GNU General Public License for more details.
14
15     You should have received a copy of the GNU General Public License
16     along with this program; if not, write to the Free Software
17     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 */
19
20 /** @file  canvas/canvas.h
21  *  @brief Declaration of the main canvas classes.
22  */
23
24 #ifndef __CANVAS_CANVAS_H__
25 #define __CANVAS_CANVAS_H__
26
27 #include <set>
28
29 #include <gdkmm/window.h>
30 #include <gtkmm/eventbox.h>
31 #include <gtkmm/alignment.h>
32 #include <cairomm/surface.h>
33 #include <cairomm/context.h>
34
35 #include "pbd/signals.h"
36
37 #include "gtkmm2ext/cairo_canvas.h"
38
39 #include "canvas/visibility.h"
40 #include "canvas/root_group.h"
41
42 namespace Gtk {
43         class Window;
44         class Label;
45 }
46
47 namespace Pango {
48         class Context;
49 }
50
51 namespace ArdourCanvas
52 {
53 struct Rect;
54
55 class Item;
56 class ScrollGroup;
57
58 /** The base class for our different types of canvas.
59  *
60  *  A canvas is an area which holds a collection of canvas items, which in
61  *  turn represent shapes, text, etc.
62  *
63  *  The canvas has an arbitrarily large area, and is addressed in coordinates
64  *  of screen pixels, with an origin of (0, 0) at the top left.  x increases
65  *  rightwards and y increases downwards.
66  */
67
68 class LIBCANVAS_API Canvas
69 {
70 public:
71         Canvas ();
72         virtual ~Canvas () {}
73
74         /** called to request a redraw of an area of the canvas in WINDOW coordinates */
75         virtual void request_redraw (Rect const &) = 0;
76         /** called to ask the canvas to request a particular size from its host */
77         virtual void request_size (Duple) = 0;
78         /** called to ask the canvas' host to `grab' an item */
79         virtual void grab (Item *) = 0;
80         /** called to ask the canvas' host to `ungrab' any grabbed item */
81         virtual void ungrab () = 0;
82
83         /** called to ask the canvas' host to keyboard focus on an item */
84         virtual void focus (Item *) = 0;
85         /** called to ask the canvas' host to drop keyboard focus on an item */
86         virtual void unfocus (Item*) = 0;
87
88         void render (Rect const &, Cairo::RefPtr<Cairo::Context> const &) const;
89
90         /** @return root group */
91         Item* root () {
92                 return &_root;
93         }
94
95         void set_background_color (ArdourCanvas::Color);
96         ArdourCanvas::Color background_color() const { return _bg_color; }
97
98         /** Called when an item is being destroyed */
99         virtual void item_going_away (Item *, Rect) {}
100         virtual void item_shown_or_hidden (Item *);
101         void item_visual_property_changed (Item*);
102         void item_changed (Item *, Rect);
103         void item_moved (Item *, Rect);
104
105         Duple canvas_to_window (Duple const&, bool rounded = true) const;
106         Duple window_to_canvas (Duple const&) const;
107
108         void canvas_to_window (Coord cx, Coord cy, Coord& wx, Coord& wy) {
109                 Duple d = canvas_to_window (Duple (cx, cy));
110                 wx = d.x;
111                 wy = d.y;
112         }
113
114         void window_to_canvas (Coord wx, Coord wy, Coord& cx, Coord& cy) {
115                 Duple d = window_to_canvas (Duple (wx, wy));
116                 cx = d.x;
117                 cy = d.y;
118         }
119
120         void scroll_to (Coord x, Coord y);
121         void add_scroller (ScrollGroup& i);
122
123         virtual Rect  visible_area () const = 0;
124         virtual Coord width () const = 0;
125         virtual Coord height () const = 0;
126
127         /** Store the coordinates of the mouse pointer in window coordinates in
128            @param winpos. Return true if the position was within the window,
129            false otherwise.
130         */
131         virtual bool get_mouse_position (Duple& winpos) const = 0;
132
133         /** Signal to be used by items that need to track the mouse position
134            within the window.
135         */
136         sigc::signal<void,Duple const&> MouseMotion;
137
138         /** Ensures that the position given by @param winpos (in window
139             coordinates) is within the current window area, possibly reduced by
140             @param border.
141         */
142         Duple clamp_to_window (Duple const& winpos, Duple border = Duple());
143
144         void zoomed();
145
146         std::string indent() const;
147         std::string render_indent() const;
148         void dump (std::ostream&) const;
149
150         /** Ask the canvas to pick the current item again, and generate
151             an enter event for it.
152         */
153         virtual void re_enter () = 0;
154
155         virtual void start_tooltip_timeout (Item*) {}
156         virtual void stop_tooltip_timeout () {}
157
158         /** Set the timeout used to display tooltips, in milliseconds
159          */
160         static void set_tooltip_timeout (uint32_t msecs);
161
162         virtual Glib::RefPtr<Pango::Context> get_pango_context() = 0;
163
164 protected:
165         Root  _root;
166         Color _bg_color;
167
168         static uint32_t tooltip_timeout_msecs;
169
170         void queue_draw_item_area (Item *, Rect);
171         virtual void pick_current_item (int state) = 0;
172         virtual void pick_current_item (Duple const &, int state) = 0;
173
174         std::list<ScrollGroup*> scrollers;
175 };
176
177 /** A canvas which renders onto a GTK EventBox */
178 class LIBCANVAS_API GtkCanvas : public Canvas, public Gtk::EventBox, public Gtkmm2ext::CairoCanvas
179 {
180 public:
181         GtkCanvas ();
182         ~GtkCanvas () { _in_dtor = true ; }
183
184         void use_nsglview ();
185
186         void request_redraw (Rect const &);
187         void request_size (Duple);
188         void grab (Item *);
189         void ungrab ();
190         void focus (Item *);
191         void unfocus (Item*);
192
193         Rect visible_area () const;
194         Coord width() const;
195         Coord height() const;
196
197         bool get_mouse_position (Duple& winpos) const;
198
199         void set_single_exposure (bool s) { _single_exposure = s; }
200         bool single_exposure () { return _single_exposure; }
201
202         void re_enter ();
203
204         void start_tooltip_timeout (Item*);
205         void stop_tooltip_timeout ();
206
207         Glib::RefPtr<Pango::Context> get_pango_context();
208
209         void render (Cairo::RefPtr<Cairo::Context> const & ctx, cairo_rectangle_t* r)
210         {
211                 ArdourCanvas::Rect rect (r->x, r->y, r->width + r->x, r->height + r->y);
212                 Canvas::render (rect, ctx);
213         }
214
215         uint32_t background_color() { return Canvas::background_color (); }
216
217 protected:
218         void on_size_allocate (Gtk::Allocation&);
219         bool on_scroll_event (GdkEventScroll *);
220         bool on_expose_event (GdkEventExpose *);
221         bool on_key_press_event (GdkEventKey *);
222         bool on_key_release_event (GdkEventKey *);
223         bool on_button_press_event (GdkEventButton *);
224         bool on_button_release_event (GdkEventButton* event);
225         bool on_motion_notify_event (GdkEventMotion *);
226         bool on_enter_notify_event (GdkEventCrossing*);
227         bool on_leave_notify_event (GdkEventCrossing*);
228         void on_map();
229         void on_unmap();
230
231         void on_realize ();
232
233         bool button_handler (GdkEventButton *);
234         bool motion_notify_handler (GdkEventMotion *);
235         bool deliver_event (GdkEvent *);
236         void deliver_enter_leave (Duple const & point, int state);
237
238         void pick_current_item (int state);
239         void pick_current_item (Duple const &, int state);
240
241 private:
242         void item_going_away (Item *, Rect);
243         void item_shown_or_hidden (Item *);
244         bool send_leave_event (Item const *, double, double) const;
245
246         Cairo::RefPtr<Cairo::Surface> canvas_image;
247
248         /** Item currently chosen for event delivery based on pointer position */
249         Item * _current_item;
250         /** Item pending as _current_item */
251         Item * _new_current_item;
252         /** the item that is currently grabbed, or 0 */
253         Item * _grabbed_item;
254         /** the item that currently has key focus or 0 */
255         Item * _focused_item;
256
257         bool _single_exposure;
258
259         sigc::connection tooltip_timeout_connection;
260         Item* current_tooltip_item;
261         Gtk::Window* tooltip_window;
262         Gtk::Label* tooltip_label;
263         bool show_tooltip ();
264         void hide_tooltip ();
265         bool really_start_tooltip_timeout ();
266
267         bool _in_dtor;
268
269         void* _nsglview;
270 };
271
272 /** A GTK::Alignment with a GtkCanvas inside it plus some Gtk::Adjustments for
273  *   scrolling.
274  *
275  * This provides a GtkCanvas that can be scrolled. It does NOT implement the
276  * Gtk::Scrollable interface.
277  */
278 class LIBCANVAS_API GtkCanvasViewport : public Gtk::Alignment
279 {
280 public:
281         GtkCanvasViewport (Gtk::Adjustment &, Gtk::Adjustment &);
282
283         /** @return our GtkCanvas */
284         GtkCanvas* canvas () {
285                 return &_canvas;
286         }
287
288 protected:
289         void on_size_request (Gtk::Requisition *);
290
291 private:
292         /** our GtkCanvas */
293         GtkCanvas _canvas;
294         Gtk::Adjustment& hadjustment;
295         Gtk::Adjustment& vadjustment;
296
297         void scrolled ();
298 };
299
300 }
301
302 std::ostream& operator<< (std::ostream&, const ArdourCanvas::Canvas&);
303
304 #endif