summaryrefslogtreecommitdiffstats
path: root/Src/nu/Slider.h
blob: 8db42a6ebe86d580a1c3d3f3884faa0f1519ca68 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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;
};