summaryrefslogtreecommitdiff
path: root/src/company_gui.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2009-11-29 21:16:37 +0000
committeralberth <alberth@openttd.org>2009-11-29 21:16:37 +0000
commitbb19a2e7578e41c555cda914c3bc6046c2094556 (patch)
treebd374f2b016628f64cb255337a34453c7df939a9 /src/company_gui.cpp
parent5187a5980bcda6b37e30b755efed8aa3bbe936f0 (diff)
downloadopenttd-bb19a2e7578e41c555cda914c3bc6046c2094556.tar.xz
(svn r18346) -Codechange: Compute size of face part display buttons only once in face window.
Diffstat (limited to 'src/company_gui.cpp')
-rw-r--r--src/company_gui.cpp59
1 files changed, 33 insertions, 26 deletions
diff --git a/src/company_gui.cpp b/src/company_gui.cpp
index fe48897c3..0b4b02cd2 100644
--- a/src/company_gui.cpp
+++ b/src/company_gui.cpp
@@ -1081,8 +1081,11 @@ class SelectCompanyManagerFaceWindow : public Window
bool is_female; ///< Female face.
bool is_moust_male; ///< Male face with a moustache.
- static const StringID PART_TEXTS_IS_FEMALE[];
- static const StringID PART_TEXTS[];
+ Dimension yesno_dim; ///< Dimension of a yes/no button of a part in the advanced face window.
+ Dimension number_dim; ///< Dimension of a number widget of a part in the advanced face window.
+
+ static const StringID PART_TEXTS_IS_FEMALE[]; ///< Strings depending on #is_female, used to describe parts (2 entries for a part).
+ static const StringID PART_TEXTS[]; ///< Fixed strings to describe parts of the face.
/**
* Draw dynamic a label to the left of the button and a value in the button
@@ -1150,6 +1153,29 @@ public:
}
}
+ virtual void OnInit()
+ {
+ /* Size of the boolean yes/no button. */
+ Dimension yesno_dim = maxdim(GetStringBoundingBox(STR_FACE_YES), GetStringBoundingBox(STR_FACE_NO));
+ yesno_dim.width += WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT;
+ yesno_dim.height += WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM;
+ /* Size of the number button + arrows. */
+ Dimension number_dim = {0, 0};
+ for (int val = 1; val <= 12; val++) {
+ SetDParam(0, val);
+ number_dim = maxdim(number_dim, GetStringBoundingBox(STR_JUST_INT));
+ }
+ uint arrows_width = GetSpriteSize(SPR_ARROW_LEFT).width + GetSpriteSize(SPR_ARROW_RIGHT).width + 2 * (WD_IMGBTN_LEFT + WD_IMGBTN_RIGHT);
+ number_dim.width += WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT + arrows_width;
+ number_dim.height += WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM;
+ /* Compute width of both buttons. */
+ yesno_dim.width = max(yesno_dim.width, number_dim.width);
+ number_dim.width = yesno_dim.width - arrows_width;
+
+ this->yesno_dim = yesno_dim;
+ this->number_dim = number_dim;
+ }
+
virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
{
switch (widget) {
@@ -1184,6 +1210,9 @@ public:
case SCMFW_WIDGET_HAS_MOUSTACHE_EARRING:
case SCMFW_WIDGET_HAS_GLASSES:
+ *size = this->yesno_dim;
+ break;
+
case SCMFW_WIDGET_EYECOLOUR:
case SCMFW_WIDGET_CHIN:
case SCMFW_WIDGET_EYEBROWS:
@@ -1193,31 +1222,9 @@ public:
case SCMFW_WIDGET_JACKET:
case SCMFW_WIDGET_COLLAR:
case SCMFW_WIDGET_TIE_EARRING:
- case SCMFW_WIDGET_GLASSES: {
- /* Size of the boolean yes/no button. */
- Dimension yesno_dim = maxdim(GetStringBoundingBox(STR_FACE_YES), GetStringBoundingBox(STR_FACE_NO));
- yesno_dim.width += WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT;
- yesno_dim.height += WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM;
- /* Size of the number button + arrows. */
- Dimension number_dim = {0, 0};
- for (int val = 1; val <= 12; val++) {
- SetDParam(0, val);
- number_dim = maxdim(number_dim, GetStringBoundingBox(STR_JUST_INT));
- }
- uint arrows_width = GetSpriteSize(SPR_ARROW_LEFT).width + GetSpriteSize(SPR_ARROW_RIGHT).width + 2 * (WD_IMGBTN_LEFT + WD_IMGBTN_RIGHT);
- number_dim.width += WD_FRAMERECT_LEFT + WD_FRAMERECT_RIGHT + arrows_width;
- number_dim.height += WD_FRAMERECT_TOP + WD_FRAMERECT_BOTTOM;
- /* Compute width of yes/no button. */
- yesno_dim.width = max(yesno_dim.width, number_dim.width);
- number_dim.width = yesno_dim.width - arrows_width;
-
- if (widget == SCMFW_WIDGET_HAS_MOUSTACHE_EARRING || widget == SCMFW_WIDGET_HAS_GLASSES) {
- *size = yesno_dim;
- } else {
- *size = number_dim;
- }
+ case SCMFW_WIDGET_GLASSES:
+ *size = this->number_dim;
break;
- }
}
}