winamp/Src/nu/Slider.h

35 lines
602 B
C
Raw Permalink Normal View History

2024-09-24 12:54:57 +00:00
#pragma once
#include <windows.h>
#include <commctrl.h>
class Slider
{
public:
Slider(HWND hwndDlg, int id)
{
slider_hwnd = GetDlgItem(hwndDlg, id);
}
void SetRange(WORD low, WORD high, BOOL redraw = TRUE)
{
SendMessage(slider_hwnd, TBM_SETRANGE, redraw, MAKELONG(low,high));
}
void SetPosition(LPARAM position, BOOL redraw = TRUE)
{
SendMessage(slider_hwnd, TBM_SETPOS, redraw, position);
}
void SetTickFrequency(LPARAM frequency)
{
SendMessage(slider_hwnd, TBM_SETTICFREQ, frequency, 0);
}
enum
{
NO_REDRAW = FALSE,
REDRAW = TRUE,
};
private:
HWND slider_hwnd;
};