GUI1: fixed scrollbar layout
Re-adding the pre-GUI2 redesign scrollbar images so GUI1's scrollbars show correctly.
Before Width: | Height: | Size: 202 B |
Before Width: | Height: | Size: 155 B |
Before Width: | Height: | Size: 192 B |
BIN
images/buttons/scrollbars_large/scrollbottom-active.png
Normal file
After Width: | Height: | Size: 101 B |
BIN
images/buttons/scrollbars_large/scrollbottom-pressed.png
Normal file
After Width: | Height: | Size: 102 B |
BIN
images/buttons/scrollbars_large/scrollbottom.png
Normal file
After Width: | Height: | Size: 103 B |
Before Width: | Height: | Size: 126 B After Width: | Height: | Size: 126 B |
Before Width: | Height: | Size: 216 B After Width: | Height: | Size: 216 B |
Before Width: | Height: | Size: 119 B After Width: | Height: | Size: 119 B |
Before Width: | Height: | Size: 212 B After Width: | Height: | Size: 212 B |
Before Width: | Height: | Size: 132 B After Width: | Height: | Size: 132 B |
Before Width: | Height: | Size: 123 B After Width: | Height: | Size: 123 B |
BIN
images/buttons/scrollbars_large/scrollhorizontal-active.png
Normal file
After Width: | Height: | Size: 233 B |
BIN
images/buttons/scrollbars_large/scrollhorizontal-pressed.png
Normal file
After Width: | Height: | Size: 249 B |
BIN
images/buttons/scrollbars_large/scrollhorizontal.png
Normal file
After Width: | Height: | Size: 222 B |
BIN
images/buttons/scrollbars_large/scrollleft-active.png
Normal file
After Width: | Height: | Size: 97 B |
BIN
images/buttons/scrollbars_large/scrollleft-pressed.png
Normal file
After Width: | Height: | Size: 97 B |
BIN
images/buttons/scrollbars_large/scrollleft.png
Normal file
After Width: | Height: | Size: 101 B |
BIN
images/buttons/scrollbars_large/scrollmid-active.png
Normal file
After Width: | Height: | Size: 207 B |
BIN
images/buttons/scrollbars_large/scrollmid-pressed.png
Normal file
After Width: | Height: | Size: 213 B |
BIN
images/buttons/scrollbars_large/scrollmid.png
Normal file
After Width: | Height: | Size: 199 B |
BIN
images/buttons/scrollbars_large/scrollright-active.png
Normal file
After Width: | Height: | Size: 114 B |
BIN
images/buttons/scrollbars_large/scrollright-pressed.png
Normal file
After Width: | Height: | Size: 114 B |
BIN
images/buttons/scrollbars_large/scrollright.png
Normal file
After Width: | Height: | Size: 108 B |
BIN
images/buttons/scrollbars_large/scrolltop-active.png
Normal file
After Width: | Height: | Size: 118 B |
BIN
images/buttons/scrollbars_large/scrolltop-pressed.png
Normal file
After Width: | Height: | Size: 121 B |
BIN
images/buttons/scrollbars_large/scrolltop.png
Normal file
After Width: | Height: | Size: 104 B |
@ -27,21 +27,21 @@
|
|||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
const std::string scrollbar_top = "buttons/scrollbars/scrolltop.png";
|
const std::string scrollbar_top = "buttons/scrollbars_large/scrolltop.png";
|
||||||
const std::string scrollbar_bottom = "buttons/scrollbars/scrollbottom.png";
|
const std::string scrollbar_bottom = "buttons/scrollbars_large/scrollbottom.png";
|
||||||
const std::string scrollbar_mid = "buttons/scrollbars/scrollmid.png";
|
const std::string scrollbar_mid = "buttons/scrollbars_large/scrollmid.png";
|
||||||
|
|
||||||
const std::string scrollbar_top_hl = "buttons/scrollbars/scrolltop-active.png";
|
const std::string scrollbar_top_hl = "buttons/scrollbars_large/scrolltop-active.png";
|
||||||
const std::string scrollbar_bottom_hl = "buttons/scrollbars/scrollbottom-active.png";
|
const std::string scrollbar_bottom_hl = "buttons/scrollbars_large/scrollbottom-active.png";
|
||||||
const std::string scrollbar_mid_hl = "buttons/scrollbars/scrollmid-active.png";
|
const std::string scrollbar_mid_hl = "buttons/scrollbars_large/scrollmid-active.png";
|
||||||
|
|
||||||
const std::string scrollbar_top_pressed = "buttons/scrollbars/scrolltop-pressed.png";
|
const std::string scrollbar_top_pressed = "buttons/scrollbars_large/scrolltop-pressed.png";
|
||||||
const std::string scrollbar_bottom_pressed = "buttons/scrollbars/scrollbottom-pressed.png";
|
const std::string scrollbar_bottom_pressed = "buttons/scrollbars_large/scrollbottom-pressed.png";
|
||||||
const std::string scrollbar_mid_pressed = "buttons/scrollbars/scrollmid-pressed.png";
|
const std::string scrollbar_mid_pressed = "buttons/scrollbars_large/scrollmid-pressed.png";
|
||||||
|
|
||||||
const std::string groove_top = "buttons/scrollbars/scrollgroove-top.png";
|
const std::string groove_top = "buttons/scrollbars_large/scrollgroove-top.png";
|
||||||
const std::string groove_mid = "buttons/scrollbars/scrollgroove-mid.png";
|
const std::string groove_mid = "buttons/scrollbars_large/scrollgroove-mid.png";
|
||||||
const std::string groove_bottom = "buttons/scrollbars/scrollgroove-bottom.png";
|
const std::string groove_bottom = "buttons/scrollbars_large/scrollgroove-bottom.png";
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|