summaryrefslogtreecommitdiffstats
path: root/Examples/WhisperDesktop/Utils/TranslateCheckbox.h
blob: 2b1db123730073c11508892a8a20ae6b94de21d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#pragma once
#include "../AppState.h"

class TranslateCheckbox
{
	HWND m_hWnd = nullptr;
public:
	operator HWND() const
	{
		return m_hWnd;
	}

	void initialize( HWND owner, int idc, AppState& state );

	bool checked();

	void saveSelection( AppState& state );
};