The Battle for Wesnoth  1.19.10+dev
dispatcher.cpp
Go to the documentation of this file.
1 /*
2  Copyright (C) 2009 - 2025
3  by Mark de Wever <koraq@xs4all.nl>
4  Part of the Battle for Wesnoth Project https://www.wesnoth.org/
5 
6  This program is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10  This program is distributed in the hope that it will be useful,
11  but WITHOUT ANY WARRANTY.
12 
13  See the COPYING file for more details.
14 */
15 
16 #define GETTEXT_DOMAIN "wesnoth-lib"
17 
19 
20 
21 namespace gui2
22 {
23 namespace event
24 {
25 /***** dispatcher class. *****/
26 
28  : mouse_behavior_(mouse_behavior::all)
29  , want_keyboard_input_(true)
30  , signal_queue_()
31  , signal_mouse_queue_()
32  , signal_keyboard_queue_()
33  , signal_touch_motion_queue_()
34  , signal_touch_gesture_queue_()
35  , signal_notification_queue_()
36  , signal_message_queue_()
37  , connected_(false)
38  , hotkeys_()
39 {
40 }
41 
43 {
44  if(connected_) {
45  disconnect();
46  }
47 }
48 
50 {
51  assert(!connected_);
52  connected_ = true;
53  connect_dispatcher(this);
54 }
55 
57 {
58  assert(connected_);
59  connected_ = false;
61 }
62 
63 bool dispatcher::has_event(const ui_event event, const event_queue_type event_type)
64 {
65 #if 0
66  const bool res = dispatcher_implementation::has_handler(*this, event_type, event);
67  PLAIN_LOG << "Event '" << event << " '" << (res ? "found" : "not found") << "in queue";
68  return res;
69 #else
70  return dispatcher_implementation::has_handler(*this, event_type, event);
71 #endif
72 }
73 
74 bool dispatcher::fire(const ui_event event, widget& target)
75 {
77  switch(event) {
81 
85 
89 
90  default:
91  return fire_event<event_category::general>(event, this, &target);
92  }
93 }
94 
95 bool dispatcher::fire(const ui_event event, widget& target, const point& coordinate)
96 {
97  assert(is_in_category(event, event_category::mouse));
98  return fire_event<event_category::mouse>(event, this, &target, coordinate);
99 }
100 
101 bool dispatcher::fire(const ui_event event,
102  widget& target,
103  const SDL_Keycode key,
104  const SDL_Keymod modifier,
105  const std::string& unicode)
106 {
108  return fire_event<event_category::keyboard>(event, this, &target, key, modifier, unicode);
109 }
110 
111 bool dispatcher::fire(const ui_event event, widget& target, const point& pos, const point& distance)
112 {
114  return fire_event<event_category::touch_motion>(event, this, &target, pos, distance);
115 }
116 
117 bool dispatcher::fire(const ui_event event, widget& target, const point& center, float dTheta, float dDist, uint8_t numFingers)
118 {
120  return fire_event<event_category::touch_gesture>(event, this, &target, center, dTheta, dDist, numFingers);
121 }
122 
123 bool dispatcher::fire(const ui_event event, widget& target, const SDL_Event& sdlevent)
124 {
126  return fire_event<event_category::raw_event>(event, this, &target, sdlevent);
127 }
128 
129 bool dispatcher::fire(const ui_event event, widget& target, const std::string& text, int32_t start, int32_t len)
130 {
132  return fire_event<event_category::text_input>(event, this, &target, text, start, len);
133 }
134 
135 bool dispatcher::fire(const ui_event event, widget& target, void*)
136 {
138  return fire_event<event_category::notification>(event, this, &target, nullptr);
139 }
140 
141 bool dispatcher::fire(const ui_event event, widget& target, const message& msg)
142 {
143  assert(is_in_category(event, event_category::message));
144  return fire_event<event_category::message>(event, this, &target, msg);
145 }
146 
148 {
149  auto itor = hotkeys_.find(id);
150 
151  if(itor == hotkeys_.end()) {
152  return false;
153  }
154 
155  return itor->second(dynamic_cast<widget&>(*this), id);
156 }
157 
159 {
161 }
162 
164 {
166 }
167 
169 {
171 }
172 
174 {
176 }
177 
179 {
181 }
182 
183 
185 {
187 }
188 
190 {
192 }
193 
194 } // namespace event
195 
196 } // namespace gui2
197 
198 /**
199  * @page event_dispatching Event dispatching.
200  *
201  * @section introduction-event_dispatching Introduction
202  *
203  * This page describes how the new event handling system works, since the
204  * system is still work in progress it might be out of date with the actual
205  * code. It also contains some ideas that might change later on. Some parts are
206  * explained in the interface and will be integrated in this document later.
207  *
208  * Since the event handling code hasn't been cast in stone yet some scenarios
209  * for solving the problem are discussed first and then the solution that is
210  * chosen in more detail.
211  *
212  * After SDL has generated and event it needs to be turned into an event which
213  * the widgets can use.
214  *
215  * @section handling_solution The implementation solutions.
216  *
217  * For the event handling we use a few use case scenarios and show the possible
218  * solutions.
219  *
220  * @subsection sample The sample window
221  *
222  * In our samples we use this sample window with the following components:
223  * - a window W
224  * - a container C
225  * - a button B
226  *
227  * These are arranged accordingly:
228  * @code
229  *
230  * ---------------------
231  * |W |
232  * | |
233  * | ----------------- |
234  * | |C |^| |
235  * | | |-| |
236  * | | ---------- |#| |
237  * | | |B | | | |
238  * | | ---------- | | |
239  * | | |-| |
240  * | | |v| |
241  * | ----------------- |
242  * | |
243  * ---------------------
244  *
245  * @endcode
246  *
247  * @subsection scenarios Possible scenarios
248  *
249  * The scenarios are:
250  * - An event that is wanted by none.
251  * - A mouse down event that should focus C and set the pressed state in B.
252  * - A mouse wheel event, which first should be offered to B and if not handled
253  * by B should be handled by C.
254  *
255  * @subsection all_queues Pass the event through all queues
256  *
257  * In this solution the event will be passed through all possible queues and
258  * tries sees where the event sticks. This following sections describe how the
259  * events are tried for this usage scenario.
260  *
261  * @subsubsection unhandled-all_queues Unhandled event
262  *
263  * - W pre child
264  * - C pre child
265  * - B pre child
266  * - W child
267  * - C child
268  * - B child
269  * - W post child
270  * - C post child
271  * - B post child
272  *
273  * @subsubsection mouse_down-all_queues Mouse down
274  *
275  * - W pre child
276  * - C pre child -> set focus -> !handled
277  * - B pre child -> set pressed state -> handled
278  *
279  * @subsubsection mouse_wheel-all_queues Mouse wheel
280  *
281  * - W pre child
282  * - C pre child
283  * - B pre child -> We can't scroll so ignore
284  * - W child
285  * - C child
286  * - B child
287  * - W post child
288  * - C post child -> Scroll -> handled
289  *
290  * @subsection chain Pass the events in a chain like fashion
291  *
292  * In this solution the events are send to the pre- and post queue of all but
293  * the last possible widget and to the child of the last widget. The pre queue
294  * will be send from top to bottom, the post queue from bottom to top.
295  *
296  * @subsubsection unhandled-chain Unhandled event
297  *
298  * - W pre child
299  * - C pre child
300  * - B child
301  * - C post child
302  * - W post child
303  *
304  * @subsubsection mouse_down-chain Mouse down
305  *
306  * - W pre child
307  * - C pre child -> set focus -> !handled
308  * - B child -> set pressed state -> handled
309  *
310  * @subsubsection mouse_wheel-chain Mouse wheel
311  *
312  * - W pre child
313  * - C pre child
314  * - B child -> We can't scroll so ignore
315  * - C post child -> Scroll -> handled
316  *
317  * @subsection evaluation Evaluation
318  *
319  * When using the first solution it's possible to drop the child queue since
320  * everything falls in pre or post. But there is a scenario that's a bit ugly
321  * to solve with the first solution:
322  *
323  * Assume there is a listbox with toggle panels and on the panel there are a
324  * few buttons, the wanted behavior is:
325  * - if clicked on the panel it should toggle, which may or may not be allowed.
326  * - if clicked on a button in the panel, we want to make sure the panel is
327  * selected, which again may or may not be allowed.
328  *
329  * With solution 2 it's rather easy:
330  *
331  * Click on panel:
332  * - W pre child
333  * - C child -> Test whether we can toggle -> handled, halt = !toggled
334  *
335  * Click on button in panel:
336  * - W pre child
337  * - C pre child -> Test whether we can select -> handled = halt = !selected
338  * - B child -> do button stuff -> handled
339  *
340  * Since for the different clicks, different queues are triggered it's easy to
341  * add a different handler there.
342  *
343  * With solution 1:
344  *
345  * Click on panel:
346  * - W pre child
347  * - C pre child -> handler 1 -> if last in queue -> solution 2 C child
348  *
349  * Click on button in panel:
350  * - W pre child
351  * - C pre child -> handler 2 -> if !last in queue -> solution 2 C pre child
352  * - B pre child -> do button stuff -> handled
353  *
354  * Not that different from solution 2, the two handlers are installed in the C
355  * pre event. But we need to manually check whether we're really the last,
356  * which means the code to check whether there are more handlers at a lower
357  * level is needed for both solutions. In solution 1 this test needs to be done
358  * twice versus once in solution 2. Also the fact that the queues for the
359  * events are processed in reverse order on the way back sounds more
360  * initiative.
361  *
362  * @section processing_raw_events Processing the raw events.
363  *
364  * This section describes how the events generated by SDL are send as our own
365  * events to the various widgets. The first step in sending an event is to
366  * decode it and send it to a registered dispatcher.
367  *
368  * - gui2::event::sdl_event_handler handles the SDL events.
369  * - gui2::event::dispatcher has the registered dispatchers.
370  *
371  * In general a dispatcher is a window which then needs to send this event to
372  * the widgets. The dispatcher is just a simple part which fires events and
373  * finds a handler for the event. This is not to the liking of most widgets,
374  * they don't want to handle raw events but get a polished and clean event. No
375  * button up and down and then try to figure out whether it needs to act as if
376  * it was clicked upon, no simply op and down to change the appearance and a
377  * click event to do the clicking actions. And don't even try to convince a
378  * widget to determine whether this up event was a single or double click.
379  * Widgets like to sleep with nice dreams and not having nightmares where SDL
380  * events haunt them.
381  *
382  * In order to remedy that problem there's the gui2::event::distributor
383  * class, it's the class to do the dirty job of converting the raw event into
384  * these nice polished events. The distributor is in general linked to a window,
385  * but a widget can install it's own distributor if it needs to know more of the
386  * raw events as still left in the polished events. At the time of this writing
387  * no widget needs this feature, but the toggle panel might need it.
388  *
389  * After the distributor has polished the event and send it on its way to the
390  * widget the dispatcher needs to make sure the event is properly dispatched to
391  * the widget in question and also notify its parents by means of the previously
392  * described event chain.
393  *
394  * @subsection sdl_event Get the SDL events
395  *
396  * The first step in event handling is getting the events in the first place.
397  * Events are generated by SDL and placed in a queue. The Wesnoth code processes
398  * this queue and thus handles the events. The part which does the first
399  * handling isn't described here since it's (secretly) intended to be replaced
400  * by the @ref gui2::event::sdl_event_handler class. Instead we directly jump to this
401  * class and explain what it does.
402  *
403  * The main handling function is @ref gui2::event::sdl_event_handler::handle_event which
404  * as no real surprise handles the events. The function is a simple multiplexer
405  * which lets other subfunctions to the handling of specific events.
406  *
407  * @todo Describe drawing and resizing once the code is stable and working as
408  * wanted in these areas.
409  *
410  * @subsubsection handler_mouse Mouse motion events
411  *
412  * If a dispatcher has captured the mouse it gets the event, no questions asked.
413  * If not it goes through all dispatchers and finds the first one willing to
414  * accept the mouse event.
415  *
416  * This means a mouse event is send to one dispatcher.
417  *
418  * @subsubsection handler_mouse_button_down Mouse button down events
419  *
420  * Turning the mouse wheel on a mouse generates both an down and up event. It
421  * has been decided to handle the wheel event in the button up code so wheel
422  * events are here directly dropped on the floor and forgotten.
423  *
424  * The other buttons are handled as if they're normal mouse events but are
425  * decoded per button so instead of a button_down(id) you get button_down_id.
426  *
427  * @subsubsection handler_mouse_button_up Mouse button up events
428  *
429  * The mouse wheel event is handled as if it's a keyboard event and like the
430  * button_down they are send as wheel_id events.
431  *
432  * The other mouse buttons are handled the same as the down buttons.
433  *
434  * @subsubsection handler_keyboard Keyboard events
435  *
436  * There are three types of keyboard events, the already mentioned mouse wheel
437  * events, the key down and key up event. When a key is pressed for a longer
438  * time several key down events are generated and only one key up, this means
439  * the key up is rather useless. Guess what, the multiplexer already drops that
440  * event so we never get it.
441  *
442  * If the keyboard event is a mouse wheel event it's directly send to the
443  * dispachting queue; either the dispatcher that captured the keyboard or the
444  * last dispatcher in the queue.
445  *
446  * If the event is a real keyboard action it's first tried as hotkey. In order
447  * to do so the target dispatcher is first determined, either the dispatcher
448  * that captured the keyboard or the last dispatcher in the queue. Then it's
449  * tried whether a hotkey and whether the hotkey can be processed. If the
450  * hotkey isn't processed the keyboard event is send to the dispatcher as
451  * normal keyboard event.
452  *
453  * The hotkey processing will have several queues (to be implemented in 1.9):
454  * - global hotkeys that always work eg toggling fullscreen mode.
455  * - main screen hotkeys, these work when one of the dialogs is shown without
456  * other dialogs on top of them. These hotkeys are for example
457  * preferences. The main screens are:
458  * - title screen
459  * - game
460  * - editor
461  * - mp lobby
462  * - map screen hotkeys, these work when a map is shown eg toggle grid. The
463  * screens are:
464  * - game
465  * - editor
466  * - local hotkeys, these are hotkeys that only work in a specific dialog eg
467  * recruit unit only works in the game screen.
468  *
469  * The queues are processed in from bottom to top in the list above, this
470  * allows an item to use a hotkey but have another handler function. Eg
471  * preferences in the editor might open another preferences dialog.
472  *
473  * @todo The hotkeys need to be implemented like above in 1.9.
474  *
475  * @todo This might change in the near future.
476  *
477  * @subsection distributor Event polishing and distribution
478  *
479  * The event distributor has the job to find the widget that should receive the
480  * event and which event(s) to send from a single event. In general an event is
481  * first send to the widget as-is, sending the raw events allows other
482  * distributors to be nested between this distributor and the intended target
483  * widget. Or the intended widget might not really be the intended widget but
484  * another distributor that wants to dispatch the event internally.
485  *
486  * However in the common cases this raw event isn't handled and the distributor
487  * needs to send the polished events. In the following sections the details of
488  * the conversion from raw to polished is described, it intentionally lacks the
489  * part of sending the raw events as well since it adds no value.
490  *
491  * A widget can capture the mouse, which means all mouse events are send to this
492  * widget, regardless where the mouse is. This is normally done in a mouse down
493  * event (for a button) so all events following it are send to that widget.
494  *
495  * @subsection mouse_motion Mouse motion
496  *
497  * This section describes the conversion from a raw mouse motion to the polished
498  * events it can generate:
499  * - @ref gui2::event::MOUSE_ENTER "MOUSE_ENTER"
500  * - @ref gui2::event::MOUSE_LEAVE "MOUSE_LEAVE"
501  * - @ref gui2::event::MOUSE_MOTION "MOUSE_MOTION"
502  *
503  * When the mouse is captured that widget will only receive motion events.
504  *
505  * If not captured the code checks whether the widget underneath the mouse is
506  * the same widget as at the last motion if event. If so that widget gets a
507  * motion event.
508  * If not the widget that before was underneath the mouse pointer (if any) gets
509  * a leave event and the widget newly underneath the mouse pointer (if any) gets
510  * an enter event.
511  *
512  * @subsection mouse_button Mouse buttons
513  *
514  * The mouse button code is a bit more complex and is separated in the various
515  * events to be send.
516  *
517  * @subsubsection mouse_button_down Mouse button down
518  *
519  * Some things start simple, so does the event of pressing down a mouse button.
520  * All it does is send the event to the widget as one of the following events:
521  * - @ref gui2::event::LEFT_BUTTON_DOWN "LEFT_BUTTON_DOWN"
522  * - @ref gui2::event::MIDDLE_BUTTON_DOWN "MIDDLE_BUTTON_DOWN"
523  * - @ref gui2::event::RIGHT_BUTTON_DOWN "RIGHT_BUTTON_DOWN"
524  *
525  * @todo Validate the code it seems a down event with a captured mouse doesn't
526  * really work as wanted. (Rare case but should work properly.) In general the
527  * mouse event handling needs testing to see whether the proper events are send
528  * all the time.
529  *
530  * @subsubsection mouse_button_up Mouse button up
531  *
532  * Simplicity ends here.
533  *
534  * @todo Document further.
535  *
536  * @subsubsection mouse_click Mouse click
537  *
538  * So the button up event has asked for mouse click, now we need to test whether
539  * the click will be a click or a double click. A double click is generated when
540  * the same widget is clicked twice in a short time and causes the following
541  * events:
542  * - @ref gui2::event::LEFT_BUTTON_DOUBLE_CLICK "LEFT_BUTTON_DOUBLE_CLICK"
543  * - @ref gui2::event::MIDDLE_BUTTON_DOUBLE_CLICK "MIDDLE_BUTTON_DOUBLE_CLICK"
544  * - @ref gui2::event::RIGHT_BUTTON_DOUBLE_CLICK "RIGHT_BUTTON_DOUBLE_CLICK"
545  *
546  * Otherwise one of the following single clicks is generated:
547  * - @ref gui2::event::LEFT_BUTTON_CLICK "LEFT_BUTTON_CLICK"
548  * - @ref gui2::event::MIDDLE_BUTTON_CLICK "MIDDLE_BUTTON_CLICK"
549  * - @ref gui2::event::RIGHT_BUTTON_CLICK "RIGHT_BUTTON_CLICK"
550  *
551  * @subsubsection double_click To double click or not to double click
552  *
553  * Wait a second, a widget has a field whether or not it wants a double click
554  * for a certain mouse button and now I see that it's bluntly ignored by the
555  * distributor. Indeed the distributor doesn't care about what the widget wants,
556  * it does what it wants and leaves the sorting out what's wanted to the
557  * dispatcher.
558  *
559  * The problem is that in the chain events are send to one widget that may not
560  * be interested in a double click, but another widget in the chain is. There
561  * are several solutions to this problem:
562  * -# Sending a click followed by a double click.
563  * -# Sending a click with a tag field that it actually is a double click.
564  * -# Send a double click and turn it into a click if the double click is
565  * unwanted.
566  *
567  * The first solution has the disadvantage that a toggle panel likes a click and
568  * double click, the first click selects the second deselects and now the
569  * deselected panel gets a double click. When the panel now checks whether it's
570  * selected it's not and might take the wrong action upon it.
571  *
572  * The second option is possible but would be rather intrusive in the code,
573  * since it would generate another event signature. Adding a signature just for
574  * this special case seemed a bit too much effort vs. gain. Also the widget
575  * needs to check whether a click is a click or a double click and choose a
576  * different code path for it. This in turn would mean a signal handler
577  * secretly might handle two events and lowers the transparency of the code.
578  *
579  * The third option also adds some special case handling but the scope is
580  * limited and only one part knows about the tricks done.
581  *
582  * The last option has been chosen and the dispatcher build the event chain and
583  * while building the chain it looks whether the widget wants the double click
584  * or not. It does this test by looking at the wants double click function and
585  * not test for a handler. The double click test function is made for this
586  * purpose and depending on the handler might again do the wrong thing.
587  * (A certain toggle panel might not want to do something on a double click but
588  * also not being deselected upon a double click. The latter to keep the UI
589  * consistent, a double click on a toggle panel might execute a special function
590  * or not, but always keep the panel selected. (That is if the panel can be
591  * selected.))
592  */
Base class for event handling.
Definition: dispatcher.hpp:150
void connect_signal(const F &func, const queue_position position=back_child)
Adds a callback to the appropriate queue based on event type.
Definition: dispatcher.hpp:351
void connect()
Connects the dispatcher to the event handler.
Definition: dispatcher.cpp:49
bool fire(const ui_event event, widget &target)
Fires an event which has no extra parameters.
Definition: dispatcher.cpp:74
bool has_event(const ui_event event, const event_queue_type event_type)
Definition: dispatcher.cpp:63
mouse_behavior
The behavior of the mouse events.
Definition: dispatcher.hpp:392
void disconnect()
Disconnects the dispatcher from the event handler.
Definition: dispatcher.cpp:56
void disconnect_signal(const F &func, const queue_position position=back_child)
Removes a callback from the appropriate queue based on event type.
Definition: dispatcher.hpp:370
bool connected_
Are we connected to the event handler.
Definition: dispatcher.hpp:612
bool execute_hotkey(const hotkey::HOTKEY_COMMAND id)
Executes a hotkey.
Definition: dispatcher.cpp:147
std::map< hotkey::HOTKEY_COMMAND, hotkey_function > hotkeys_
The registered hotkeys for this dispatcher.
Definition: dispatcher.hpp:615
bool wants_mouse_right_double_click() const
bool wants_mouse_left_double_click() const
bool wants_mouse_middle_double_click() const
Base class for all widgets.
Definition: widget.hpp:55
#define PLAIN_LOG
Definition: log.hpp:296
EXIT_STATUS start(bool clear_id, const std::string &filename, bool take_screenshot, const std::string &screenshot_filename)
Main interface for launching the editor from the title screen.
void connect_signal_pre_key_press(dispatcher &dispatcher, const signal_keyboard &signal)
Connects the signal for 'snooping' on the keypress.
Definition: dispatcher.cpp:158
ui_event
The event sent to the dispatcher.
Definition: handler.hpp:115
@ MIDDLE_BUTTON_DOUBLE_CLICK
Definition: handler.hpp:127
@ NOTIFY_MODIFIED
Definition: handler.hpp:158
@ MIDDLE_BUTTON_CLICK
Definition: handler.hpp:126
@ LEFT_BUTTON_UP
Definition: handler.hpp:121
@ RIGHT_BUTTON_CLICK
Definition: handler.hpp:130
@ LEFT_BUTTON_DOUBLE_CLICK
Definition: handler.hpp:123
@ LEFT_BUTTON_CLICK
Definition: handler.hpp:122
@ RIGHT_BUTTON_DOUBLE_CLICK
Definition: handler.hpp:131
void disconnect_signal_mouse_left_click(dispatcher &dispatcher, const signal &signal)
Disconnects a signal handler for a left mouse button click.
Definition: dispatcher.cpp:168
bool fire_event_double_click(dispatcher *dsp, widget *wgt, F &&... params)
dispatcher_callback< void * > signal_notification
Used for events in event_category::notification.
Definition: dispatcher.hpp:103
void disconnect_signal_mouse_left_release(dispatcher &dispatcher, const signal &signal)
Disconnects a signal handler for a left mouse button release.
Definition: dispatcher.cpp:178
void disconnect_dispatcher(dispatcher *dispatcher)
Disconnects a dispatcher to the event handler.
Definition: handler.cpp:866
dispatcher_callback<> signal
Used for events in event_category::general.
Definition: dispatcher.hpp:56
@ notification
Callbacks with a sender aka notification messages.
@ keyboard
Callbacks with the keyboard values (these haven't been determined yet).
@ mouse
Callbacks with a coordinate as extra parameter.
@ message
Callbacks with a sender aka notification messages.
@ general
Callbacks without extra parameters.
void connect_signal_mouse_left_release(dispatcher &dispatcher, const signal &signal)
Connects a signal handler for a left mouse button release.
Definition: dispatcher.cpp:173
void connect_dispatcher(dispatcher *dispatcher)
Connects a dispatcher to the event handler.
Definition: handler.cpp:859
void connect_signal_notify_modified(dispatcher &dispatcher, const signal_notification &signal)
Connects a signal handler for getting a notification upon modification.
Definition: dispatcher.cpp:189
void connect_signal_mouse_left_click(dispatcher &dispatcher, const signal &signal)
Connects a signal handler for a left mouse button click.
Definition: dispatcher.cpp:163
dispatcher_callback< const SDL_Keycode, const SDL_Keymod, const std::string & > signal_keyboard
Used for events in event_category::keyboard.
Definition: dispatcher.hpp:74
void connect_signal_mouse_left_double_click(dispatcher &dispatcher, const signal &signal)
Connects a signal handler for a left mouse button double click.
Definition: dispatcher.cpp:184
constexpr bool is_in_category(const ui_event event, const event_category mask)
Checks if a given event is in a given category.
Definition: handler.hpp:180
Generic file dialog.
map_location coordinate
Contains an x and y coordinate used for starting positions in maps.
static void msg(const char *act, debug_info &i, const char *to="", const char *result="")
Definition: debugger.cpp:109
static bool has_handler(dispatcher &dispatcher, const dispatcher::event_queue_type queue_type, ui_event event)
A helper to test whether dispatcher has an handler for a certain event.
The message callbacks hold a reference to a message.
Definition: message.hpp:46
Holds a 2D point.
Definition: point.hpp:25