mirror of
https://github.com/jummy0/sb2-decomp
synced 2025-03-15 04:24:48 +01:00
71 lines
1.7 KiB
C++
71 lines
1.7 KiB
C++
#include <minwindef.h>
|
||
#include <windef.h>
|
||
#include "decor.h"
|
||
#include "sound.h"
|
||
#include "pixmap.h"
|
||
|
||
#pragma once
|
||
|
||
using namespace std;
|
||
|
||
class CButton
|
||
{
|
||
public:
|
||
CButton();
|
||
~CButton();
|
||
|
||
BOOL Create(HWND hWnd, CPixmap *pPixmap, CSound *pSound,
|
||
POINT pos, int type, int* pMenu, int nbMenu, int* pToolTips, int nbToolTips, BOOL bMinimizeRedraw, int region, UINT message);
|
||
void SetSomethingMenu(int* icon, int somethingMenu);
|
||
void MenuToolTips(int* menu, int menuTooltips);
|
||
void Draw();
|
||
void Redraw();
|
||
|
||
int GetState();
|
||
void SetState(int state);
|
||
|
||
int GetMenu();
|
||
void SetMenu(int menu);
|
||
|
||
BOOL GetEnable();
|
||
void SetEnable(BOOL bEnable);
|
||
|
||
void SetSomething(BOOL bSomething);
|
||
|
||
BOOL GetHide();
|
||
void SetHide(BOOL bHide);
|
||
|
||
BOOL TreatEvent(UINT message, WPARAM wParam, LPARAM lParam);
|
||
BOOL MouseOnButton(POINT pos);
|
||
int GetToolTips(POINT pos);
|
||
|
||
|
||
protected:
|
||
BOOL Detect(POINT pos);
|
||
BOOL MouseDown(POINT pos);
|
||
BOOL MouseMove(POINT pos);
|
||
BOOL MouseUp(POINT pos);
|
||
|
||
protected:
|
||
HWND m_hWnd;
|
||
CPixmap* m_pPixmap;
|
||
CDecor* m_pDecor;
|
||
CSound* m_pSound;
|
||
int m_type; // type de bouton
|
||
BOOL m_bEnable; // TRUE si bouton actif
|
||
BOOL m_bHide; // TRUE si bouton cach<63>
|
||
UINT m_message; // message envoy<6F> si bouton actionn<6E>
|
||
POINT m_pos; // coin sup/gauche
|
||
POINT m_dim; // dimensions
|
||
int m_state;
|
||
int m_mouseState;
|
||
int m_iconMenu[20]; // ic<69>nes du sous-menu
|
||
int m_toolTips[20]; // info-bulles
|
||
int m_nbMenu; // nb de case du sous-menu
|
||
int m_nbToolTips; // nb d'info-bulles
|
||
int m_selMenu;
|
||
int m_bSomething; // sous-menu s<>lectionn<6E>
|
||
BOOL m_bMouseDown; // TRUE -> bouton souris press<73>
|
||
BOOL m_bMinimizeRedraw;
|
||
BOOL m_bRedraw;
|
||
}; |