summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2009-11-19 10:56:14 +0000
committerrubidium <rubidium@openttd.org>2009-11-19 10:56:14 +0000
commit8b5a010f3a1b11d180ee812a438cf5caab8a040d (patch)
treef42f4e9bd61ac92e98265941d5982ae687a701e6 /src
parentf216fcecd47b86301ebd505b9b309c6996c74faf (diff)
downloadopenttd-8b5a010f3a1b11d180ee812a438cf5caab8a040d.tar.xz
(svn r18179) -Codechange: make the town authority window RTL aware
Diffstat (limited to 'src')
-rw-r--r--src/town_gui.cpp18
1 files changed, 12 insertions, 6 deletions
diff --git a/src/town_gui.cpp b/src/town_gui.cpp
index 246d468a5..62e06c217 100644
--- a/src/town_gui.cpp
+++ b/src/town_gui.cpp
@@ -120,19 +120,25 @@ public:
void DrawRatings()
{
NWidgetBase *nwid = this->GetWidget<NWidgetBase>(TWA_RATING_INFO);
- int left = nwid->pos_x;
- int right = nwid->pos_x + nwid->current_x - 1;
+ uint left = nwid->pos_x + WD_FRAMERECT_LEFT;
+ uint right = nwid->pos_x + nwid->current_x - 1 - WD_FRAMERECT_RIGHT;
uint y = nwid->pos_y + WD_FRAMERECT_TOP;
- DrawString(left + WD_FRAMERECT_LEFT, right - WD_FRAMERECT_TOP, y, STR_LOCAL_AUTHORITY_COMPANY_RATINGS);
+ DrawString(left, right, y, STR_LOCAL_AUTHORITY_COMPANY_RATINGS);
y += FONT_HEIGHT_NORMAL;
+ bool rtl = _dynlang.text_dir == TD_RTL;
+ uint text_left = left + (rtl ? 0 : 26);
+ uint text_right = right - (rtl ? 26 : 0);
+ uint icon_left = rtl ? right - 14 : left;
+ uint blob_left = rtl ? right - 24 : left + 16;
+
/* Draw list of companies */
const Company *c;
FOR_ALL_COMPANIES(c) {
if ((HasBit(this->town->have_ratings, c->index) || this->town->exclusivity == c->index)) {
- DrawCompanyIcon(c->index, left + WD_FRAMERECT_LEFT, y);
+ DrawCompanyIcon(c->index, icon_left, y);
SetDParam(0, c->index);
SetDParam(1, c->index);
@@ -150,10 +156,10 @@ public:
SetDParam(2, str);
if (this->town->exclusivity == c->index) { // red icon for company with exclusive rights
- DrawSprite(SPR_BLOT, PALETTE_TO_RED, left + WD_FRAMERECT_LEFT + 16, y);
+ DrawSprite(SPR_BLOT, PALETTE_TO_RED, blob_left, y);
}
- DrawString(left + WD_FRAMERECT_LEFT + 26, right - WD_FRAMERECT_RIGHT, y, STR_LOCAL_AUTHORITY_COMPANY_RATING);
+ DrawString(text_left, text_right, y, STR_LOCAL_AUTHORITY_COMPANY_RATING);
y += FONT_HEIGHT_NORMAL;
}
}