Initial community commit

This commit is contained in:
Jef 2024-09-24 14:54:57 +02:00
parent 537bcbc862
commit fc06254474
16440 changed files with 4239995 additions and 2 deletions

35
Src/nu/Slider.h Normal file
View 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;
};