Initial community commit
This commit is contained in:
parent
537bcbc862
commit
fc06254474
16440 changed files with 4239995 additions and 2 deletions
44
Src/Plugins/General/gen_ml/banner.h
Normal file
44
Src/Plugins/General/gen_ml/banner.h
Normal file
|
@ -0,0 +1,44 @@
|
|||
#ifndef NULLSOFT_ML_BANNER_HEADER
|
||||
#define NULLSOFT_ML_BANNER_HEADER
|
||||
|
||||
#include <windows.h>
|
||||
|
||||
class MLBanner
|
||||
{
|
||||
public:
|
||||
MLBanner(void);
|
||||
~MLBanner(void);
|
||||
|
||||
public:
|
||||
|
||||
void SetColors(int color1, int color2);
|
||||
void SetImages(HINSTANCE hInstance, int bgndResId, int logoResId);
|
||||
void Init(HWND hwnd);
|
||||
void ReloadImages(void);
|
||||
|
||||
protected:
|
||||
void DestroyImages(void);
|
||||
void UpdateBunnerBmp(void);
|
||||
static BOOL CALLBACK newWndProc(HWND hwndDlg, UINT uMsg, WPARAM wParam,LPARAM lParam);
|
||||
|
||||
private:
|
||||
|
||||
HWND m_hwnd;
|
||||
HBITMAP bmpBck;
|
||||
HBITMAP bmpLogo;
|
||||
HBITMAP bmpLogoMask;
|
||||
HBITMAP bmpBanner;
|
||||
|
||||
WNDPROC oldWndProc;
|
||||
|
||||
HINSTANCE hInstance;
|
||||
int logoResId;
|
||||
int bgndResId;
|
||||
|
||||
int color1;
|
||||
int color2;
|
||||
|
||||
RECT rcBanner;
|
||||
};
|
||||
|
||||
#endif // NULLSOFT_ML_BANNER_HEADER
|
Loading…
Add table
Add a link
Reference in a new issue