Lhaz
読み取り中…
検索中…
一致する文字列を見つけられません
lhazsts.h
[詳解]
1/*==========================================================================*/
2/* Lhaz Status Bar chitora48@gmail.com */
3/*==========================================================================*/
4#pragma once
5
6#include <windows.h>
7#include <commctrl.h>
8
9class MYSTR;
10class LHAZPRG;
11
12class LHAZSTS {
13
14public:
15 LHAZSTS(HINSTANCE hins, HWND parent, DWORD prgstyle);
16 //
17 HWND GetHwnd(void) { return Hwnd; };
18 void MoveWindow(int nWidth, int nHeight);
19 void SetText(const MYSTR& s);
20 void SetText(int pos, const MYSTR& s);
21 void SetParts(void);
22 LHAZPRG* GetPrgrs(void) { return Prgrs; };
23
24private:
25 enum { PARTSMAX = 3 };
26 //
28 HINSTANCE Instance;
29 HWND Hwnd;
30 HWND Parent;
32
33};
Definition lhazprg.h:10
Definition lhazsts.h:12
void MoveWindow(int nWidth, int nHeight)
Definition lhazsts.cpp:29
LHAZPRG * GetPrgrs(void)
Definition lhazsts.h:22
HWND Hwnd
Definition lhazsts.h:29
HWND GetHwnd(void)
Definition lhazsts.h:17
@ PARTSMAX
Definition lhazsts.h:25
void SetParts(void)
Definition lhazsts.cpp:68
void SetText(const MYSTR &s)
Definition lhazsts.cpp:52
LHAZPRG * Prgrs
Definition lhazsts.h:31
HINSTANCE Instance
Definition lhazsts.h:28
HWND Parent
Definition lhazsts.h:30
int Widths[PARTSMAX]
Definition lhazsts.h:27