You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
68 lines
1.6 KiB
68 lines
1.6 KiB
|
15 years ago
|
|
||
|
|
#include "setup/language.hpp"
|
||
|
|
|
||
|
|
#include "setup/version.hpp"
|
||
|
|
#include "util/load.hpp"
|
||
|
|
|
||
|
|
namespace setup {
|
||
|
|
|
||
|
|
void language_entry::load(std::istream & is, const version & version) {
|
||
|
|
|
||
|
|
if(version >= INNO_VERSION(4, 0, 0)) {
|
||
|
|
is >> encoded_string(name, version.codepage());
|
||
|
|
} else {
|
||
|
|
name = "default";
|
||
|
|
}
|
||
|
|
|
||
|
|
is >> encoded_string(language_name, (version >= INNO_VERSION(4, 2, 2)) ? 1200 : 1252);
|
||
|
|
|
||
|
|
is >> encoded_string(dialog_font, version.codepage());
|
||
|
|
is >> encoded_string(title_font, version.codepage());
|
||
|
|
is >> encoded_string(welcome_font, version.codepage());
|
||
|
|
is >> encoded_string(copyright_font, version.codepage());
|
||
|
|
|
||
|
|
if(version >= INNO_VERSION(4, 0, 0)) {
|
||
|
|
is >> binary_string(data);
|
||
|
|
}
|
||
|
|
|
||
|
|
if(version >= INNO_VERSION(4, 0, 1)) {
|
||
|
|
is >> ansi_string(license_text);
|
||
|
|
is >> ansi_string(info_before);
|
||
|
|
is >> ansi_string(info_after);
|
||
|
|
} else {
|
||
|
|
license_text.clear(), info_before.clear(), info_after.clear();
|
||
|
|
}
|
||
|
|
|
||
|
|
language_id = load_number<uint32_t>(is);
|
||
|
|
|
||
|
|
if(version >= INNO_VERSION(4, 2, 2) && (version < INNO_VERSION(5, 3, 0) || !version.unicode)) {
|
||
|
|
codepage = load_number<uint32_t>(is);
|
||
|
|
} else {
|
||
|
|
codepage = 0;
|
||
|
|
}
|
||
|
|
if(!codepage) {
|
||
|
|
codepage = version.codepage();
|
||
|
|
}
|
||
|
|
|
||
|
|
dialog_font_size = load_number<uint32_t>(is);
|
||
|
|
|
||
|
|
if(version < INNO_VERSION(4, 1, 0)) {
|
||
|
|
dialog_font_standard_height = load_number<uint32_t>(is);
|
||
|
|
} else {
|
||
|
|
dialog_font_standard_height = 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
title_font_size = load_number<uint32_t>(is);
|
||
|
|
welcome_font_size = load_number<uint32_t>(is);
|
||
|
|
copyright_font_size = load_number<uint32_t>(is);
|
||
|
|
|
||
|
|
if(version >= INNO_VERSION(5, 2, 3)) {
|
||
|
|
right_to_left = ::load<uint8_t>(is);
|
||
|
|
} else {
|
||
|
|
right_to_left = false;
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|
||
|
|
|
||
|
|
} // namespace setup
|