diff options
author | rubidium <rubidium@openttd.org> | 2009-09-02 07:17:15 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2009-09-02 07:17:15 +0000 |
commit | e69e3378b02b143f646dcd4ea3542dd1fb4bd7aa (patch) | |
tree | b499099e506adb7e26325b96a7051f310131769c /src/bridge_gui.cpp | |
parent | 4b9b85812781d4e1c23e503bde4ed5de9cdabca4 (diff) | |
download | openttd-e69e3378b02b143f646dcd4ea3542dd1fb4bd7aa.tar.xz |
(svn r17367) -Codechange: make the autoreplace, bridge and build vehicle GUIs use the scrollbar wrappers
Diffstat (limited to 'src/bridge_gui.cpp')
-rw-r--r-- | src/bridge_gui.cpp | 29 |
1 files changed, 14 insertions, 15 deletions
diff --git a/src/bridge_gui.cpp b/src/bridge_gui.cpp index aa385a6cc..590f6f48e 100644 --- a/src/bridge_gui.cpp +++ b/src/bridge_gui.cpp @@ -143,16 +143,16 @@ public: this->bridges->NeedResort(); this->SortBridgeList(); - this->vscroll.count = bl->Length(); - this->vscroll.cap = this->nested_array[BBSW_BRIDGE_LIST]->current_y / this->resize.step_height; - if (this->last_size < this->vscroll.cap) this->last_size = this->vscroll.cap; - if (this->last_size > this->vscroll.count) this->last_size = this->vscroll.count; + this->vscroll.SetCount(bl->Length()); + this->vscroll.SetCapacity(this->nested_array[BBSW_BRIDGE_LIST]->current_y / this->resize.step_height); + if (this->last_size < this->vscroll.GetCapacity()) this->last_size = this->vscroll.GetCapacity(); + if (this->last_size > this->vscroll.GetCount()) this->last_size = this->vscroll.GetCount(); /* Resize the bridge selection window if we used a bigger one the last time. */ - if (this->last_size > this->vscroll.cap) { - ResizeWindow(this, 0, (this->last_size - this->vscroll.cap) * this->resize.step_height); - this->vscroll.cap = this->last_size; + if (this->last_size > this->vscroll.GetCapacity()) { + ResizeWindow(this, 0, (this->last_size - this->vscroll.GetCapacity()) * this->resize.step_height); + this->vscroll.SetCapacity(this->last_size); } - this->nested_array[BBSW_BRIDGE_LIST]->widget_data = (this->vscroll.cap << MAT_ROW_START) + (1 << MAT_COL_START); + this->nested_array[BBSW_BRIDGE_LIST]->widget_data = (this->vscroll.GetCapacity() << MAT_ROW_START) + (1 << MAT_COL_START); } ~BuildBridgeWindow() @@ -220,7 +220,7 @@ public: case BBSW_BRIDGE_LIST: { uint y = r.top; - for (int i = this->vscroll.pos; i < this->vscroll.cap + this->vscroll.pos && i < (int)this->bridges->Length(); i++) { + for (int i = this->vscroll.GetPosition(); this->vscroll.IsVisible(i) && i < (int)this->bridges->Length(); i++) { const BridgeSpec *b = this->bridges->Get(i)->spec; SetDParam(2, this->bridges->Get(i)->cost); @@ -254,8 +254,8 @@ public: default: break; case BBSW_BRIDGE_LIST: { uint i = ((int)pt.y - this->nested_array[BBSW_BRIDGE_LIST]->pos_y) / this->resize.step_height; - if (i < this->vscroll.cap) { - i += this->vscroll.pos; + if (i < this->vscroll.GetCapacity()) { + i += this->vscroll.GetPosition(); if (i < this->bridges->Length()) { this->BuildBridge(i); delete this; @@ -285,11 +285,10 @@ public: virtual void OnResize(Point delta) { - this->vscroll.cap += delta.y / (int)this->resize.step_height; - this->nested_array[BBSW_BRIDGE_LIST]->widget_data = (this->vscroll.cap << MAT_ROW_START) + (1 << MAT_COL_START); - SetVScrollCount(this, this->bridges->Length()); + this->vscroll.UpdateCapacity(delta.y / (int)this->resize.step_height); + this->nested_array[BBSW_BRIDGE_LIST]->widget_data = (this->vscroll.GetCapacity() << MAT_ROW_START) + (1 << MAT_COL_START); - this->last_size = max(this->vscroll.cap, this->last_size); + this->last_size = max(this->vscroll.GetCapacity(), this->last_size); } }; |