mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-10-04 10:51:52 +02:00
byuu says: - added workaround to phoenix/Windows to prevent horizontal scrollbar always being visible on single-column ListBoxes - phoenix gains Window::geometry() - added code to save and restore window positions, as in bsnes/Qt. Positions are saved to bsnes-phoenix-geometry.cfg this time - resizing the main window will keep its position onscreen now There's one issue with GTK+, if you close a window and then call gtk_window_get_position(), it returns the previously set position rather than where you actually placed the window. My easy fix of calling gtk_window_get_position right before actually closing the window didn't work, so for now you'll have to live with it.
19 lines
643 B
C++
Executable File
19 lines
643 B
C++
Executable File
void ProgressBar::create(Window &parent, unsigned x, unsigned y, unsigned width, unsigned height) {
|
|
widget->window = CreateWindow(
|
|
PROGRESS_CLASS, L"",
|
|
WS_CHILD | WS_VISIBLE | PBS_SMOOTH,
|
|
x, y, width, height,
|
|
parent.widget->window, (HMENU)object->id, GetModuleHandle(0), 0
|
|
);
|
|
SendMessage(widget->window, PBM_SETRANGE, 0, MAKELPARAM(0, 100));
|
|
SendMessage(widget->window, PBM_SETSTEP, MAKEWPARAM(1, 0), 0);
|
|
}
|
|
|
|
unsigned ProgressBar::position() {
|
|
return SendMessage(widget->window, PBM_GETPOS, 0, 0);
|
|
}
|
|
|
|
void ProgressBar::setPosition(unsigned position) {
|
|
SendMessage(widget->window, PBM_SETPOS, (WPARAM)position, 0);
|
|
}
|