summaryrefslogtreecommitdiff
path: root/plugins/Clist_modern/src/modern_statusbar.h
blob: f9778418b186a1294244e3ecf90aeb9ed7a01251 (plain)
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
40
41
42
43
#pragma once

#ifndef modern_statusbar_h__
#define modern_statusbar_h__

#include "m_xpTheme.h"

int ModernDrawStatusBar(HWND hwnd, HDC hDC);
int ModernDrawStatusBarWorker(HWND hWnd, HDC hDC);

typedef struct tagSTATUSBARDATA
{
	BOOL  sameWidth;
	RECT  rectBorders;
	BYTE  extraspace;
	BYTE  Align;
	BYTE  VAlign;
	bool  bShowProtoIcon;
	bool  bShowProtoName;
	bool  bShowStatusName;
	bool  bConnectingIcon;
	HFONT BarFont;
	DWORD fontColor;
	BYTE  TextEffectID;
	DWORD TextEffectColor1;
	DWORD TextEffectColor2;
	BYTE  xStatusMode;     // 0-only main, 1-xStatus, 2-main as overlay
	BYTE  nProtosPerLine;
	bool  bShowProtoEmails;

	HBITMAP hBmpBackground;
	COLORREF bkColour;
	DWORD backgroundBmpUse;
	BOOL  bkUseWinColors;

	XPTHANDLE hTheme;

	BOOL perProtoConfig;
	BYTE SBarRightClk;

} STATUSBARDATA;

#endif // modern_statusbar_h__