blob: c9a1a6e135f25594da9fe6bc1aa667f54f78bb5b (
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;
uint8_t extraspace;
uint8_t Align;
uint8_t VAlign;
bool bShowProtoIcon;
bool bShowProtoName;
bool bShowStatusName;
bool bConnectingIcon;
HFONT BarFont;
uint32_t fontColor;
uint8_t TextEffectID;
uint32_t TextEffectColor1;
uint32_t TextEffectColor2;
uint8_t xStatusMode; // 0-only main, 1-xStatus, 2-main as overlay
uint8_t nProtosPerLine;
bool bShowProtoEmails;
HBITMAP hBmpBackground;
COLORREF bkColour;
uint32_t backgroundBmpUse;
BOOL bkUseWinColors;
XPTHANDLE hTheme;
BOOL perProtoConfig;
uint8_t SBarRightClk;
} STATUSBARDATA;
#endif // modern_statusbar_h__
|