(svn r23541) -Codechange: Consistent naming of widgets in NewGRF debug window

This commit is contained in:
planetmaker 2011-12-16 17:15:40 +00:00
parent 4de1f3be88
commit 7c7bd7fe86
3 changed files with 80 additions and 80 deletions

View File

@ -317,23 +317,23 @@ struct NewGRFInspectWindow : Window {
NewGRFInspectWindow(const WindowDesc *desc, WindowNumber wno) : Window() NewGRFInspectWindow(const WindowDesc *desc, WindowNumber wno) : Window()
{ {
this->CreateNestedTree(desc); this->CreateNestedTree(desc);
this->vscroll = this->GetScrollbar(NIW_SCROLLBAR); this->vscroll = this->GetScrollbar(WID_NGRFI_SCROLLBAR);
this->FinishInitNested(desc, wno); this->FinishInitNested(desc, wno);
this->vscroll->SetCount(0); this->vscroll->SetCount(0);
this->SetWidgetDisabledState(NIW_PARENT, GetFeatureHelper(this->window_number)->GetParent(GetFeatureIndex(this->window_number)) == UINT32_MAX); this->SetWidgetDisabledState(WID_NGRFI_PARENT, GetFeatureHelper(this->window_number)->GetParent(GetFeatureIndex(this->window_number)) == UINT32_MAX);
} }
virtual void SetStringParameters(int widget) const virtual void SetStringParameters(int widget) const
{ {
if (widget != NIW_CAPTION) return; if (widget != WID_NGRFI_CAPTION) return;
GetFeatureHelper(this->window_number)->SetStringParameters(GetFeatureIndex(this->window_number)); GetFeatureHelper(this->window_number)->SetStringParameters(GetFeatureIndex(this->window_number));
} }
virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
{ {
if (widget != NIW_MAINPANEL) return; if (widget != WID_NGRFI_MAINPANEL) return;
resize->height = max(11, FONT_HEIGHT_NORMAL + 1); resize->height = max(11, FONT_HEIGHT_NORMAL + 1);
resize->width = 1; resize->width = 1;
@ -364,7 +364,7 @@ struct NewGRFInspectWindow : Window {
virtual void DrawWidget(const Rect &r, int widget) const virtual void DrawWidget(const Rect &r, int widget) const
{ {
if (widget != NIW_MAINPANEL) return; if (widget != WID_NGRFI_MAINPANEL) return;
uint index = GetFeatureIndex(this->window_number); uint index = GetFeatureIndex(this->window_number);
const NIFeature *nif = GetFeature(this->window_number); const NIFeature *nif = GetFeature(this->window_number);
@ -467,20 +467,20 @@ struct NewGRFInspectWindow : Window {
virtual void OnClick(Point pt, int widget, int click_count) virtual void OnClick(Point pt, int widget, int click_count)
{ {
switch (widget) { switch (widget) {
case NIW_PARENT: { case WID_NGRFI_PARENT: {
const NIHelper *nih = GetFeatureHelper(this->window_number); const NIHelper *nih = GetFeatureHelper(this->window_number);
uint index = nih->GetParent(GetFeatureIndex(this->window_number)); uint index = nih->GetParent(GetFeatureIndex(this->window_number));
::ShowNewGRFInspectWindow((GrfSpecFeature)GB(index, 24, 8), GetFeatureIndex(index), nih->GetGRFID(GetFeatureIndex(this->window_number))); ::ShowNewGRFInspectWindow((GrfSpecFeature)GB(index, 24, 8), GetFeatureIndex(index), nih->GetGRFID(GetFeatureIndex(this->window_number)));
break; break;
} }
case NIW_MAINPANEL: { case WID_NGRFI_MAINPANEL: {
/* Does this feature have variables? */ /* Does this feature have variables? */
const NIFeature *nif = GetFeature(this->window_number); const NIFeature *nif = GetFeature(this->window_number);
if (nif->variables == NULL) return; if (nif->variables == NULL) return;
/* Get the line, make sure it's within the boundaries. */ /* Get the line, make sure it's within the boundaries. */
int line = this->vscroll->GetScrolledRowFromWidget(pt.y, this, NIW_MAINPANEL, TOP_OFFSET); int line = this->vscroll->GetScrolledRowFromWidget(pt.y, this, WID_NGRFI_MAINPANEL, TOP_OFFSET);
if (line == INT_MAX) return; if (line == INT_MAX) return;
/* Find the variable related to the line */ /* Find the variable related to the line */
@ -506,7 +506,7 @@ struct NewGRFInspectWindow : Window {
virtual void OnResize() virtual void OnResize()
{ {
this->vscroll->SetCapacityFromWidget(this, NIW_MAINPANEL, TOP_OFFSET + BOTTOM_OFFSET); this->vscroll->SetCapacityFromWidget(this, WID_NGRFI_MAINPANEL, TOP_OFFSET + BOTTOM_OFFSET);
} }
}; };
@ -515,15 +515,15 @@ struct NewGRFInspectWindow : Window {
static const NWidgetPart _nested_newgrf_inspect_widgets[] = { static const NWidgetPart _nested_newgrf_inspect_widgets[] = {
NWidget(NWID_HORIZONTAL), NWidget(NWID_HORIZONTAL),
NWidget(WWT_CLOSEBOX, COLOUR_GREY), NWidget(WWT_CLOSEBOX, COLOUR_GREY),
NWidget(WWT_CAPTION, COLOUR_GREY, NIW_CAPTION), SetDataTip(STR_NEWGRF_INSPECT_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS), NWidget(WWT_CAPTION, COLOUR_GREY, WID_NGRFI_CAPTION), SetDataTip(STR_NEWGRF_INSPECT_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, NIW_PARENT), SetDataTip(STR_NEWGRF_INSPECT_PARENT_BUTTON, STR_NEWGRF_INSPECT_PARENT_TOOLTIP), NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_NGRFI_PARENT), SetDataTip(STR_NEWGRF_INSPECT_PARENT_BUTTON, STR_NEWGRF_INSPECT_PARENT_TOOLTIP),
NWidget(WWT_SHADEBOX, COLOUR_GREY), NWidget(WWT_SHADEBOX, COLOUR_GREY),
NWidget(WWT_STICKYBOX, COLOUR_GREY), NWidget(WWT_STICKYBOX, COLOUR_GREY),
EndContainer(), EndContainer(),
NWidget(NWID_HORIZONTAL), NWidget(NWID_HORIZONTAL),
NWidget(WWT_PANEL, COLOUR_GREY, NIW_MAINPANEL), SetMinimalSize(300, 0), SetScrollbar(NIW_SCROLLBAR), EndContainer(), NWidget(WWT_PANEL, COLOUR_GREY, WID_NGRFI_MAINPANEL), SetMinimalSize(300, 0), SetScrollbar(WID_NGRFI_SCROLLBAR), EndContainer(),
NWidget(NWID_VERTICAL), NWidget(NWID_VERTICAL),
NWidget(NWID_VSCROLLBAR, COLOUR_GREY, NIW_SCROLLBAR), NWidget(NWID_VSCROLLBAR, COLOUR_GREY, WID_NGRFI_SCROLLBAR),
NWidget(WWT_RESIZEBOX, COLOUR_GREY), NWidget(WWT_RESIZEBOX, COLOUR_GREY),
EndContainer(), EndContainer(),
EndContainer(), EndContainer(),
@ -644,7 +644,7 @@ struct SpriteAlignerWindow : Window {
SpriteAlignerWindow(const WindowDesc *desc, WindowNumber wno) : Window() SpriteAlignerWindow(const WindowDesc *desc, WindowNumber wno) : Window()
{ {
this->CreateNestedTree(desc); this->CreateNestedTree(desc);
this->vscroll = this->GetScrollbar(SAW_SCROLLBAR); this->vscroll = this->GetScrollbar(WID_SA_SCROLLBAR);
this->FinishInitNested(desc, wno); this->FinishInitNested(desc, wno);
/* Oh yes, we assume there is at least one normal sprite! */ /* Oh yes, we assume there is at least one normal sprite! */
@ -654,12 +654,12 @@ struct SpriteAlignerWindow : Window {
virtual void SetStringParameters(int widget) const virtual void SetStringParameters(int widget) const
{ {
switch (widget) { switch (widget) {
case SAW_CAPTION: case WID_SA_CAPTION:
SetDParam(0, this->current_sprite); SetDParam(0, this->current_sprite);
SetDParamStr(1, FioGetFilename(GetOriginFileSlot(this->current_sprite))); SetDParamStr(1, FioGetFilename(GetOriginFileSlot(this->current_sprite)));
break; break;
case SAW_OFFSETS: { case WID_SA_OFFSETS: {
const Sprite *spr = GetSprite(this->current_sprite, ST_NORMAL); const Sprite *spr = GetSprite(this->current_sprite, ST_NORMAL);
SetDParam(0, spr->x_offs / ZOOM_LVL_BASE); SetDParam(0, spr->x_offs / ZOOM_LVL_BASE);
SetDParam(1, spr->y_offs / ZOOM_LVL_BASE); SetDParam(1, spr->y_offs / ZOOM_LVL_BASE);
@ -673,7 +673,7 @@ struct SpriteAlignerWindow : Window {
virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize) virtual void UpdateWidgetSize(int widget, Dimension *size, const Dimension &padding, Dimension *fill, Dimension *resize)
{ {
if (widget != SAW_LIST) return; if (widget != WID_SA_LIST) return;
resize->height = max(11, FONT_HEIGHT_NORMAL + 1); resize->height = max(11, FONT_HEIGHT_NORMAL + 1);
resize->width = 1; resize->width = 1;
@ -685,7 +685,7 @@ struct SpriteAlignerWindow : Window {
virtual void DrawWidget(const Rect &r, int widget) const virtual void DrawWidget(const Rect &r, int widget) const
{ {
switch (widget) { switch (widget) {
case SAW_SPRITE: { case WID_SA_SPRITE: {
/* Center the sprite ourselves */ /* Center the sprite ourselves */
const Sprite *spr = GetSprite(this->current_sprite, ST_NORMAL); const Sprite *spr = GetSprite(this->current_sprite, ST_NORMAL);
int width = r.right - r.left + 1; int width = r.right - r.left + 1;
@ -705,7 +705,7 @@ struct SpriteAlignerWindow : Window {
break; break;
} }
case SAW_LIST: { case WID_SA_LIST: {
const NWidgetBase *nwid = this->GetWidget<NWidgetBase>(widget); const NWidgetBase *nwid = this->GetWidget<NWidgetBase>(widget);
int step_size = nwid->resize_y; int step_size = nwid->resize_y;
@ -726,31 +726,31 @@ struct SpriteAlignerWindow : Window {
virtual void OnClick(Point pt, int widget, int click_count) virtual void OnClick(Point pt, int widget, int click_count)
{ {
switch (widget) { switch (widget) {
case SAW_PREVIOUS: case WID_SA_PREVIOUS:
do { do {
this->current_sprite = (this->current_sprite == 0 ? GetMaxSpriteID() : this->current_sprite) - 1; this->current_sprite = (this->current_sprite == 0 ? GetMaxSpriteID() : this->current_sprite) - 1;
} while (GetSpriteType(this->current_sprite) != ST_NORMAL); } while (GetSpriteType(this->current_sprite) != ST_NORMAL);
this->SetDirty(); this->SetDirty();
break; break;
case SAW_GOTO: case WID_SA_GOTO:
ShowQueryString(STR_EMPTY, STR_SPRITE_ALIGNER_GOTO_CAPTION, 7, this, CS_NUMERAL, QSF_NONE); ShowQueryString(STR_EMPTY, STR_SPRITE_ALIGNER_GOTO_CAPTION, 7, this, CS_NUMERAL, QSF_NONE);
break; break;
case SAW_NEXT: case WID_SA_NEXT:
do { do {
this->current_sprite = (this->current_sprite + 1) % GetMaxSpriteID(); this->current_sprite = (this->current_sprite + 1) % GetMaxSpriteID();
} while (GetSpriteType(this->current_sprite) != ST_NORMAL); } while (GetSpriteType(this->current_sprite) != ST_NORMAL);
this->SetDirty(); this->SetDirty();
break; break;
case SAW_PICKER: case WID_SA_PICKER:
this->LowerWidget(SAW_PICKER); this->LowerWidget(WID_SA_PICKER);
_newgrf_debug_sprite_picker.mode = SPM_WAIT_CLICK; _newgrf_debug_sprite_picker.mode = SPM_WAIT_CLICK;
this->SetDirty(); this->SetDirty();
break; break;
case SAW_LIST: { case WID_SA_LIST: {
const NWidgetBase *nwid = this->GetWidget<NWidgetBase>(widget); const NWidgetBase *nwid = this->GetWidget<NWidgetBase>(widget);
int step_size = nwid->resize_y; int step_size = nwid->resize_y;
@ -763,10 +763,10 @@ struct SpriteAlignerWindow : Window {
break; break;
} }
case SAW_UP: case WID_SA_UP:
case SAW_DOWN: case WID_SA_DOWN:
case SAW_LEFT: case WID_SA_LEFT:
case SAW_RIGHT: { case WID_SA_RIGHT: {
/* /*
* Yes... this is a hack. * Yes... this is a hack.
* *
@ -782,10 +782,10 @@ struct SpriteAlignerWindow : Window {
*/ */
Sprite *spr = const_cast<Sprite *>(GetSprite(this->current_sprite, ST_NORMAL)); Sprite *spr = const_cast<Sprite *>(GetSprite(this->current_sprite, ST_NORMAL));
switch (widget) { switch (widget) {
case SAW_UP: spr->y_offs -= ZOOM_LVL_BASE; break; case WID_SA_UP: spr->y_offs -= ZOOM_LVL_BASE; break;
case SAW_DOWN: spr->y_offs += ZOOM_LVL_BASE; break; case WID_SA_DOWN: spr->y_offs += ZOOM_LVL_BASE; break;
case SAW_LEFT: spr->x_offs -= ZOOM_LVL_BASE; break; case WID_SA_LEFT: spr->x_offs -= ZOOM_LVL_BASE; break;
case SAW_RIGHT: spr->x_offs += ZOOM_LVL_BASE; break; case WID_SA_RIGHT: spr->x_offs += ZOOM_LVL_BASE; break;
} }
/* Ofcourse, we need to redraw the sprite, but where is it used? /* Ofcourse, we need to redraw the sprite, but where is it used?
* Everywhere is a safe bet. */ * Everywhere is a safe bet. */
@ -817,22 +817,22 @@ struct SpriteAlignerWindow : Window {
if (!gui_scope) return; if (!gui_scope) return;
if (data == 1) { if (data == 1) {
/* Sprite picker finished */ /* Sprite picker finished */
this->RaiseWidget(SAW_PICKER); this->RaiseWidget(WID_SA_PICKER);
this->vscroll->SetCount(_newgrf_debug_sprite_picker.sprites.Length()); this->vscroll->SetCount(_newgrf_debug_sprite_picker.sprites.Length());
} }
} }
virtual void OnResize() virtual void OnResize()
{ {
this->vscroll->SetCapacityFromWidget(this, SAW_LIST); this->vscroll->SetCapacityFromWidget(this, WID_SA_LIST);
this->GetWidget<NWidgetCore>(SAW_LIST)->widget_data = (this->vscroll->GetCapacity() << MAT_ROW_START) + (1 << MAT_COL_START); this->GetWidget<NWidgetCore>(WID_SA_LIST)->widget_data = (this->vscroll->GetCapacity() << MAT_ROW_START) + (1 << MAT_COL_START);
} }
}; };
static const NWidgetPart _nested_sprite_aligner_widgets[] = { static const NWidgetPart _nested_sprite_aligner_widgets[] = {
NWidget(NWID_HORIZONTAL), NWidget(NWID_HORIZONTAL),
NWidget(WWT_CLOSEBOX, COLOUR_GREY), NWidget(WWT_CLOSEBOX, COLOUR_GREY),
NWidget(WWT_CAPTION, COLOUR_GREY, SAW_CAPTION), SetDataTip(STR_SPRITE_ALIGNER_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS), NWidget(WWT_CAPTION, COLOUR_GREY, WID_SA_CAPTION), SetDataTip(STR_SPRITE_ALIGNER_CAPTION, STR_TOOLTIP_WINDOW_TITLE_DRAG_THIS),
NWidget(WWT_SHADEBOX, COLOUR_GREY), NWidget(WWT_SHADEBOX, COLOUR_GREY),
NWidget(WWT_STICKYBOX, COLOUR_GREY), NWidget(WWT_STICKYBOX, COLOUR_GREY),
EndContainer(), EndContainer(),
@ -840,43 +840,43 @@ static const NWidgetPart _nested_sprite_aligner_widgets[] = {
NWidget(NWID_HORIZONTAL), SetPIP(0, 0, 10), NWidget(NWID_HORIZONTAL), SetPIP(0, 0, 10),
NWidget(NWID_VERTICAL), SetPIP(10, 5, 10), NWidget(NWID_VERTICAL), SetPIP(10, 5, 10),
NWidget(NWID_HORIZONTAL, NC_EQUALSIZE), SetPIP(10, 5, 10), NWidget(NWID_HORIZONTAL, NC_EQUALSIZE), SetPIP(10, 5, 10),
NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, SAW_PREVIOUS), SetDataTip(STR_SPRITE_ALIGNER_PREVIOUS_BUTTON, STR_SPRITE_ALIGNER_PREVIOUS_TOOLTIP), SetFill(1, 0), NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SA_PREVIOUS), SetDataTip(STR_SPRITE_ALIGNER_PREVIOUS_BUTTON, STR_SPRITE_ALIGNER_PREVIOUS_TOOLTIP), SetFill(1, 0),
NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, SAW_GOTO), SetDataTip(STR_SPRITE_ALIGNER_GOTO_BUTTON, STR_SPRITE_ALIGNER_GOTO_TOOLTIP), SetFill(1, 0), NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SA_GOTO), SetDataTip(STR_SPRITE_ALIGNER_GOTO_BUTTON, STR_SPRITE_ALIGNER_GOTO_TOOLTIP), SetFill(1, 0),
NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, SAW_NEXT), SetDataTip(STR_SPRITE_ALIGNER_NEXT_BUTTON, STR_SPRITE_ALIGNER_NEXT_TOOLTIP), SetFill(1, 0), NWidget(WWT_PUSHTXTBTN, COLOUR_GREY, WID_SA_NEXT), SetDataTip(STR_SPRITE_ALIGNER_NEXT_BUTTON, STR_SPRITE_ALIGNER_NEXT_TOOLTIP), SetFill(1, 0),
EndContainer(), EndContainer(),
NWidget(NWID_HORIZONTAL), SetPIP(10, 5, 10), NWidget(NWID_HORIZONTAL), SetPIP(10, 5, 10),
NWidget(NWID_SPACER), SetFill(1, 1), NWidget(NWID_SPACER), SetFill(1, 1),
NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, SAW_UP), SetDataTip(SPR_ARROW_UP, STR_SPRITE_ALIGNER_MOVE_TOOLTIP), SetResize(0, 0), NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, WID_SA_UP), SetDataTip(SPR_ARROW_UP, STR_SPRITE_ALIGNER_MOVE_TOOLTIP), SetResize(0, 0),
NWidget(NWID_SPACER), SetFill(1, 1), NWidget(NWID_SPACER), SetFill(1, 1),
EndContainer(), EndContainer(),
NWidget(NWID_HORIZONTAL_LTR), SetPIP(10, 5, 10), NWidget(NWID_HORIZONTAL_LTR), SetPIP(10, 5, 10),
NWidget(NWID_VERTICAL), NWidget(NWID_VERTICAL),
NWidget(NWID_SPACER), SetFill(1, 1), NWidget(NWID_SPACER), SetFill(1, 1),
NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, SAW_LEFT), SetDataTip(SPR_ARROW_LEFT, STR_SPRITE_ALIGNER_MOVE_TOOLTIP), SetResize(0, 0), NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, WID_SA_LEFT), SetDataTip(SPR_ARROW_LEFT, STR_SPRITE_ALIGNER_MOVE_TOOLTIP), SetResize(0, 0),
NWidget(NWID_SPACER), SetFill(1, 1), NWidget(NWID_SPACER), SetFill(1, 1),
EndContainer(), EndContainer(),
NWidget(WWT_PANEL, COLOUR_DARK_BLUE, SAW_SPRITE), SetDataTip(STR_NULL, STR_SPRITE_ALIGNER_SPRITE_TOOLTIP), NWidget(WWT_PANEL, COLOUR_DARK_BLUE, WID_SA_SPRITE), SetDataTip(STR_NULL, STR_SPRITE_ALIGNER_SPRITE_TOOLTIP),
EndContainer(), EndContainer(),
NWidget(NWID_VERTICAL), NWidget(NWID_VERTICAL),
NWidget(NWID_SPACER), SetFill(1, 1), NWidget(NWID_SPACER), SetFill(1, 1),
NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, SAW_RIGHT), SetDataTip(SPR_ARROW_RIGHT, STR_SPRITE_ALIGNER_MOVE_TOOLTIP), SetResize(0, 0), NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, WID_SA_RIGHT), SetDataTip(SPR_ARROW_RIGHT, STR_SPRITE_ALIGNER_MOVE_TOOLTIP), SetResize(0, 0),
NWidget(NWID_SPACER), SetFill(1, 1), NWidget(NWID_SPACER), SetFill(1, 1),
EndContainer(), EndContainer(),
EndContainer(), EndContainer(),
NWidget(NWID_HORIZONTAL), SetPIP(10, 5, 10), NWidget(NWID_HORIZONTAL), SetPIP(10, 5, 10),
NWidget(NWID_SPACER), SetFill(1, 1), NWidget(NWID_SPACER), SetFill(1, 1),
NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, SAW_DOWN), SetDataTip(SPR_ARROW_DOWN, STR_SPRITE_ALIGNER_MOVE_TOOLTIP), SetResize(0, 0), NWidget(WWT_PUSHIMGBTN, COLOUR_GREY, WID_SA_DOWN), SetDataTip(SPR_ARROW_DOWN, STR_SPRITE_ALIGNER_MOVE_TOOLTIP), SetResize(0, 0),
NWidget(NWID_SPACER), SetFill(1, 1), NWidget(NWID_SPACER), SetFill(1, 1),
EndContainer(), EndContainer(),
NWidget(NWID_HORIZONTAL), SetPIP(10, 5, 10), NWidget(NWID_HORIZONTAL), SetPIP(10, 5, 10),
NWidget(WWT_LABEL, COLOUR_GREY, SAW_OFFSETS), SetDataTip(STR_SPRITE_ALIGNER_OFFSETS, STR_NULL), SetFill(1, 0), NWidget(WWT_LABEL, COLOUR_GREY, WID_SA_OFFSETS), SetDataTip(STR_SPRITE_ALIGNER_OFFSETS, STR_NULL), SetFill(1, 0),
EndContainer(), EndContainer(),
EndContainer(), EndContainer(),
NWidget(NWID_VERTICAL), SetPIP(10, 5, 10), NWidget(NWID_VERTICAL), SetPIP(10, 5, 10),
NWidget(WWT_TEXTBTN, COLOUR_GREY, SAW_PICKER), SetDataTip(STR_SPRITE_ALIGNER_PICKER_BUTTON, STR_SPRITE_ALIGNER_PICKER_TOOLTIP), SetFill(1, 0), NWidget(WWT_TEXTBTN, COLOUR_GREY, WID_SA_PICKER), SetDataTip(STR_SPRITE_ALIGNER_PICKER_BUTTON, STR_SPRITE_ALIGNER_PICKER_TOOLTIP), SetFill(1, 0),
NWidget(NWID_HORIZONTAL), NWidget(NWID_HORIZONTAL),
NWidget(WWT_MATRIX, COLOUR_GREY, SAW_LIST), SetResize(1, 1), SetDataTip(0x101, STR_NULL), SetFill(1, 1), SetScrollbar(SAW_SCROLLBAR), NWidget(WWT_MATRIX, COLOUR_GREY, WID_SA_LIST), SetResize(1, 1), SetDataTip(0x101, STR_NULL), SetFill(1, 1), SetScrollbar(WID_SA_SCROLLBAR),
NWidget(NWID_VSCROLLBAR, COLOUR_GREY, SAW_SCROLLBAR), NWidget(NWID_VSCROLLBAR, COLOUR_GREY, WID_SA_SCROLLBAR),
EndContainer(), EndContainer(),
EndContainer(), EndContainer(),
EndContainer(), EndContainer(),

View File

@ -14,27 +14,27 @@
/** Widgets of the WC_NEWGRF_INSPECT. */ /** Widgets of the WC_NEWGRF_INSPECT. */
enum NewGRFInspectWidgets { enum NewGRFInspectWidgets {
NIW_CAPTION, ///< The caption bar ofcourse WID_NGRFI_CAPTION, ///< The caption bar of course
NIW_PARENT, ///< Inspect the parent WID_NGRFI_PARENT, ///< Inspect the parent
NIW_MAINPANEL, ///< Panel widget containing the actual data WID_NGRFI_MAINPANEL, ///< Panel widget containing the actual data
NIW_SCROLLBAR, ///< Scrollbar WID_NGRFI_SCROLLBAR, ///< Scrollbar
}; };
/** Widgets of the WC_SPRITE_ALIGNER. */ /** Widgets of the WC_SPRITE_ALIGNER. */
enum SpriteAlignerWidgets { enum SpriteAlignerWidgets {
SAW_CAPTION, ///< Caption of the window WID_SA_CAPTION, ///< Caption of the window
SAW_PREVIOUS, ///< Skip to the previous sprite WID_SA_PREVIOUS, ///< Skip to the previous sprite
SAW_GOTO, ///< Go to a given sprite WID_SA_GOTO, ///< Go to a given sprite
SAW_NEXT, ///< Skip to the next sprite WID_SA_NEXT, ///< Skip to the next sprite
SAW_UP, ///< Move the sprite up WID_SA_UP, ///< Move the sprite up
SAW_LEFT, ///< Move the sprite to the left WID_SA_LEFT, ///< Move the sprite to the left
SAW_RIGHT, ///< Move the sprite to the right WID_SA_RIGHT, ///< Move the sprite to the right
SAW_DOWN, ///< Move the sprite down WID_SA_DOWN, ///< Move the sprite down
SAW_SPRITE, ///< The actual sprite WID_SA_SPRITE, ///< The actual sprite
SAW_OFFSETS, ///< The sprite offsets WID_SA_OFFSETS, ///< The sprite offsets
SAW_PICKER, ///< Sprite picker WID_SA_PICKER, ///< Sprite picker
SAW_LIST, ///< Queried sprite list WID_SA_LIST, ///< Queried sprite list
SAW_SCROLLBAR,///< Scrollbar for sprite list WID_SA_SCROLLBAR,///< Scrollbar for sprite list
}; };
#endif /* WIDGETS_NEWGRF_DEBUG_WIDGET_H */ #endif /* WIDGETS_NEWGRF_DEBUG_WIDGET_H */

View File

@ -14,20 +14,20 @@
/** Widgets of the WC_BUILD_TREES. */ /** Widgets of the WC_BUILD_TREES. */
enum BuildTreesWidgets { enum BuildTreesWidgets {
WID_BT_TYPE_11, WID_BT_TYPE_11, ///< tree 1st column 1st row
WID_BT_TYPE_12, WID_BT_TYPE_12, ///< tree 1st column 2nd row
WID_BT_TYPE_13, WID_BT_TYPE_13, ///< tree 1st column 3rd row
WID_BT_TYPE_14, WID_BT_TYPE_14, ///< tree 1st column 4th row
WID_BT_TYPE_21, WID_BT_TYPE_21, ///< tree 1st column 1st row
WID_BT_TYPE_22, WID_BT_TYPE_22, ///< tree 1st column 2nd row
WID_BT_TYPE_23, WID_BT_TYPE_23, ///< tree 1st column 3rd row
WID_BT_TYPE_24, WID_BT_TYPE_24, ///< tree 1st column 4th row
WID_BT_TYPE_31, WID_BT_TYPE_31, ///< tree 1st column 1st row
WID_BT_TYPE_32, WID_BT_TYPE_32, ///< tree 1st column 2nd row
WID_BT_TYPE_33, WID_BT_TYPE_33, ///< tree 1st column 3rd row
WID_BT_TYPE_34, WID_BT_TYPE_34, ///< tree 1st column 4th row
WID_BT_TYPE_RANDOM, WID_BT_TYPE_RANDOM, ///< button to build random type of tree
WID_BT_MANY_RANDOM, WID_BT_MANY_RANDOM, ///< button to build many random trees
}; };
#endif /* WIDGETS_TREE_WIDGET_H */ #endif /* WIDGETS_TREE_WIDGET_H */