mirror of https://github.com/bsnes-emu/bsnes.git
30 lines
986 B
C++
Executable File
30 lines
986 B
C++
Executable File
unsigned pHorizontalSlider::position() {
|
|
return SendMessage(hwnd, TBM_GETPOS, 0, 0);
|
|
}
|
|
|
|
void pHorizontalSlider::setLength(unsigned length) {
|
|
length += (length == 0);
|
|
SendMessage(hwnd, TBM_SETRANGE, (WPARAM)true, (LPARAM)MAKELONG(0, length - 1));
|
|
SendMessage(hwnd, TBM_SETPAGESIZE, 0, (LPARAM)(length >> 3));
|
|
horizontalSlider.setPosition(0);
|
|
}
|
|
|
|
void pHorizontalSlider::setPosition(unsigned position) {
|
|
SendMessage(hwnd, TBM_SETPOS, (WPARAM)true, (LPARAM)position);
|
|
}
|
|
|
|
void pHorizontalSlider::constructor() {
|
|
setParent(Window::None);
|
|
}
|
|
|
|
void pHorizontalSlider::setParent(Window &parent) {
|
|
if(hwnd) DestroyWindow(hwnd);
|
|
hwnd = CreateWindow(
|
|
TRACKBAR_CLASS, L"", WS_CHILD | WS_VISIBLE | WS_TABSTOP | TBS_NOTICKS | TBS_BOTH | TBS_HORZ,
|
|
0, 0, 0, 0, parent.p.hwnd, (HMENU)id, GetModuleHandle(0), 0
|
|
);
|
|
SetWindowLongPtr(hwnd, GWLP_USERDATA, (LONG_PTR)&horizontalSlider);
|
|
setLength(horizontalSlider.state.length);
|
|
setPosition(horizontalSlider.state.position);
|
|
}
|