home *** CD-ROM | disk | FTP | other *** search
- //--------------------------------------------------------
- // MHDC2001.H generated from MHDC200.VBX by
- // VbxGen 1.0 - Borland International
- //--------------------------------------------------------
-
- #ifdef __OWL_OWLDEFS_H
- #include <owl\vbxctl.h>
- #endif
-
- //--------------------------------------------------------
- // MhDice (VB1)
- //--------------------------------------------------------
-
- // properties
- #define Prop_MhDice_CtlName 0
- #define Prop_MhDice_Index 1
- #define Prop_MhDice_Parent 2
- #define Prop_MhDice_BackColor 3
- #define Prop_MhDice_Left 4
- #define Prop_MhDice_Top 5
- #define Prop_MhDice_Width 6
- #define Prop_MhDice_Height 7
- #define Prop_MhDice_Enabled 8
- #define Prop_MhDice_Visible 9
- #define Prop_MhDice_MousePointer 10
- #define Prop_MhDice_DragMode 11
- #define Prop_MhDice_DragIcon 12
- #define Prop_MhDice_TabIndex 13
- #define Prop_MhDice_TabStop 14
- #define Prop_MhDice_Tag 15
- #define Prop_MhDice_Value 16
- #define Prop_MhDice_Picture1 17
- #define Prop_MhDice_Picture2 18
- #define Prop_MhDice_Picture3 19
- #define Prop_MhDice_Picture4 20
- #define Prop_MhDice_Picture5 21
- #define Prop_MhDice_Picture6 22
- #define Prop_MhDice_AutoSize 23
- #define Prop_MhDice_TopSideColor 24
- #define Prop_MhDice_RightSideColor 25
- #define Prop_MhDice_LeftSideColor 26
- #define Prop_MhDice_FillColor 27
- #define Prop_MhDice_hWnd 28
-
- // events
- #define Event_MhDice_Click 0
- #define Event_MhDice_DragDrop 1
- #define Event_MhDice_DragOver 2
- #define Event_MhDice_GotFocus 3
- #define Event_MhDice_KeyDown 4
- #define Event_MhDice_KeyPress 5
- #define Event_MhDice_KeyUp 6
- #define Event_MhDice_LostFocus 7
- #define Event_MhDice_MouseDown 8
- #define Event_MhDice_MouseMove 9
- #define Event_MhDice_MouseUp 10
-
- // default form data
- //
- // Some VBX controls do not operate correctly when created without
- // a form file. This occurs when a program creates a control
- // dynamically rather than as part of a dialog resource. If this
- // control exhibits problems in this mode, try creating it with the
- // following form data:
- //
- // For OWL programs:
- //
- // TVbxMhDice* c = new TVbxMhDice(..., sizeof(MhDiceData), MhDiceData);
- //
- // For C/C++ programs:
- //
- // HFORMFILE file = VBXCreateFormFile(sizeof(MhDiceData), MhDiceData);
- // HCTL c = VBXCreate(..., file);
- // VBXDeleteFormFile(file);
- //
- // Note that the VBXGEN_DATA or MhDice_DATA symbol must be
- // defined in order to use the default form data.
- //
- extern BYTE MhDiceData[54L];
- #if defined(VBXGEN_DATA) || defined(MhDice_DATA)
- BYTE MhDiceData[54L]={
- 0x01,0x00,0x00,0x03,0xff,0xff,0xff,0x00,
- 0x04,0x08,0xff,0xff,0x09,0xff,0xff,0x0a,
- 0x00,0x0b,0x00,0x0d,0x00,0x00,0x0e,0x00,
- 0x00,0x0f,0x00,0x10,0x01,0x00,0x17,0xff,
- 0xff,0x18,0xff,0xff,0xff,0x00,0x19,0xff,
- 0xff,0xff,0x00,0x1a,0xc0,0xc0,0xc0,0x00,
- 0x1b,0xff,0xff,0xff,0x00,0xff,
- };
- #endif
-
- #ifdef __OWL_VBXCTL_H
-
- // OWL class
- class TVbxMhDice : public TVbxControl {
- public:
-
- // constructors
- TVbxMhDice(TWindow* parent, int id, LPCSTR title,
- int x, int y, int w, int h,
- long initLen=0, void far* initData=0, TModule* module=0) :
- TVbxControl(parent, id, "MHDC200.VBX", "MhDice",
- title, x, y, w, h, initLen, initData, module) {}
-
- TVbxMhDice(TWindow* parent, int resourceId, TModule* module=0) :
- TVbxControl(parent, resourceId, module) {}
-
- #if 0
- // event handlers
- void EvClick(VBXEVENT FAR*)
- {
- // no arguments
- }
-
- void EvDragDrop(VBXEVENT FAR*)
- {
- // Source As Control,X As Integer,Y As Integer
- }
-
- void EvDragOver(VBXEVENT FAR*)
- {
- // Source As Control,X As Integer,Y As Integer,State As Integer
- }
-
- void EvGotFocus(VBXEVENT FAR*)
- {
- // no arguments
- }
-
- void EvKeyDown(VBXEVENT FAR*)
- {
- // KeyCode As Integer,Shift As Integer
- }
-
- void EvKeyPress(VBXEVENT FAR*)
- {
- // KeyAscii As Integer
- }
-
- void EvKeyUp(VBXEVENT FAR*)
- {
- // KeyCode As Integer,Shift As Integer
- }
-
- void EvLostFocus(VBXEVENT FAR*)
- {
- // no arguments
- }
-
- void EvMouseDown(VBXEVENT FAR*)
- {
- // Button As Integer,Shift As Integer,X As Integer,Y As Integer
- }
-
- void EvMouseMove(VBXEVENT FAR*)
- {
- // Button As Integer,Shift As Integer,X As Integer,Y As Integer
- }
-
- void EvMouseUp(VBXEVENT FAR*)
- {
- // Button As Integer,Shift As Integer,X As Integer,Y As Integer
- }
-
- #endif
-
- // enumerations
- enum { // values for property MousePointer
- MousePointer_0_Default,
- MousePointer_1_Arrow,
- MousePointer_2_Cross,
- MousePointer_3_IBeam,
- MousePointer_4_Icon,
- MousePointer_5_Size,
- MousePointer_6_Size_NE_SW,
- MousePointer_7_Size_NS,
- MousePointer_8_Size_NW_SE,
- MousePointer_9_Size_WE,
- MousePointer_10_Up_Arrow,
- MousePointer_11_Hourglass,
- MousePointer_12_No_Drop,
- };
-
- enum { // values for property DragMode
- DragMode_0_Manual,
- DragMode_1_Automatic,
- };
-
-
- // properties
- BOOL GetPropCtlName(string& v) {return GetProp(0,v);}
- BOOL SetPropCtlName(string& v) {return SetProp(0,v);}
-
- BOOL GetPropIndex(int& v) {return GetProp(1,v);}
- BOOL SetPropIndex(int v) {return SetProp(1,v);}
-
- BOOL GetPropParent(int& v) {return GetProp(2,v);}
- BOOL SetPropParent(int v) {return SetProp(2,v);}
-
- BOOL GetPropBackColor(COLORREF& v) {return GetProp(3,v);}
- BOOL SetPropBackColor(COLORREF v) {return SetProp(3,v);}
-
- BOOL GetPropLeft(long& v) {return GetProp(4,v);}
- BOOL SetPropLeft(long v) {return SetProp(4,v);}
-
- BOOL GetPropTop(long& v) {return GetProp(5,v);}
- BOOL SetPropTop(long v) {return SetProp(5,v);}
-
- BOOL GetPropWidth(long& v) {return GetProp(6,v);}
- BOOL SetPropWidth(long v) {return SetProp(6,v);}
-
- BOOL GetPropHeight(long& v) {return GetProp(7,v);}
- BOOL SetPropHeight(long v) {return SetProp(7,v);}
-
- BOOL GetPropEnabled(BOOL& v) {return GetProp(8,v);}
- BOOL SetPropEnabled(BOOL v) {return SetProp(8,v);}
-
- BOOL GetPropVisible(BOOL& v) {return GetProp(9,v);}
- BOOL SetPropVisible(BOOL v) {return SetProp(9,v);}
-
- BOOL GetPropMousePointer(ENUM& v) {return GetProp(10,v);}
- BOOL SetPropMousePointer(ENUM v) {return SetProp(10,v);}
-
- BOOL GetPropDragMode(ENUM& v) {return GetProp(11,v);}
- BOOL SetPropDragMode(ENUM v) {return SetProp(11,v);}
-
- BOOL GetPropDragIcon(HPIC& v) {return GetProp(12,v);}
- BOOL SetPropDragIcon(HPIC v) {return SetProp(12,v);}
-
- BOOL GetPropTabIndex(int& v) {return GetProp(13,v);}
- BOOL SetPropTabIndex(int v) {return SetProp(13,v);}
-
- BOOL GetPropTabStop(BOOL& v) {return GetProp(14,v);}
- BOOL SetPropTabStop(BOOL v) {return SetProp(14,v);}
-
- BOOL GetPropTag(string& v) {return GetProp(15,v);}
- BOOL SetPropTag(string& v) {return SetProp(15,v);}
-
- BOOL GetPropValue(int& v) {return GetProp(16,v);}
- BOOL SetPropValue(int v) {return SetProp(16,v);}
-
- BOOL GetPropPicture1(HPIC& v) {return GetProp(17,v);}
- BOOL SetPropPicture1(HPIC v) {return SetProp(17,v);}
-
- BOOL GetPropPicture2(HPIC& v) {return GetProp(18,v);}
- BOOL SetPropPicture2(HPIC v) {return SetProp(18,v);}
-
- BOOL GetPropPicture3(HPIC& v) {return GetProp(19,v);}
- BOOL SetPropPicture3(HPIC v) {return SetProp(19,v);}
-
- BOOL GetPropPicture4(HPIC& v) {return GetProp(20,v);}
- BOOL SetPropPicture4(HPIC v) {return SetProp(20,v);}
-
- BOOL GetPropPicture5(HPIC& v) {return GetProp(21,v);}
- BOOL SetPropPicture5(HPIC v) {return SetProp(21,v);}
-
- BOOL GetPropPicture6(HPIC& v) {return GetProp(22,v);}
- BOOL SetPropPicture6(HPIC v) {return SetProp(22,v);}
-
- BOOL GetPropAutoSize(BOOL& v) {return GetProp(23,v);}
- BOOL SetPropAutoSize(BOOL v) {return SetProp(23,v);}
-
- BOOL GetPropTopSideColor(COLORREF& v) {return GetProp(24,v);}
- BOOL SetPropTopSideColor(COLORREF v) {return SetProp(24,v);}
-
- BOOL GetPropRightSideColor(COLORREF& v) {return GetProp(25,v);}
- BOOL SetPropRightSideColor(COLORREF v) {return SetProp(25,v);}
-
- BOOL GetPropLeftSideColor(COLORREF& v) {return GetProp(26,v);}
- BOOL SetPropLeftSideColor(COLORREF v) {return SetProp(26,v);}
-
- BOOL GetPropFillColor(COLORREF& v) {return GetProp(27,v);}
- BOOL SetPropFillColor(COLORREF v) {return SetProp(27,v);}
-
- BOOL GetProphWnd(int& v) {return GetProp(28,v);}
- BOOL SetProphWnd(int v) {return SetProp(28,v);}
-
- #if 0
- DECLARE_RESPONSE_TABLE(TVbxMhDice);
- #endif
- };
-
- #if 0
- // OWL response table
- DEFINE_RESPONSE_TABLE1(TVbxMhDice, TVbxControl)
- EV_VBXEVENTINDEX( IDC_MhDice, Event_MhDice_Click, EvClick ),
- EV_VBXEVENTINDEX( IDC_MhDice, Event_MhDice_DragDrop, EvDragDrop ),
- EV_VBXEVENTINDEX( IDC_MhDice, Event_MhDice_DragOver, EvDragOver ),
- EV_VBXEVENTINDEX( IDC_MhDice, Event_MhDice_GotFocus, EvGotFocus ),
- EV_VBXEVENTINDEX( IDC_MhDice, Event_MhDice_KeyDown, EvKeyDown ),
- EV_VBXEVENTINDEX( IDC_MhDice, Event_MhDice_KeyPress, EvKeyPress ),
- EV_VBXEVENTINDEX( IDC_MhDice, Event_MhDice_KeyUp, EvKeyUp ),
- EV_VBXEVENTINDEX( IDC_MhDice, Event_MhDice_LostFocus, EvLostFocus ),
- EV_VBXEVENTINDEX( IDC_MhDice, Event_MhDice_MouseDown, EvMouseDown ),
- EV_VBXEVENTINDEX( IDC_MhDice, Event_MhDice_MouseMove, EvMouseMove ),
- EV_VBXEVENTINDEX( IDC_MhDice, Event_MhDice_MouseUp, EvMouseUp ),
- END_RESPONSE_TABLE;
- #endif
-
- #endif
-
-