diff options
author | sfan5 <sfan5@live.de> | 2020-11-26 22:19:46 +0100 |
---|---|---|
committer | sfan5 <sfan5@live.de> | 2020-11-26 22:42:19 +0100 |
commit | 9bb381ebd387cd783da8d582949bf284a29d9b3a (patch) | |
tree | 05b1f213e67069e487d54f495f393744eb73eda2 /src/gui | |
parent | 868749b4f8e898be0c01f892ea78d859d054c17e (diff) | |
download | minetest-9bb381ebd387cd783da8d582949bf284a29d9b3a.tar.gz minetest-9bb381ebd387cd783da8d582949bf284a29d9b3a.tar.bz2 minetest-9bb381ebd387cd783da8d582949bf284a29d9b3a.zip |
Change typedef to normal definitions in GUI code
Diffstat (limited to 'src/gui')
-rw-r--r-- | src/gui/guiEngine.h | 10 | ||||
-rw-r--r-- | src/gui/guiFormSpecMenu.h | 18 |
2 files changed, 14 insertions, 14 deletions
diff --git a/src/gui/guiEngine.h b/src/gui/guiEngine.h index e5b3edce7..eef1ad8aa 100644 --- a/src/gui/guiEngine.h +++ b/src/gui/guiEngine.h @@ -29,22 +29,22 @@ with this program; if not, write to the Free Software Foundation, Inc., #include "util/enriched_string.h" /******************************************************************************/ -/* Typedefs and macros */ +/* Structs and macros */ /******************************************************************************/ /** texture layer ids */ -typedef enum { +enum texture_layer { TEX_LAYER_BACKGROUND = 0, TEX_LAYER_OVERLAY, TEX_LAYER_HEADER, TEX_LAYER_FOOTER, TEX_LAYER_MAX -} texture_layer; +}; -typedef struct { +struct image_definition { video::ITexture *texture = nullptr; bool tile; unsigned int minsize; -} image_definition; +}; /******************************************************************************/ /* forward declarations */ diff --git a/src/gui/guiFormSpecMenu.h b/src/gui/guiFormSpecMenu.h index 53076e3bd..37106cb65 100644 --- a/src/gui/guiFormSpecMenu.h +++ b/src/gui/guiFormSpecMenu.h @@ -41,7 +41,7 @@ class Client; class GUIScrollContainer; class ISoundManager; -typedef enum { +enum FormspecFieldType { f_Button, f_Table, f_TabHeader, @@ -53,13 +53,13 @@ typedef enum { f_HyperText, f_AnimatedImage, f_Unknown -} FormspecFieldType; +}; -typedef enum { +enum FormspecQuitMode { quit_mode_no, quit_mode_accept, quit_mode_cancel -} FormspecQuitMode; +}; struct TextDest { @@ -356,7 +356,7 @@ private: JoystickController *m_joystick; bool m_show_debug = false; - typedef struct { + struct parserData { bool explicit_size; bool real_coordinates; u8 simple_field_count; @@ -384,16 +384,16 @@ private: // used to restore table selection/scroll/treeview state std::unordered_map<std::string, GUITable::DynamicData> table_dyndata; - } parserData; + }; - typedef struct { + struct fs_key_pending { bool key_up; bool key_down; bool key_enter; bool key_escape; - } fs_key_pendig; + }; - fs_key_pendig current_keys_pending; + fs_key_pending current_keys_pending; std::string current_field_enter_pending = ""; std::vector<std::string> m_hovered_item_tooltips; |