diff options
author | masoud bh <masoud.bh@chmail.ir> | 2015-11-09 02:23:58 +0330 |
---|---|---|
committer | masoud bh <masoud.bh@chmail.ir> | 2015-11-09 02:23:58 +0330 |
commit | 24f3f43457ac6bdeed95c1ed0a882387a509078a (patch) | |
tree | b8249a4f8c1674538b80b0a5d22d4b6810f7cf1e /drivers/pe_bliss/resource_bitmap_reader.h | |
parent | 3fcfdfec0ac5175f55527b3ec95d14d48bf29dd2 (diff) |
Add icon to exe file in windows export
add version_info and icon sections in "export to windows platform".
add version_info and icon to godot exe file (editor & template exe).
fix an problem in image class.
change all default icons to android export icon (a little more rounded).
create an python script for convert file to cpp byte array for use in
'splash.h'.
Diffstat (limited to 'drivers/pe_bliss/resource_bitmap_reader.h')
-rw-r--r-- | drivers/pe_bliss/resource_bitmap_reader.h | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/drivers/pe_bliss/resource_bitmap_reader.h b/drivers/pe_bliss/resource_bitmap_reader.h new file mode 100644 index 0000000000..2e99571cab --- /dev/null +++ b/drivers/pe_bliss/resource_bitmap_reader.h @@ -0,0 +1,29 @@ +#pragma once +#include <string> +#include "stdint_defs.h" + +namespace pe_bliss +{ +class pe_resource_viewer; + +class resource_bitmap_reader +{ +public: + resource_bitmap_reader(const pe_resource_viewer& res); + + //Returns bitmap data by name and language (minimum checks of format correctness) + const std::string get_bitmap_by_name(uint32_t language, const std::wstring& name) const; + //Returns bitmap data by name and index in language directory (instead of language) (minimum checks of format correctness) + const std::string get_bitmap_by_name(const std::wstring& name, uint32_t index = 0) const; + //Returns bitmap data by ID and language (minimum checks of format correctness) + const std::string get_bitmap_by_id_lang(uint32_t language, uint32_t id) const; + //Returns bitmap data by ID and index in language directory (instead of language) (minimum checks of format correctness) + const std::string get_bitmap_by_id(uint32_t id, uint32_t index = 0) const; + +private: + //Helper function of creating bitmap header + static const std::string create_bitmap(const std::string& resource_data); + + const pe_resource_viewer& res_; +}; +} |