aboutsummaryrefslogtreecommitdiff
path: root/Src/omBrowser/toolbarStatic.h
blob: e9d86a7a104b5dbf251b42c54f79c6bf468d9dc1 (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
36
37
38
39
#ifndef NULLSOFT_WINAMP_OMBROWSER_TOOLBAR_STATIC_HEADER
#define NULLSOFT_WINAMP_OMBROWSER_TOOLBAR_STATIC_HEADER

#if defined(_MSC_VER) && (_MSC_VER >= 1020)
#pragma once
#endif

#include "./toolbarItem.h"

class ToolbarStatic : public ToolbarItem
{
public:
	typedef enum
	{
		styleLabel		= 0x00000000,
		styleSpacer		= 0x00010000,
		styleSeparator	= 0x00020000,
		
	} staticStyles;

protected:
	ToolbarStatic(LPCSTR pszName, UINT nStyle, INT nIcon, LPCWSTR pszText, LPCWSTR pszDescription);
	~ToolbarStatic() {}

public:
	static ToolbarItem* CALLBACK CreateInstance(ToolbarItem::Template *itemTemplate);

public:
	BOOL AdjustRect(HWND hToolbar, RECT *proposedRect);
	BOOL Paint(HWND hToolbar, HDC hdc, const RECT *paintRect, UINT state);
	INT GetTip(LPTSTR pszBuffer, INT cchBufferMax);
	void UpdateSkin(HWND hToolbar);
	BOOL FillMenuInfo(HWND hToolbar, MENUITEMINFO *pmii, LPWSTR pszBuffer, INT cchBufferMax);

protected:
	INT spaceWidth;
};

#endif //NULLSOFT_WINAMP_OMBROWSER_TOOLBAR_STATIC_HEADER