Add close/delete window function aliases for upstream
This commit is contained in:
@@ -45,6 +45,10 @@ void DeleteNetworkClientWindows();
|
||||
void HideVitalWindows();
|
||||
void ShowVitalWindows();
|
||||
|
||||
inline void CloseNonVitalWindows() { DeleteNonVitalWindows(); }
|
||||
inline void CloseAllNonVitalWindows() { DeleteAllNonVitalWindows(); }
|
||||
inline void CloseConstructionWindows() { DeleteConstructionWindows(); }
|
||||
|
||||
/**
|
||||
* Re-initialize all windows.
|
||||
* @param zoom_changed Set if windows are being re-initialized due to a zoom level changed.
|
||||
@@ -59,6 +63,9 @@ void DeleteWindowById(WindowClass cls, WindowNumber number, bool force = true);
|
||||
void DeleteAllWindowsById(WindowClass cls, WindowNumber number, bool force = true);
|
||||
void DeleteWindowByClass(WindowClass cls);
|
||||
|
||||
inline void CloseWindowById(WindowClass cls, WindowNumber number, bool force = true) { DeleteWindowById(cls, number, force); }
|
||||
inline void CloseWindowByClass(WindowClass cls) { DeleteWindowByClass(cls); }
|
||||
|
||||
bool FocusWindowById(WindowClass cls, WindowNumber number);
|
||||
|
||||
bool EditBoxInGlobalFocus();
|
||||
|
Reference in New Issue
Block a user