@@ -67,7 +67,7 @@ Window *_first_window = nullptr;
|
||||
/** If false, highlight is white, otherwise the by the widget defined colour. */
|
||||
bool _window_highlight_colour = false;
|
||||
|
||||
uint64 _window_update_number = 1;
|
||||
uint64_t _window_update_number = 1;
|
||||
|
||||
/*
|
||||
* Window that currently has focus. - The main purpose is to generate
|
||||
@@ -100,8 +100,8 @@ std::vector<WindowDesc*> *_window_descs = nullptr;
|
||||
std::string _windows_file;
|
||||
|
||||
/** Window description constructor. */
|
||||
WindowDesc::WindowDesc(const char * const file, const int line, WindowPosition def_pos, const char *ini_key, int16 def_width_trad, int16 def_height_trad,
|
||||
WindowClass window_class, WindowClass parent_class, uint32 flags,
|
||||
WindowDesc::WindowDesc(const char * const file, const int line, WindowPosition def_pos, const char *ini_key, int16_t def_width_trad, int16_t def_height_trad,
|
||||
WindowClass window_class, WindowClass parent_class, uint32_t flags,
|
||||
const NWidgetPart *nwid_begin, const NWidgetPart *nwid_end, HotkeyList *hotkeys, WindowDesc *ini_parent) :
|
||||
file(file),
|
||||
line(line),
|
||||
@@ -138,7 +138,7 @@ const WindowDescPreferences &WindowDesc::GetPreferences() const
|
||||
* This is either a stored user preferred size, or the built-in default.
|
||||
* @return Width in pixels.
|
||||
*/
|
||||
int16 WindowDesc::GetDefaultWidth() const
|
||||
int16_t WindowDesc::GetDefaultWidth() const
|
||||
{
|
||||
const WindowDescPreferences &prefs = this->GetPreferences();
|
||||
return prefs.pref_width != 0 ? prefs.pref_width : ScaleGUITrad(this->default_width_trad);
|
||||
@@ -149,7 +149,7 @@ int16 WindowDesc::GetDefaultWidth() const
|
||||
* This is either a stored user preferred size, or the built-in default.
|
||||
* @return Height in pixels.
|
||||
*/
|
||||
int16 WindowDesc::GetDefaultHeight() const
|
||||
int16_t WindowDesc::GetDefaultHeight() const
|
||||
{
|
||||
const WindowDescPreferences &prefs = this->GetPreferences();
|
||||
return prefs.pref_height != 0 ? prefs.pref_height : ScaleGUITrad(this->default_height_trad);
|
||||
@@ -699,8 +699,8 @@ static void DispatchLeftClickEvent(Window *w, int x, int y, int click_count)
|
||||
w->window_desc->GetPreferences().pref_width = w->width;
|
||||
w->window_desc->GetPreferences().pref_height = w->height;
|
||||
} else {
|
||||
int16 def_width = std::max<int16>(std::min<int16>(w->window_desc->GetDefaultWidth(), _screen.width), w->nested_root->smallest_x);
|
||||
int16 def_height = std::max<int16>(std::min<int16>(w->window_desc->GetDefaultHeight(), _screen.height - 50), w->nested_root->smallest_y);
|
||||
int16_t def_width = std::max<int16_t>(std::min<int16_t>(w->window_desc->GetDefaultWidth(), _screen.width), w->nested_root->smallest_x);
|
||||
int16_t def_height = std::max<int16_t>(std::min<int16_t>(w->window_desc->GetDefaultHeight(), _screen.height - 50), w->nested_root->smallest_y);
|
||||
|
||||
int dx = (w->resize.step_width == 0) ? 0 : def_width - w->width;
|
||||
int dy = (w->resize.step_height == 0) ? 0 : def_height - w->height;
|
||||
@@ -1782,13 +1782,13 @@ Point GetToolbarAlignedWindowPosition(int window_width)
|
||||
*
|
||||
* @return Coordinate of the top-left corner of the new window.
|
||||
*/
|
||||
static Point LocalGetWindowPlacement(const WindowDesc *desc, int16 sm_width, int16 sm_height, int window_number)
|
||||
static Point LocalGetWindowPlacement(const WindowDesc *desc, int16_t sm_width, int16_t sm_height, int window_number)
|
||||
{
|
||||
Point pt;
|
||||
const Window *w;
|
||||
|
||||
int16 default_width = std::max(desc->GetDefaultWidth(), sm_width);
|
||||
int16 default_height = std::max(desc->GetDefaultHeight(), sm_height);
|
||||
int16_t default_width = std::max(desc->GetDefaultWidth(), sm_width);
|
||||
int16_t default_height = std::max(desc->GetDefaultHeight(), sm_height);
|
||||
|
||||
if (desc->parent_cls != WC_NONE && (w = FindWindowById(desc->parent_cls, window_number)) != nullptr) {
|
||||
bool rtl = _current_text_dir == TD_RTL;
|
||||
@@ -1842,7 +1842,7 @@ static Point LocalGetWindowPlacement(const WindowDesc *desc, int16 sm_width, int
|
||||
return pt;
|
||||
}
|
||||
|
||||
/* virtual */ Point Window::OnInitialPosition(int16 sm_width, int16 sm_height, int window_number)
|
||||
/* virtual */ Point Window::OnInitialPosition(int16_t sm_width, int16_t sm_height, int window_number)
|
||||
{
|
||||
return LocalGetWindowPlacement(this->window_desc, sm_width, sm_height, window_number);
|
||||
}
|
||||
@@ -2747,7 +2747,7 @@ void HandleToolbarHotkey(int hotkey)
|
||||
* @param keycode Virtual keycode of the key.
|
||||
* @param key Unicode character of the key.
|
||||
*/
|
||||
void HandleKeypress(uint keycode, WChar key)
|
||||
void HandleKeypress(uint keycode, char32_t key)
|
||||
{
|
||||
/* World generation is multithreaded and messes with companies.
|
||||
* But there is no company related window open anyway, so _current_company is not used. */
|
||||
@@ -2932,7 +2932,7 @@ static void ScrollMainViewport(int x, int y)
|
||||
* 4 = right
|
||||
* 8 = down
|
||||
*/
|
||||
static const int8 scrollamt[16][2] = {
|
||||
static const int8_t scrollamt[16][2] = {
|
||||
{ 0, 0}, ///< no key specified
|
||||
{-2, 0}, ///< 1 : left
|
||||
{ 0, -2}, ///< 2 : up
|
||||
|
Reference in New Issue
Block a user