Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
35
Src/nu/Slider.h
Normal file
35
Src/nu/Slider.h
Normal file
|
@ -0,0 +1,35 @@
|
|||
#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;
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue