2005-07-24 14:12:37 +00:00
/* $Id$ */
2009-08-21 20:21:05 +00:00
/*
* This file is part of OpenTTD .
* OpenTTD is free software ; you can redistribute it and / or modify it under the terms of the GNU General Public License as published by the Free Software Foundation , version 2.
* OpenTTD 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 OpenTTD . If not , see < http : //www.gnu.org/licenses/>.
*/
2007-12-19 19:44:29 +00:00
/** @file window_gui.h Functions, definitions and such used only by the GUI. */
2007-02-23 01:48:53 +00:00
2007-12-19 19:44:29 +00:00
# ifndef WINDOW_GUI_H
# define WINDOW_GUI_H
2004-08-09 17:04:08 +00:00
2007-12-26 11:45:43 +00:00
# include "vehicle_type.h"
2008-01-09 09:45:45 +00:00
# include "viewport_type.h"
2008-09-30 20:51:04 +00:00
# include "company_type.h"
2008-05-07 13:10:15 +00:00
# include "tile_type.h"
2009-02-09 01:06:23 +00:00
# include "widget_type.h"
2011-02-23 20:54:55 +00:00
# include "core/smallvec_type.hpp"
2012-11-14 22:50:35 +00:00
# include "core/smallmap_type.hpp"
2013-08-05 20:36:24 +00:00
# include "string_type.h"
2004-08-09 17:04:08 +00:00
2008-04-07 20:28:58 +00:00
/**
* Flags to describe the look of the frame
*/
2007-03-07 12:11:48 +00:00
enum FrameFlags {
2007-12-04 17:51:50 +00:00
FR_NONE = 0 ,
FR_TRANSPARENT = 1 < < 0 , ///< Makes the background transparent if set
FR_BORDERONLY = 1 < < 4 , ///< Draw border only, no background
2009-02-09 02:57:15 +00:00
FR_LOWERED = 1 < < 5 , ///< If set the frame is lowered and the background colour brighter (ie. buttons when pressed)
FR_DARKENED = 1 < < 6 , ///< If set the background is darker, allows for lowered frames with normal background colour when used with FR_LOWERED (ie. dropdown boxes)
2007-03-07 12:11:48 +00:00
} ;
2006-08-29 06:07:57 +00:00
2010-03-23 22:25:43 +00:00
DECLARE_ENUM_AS_BIT_SET ( FrameFlags )
2007-01-10 18:56:51 +00:00
2009-06-28 22:23:26 +00:00
/** Distances used in drawing widgets. */
enum WidgetDrawDistances {
2009-11-09 17:20:48 +00:00
/* WWT_IMGBTN(_2) */
2009-07-12 12:19:41 +00:00
WD_IMGBTN_LEFT = 1 , ///< Left offset of the image in the button.
WD_IMGBTN_RIGHT = 2 , ///< Right offset of the image in the button.
WD_IMGBTN_TOP = 1 , ///< Top offset of image in the button.
WD_IMGBTN_BOTTOM = 2 , ///< Bottom offset of image in the button.
2009-06-28 22:23:26 +00:00
/* WWT_INSET */
WD_INSET_LEFT = 2 , ///< Left offset of string.
WD_INSET_RIGHT = 2 , ///< Right offset of string.
WD_INSET_TOP = 1 , ///< Top offset of string.
2011-10-11 08:07:47 +00:00
WD_SCROLLBAR_LEFT = 2 , ///< Left offset of scrollbar.
WD_SCROLLBAR_RIGHT = 2 , ///< Right offset of scrollbar.
WD_SCROLLBAR_TOP = 2 , ///< Top offset of scrollbar.
WD_SCROLLBAR_BOTTOM = 2 , ///< Bottom offset of scrollbar.
2009-06-28 22:23:26 +00:00
2011-11-18 20:38:30 +00:00
/* Size of the pure frame bevel without any padding. */
WD_BEVEL_LEFT = 1 , ///< Width of left bevel border.
WD_BEVEL_RIGHT = 1 , ///< Width of right bevel border.
WD_BEVEL_TOP = 1 , ///< Height of top bevel border.
WD_BEVEL_BOTTOM = 1 , ///< Height of bottom bevel border.
2009-06-28 22:23:26 +00:00
/* FrameRect widgets, all text buttons, panel, editbox */
2009-07-12 12:19:41 +00:00
WD_FRAMERECT_LEFT = 2 , ///< Offset at left to draw the frame rectangular area
WD_FRAMERECT_RIGHT = 2 , ///< Offset at right to draw the frame rectangular area
WD_FRAMERECT_TOP = 1 , ///< Offset at top to draw the frame rectangular area
2009-06-28 22:23:26 +00:00
WD_FRAMERECT_BOTTOM = 1 , ///< Offset at bottom to draw the frame rectangular area
2009-08-30 17:07:53 +00:00
/* Extra space at top/bottom of text panels */
WD_TEXTPANEL_TOP = 6 , ///< Offset at top to draw above the text
2009-11-19 22:49:04 +00:00
WD_TEXTPANEL_BOTTOM = 6 , ///< Offset at bottom to draw below the text
2009-08-30 17:07:53 +00:00
2009-06-28 22:23:26 +00:00
/* WWT_FRAME */
2009-11-19 22:49:04 +00:00
WD_FRAMETEXT_LEFT = 6 , ///< Left offset of the text of the frame.
WD_FRAMETEXT_RIGHT = 6 , ///< Right offset of the text of the frame.
WD_FRAMETEXT_TOP = 6 , ///< Top offset of the text of the frame
WD_FRAMETEXT_BOTTOM = 6 , ///< Bottom offset of the text of the frame
2009-06-28 22:23:26 +00:00
2009-07-31 22:08:19 +00:00
/* WWT_MATRIX */
WD_MATRIX_LEFT = 2 , ///< Offset at left of a matrix cell.
WD_MATRIX_RIGHT = 2 , ///< Offset at right of a matrix cell.
WD_MATRIX_TOP = 3 , ///< Offset at top of a matrix cell.
WD_MATRIX_BOTTOM = 1 , ///< Offset at bottom of a matrix cell.
2009-12-21 16:06:20 +00:00
/* WWT_SHADEBOX */
WD_SHADEBOX_WIDTH = 12 , ///< Width of a standard shade box widget.
WD_SHADEBOX_LEFT = 2 , ///< Left offset of shade sprite.
WD_SHADEBOX_RIGHT = 2 , ///< Right offset of shade sprite.
WD_SHADEBOX_TOP = 3 , ///< Top offset of shade sprite.
WD_SHADEBOX_BOTTOM = 3 , ///< Bottom offset of shade sprite.
2009-06-28 22:23:26 +00:00
/* WWT_STICKYBOX */
2009-07-12 12:19:41 +00:00
WD_STICKYBOX_WIDTH = 12 , ///< Width of a standard sticky box widget.
WD_STICKYBOX_LEFT = 2 , ///< Left offset of sticky sprite.
WD_STICKYBOX_RIGHT = 2 , ///< Right offset of sticky sprite.
WD_STICKYBOX_TOP = 3 , ///< Top offset of sticky sprite.
2009-07-14 21:25:32 +00:00
WD_STICKYBOX_BOTTOM = 3 , ///< Bottom offset of sticky sprite.
2009-06-28 22:23:26 +00:00
2010-04-24 13:27:22 +00:00
/* WWT_DEBUGBOX */
WD_DEBUGBOX_WIDTH = 12 , ///< Width of a standard debug box widget.
WD_DEBUGBOX_LEFT = 2 , ///< Left offset of debug sprite.
WD_DEBUGBOX_RIGHT = 2 , ///< Right offset of debug sprite.
WD_DEBUGBOX_TOP = 3 , ///< Top offset of debug sprite.
WD_DEBUGBOX_BOTTOM = 3 , ///< Bottom offset of debug sprite.
2013-05-26 19:30:07 +00:00
/* WWT_DEFSIZEBOX */
WD_DEFSIZEBOX_WIDTH = 12 , ///< Width of a standard defsize box widget.
WD_DEFSIZEBOX_LEFT = 2 , ///< Left offset of defsize sprite.
WD_DEFSIZEBOX_RIGHT = 2 , ///< Right offset of defsize sprite.
WD_DEFSIZEBOX_TOP = 3 , ///< Top offset of defsize sprite.
WD_DEFSIZEBOX_BOTTOM = 3 , ///< Bottom offset of defsize sprite.
2009-06-28 22:23:26 +00:00
/* WWT_RESIZEBOX */
2009-07-12 12:19:41 +00:00
WD_RESIZEBOX_WIDTH = 12 , ///< Width of a resize box widget.
WD_RESIZEBOX_LEFT = 3 , ///< Left offset of resize sprite.
WD_RESIZEBOX_RIGHT = 2 , ///< Right offset of resize sprite.
WD_RESIZEBOX_TOP = 3 , ///< Top offset of resize sprite.
2009-07-14 21:25:32 +00:00
WD_RESIZEBOX_BOTTOM = 2 , ///< Bottom offset of resize sprite.
2009-06-28 22:23:26 +00:00
/* WWT_CLOSEBOX */
2009-07-12 12:19:41 +00:00
WD_CLOSEBOX_WIDTH = 11 , ///< Width of a close box widget.
WD_CLOSEBOX_LEFT = 2 , ///< Left offset of closebox string.
WD_CLOSEBOX_RIGHT = 1 , ///< Right offset of closebox string.
WD_CLOSEBOX_TOP = 2 , ///< Top offset of closebox string.
WD_CLOSEBOX_BOTTOM = 2 , ///< Bottom offset of closebox string.
2009-06-28 22:23:26 +00:00
/* WWT_CAPTION */
2009-07-12 12:19:41 +00:00
WD_CAPTION_HEIGHT = 14 , ///< Height of a title bar.
WD_CAPTIONTEXT_LEFT = 2 , ///< Offset of the caption text at the left.
WD_CAPTIONTEXT_RIGHT = 2 , ///< Offset of the caption text at the right.
WD_CAPTIONTEXT_TOP = 2 , ///< Offset of the caption text at the top.
WD_CAPTIONTEXT_BOTTOM = 2 , ///< Offset of the caption text at the bottom.
2009-06-28 22:23:26 +00:00
/* Dropdown widget. */
2009-07-12 12:19:41 +00:00
WD_DROPDOWN_HEIGHT = 12 , ///< Height of a drop down widget.
WD_DROPDOWNTEXT_LEFT = 2 , ///< Left offset of the dropdown widget string.
WD_DROPDOWNTEXT_RIGHT = 14 , ///< Right offset of the dropdown widget string.
WD_DROPDOWNTEXT_TOP = 1 , ///< Top offset of the dropdown widget string.
WD_DROPDOWNTEXT_BOTTOM = 1 , ///< Bottom offset of the dropdown widget string.
2009-07-02 21:18:22 +00:00
WD_SORTBUTTON_ARROW_WIDTH = 11 , ///< Width of up/down arrow of sort button state.
2009-07-10 20:48:08 +00:00
2009-10-18 13:59:25 +00:00
WD_PAR_VSEP_NORMAL = 2 , ///< Normal amount of vertical space between two paragraphs of text.
WD_PAR_VSEP_WIDE = 8 , ///< Large amount of vertical space between two paragraphs of text.
2009-06-28 22:23:26 +00:00
} ;
2010-06-07 19:56:32 +00:00
/* widget.cpp */
2009-02-09 02:57:15 +00:00
void DrawFrameRect ( int left , int top , int right , int bottom , Colours colour , FrameFlags flags ) ;
2010-06-07 19:56:32 +00:00
void DrawCaption ( const Rect & r , Colours colour , Owner owner , StringID str ) ;
2005-06-15 17:27:14 +00:00
2009-02-17 12:41:29 +00:00
/* window.cpp */
extern Window * _z_front_window ;
extern Window * _z_back_window ;
extern Window * _focused_window ;
2009-11-28 14:42:35 +00:00
/** How do we the window to be placed? */
enum WindowPosition {
WDP_MANUAL , ///< Manually align the window (so no automatic location finding)
WDP_AUTO , ///< Find a place automatically
WDP_CENTER , ///< Center the window
WDP_ALIGN_TOOLBAR , ///< Align toward the toolbar
} ;
Point GetToolbarAlignedWindowPosition ( int window_width ) ;
2013-06-15 15:30:16 +00:00
struct HotkeyList ;
2008-04-07 20:28:58 +00:00
/**
* High level window description
*/
2009-03-15 15:12:06 +00:00
struct WindowDesc : ZeroedMemoryAllocator {
2013-05-26 19:25:01 +00:00
WindowDesc ( WindowPosition default_pos , const char * ini_key , int16 def_width , int16 def_height ,
2009-11-15 10:26:01 +00:00
WindowClass window_class , WindowClass parent_class , uint32 flags ,
2013-06-15 15:30:16 +00:00
const NWidgetPart * nwid_parts , int16 nwid_length , HotkeyList * hotkeys = NULL ) ;
2009-03-15 15:12:06 +00:00
2009-03-22 21:15:45 +00:00
~ WindowDesc ( ) ;
2013-01-08 22:46:42 +00:00
WindowPosition default_pos ; ///< Preferred position of the window. @see WindowPosition()
int16 default_width ; ///< Preferred initial width of the window.
int16 default_height ; ///< Preferred initial height of the window.
2009-03-22 21:15:45 +00:00
WindowClass cls ; ///< Class of the window, @see WindowClass.
WindowClass parent_cls ; ///< Class of the parent window. @see WindowClass
2013-05-26 19:25:01 +00:00
const char * ini_key ; ///< Key to store window defaults in openttd.cfg. \c NULL if nothing shall be stored.
2012-11-11 16:01:34 +00:00
uint32 flags ; ///< Flags. @see WindowDefaultFlag
2009-03-22 21:15:45 +00:00
const NWidgetPart * nwid_parts ; ///< Nested widget parts describing the window.
int16 nwid_length ; ///< Length of the #nwid_parts array.
2013-06-15 15:30:16 +00:00
HotkeyList * hotkeys ; ///< Hotkeys for the window.
2013-05-26 19:27:22 +00:00
2013-05-26 19:27:44 +00:00
bool pref_sticky ; ///< Preferred stickyness.
2013-05-26 19:30:31 +00:00
int16 pref_width ; ///< User-preferred width of the window. Zero if unset.
int16 pref_height ; ///< User-preferred height of the window. Zero if unset.
int16 GetDefaultWidth ( ) const { return this - > pref_width ! = 0 ? this - > pref_width : this - > default_width ; }
int16 GetDefaultHeight ( ) const { return this - > pref_height ! = 0 ? this - > pref_height : this - > default_height ; }
2013-05-26 19:27:44 +00:00
2013-05-26 19:27:22 +00:00
static void LoadFromConfig ( ) ;
static void SaveToConfig ( ) ;
2013-06-15 15:06:22 +00:00
private :
/**
* Dummy private copy constructor to prevent compilers from
* copying the structure , which fails due to _window_descs .
*/
WindowDesc ( const WindowDesc & other ) ;
2007-03-07 12:11:48 +00:00
} ;
2004-08-09 17:04:08 +00:00
2008-04-07 20:28:58 +00:00
/**
* Window default widget / window handling flags
*/
2006-12-29 13:59:48 +00:00
enum WindowDefaultFlag {
2009-11-24 17:28:29 +00:00
WDF_CONSTRUCTION = 1 < < 0 , ///< This window is used for construction; close it whenever changing company.
2012-11-11 16:10:43 +00:00
WDF_MODAL = 1 < < 1 , ///< The window is a modal child of some other window, meaning the parent is 'inactive'
WDF_NO_FOCUS = 1 < < 2 , ///< This window won't get focus/make any other window lose focus when click
2004-08-09 17:04:08 +00:00
} ;
2008-04-07 20:28:58 +00:00
/**
* Data structure for resizing a window
*/
2007-03-07 12:11:48 +00:00
struct ResizeInfo {
2008-04-07 20:28:58 +00:00
uint step_width ; ///< Step-size of width resize changes
uint step_height ; ///< Step-size of height resize changes
2007-03-07 12:11:48 +00:00
} ;
2005-01-03 19:45:18 +00:00
2009-08-14 18:41:03 +00:00
/** State of a sort direction button. */
2008-05-17 12:48:06 +00:00
enum SortButtonState {
2009-08-14 18:41:03 +00:00
SBS_OFF , ///< Do not sort (with this button).
SBS_DOWN , ///< Sort ascending.
SBS_UP , ///< Sort descending.
2008-05-17 12:48:06 +00:00
} ;
2011-12-15 19:54:23 +00:00
/**
* Window flags .
*/
enum WindowFlags {
WF_TIMEOUT = 1 < < 0 , ///< Window timeout counter.
WF_DRAGGING = 1 < < 3 , ///< Window is being dragged.
WF_SIZING_RIGHT = 1 < < 4 , ///< Window is being resized towards the right.
WF_SIZING_LEFT = 1 < < 5 , ///< Window is being resized towards the left.
WF_SIZING = WF_SIZING_RIGHT | WF_SIZING_LEFT , ///< Window is being resized.
WF_STICKY = 1 < < 6 , ///< Window is made sticky by user
WF_DISABLE_VP_SCROLL = 1 < < 7 , ///< Window does not do autoscroll, @see HandleAutoscroll().
WF_WHITE_BORDER = 1 < < 8 , ///< Window white border counter bit mask.
2011-12-19 21:05:14 +00:00
WF_HIGHLIGHTED = 1 < < 9 , ///< Window has a widget that has a highlight.
2011-12-15 19:54:23 +00:00
WF_CENTERED = 1 < < 10 , ///< Window is centered and shall stay centered after ReInit.
} ;
DECLARE_ENUM_AS_BIT_SET ( WindowFlags )
static const int TIMEOUT_DURATION = 7 ; ///< The initial timeout value for WF_TIMEOUT.
static const int WHITE_BORDER_DURATION = 3 ; ///< The initial timeout value for WF_WHITE_BORDER.
2008-04-07 20:28:58 +00:00
/**
2009-07-26 12:49:26 +00:00
* Data structure for a window viewport .
* A viewport is either following a vehicle ( its id in then in # follow_vehicle ) , or it aims to display a specific
* location # dest_scrollpos_x , # dest_scrollpos_y ( # follow_vehicle is then # INVALID_VEHICLE ) .
* The actual location being shown is # scrollpos_x , # scrollpos_y .
2009-07-26 17:29:01 +00:00
* @ see InitializeViewport ( ) , UpdateViewportPosition ( ) , UpdateViewportCoordinates ( ) .
2008-05-11 15:08:44 +00:00
*/
struct ViewportData : ViewPort {
2009-07-26 12:49:26 +00:00
VehicleID follow_vehicle ; ///< VehicleID to follow if following a vehicle, #INVALID_VEHICLE otherwise.
int32 scrollpos_x ; ///< Currently shown x coordinate (virtual screen coordinate of topleft corner of the viewport).
int32 scrollpos_y ; ///< Currently shown y coordinate (virtual screen coordinate of topleft corner of the viewport).
int32 dest_scrollpos_x ; ///< Current destination x coordinate to display (virtual screen coordinate of topleft corner of the viewport).
int32 dest_scrollpos_y ; ///< Current destination y coordinate to display (virtual screen coordinate of topleft corner of the viewport).
2008-05-11 15:08:44 +00:00
} ;
2012-11-14 22:50:35 +00:00
struct QueryString ;
2008-05-17 03:29:16 +00:00
/**
2008-04-07 20:28:58 +00:00
* Data structure for an opened window
*/
2008-04-13 19:25:14 +00:00
struct Window : ZeroedMemoryAllocator {
2008-05-08 11:31:41 +00:00
protected :
2013-05-26 19:23:42 +00:00
void InitializeData ( WindowNumber window_number ) ;
2009-07-09 19:52:47 +00:00
void InitializePositionSize ( int x , int y , int min_width , int min_height ) ;
2008-05-11 11:41:18 +00:00
void FindWindowPlacementAndResize ( int def_width , int def_height ) ;
2008-05-08 11:31:41 +00:00
2011-02-23 20:54:55 +00:00
SmallVector < int , 4 > scheduled_invalidation_data ; ///< Data of scheduled OnInvalidateData() calls.
2008-05-04 10:05:50 +00:00
public :
2013-05-26 19:23:42 +00:00
Window ( WindowDesc * desc ) ;
2008-05-08 11:31:41 +00:00
2008-05-06 21:28:30 +00:00
virtual ~ Window ( ) ;
2009-11-11 21:15:58 +00:00
/**
* Helper allocation function to disallow something .
* Don ' t allow arrays ; arrays of Windows are pointless as you need
* to destruct them all at the same time too , which is kinda hard .
* @ param size the amount of space not to allocate
*/
2011-12-20 17:57:56 +00:00
inline void * operator new [ ] ( size_t size )
2009-11-11 21:15:58 +00:00
{
NOT_REACHED ( ) ;
}
/**
* Helper allocation function to disallow something .
* Don ' t free the window directly ; it corrupts the linked list when iterating
* @ param ptr the pointer not to free
*/
2011-12-20 17:57:56 +00:00
inline void operator delete ( void * ptr )
2009-11-11 21:15:58 +00:00
{
}
2008-05-04 10:05:50 +00:00
2013-05-26 19:23:42 +00:00
WindowDesc * window_desc ; ///< Window description
2011-12-15 19:54:23 +00:00
WindowFlags flags ; ///< Window flags
2008-04-07 20:28:58 +00:00
WindowClass window_class ; ///< Window class
WindowNumber window_number ; ///< Window number within the window class
2004-08-09 17:04:08 +00:00
2011-12-15 19:54:23 +00:00
uint8 timeout_timer ; ///< Timer value of the WF_TIMEOUT for flags.
2013-01-08 22:46:42 +00:00
uint8 white_border_timer ; ///< Timer value of the WF_WHITE_BORDER for flags.
2011-12-15 19:54:23 +00:00
2008-04-07 20:28:58 +00:00
int left ; ///< x position of left edge of the window
int top ; ///< y position of top edge of the window
int width ; ///< width of the window (number of pixels to the right in x direction)
int height ; ///< Height of the window (number of pixels down in y direction)
2004-08-09 17:04:08 +00:00
2008-04-07 20:28:58 +00:00
ResizeInfo resize ; ///< Resize information
2004-08-09 17:04:08 +00:00
2009-02-09 02:33:10 +00:00
Owner owner ; ///< The owner of the content shown in this window. Company colour is acquired from this variable.
2004-08-09 17:04:08 +00:00
2009-06-04 14:07:05 +00:00
ViewportData * viewport ; ///< Pointer to viewport data, if present.
const NWidgetCore * nested_focus ; ///< Currently focused nested widget, or \c NULL if no nested widget has focus.
2012-11-14 22:50:35 +00:00
SmallMap < int , QueryString * > querystrings ; ///< QueryString associated to WWT_EDITBOX widgets.
2009-06-04 14:07:05 +00:00
NWidgetBase * nested_root ; ///< Root of the nested tree.
2009-09-19 11:31:12 +00:00
NWidgetBase * * nested_array ; ///< Array of pointers into the tree. Do not access directly, use #Window::GetWidget() instead.
2009-06-04 14:07:05 +00:00
uint nested_array_size ; ///< Size of the nested array.
2009-12-21 16:06:20 +00:00
NWidgetStacked * shade_select ; ///< Selection widget (#NWID_SELECTION) to use for shading the window. If \c NULL, window cannot shade.
Dimension unshaded_size ; ///< Last known unshaded size (only valid while shaded).
2004-08-09 17:04:08 +00:00
2011-12-15 19:54:23 +00:00
int scrolling_scrollbar ; ///< Widgetindex of just being dragged scrollbar. -1 if none is active.
2010-08-12 09:09:24 +00:00
2009-06-04 14:07:05 +00:00
Window * parent ; ///< Parent window.
Window * z_front ; ///< The window in front of us in z-order.
Window * z_back ; ///< The window behind us in z-order.
2007-12-02 00:59:48 +00:00
2009-09-19 14:41:43 +00:00
template < class NWID >
2009-10-30 07:51:33 +00:00
inline const NWID * GetWidget ( uint widnum ) const ;
template < class NWID >
inline NWID * GetWidget ( uint widnum ) ;
2009-09-19 11:31:12 +00:00
2010-08-12 06:40:28 +00:00
const Scrollbar * GetScrollbar ( uint widnum ) const ;
Scrollbar * GetScrollbar ( uint widnum ) ;
2009-09-19 11:31:12 +00:00
2012-11-14 22:50:35 +00:00
const QueryString * GetQueryString ( uint widnum ) const ;
QueryString * GetQueryString ( uint widnum ) ;
2013-08-05 20:37:44 +00:00
virtual const char * GetFocusedText ( ) const ;
virtual const char * GetCaret ( ) const ;
virtual const char * GetMarkedText ( size_t * length ) const ;
2013-08-05 20:37:14 +00:00
virtual Point GetCaretPosition ( ) const ;
2013-08-05 20:37:48 +00:00
virtual Rect GetTextBoundingRect ( const char * from , const char * to ) const ;
2013-08-05 20:37:53 +00:00
virtual const char * GetTextCharacterAtPosition ( const Point & pt ) const ;
2013-08-05 20:37:14 +00:00
2013-05-26 19:23:42 +00:00
void InitNested ( WindowNumber number = 0 ) ;
void CreateNestedTree ( bool fill_nested = true ) ;
void FinishInitNested ( WindowNumber window_number = 0 ) ;
2009-06-04 14:34:38 +00:00
2011-12-15 19:54:23 +00:00
/**
* Set the timeout flag of the window and initiate the timer .
*/
inline void SetTimeout ( )
{
this - > flags | = WF_TIMEOUT ;
this - > timeout_timer = TIMEOUT_DURATION ;
}
/**
* Set the timeout flag of the window and initiate the timer .
*/
inline void SetWhiteBorder ( )
{
this - > flags | = WF_WHITE_BORDER ;
this - > white_border_timer = WHITE_BORDER_DURATION ;
}
2011-12-19 21:05:14 +00:00
void DisableAllWidgetHighlight ( ) ;
void SetWidgetHighlight ( byte widget_index , TextColour highlighted_colour ) ;
bool IsWidgetHighlighted ( byte widget_index ) const ;
2009-02-17 12:41:29 +00:00
/**
* Sets the enabled / disabled status of a widget .
* By default , widgets are enabled .
* On certain conditions , they have to be disabled .
* @ param widget_index index of this widget in the window
* @ param disab_stat status to use ie : disabled = true , enabled = false
*/
inline void SetWidgetDisabledState ( byte widget_index , bool disab_stat )
{
2009-11-15 13:36:30 +00:00
assert ( widget_index < this - > nested_array_size ) ;
if ( this - > nested_array [ widget_index ] ! = NULL ) this - > GetWidget < NWidgetCore > ( widget_index ) - > SetDisabled ( disab_stat ) ;
2009-02-17 12:41:29 +00:00
}
/**
* Sets a widget to disabled .
* @ param widget_index index of this widget in the window
*/
inline void DisableWidget ( byte widget_index )
{
SetWidgetDisabledState ( widget_index , true ) ;
}
/**
* Sets a widget to Enabled .
* @ param widget_index index of this widget in the window
*/
inline void EnableWidget ( byte widget_index )
{
SetWidgetDisabledState ( widget_index , false ) ;
}
/**
* Gets the enabled / disabled status of a widget .
* @ param widget_index index of this widget in the window
* @ return status of the widget ie : disabled = true , enabled = false
*/
inline bool IsWidgetDisabled ( byte widget_index ) const
{
2009-11-15 13:36:30 +00:00
assert ( widget_index < this - > nested_array_size ) ;
return this - > GetWidget < NWidgetCore > ( widget_index ) - > IsDisabled ( ) ;
2009-02-17 12:41:29 +00:00
}
/**
* Check if given widget is focused within this window
* @ param widget_index : index of the widget in the window to check
* @ return true if given widget is the focused window in this window
*/
inline bool IsWidgetFocused ( byte widget_index ) const
{
2009-11-15 13:36:30 +00:00
return this - > nested_focus ! = NULL & & this - > nested_focus - > index = = widget_index ;
2009-02-17 12:41:29 +00:00
}
/**
* Check if given widget has user input focus . This means that both the window
* has focus and that the given widget has focus within the window .
* @ param widget_index : index of the widget in the window to check
* @ return true if given widget is the focused window in this window and this window has focus
*/
inline bool IsWidgetGloballyFocused ( byte widget_index ) const
{
return _focused_window = = this & & IsWidgetFocused ( widget_index ) ;
}
/**
* Sets the lowered / raised status of a widget .
* @ param widget_index index of this widget in the window
* @ param lowered_stat status to use ie : lowered = true , raised = false
*/
inline void SetWidgetLoweredState ( byte widget_index , bool lowered_stat )
{
2009-11-15 13:36:30 +00:00
assert ( widget_index < this - > nested_array_size ) ;
this - > GetWidget < NWidgetCore > ( widget_index ) - > SetLowered ( lowered_stat ) ;
2009-02-17 12:41:29 +00:00
}
/**
* Invert the lowered / raised status of a widget .
* @ param widget_index index of this widget in the window
*/
inline void ToggleWidgetLoweredState ( byte widget_index )
{
2009-11-15 13:36:30 +00:00
assert ( widget_index < this - > nested_array_size ) ;
bool lowered_state = this - > GetWidget < NWidgetCore > ( widget_index ) - > IsLowered ( ) ;
this - > GetWidget < NWidgetCore > ( widget_index ) - > SetLowered ( ! lowered_state ) ;
2009-02-17 12:41:29 +00:00
}
/**
* Marks a widget as lowered .
* @ param widget_index index of this widget in the window
*/
inline void LowerWidget ( byte widget_index )
{
SetWidgetLoweredState ( widget_index , true ) ;
}
/**
* Marks a widget as raised .
* @ param widget_index index of this widget in the window
*/
inline void RaiseWidget ( byte widget_index )
{
SetWidgetLoweredState ( widget_index , false ) ;
}
/**
* Gets the lowered state of a widget .
* @ param widget_index index of this widget in the window
* @ return status of the widget ie : lowered = true , raised = false
*/
inline bool IsWidgetLowered ( byte widget_index ) const
{
2009-11-15 13:36:30 +00:00
assert ( widget_index < this - > nested_array_size ) ;
return this - > GetWidget < NWidgetCore > ( widget_index ) - > IsLowered ( ) ;
2009-02-17 12:41:29 +00:00
}
2009-12-31 18:11:03 +00:00
void UnfocusFocusedWidget ( ) ;
2012-12-03 21:03:13 +00:00
bool SetFocusedWidget ( int widget_index ) ;
2009-09-11 19:12:05 +00:00
2013-08-05 20:36:32 +00:00
EventState HandleEditBoxKey ( int wid , WChar key , uint16 keycode ) ;
2013-08-05 20:37:57 +00:00
virtual void InsertTextString ( int wid , const char * str , bool marked , const char * caret , const char * insert_location , const char * replacement_end ) ;
2012-11-13 21:47:13 +00:00
2009-02-17 12:41:29 +00:00
void HandleButtonClick ( byte widget ) ;
2010-07-26 13:03:40 +00:00
int GetRowFromWidget ( int clickpos , int widget , int padding , int line_height = - 1 ) const ;
2007-12-02 00:59:48 +00:00
2009-08-14 21:27:08 +00:00
void RaiseButtons ( bool autoraise = false ) ;
2007-12-02 00:59:48 +00:00
void CDECL SetWidgetsDisabledState ( bool disab_stat , int widgets , . . . ) ;
void CDECL SetWidgetsLoweredState ( bool lowered_stat , int widgets , . . . ) ;
2009-09-13 19:15:59 +00:00
void SetWidgetDirty ( byte widget_index ) const ;
2008-05-04 10:05:50 +00:00
2008-05-17 12:48:06 +00:00
void DrawWidgets ( ) const ;
void DrawViewport ( ) const ;
void DrawSortButtonState ( int widget , SortButtonState state ) const ;
2009-10-31 14:53:19 +00:00
void DeleteChildWindows ( WindowClass wc = WC_INVALID ) const ;
2008-09-24 16:40:06 +00:00
2008-05-06 21:28:30 +00:00
void SetDirty ( ) const ;
2009-11-08 15:22:04 +00:00
void ReInit ( int rx = 0 , int ry = 0 ) ;
2008-05-06 21:28:30 +00:00
2009-12-21 16:06:20 +00:00
/** Is window shaded currently? */
inline bool IsShaded ( ) const
{
2009-12-22 20:53:28 +00:00
return this - > shade_select ! = NULL & & this - > shade_select - > shown_plane = = SZSP_HORIZONTAL ;
2009-12-21 16:06:20 +00:00
}
void SetShaded ( bool make_shaded ) ;
2011-12-15 19:54:23 +00:00
void InvalidateData ( int data = 0 , bool gui_scope = true ) ;
void ProcessScheduledInvalidations ( ) ;
2011-12-19 21:05:14 +00:00
void ProcessHighlightedInvalidations ( ) ;
2011-02-23 20:54:55 +00:00
2008-05-10 13:46:36 +00:00
/*** Event handling ***/
2009-11-29 21:14:34 +00:00
/**
* Notification that the nested widget tree gets initialized . The event can be used to perform general computations .
* @ note # nested_root and / or # nested_array ( normally accessed via # GetWidget ( ) ) may not exist during this call .
*/
virtual void OnInit ( ) { }
2013-05-26 19:27:44 +00:00
virtual void ApplyDefaults ( ) ;
2009-10-31 11:34:43 +00:00
/**
* Compute the initial position of the window .
* @ param sm_width Smallest width of the window .
* @ param sm_height Smallest height of the window .
* @ param window_number The window number of the new window .
* @ return Initial position of the top - left corner of the window .
*/
2013-05-26 19:23:42 +00:00
virtual Point OnInitialPosition ( int16 sm_width , int16 sm_height , int window_number ) ;
2009-10-31 11:34:43 +00:00
2008-05-10 13:46:36 +00:00
/**
2009-06-28 22:23:26 +00:00
* The window must be repainted .
* @ note This method should not change any state , it should only use drawing functions .
2008-05-10 13:46:36 +00:00
*/
2010-11-26 15:22:18 +00:00
virtual void OnPaint ( )
{
this - > DrawWidgets ( ) ;
}
2008-05-10 13:46:36 +00:00
2009-06-28 22:23:26 +00:00
/**
* Draw the contents of a nested widget .
* @ param r Rectangle occupied by the widget .
* @ param widget Number of the widget to draw .
* @ note This method may not change any state , it may only use drawing functions .
*/
virtual void DrawWidget ( const Rect & r , int widget ) const { }
2009-07-04 15:35:36 +00:00
/**
2009-07-18 10:46:55 +00:00
* Update size and resize step of a widget in the window .
* After retrieval of the minimal size and the resize - steps of a widget , this function is called to allow further refinement ,
* typically by computing the real maximal size of the content . Afterwards , \ a size is taken to be the minimal size of the widget
* and \ a resize is taken to contain the resize steps . For the convenience of the callee , \ a padding contains the amount of
* padding between the content and the edge of the widget . This should be added to the returned size .
* @ param widget Widget number .
* @ param size Size of the widget .
* @ param padding Recommended amount of space between the widget content and the widget edge .
2009-11-22 18:28:14 +00:00
* @ param fill Fill step of the widget .
2009-07-18 10:46:55 +00:00
* @ param resize Resize step of the widget .
2009-07-04 15:35:36 +00:00
*/
2009-11-22 18:28:14 +00:00
virtual void UpdateWidgetSize ( int widget , Dimension * size , const Dimension & padding , Dimension * fill , Dimension * resize ) { }
2009-07-04 15:35:36 +00:00
2009-07-25 11:54:53 +00:00
/**
* Initialize string parameters for a widget .
* Calls to this function are made during initialization to measure the size ( that is as part of # InitNested ( ) ) , during drawing ,
* and while re - initializing the window . Only for widgets that render text initializing is requested .
* @ param widget Widget number .
*/
virtual void SetStringParameters ( int widget ) const { }
2009-02-09 01:22:29 +00:00
/**
* Called when window gains focus
*/
virtual void OnFocus ( ) { }
2013-08-05 20:37:02 +00:00
virtual void OnFocusLost ( ) ;
2008-05-10 13:46:36 +00:00
/**
* A key has been pressed .
* @ param key the Unicode value of the key .
* @ param keycode the untranslated key code including shift state .
2009-11-29 21:27:12 +00:00
* @ return # ES_HANDLED if the key press has been handled and no other
2008-05-10 13:46:36 +00:00
* window should receive the event .
*/
2013-08-05 20:36:24 +00:00
virtual EventState OnKeyPress ( WChar key , uint16 keycode ) { return ES_NOT_HANDLED ; }
2008-05-10 13:46:36 +00:00
2013-06-15 15:30:16 +00:00
virtual EventState OnHotkey ( int hotkey ) ;
2008-05-10 13:46:36 +00:00
/**
* The state of the control key has changed
2009-11-29 21:27:12 +00:00
* @ return # ES_HANDLED if the change has been handled and no other
2008-05-10 13:46:36 +00:00
* window should receive the event .
*/
2008-05-19 09:48:47 +00:00
virtual EventState OnCTRLStateChange ( ) { return ES_NOT_HANDLED ; }
2008-05-10 13:46:36 +00:00
/**
* A click with the left mouse button has been made on the window .
* @ param pt the point inside the window that has been clicked .
* @ param widget the clicked widget .
2010-01-30 18:34:48 +00:00
* @ param click_count Number of fast consecutive clicks at same position
2008-05-10 13:46:36 +00:00
*/
2010-01-30 18:34:48 +00:00
virtual void OnClick ( Point pt , int widget , int click_count ) { }
2008-05-10 13:46:36 +00:00
/**
* A click with the right mouse button has been made on the window .
* @ param pt the point inside the window that has been clicked .
* @ param widget the clicked widget .
2010-07-14 17:36:27 +00:00
* @ return true if the click was actually handled , i . e . do not show a
* tooltip if tooltip - on - right - click is enabled .
2008-05-10 13:46:36 +00:00
*/
2010-07-14 17:36:27 +00:00
virtual bool OnRightClick ( Point pt , int widget ) { return false ; }
2008-05-10 13:46:36 +00:00
2010-07-11 11:00:09 +00:00
/**
* The mouse is hovering over a widget in the window , perform an action for it , like opening a custom tooltip .
* @ param pt The point where the mouse is hovering .
* @ param widget The widget where the mouse is hovering .
*/
virtual void OnHover ( Point pt , int widget ) { }
2010-05-23 14:53:39 +00:00
/**
* An ' object ' is being dragged at the provided position , highlight the target if possible .
* @ param pt The point inside the window that the mouse hovers over .
* @ param widget The widget the mouse hovers over .
*/
virtual void OnMouseDrag ( Point pt , int widget ) { }
2008-05-10 13:46:36 +00:00
/**
* A dragged ' object ' has been released .
* @ param pt the point inside the window where the release took place .
* @ param widget the widget where the release took place .
*/
2008-05-16 23:30:10 +00:00
virtual void OnDragDrop ( Point pt , int widget ) { }
2008-05-10 13:46:36 +00:00
/**
* Handle the request for ( viewport ) scrolling .
* @ param delta the amount the viewport must be scrolled .
*/
2008-05-16 23:30:10 +00:00
virtual void OnScroll ( Point delta ) { }
2008-05-10 13:46:36 +00:00
/**
* The mouse is currently moving over the window or has just moved outside
* of the window . In the latter case pt is ( - 1 , - 1 ) .
* @ param pt the point inside the window that the mouse hovers over .
* @ param widget the widget the mouse hovers over .
*/
2008-05-16 23:30:10 +00:00
virtual void OnMouseOver ( Point pt , int widget ) { }
2008-05-10 13:46:36 +00:00
/**
* The mouse wheel has been turned .
* @ param wheel the amount of movement of the mouse wheel .
*/
2008-05-16 23:30:10 +00:00
virtual void OnMouseWheel ( int wheel ) { }
2008-05-10 13:46:36 +00:00
/**
* Called for every mouse loop run , which is at least once per ( game ) tick .
*/
2008-05-19 09:48:47 +00:00
virtual void OnMouseLoop ( ) { }
2008-05-10 13:46:36 +00:00
/**
* Called once per ( game ) tick .
*/
2008-05-19 09:48:47 +00:00
virtual void OnTick ( ) { }
2008-05-10 13:46:36 +00:00
/**
* Called once every 100 ( game ) ticks .
*/
2008-05-19 09:48:47 +00:00
virtual void OnHundredthTick ( ) { }
2008-05-10 13:46:36 +00:00
/**
* Called when this window ' s timeout has been reached .
*/
2008-05-19 09:48:47 +00:00
virtual void OnTimeout ( ) { }
2008-05-10 13:46:36 +00:00
/**
2009-03-29 09:49:11 +00:00
* Called after the window got resized .
2009-07-26 17:29:01 +00:00
* For nested windows with a viewport , call NWidgetViewport : : UpdateViewportCoordinates .
2008-05-10 13:46:36 +00:00
*/
2009-10-24 14:53:55 +00:00
virtual void OnResize ( ) { }
2008-05-10 13:46:36 +00:00
/**
* A dropdown option associated to this window has been selected .
* @ param widget the widget ( button ) that the dropdown is associated with .
* @ param index the element in the dropdown that is selected .
*/
2008-05-19 09:48:47 +00:00
virtual void OnDropdownSelect ( int widget , int index ) { }
2008-05-10 13:46:36 +00:00
2012-06-01 10:42:46 +00:00
virtual void OnDropdownClose ( Point pt , int widget , int index , bool instant_close ) ;
2012-11-13 21:47:07 +00:00
/**
* The text in an editbox has been edited .
* @ param widget The widget of the editbox .
*/
virtual void OnEditboxChanged ( int widget ) { }
2008-05-10 13:46:36 +00:00
/**
* The query window opened from this window has closed .
2010-01-23 19:30:53 +00:00
* @ param str the new value of the string , NULL if the window
* was cancelled or an empty string when the default
* button was pressed , i . e . StrEmpty ( str ) .
2008-05-10 13:46:36 +00:00
*/
2008-05-19 09:48:47 +00:00
virtual void OnQueryTextFinished ( char * str ) { }
2008-05-10 13:46:36 +00:00
/**
* Some data on this window has become invalid .
* @ param data information about the changed data .
2011-03-13 21:31:29 +00:00
* @ param gui_scope Whether the call is done from GUI scope . You may not do everything when not in GUI scope . See # InvalidateWindowData ( ) for details .
2008-05-10 13:46:36 +00:00
*/
2011-03-13 21:31:29 +00:00
virtual void OnInvalidateData ( int data = 0 , bool gui_scope = true ) { }
2008-05-10 13:46:36 +00:00
/**
* The user clicked some place on the map when a tile highlight mode
* has been set .
* @ param pt the exact point on the map that has been clicked .
* @ param tile the tile on the map that has been clicked .
*/
2008-05-19 09:48:47 +00:00
virtual void OnPlaceObject ( Point pt , TileIndex tile ) { }
2008-05-10 13:46:36 +00:00
2010-09-06 14:14:09 +00:00
/**
* The user clicked on a vehicle while HT_VEHICLE has been set .
* @ param v clicked vehicle . It is guaranteed to be v - > IsPrimaryVehicle ( ) = = true
2011-12-10 19:20:30 +00:00
* @ return True if the click is handled , false if it is ignored .
2010-09-06 14:14:09 +00:00
*/
2011-12-10 19:20:30 +00:00
virtual bool OnVehicleSelect ( const struct Vehicle * v ) { return false ; }
2010-09-06 14:14:09 +00:00
2008-05-10 13:46:36 +00:00
/**
* The user cancelled a tile highlight mode that has been set .
*/
2008-05-19 09:48:47 +00:00
virtual void OnPlaceObjectAbort ( ) { }
2008-05-10 13:46:36 +00:00
/**
* The user is dragging over the map when the tile highlight mode
* has been set .
* @ param select_method the method of selection ( allowed directions )
* @ param select_proc what will be created when the drag is over .
* @ param pt the exact point on the map where the mouse is .
*/
2008-05-19 09:48:47 +00:00
virtual void OnPlaceDrag ( ViewportPlaceMethod select_method , ViewportDragDropSelectionProcess select_proc , Point pt ) { }
2008-05-10 13:46:36 +00:00
/**
* The user has dragged over the map when the tile highlight mode
* has been set .
* @ param select_method the method of selection ( allowed directions )
* @ param select_proc what should be created .
* @ param pt the exact point on the map where the mouse was released .
* @ param start_tile the begin tile of the drag .
* @ param end_tile the end tile of the drag .
*/
2008-05-19 09:48:47 +00:00
virtual void OnPlaceMouseUp ( ViewportPlaceMethod select_method , ViewportDragDropSelectionProcess select_proc , Point pt , TileIndex start_tile , TileIndex end_tile ) { }
2008-05-10 13:46:36 +00:00
/**
* The user moves over the map when a tile highlight mode has been set
* when the special mouse mode has been set to ' PRESIZE ' mode . An
* example of this is the tile highlight for dock building .
* @ param pt the exact point on the map where the mouse is .
* @ param tile the tile on the map where the mouse is .
*/
2008-05-19 09:48:47 +00:00
virtual void OnPlacePresize ( Point pt , TileIndex tile ) { }
2008-05-10 13:46:36 +00:00
/*** End of the event handling ***/
2010-04-24 13:27:22 +00:00
/**
* Is the data related to this window NewGRF inspectable ?
* @ return true iff it is inspectable .
*/
virtual bool IsNewGRFInspectable ( ) const { return false ; }
/**
* Show the NewGRF inspection window . When this function is called it is
* up to the window to call and pass the right parameters to the
* ShowInspectWindow function .
* @ pre this - > IsNewGRFInspectable ( )
*/
virtual void ShowNewGRFInspectWindow ( ) const { NOT_REACHED ( ) ; }
2004-08-09 17:04:08 +00:00
} ;
2010-08-01 19:22:34 +00:00
/**
* Get the nested widget with number \ a widnum from the nested widget tree .
2009-09-19 11:31:12 +00:00
* @ tparam NWID Type of the nested widget .
* @ param widnum Widget number of the widget to retrieve .
* @ return The requested widget if it is instantiated , \ c NULL otherwise .
*/
template < class NWID >
2009-10-30 07:51:33 +00:00
inline NWID * Window : : GetWidget ( uint widnum )
2009-09-19 11:31:12 +00:00
{
if ( widnum > = this - > nested_array_size | | this - > nested_array [ widnum ] = = NULL ) return NULL ;
NWID * nwid = dynamic_cast < NWID * > ( this - > nested_array [ widnum ] ) ;
assert ( nwid ! = NULL ) ;
return nwid ;
}
/** Specialized case of #Window::GetWidget for the nested widget base class. */
template < >
2009-10-30 07:51:33 +00:00
inline const NWidgetBase * Window : : GetWidget < NWidgetBase > ( uint widnum ) const
2009-09-19 11:31:12 +00:00
{
if ( widnum > = this - > nested_array_size ) return NULL ;
return this - > nested_array [ widnum ] ;
}
2010-08-01 19:22:34 +00:00
/**
* Get the nested widget with number \ a widnum from the nested widget tree .
2009-10-30 07:51:33 +00:00
* @ tparam NWID Type of the nested widget .
* @ param widnum Widget number of the widget to retrieve .
* @ return The requested widget if it is instantiated , \ c NULL otherwise .
*/
template < class NWID >
inline const NWID * Window : : GetWidget ( uint widnum ) const
{
return const_cast < Window * > ( this ) - > GetWidget < NWID > ( widnum ) ;
}
2009-09-19 11:31:12 +00:00
2008-05-17 03:29:16 +00:00
/**
2009-07-20 19:44:28 +00:00
* Base class for windows opened from a toolbar .
2008-05-17 03:29:16 +00:00
*/
class PickerWindowBase : public Window {
public :
2013-05-26 19:23:42 +00:00
PickerWindowBase ( WindowDesc * desc , Window * parent ) : Window ( desc )
2009-07-20 19:44:28 +00:00
{
this - > parent = parent ;
2011-01-15 15:36:58 +00:00
}
2009-07-20 19:44:28 +00:00
2008-05-17 03:29:16 +00:00
virtual ~ PickerWindowBase ( ) ;
} ;
2004-08-09 17:04:08 +00:00
Window * BringWindowToFrontById ( WindowClass cls , WindowNumber number ) ;
Window * FindWindowFromPt ( int x , int y ) ;
2008-05-08 11:50:34 +00:00
/**
* Open a new window .
2008-10-14 19:27:08 +00:00
* @ param desc The pointer to the WindowDesc to be created
2008-05-08 11:50:34 +00:00
* @ param window_number the window number of the new window
* @ return see Window pointer of the newly created window
*/
template < typename Wcls >
2013-05-26 19:23:42 +00:00
Wcls * AllocateWindowDescFront ( WindowDesc * desc , int window_number )
2008-05-08 11:50:34 +00:00
{
if ( BringWindowToFrontById ( desc - > cls , window_number ) ) return NULL ;
2008-05-13 14:43:33 +00:00
return new Wcls ( desc , window_number ) ;
2008-05-08 11:50:34 +00:00
}
2004-08-09 17:04:08 +00:00
void RelocateAllWindows ( int neww , int newh ) ;
2007-02-23 01:48:53 +00:00
/* misc_gui.cpp */
2010-07-11 10:55:57 +00:00
enum TooltipCloseCondition {
TCC_RIGHT_CLICK ,
TCC_LEFT_CLICK ,
TCC_HOVER ,
} ;
2010-12-12 14:14:26 +00:00
void GuiShowTooltips ( Window * parent , StringID str , uint paramcount = 0 , const uint64 params [ ] = NULL , TooltipCloseCondition close_tooltip = TCC_HOVER ) ;
2006-10-03 20:16:20 +00:00
2007-02-23 01:48:53 +00:00
/* widget.cpp */
2005-09-18 20:56:44 +00:00
int GetWidgetFromPos ( const Window * w , int x , int y ) ;
2004-08-09 17:04:08 +00:00
2008-10-14 19:27:08 +00:00
/** Iterate over all windows */
2009-01-07 18:59:46 +00:00
# define FOR_ALL_WINDOWS_FROM_BACK_FROM(w, start) for (w = start; w != NULL; w = w->z_front) if (w->window_class != WC_INVALID)
# define FOR_ALL_WINDOWS_FROM_FRONT_FROM(w, start) for (w = start; w != NULL; w = w->z_back) if (w->window_class != WC_INVALID)
# define FOR_ALL_WINDOWS_FROM_BACK(w) FOR_ALL_WINDOWS_FROM_BACK_FROM(w, _z_back_window)
# define FOR_ALL_WINDOWS_FROM_FRONT(w) FOR_ALL_WINDOWS_FROM_FRONT_FROM(w, _z_front_window)
2004-08-09 17:04:08 +00:00
2008-01-13 13:36:01 +00:00
extern Point _cursorpos_drag_start ;
2004-08-09 17:04:08 +00:00
2008-01-13 13:36:01 +00:00
extern int _scrollbar_start_pos ;
extern int _scrollbar_size ;
extern byte _scroller_click_timeout ;
2004-08-09 17:04:08 +00:00
2008-01-13 13:36:01 +00:00
extern bool _scrolling_viewport ;
2010-07-11 10:53:07 +00:00
extern bool _mouse_hovering ;
2004-08-09 17:04:08 +00:00
2010-05-30 10:36:32 +00:00
/** Mouse modes. */
2004-08-09 17:04:08 +00:00
enum SpecialMouseMode {
2010-05-30 10:36:32 +00:00
WSM_NONE , ///< No special mouse mode.
WSM_DRAGDROP , ///< Dragging an object.
WSM_SIZING , ///< Sizing mode.
WSM_PRESIZE , ///< Presizing mode (docks, tunnels).
2004-08-09 17:04:08 +00:00
} ;
2010-05-30 10:36:32 +00:00
extern SpecialMouseMode _special_mouse_mode ;
2004-08-09 17:04:08 +00:00
2009-02-09 01:22:29 +00:00
void SetFocusedWindow ( Window * w ) ;
2010-08-12 09:09:24 +00:00
void ScrollbarClickHandler ( Window * w , NWidgetCore * nw , int x , int y ) ;
2004-08-09 17:04:08 +00:00
2007-12-19 19:44:29 +00:00
# endif /* WINDOW_GUI_H */