blob: 65d0ca2e5733b9bb7789ea8b7befbe87aee41d57 (
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
44
|
#pragma once
#ifndef modern_statusbar_h__
#define modern_statusbar_h__
#include "modern_commonprototypes.h"
#include "../m_api/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;
BYTE showProtoIcon;
BYTE showProtoName;
BYTE showStatusName;
HFONT BarFont;
DWORD fontColor;
BYTE connectingIcon;
BYTE TextEffectID;
DWORD TextEffectColor1;
DWORD TextEffectColor2;
BYTE xStatusMode; // 0-only main, 1-xStatus, 2-main as overlay
BYTE nProtosPerLine;
BYTE showProtoEmails;
HBITMAP hBmpBackground;
COLORREF bkColour;
DWORD backgroundBmpUse;
BOOL bkUseWinColors;
XPTHANDLE hTheme;
BOOL perProtoConfig;
BYTE SBarRightClk;
} STATUSBARDATA;
#endif // modern_statusbar_h__
|