summaryrefslogtreecommitdiff
path: root/src/goal_gui.cpp
diff options
context:
space:
mode:
authorzuu <zuu@openttd.org>2013-06-09 13:17:20 +0000
committerzuu <zuu@openttd.org>2013-06-09 13:17:20 +0000
commit086aae8d0426e3330dc10a334374f4c356254925 (patch)
tree37ea1824639660f1a6015ed698ef279070df697c /src/goal_gui.cpp
parent8980cb427dd4f385e050f1e9075b345d798ae25c (diff)
downloadopenttd-086aae8d0426e3330dc10a334374f4c356254925.tar.xz
(svn r25370) -Fix: Make the prefix for widget constants unique for the goal list window
Diffstat (limited to 'src/goal_gui.cpp')
-rw-r--r--src/goal_gui.cpp30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/goal_gui.cpp b/src/goal_gui.cpp
index 47a940506..715051845 100644
--- a/src/goal_gui.cpp
+++ b/src/goal_gui.cpp
@@ -32,16 +32,16 @@ struct GoalListWindow : Window {
GoalListWindow(WindowDesc *desc, WindowNumber window_number) : Window(desc)
{
this->CreateNestedTree();
- this->vscroll = this->GetScrollbar(WID_GL_SCROLLBAR);
+ this->vscroll = this->GetScrollbar(WID_GOAL_SCROLLBAR);
this->FinishInitNested(window_number);
this->OnInvalidateData(0);
}
virtual void OnClick(Point pt, int widget, int click_count)
{
- if (widget != WID_GL_GOAL && widget != WID_GL_PROGRESS) return;
+ if (widget != WID_GOAL_GOAL && widget != WID_GOAL_PROGRESS) return;
- int y = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_GL_GOAL, WD_FRAMERECT_TOP);
+ int y = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_GOAL_GOAL, WD_FRAMERECT_TOP);
int num = 0;
const Goal *s;
FOR_ALL_GOALS(s) {
@@ -135,10 +135,10 @@ struct GoalListWindow : Window {
virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
{
- if (widget != WID_GL_GOAL && widget != WID_GL_PROGRESS) return;
+ if (widget != WID_GOAL_GOAL && widget != WID_GOAL_PROGRESS) return;
Dimension d = maxdim(GetStringBoundingBox(STR_GOALS_GLOBAL_TITLE), GetStringBoundingBox(STR_GOALS_COMPANY_TITLE));
- if (widget == WID_GL_PROGRESS) {
+ if (widget == WID_GOAL_PROGRESS) {
/* Get max progress width. */
d.width = 0;
Goal *s;
@@ -168,7 +168,7 @@ struct GoalListWindow : Window {
*/
void DrawPartialGoalList(int widget, int &pos, const int cap, int x, int y, int right, bool global_section) const
{
- if (widget == WID_GL_GOAL && IsInsideMM(pos, 0, cap)) DrawString(x, right, y + pos * FONT_HEIGHT_NORMAL, global_section ? STR_GOALS_GLOBAL_TITLE : STR_GOALS_COMPANY_TITLE);
+ if (widget == WID_GOAL_GOAL && IsInsideMM(pos, 0, cap)) DrawString(x, right, y + pos * FONT_HEIGHT_NORMAL, global_section ? STR_GOALS_GLOBAL_TITLE : STR_GOALS_COMPANY_TITLE);
pos++;
uint num = 0;
@@ -177,13 +177,13 @@ struct GoalListWindow : Window {
if (global_section ? s->company == INVALID_COMPANY : s->company == _local_company && s->company != INVALID_COMPANY) {
if (IsInsideMM(pos, 0, cap)) {
switch (widget) {
- case WID_GL_GOAL:
+ case WID_GOAL_GOAL:
/* Display the goal. */
SetDParamStr(0, s->text);
DrawString(x, right, y + pos * FONT_HEIGHT_NORMAL, STR_GOALS_TEXT);
break;
- case WID_GL_PROGRESS:
+ case WID_GOAL_PROGRESS:
if (s->progress != NULL) {
SetDParamStr(0, s->progress);
DrawString(x, right, y + pos * FONT_HEIGHT_NORMAL, s->completed ? STR_GOALS_PROGRESS_COMPLETE : STR_GOALS_PROGRESS, TC_FROMSTRING, SA_RIGHT | SA_FORCE);
@@ -196,7 +196,7 @@ struct GoalListWindow : Window {
}
}
- if (widget == WID_GL_GOAL && num == 0) {
+ if (widget == WID_GOAL_GOAL && num == 0) {
if (IsInsideMM(pos, 0, cap)) DrawString(x, right, y + pos * FONT_HEIGHT_NORMAL, STR_GOALS_NONE);
pos++;
}
@@ -204,7 +204,7 @@ struct GoalListWindow : Window {
virtual void DrawWidget(const Rect &r, int widget) const
{
- if (widget != WID_GL_GOAL && widget != WID_GL_PROGRESS) return;
+ if (widget != WID_GOAL_GOAL && widget != WID_GOAL_PROGRESS) return;
YearMonthDay ymd;
ConvertDateToYMD(_date, &ymd);
@@ -226,7 +226,7 @@ struct GoalListWindow : Window {
virtual void OnResize()
{
- this->vscroll->SetCapacityFromWidget(this, WID_GL_GOAL);
+ this->vscroll->SetCapacityFromWidget(this, WID_GOAL_GOAL);
}
/**
@@ -250,16 +250,16 @@ static const NWidgetPart _nested_goals_list_widgets[] = {
NWidget(WWT_STICKYBOX, COLOUR_BROWN),
EndContainer(),
NWidget(NWID_HORIZONTAL), SetFill(1, 1),
- NWidget(WWT_PANEL, COLOUR_BROWN), SetDataTip(0x0, STR_GOALS_TOOLTIP_CLICK_ON_SERVICE_TO_CENTER), SetResize(1, 1), SetFill(1, 0), SetScrollbar(WID_GL_SCROLLBAR),
+ NWidget(WWT_PANEL, COLOUR_BROWN), SetDataTip(0x0, STR_GOALS_TOOLTIP_CLICK_ON_SERVICE_TO_CENTER), SetResize(1, 1), SetFill(1, 0), SetScrollbar(WID_GOAL_SCROLLBAR),
NWidget(NWID_VERTICAL), SetPIP(WD_FRAMERECT_TOP, 4, WD_FRAMETEXT_BOTTOM),
NWidget(NWID_HORIZONTAL), SetPIP(2, 4, 2),
- NWidget(WWT_EMPTY, COLOUR_GREY, WID_GL_GOAL), SetResize(1, 1), SetMinimalTextLines(2, 0), SetFill(1, 0),
- NWidget(WWT_EMPTY, COLOUR_GREY, WID_GL_PROGRESS), SetResize(0, 1), SetMinimalTextLines(2, 0), SetFill(0, 1),
+ NWidget(WWT_EMPTY, COLOUR_GREY, WID_GOAL_GOAL), SetResize(1, 1), SetMinimalTextLines(2, 0), SetFill(1, 0),
+ NWidget(WWT_EMPTY, COLOUR_GREY, WID_GOAL_PROGRESS), SetResize(0, 1), SetMinimalTextLines(2, 0), SetFill(0, 1),
EndContainer(),
EndContainer(),
EndContainer(),
NWidget(NWID_VERTICAL),
- NWidget(NWID_VSCROLLBAR, COLOUR_BROWN, WID_GL_SCROLLBAR),
+ NWidget(NWID_VSCROLLBAR, COLOUR_BROWN, WID_GOAL_SCROLLBAR),
NWidget(WWT_RESIZEBOX, COLOUR_BROWN),
EndContainer(),
EndContainer(),