OpenTTD
window_func.h
Go to the documentation of this file.
1 /* $Id$ */
2 
3 /*
4  * This file is part of OpenTTD.
5  * 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.
6  * 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.
7  * 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/>.
8  */
9 
12 #ifndef WINDOW_FUNC_H
13 #define WINDOW_FUNC_H
14 
15 #include "window_type.h"
16 #include "company_type.h"
17 #include "core/geometry_type.hpp"
18 
21 void ChangeWindowOwner(Owner old_owner, Owner new_owner);
22 
23 void ResizeWindow(Window *w, int x, int y, bool clamp_to_screen = true);
28 
29 int GetMainViewTop();
30 int GetMainViewBottom();
31 
32 void InitWindowSystem();
33 void UnInitWindowSystem();
34 void ResetWindowSystem();
36 void InputLoop();
37 
38 void InvalidateWindowData(WindowClass cls, WindowNumber number, int data = 0, bool gui_scope = false);
39 void InvalidateWindowClassesData(WindowClass cls, int data = 0, bool gui_scope = false);
40 
43 void DeleteAllMessages();
45 void HideVitalWindows();
46 void ShowVitalWindows();
47 
48 void ReInitAllWindows();
49 
50 void SetWindowWidgetDirty(WindowClass cls, WindowNumber number, byte widget_index);
51 void SetWindowDirty(WindowClass cls, WindowNumber number);
53 
54 void DeleteWindowById(WindowClass cls, WindowNumber number, bool force = true);
56 
58 Point GetCaretPosition();
59 
60 #endif /* WINDOW_FUNC_H */
int PositionNewsMessage(Window *w)
(Re)position news message window at the screen.
Definition: window.cpp:3510
void DeleteWindowById(WindowClass cls, WindowNumber number, bool force=true)
Delete a window by its class and window number (if it is open).
Definition: window.cpp:1146
void SetWindowClassesDirty(WindowClass cls)
Mark all windows of a particular class as dirty (in need of repainting)
Definition: window.cpp:3229
void DeleteNonVitalWindows()
Try to delete a non-vital window.
Definition: window.cpp:3347
void HideVitalWindows()
Delete all always on-top windows to get an empty screen.
Definition: window.cpp:3429
int PositionMainToolbar(Window *w)
(Re)position main toolbar window at the screen.
Definition: window.cpp:3488
void ShowVitalWindows()
Show the vital in-game windows.
Definition: main_gui.cpp:592
void DeleteWindowByClass(WindowClass cls)
Delete all windows of a given class.
Definition: window.cpp:1159
Types related to windows.
int PositionNetworkChatWindow(Window *w)
(Re)position network chat window at the screen.
Definition: window.cpp:3521
void DeleteAllMessages()
Delete all messages and their corresponding window (if any).
Definition: window.cpp:3398
void SetupColoursAndInitialWindow()
Initialise the default colours (remaps and the likes), and load the main windows. ...
Definition: main_gui.cpp:564
void ChangeWindowOwner(Owner old_owner, Owner new_owner)
Change the owner of all the windows one company can take over from another company in the case of a c...
Definition: window.cpp:1207
bool EditBoxInGlobalFocus()
Check if an edit box is in global focus.
Definition: window.cpp:459
void ResizeWindow(Window *w, int x, int y, bool clamp_to_screen=true)
Resize the window.
Definition: window.cpp:2126
void UnInitWindowSystem()
Close down the windowing system.
Definition: window.cpp:1898
int GetMainViewTop()
Return the top of the main view available for general use.
Definition: window.cpp:2162
WindowClass
Window classes.
Definition: window_type.h:39
void DeleteConstructionWindows()
Delete all windows that are used for construction of vehicle etc.
Definition: window.cpp:3410
void InvalidateWindowData(WindowClass cls, WindowNumber number, int data=0, bool gui_scope=false)
Mark window data of the window of a given class and specific window number as invalid (in need of re-...
Definition: window.cpp:3301
Window * FindWindowByClass(WindowClass cls)
Find any window by its class.
Definition: window.cpp:1130
Data structure for an opened window.
Definition: window_gui.h:278
void SetWindowDirty(WindowClass cls, WindowNumber number)
Mark window as dirty (in need of repainting)
Definition: window.cpp:3201
void ReInitAllWindows()
Re-initialize all windows.
Definition: window.cpp:3436
void ResetWindowSystem()
Reset the windowing system, by means of shutting it down followed by re-initialization.
Definition: window.cpp:1918
int GetMainViewBottom()
Return the bottom of the main view available for general use.
Definition: window.cpp:2173
void DeleteAllNonVitalWindows()
It is possible that a stickied window gets to a position where the &#39;close&#39; button is outside the gami...
Definition: window.cpp:3376
void SetWindowWidgetDirty(WindowClass cls, WindowNumber number, byte widget_index)
Mark a particular widget in a particular window as dirty (in need of repainting)
Definition: window.cpp:3215
void InputLoop()
Regular call from the global game loop.
Definition: window.cpp:3068
void InitWindowSystem()
(re)initialize the windowing system
Definition: window.cpp:1877
All geometry types in OpenTTD.
Window * FindWindowById(WindowClass cls, WindowNumber number)
Find a window by its class and window number.
Definition: window.cpp:1114
Coordinates of a point in 2D.
Types related to companies.
int PositionStatusbar(Window *w)
(Re)position statusbar window at the screen.
Definition: window.cpp:3499
int32 WindowNumber
Number to differentiate different windows of the same class.
Definition: window_type.h:707
void InvalidateWindowClassesData(WindowClass cls, int data=0, bool gui_scope=false)
Mark window data of all windows of a given class as invalid (in need of re-computing) Note that by de...
Definition: window.cpp:3319
Owner
Enum for all companies/owners.
Definition: company_type.h:20