home *** CD-ROM | disk | FTP | other *** search
- //--------------------------------------------------------
- // MHSL2001.H generated from MHSL200.VBX by
- // VbxGen 1.0 - Borland International
- //--------------------------------------------------------
-
- #ifdef __OWL_OWLDEFS_H
- #include <owl\vbxctl.h>
- #endif
-
- //--------------------------------------------------------
- // MhSlide (VB1)
- //--------------------------------------------------------
-
- // properties
- #define Prop_MhSlide_CtlName 0
- #define Prop_MhSlide_Index 1
- #define Prop_MhSlide_Parent 2
- #define Prop_MhSlide_BackColor 3
- #define Prop_MhSlide_ForeColor 4
- #define Prop_MhSlide_Left 5
- #define Prop_MhSlide_Top 6
- #define Prop_MhSlide_Width 7
- #define Prop_MhSlide_Height 8
- #define Prop_MhSlide_Enabled 9
- #define Prop_MhSlide_Visible 10
- #define Prop_MhSlide_MousePointer 11
- #define Prop_MhSlide_Value 12
- #define Prop_MhSlide_DragMode 13
- #define Prop_MhSlide_DragIcon 14
- #define Prop_MhSlide_TabIndex 15
- #define Prop_MhSlide_TabStop 16
- #define Prop_MhSlide_Tag 17
- #define Prop_MhSlide_Style 18
- #define Prop_MhSlide_Min 19
- #define Prop_MhSlide_Max 20
- #define Prop_MhSlide_PictureSlide 21
- #define Prop_MhSlide_PictureButton 22
- #define Prop_MhSlide_PictureMask 23
- #define Prop_MhSlide_LargeUp 24
- #define Prop_MhSlide_LargeDown 25
- #define Prop_MhSlide_SmallUp 26
- #define Prop_MhSlide_SmallDown 27
- #define Prop_MhSlide_hWnd 28
-
- // events
- #define Event_MhSlide_Change 0
- #define Event_MhSlide_DragDrop 1
- #define Event_MhSlide_DragOver 2
- #define Event_MhSlide_GotFocus 3
- #define Event_MhSlide_KeyDown 4
- #define Event_MhSlide_KeyPress 5
- #define Event_MhSlide_KeyUp 6
- #define Event_MhSlide_LostFocus 7
- #define Event_MhSlide_MouseDown 8
- #define Event_MhSlide_MouseMove 9
- #define Event_MhSlide_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:
- //
- // TVbxMhSlide* c = new TVbxMhSlide(..., sizeof(MhSlideData), MhSlideData);
- //
- // For C/C++ programs:
- //
- // HFORMFILE file = VBXCreateFormFile(sizeof(MhSlideData), MhSlideData);
- // HCTL c = VBXCreate(..., file);
- // VBXDeleteFormFile(file);
- //
- // Note that the VBXGEN_DATA or MhSlide_DATA symbol must be
- // defined in order to use the default form data.
- //
- extern BYTE MhSlideData[56L];
- #if defined(VBXGEN_DATA) || defined(MhSlide_DATA)
- BYTE MhSlideData[56L]={
- 0x12,0x00,0x01,0x00,0x00,0x03,0xff,0xff,
- 0xff,0x00,0x04,0x00,0x00,0x00,0x00,0x05,
- 0x09,0xff,0xff,0x0a,0xff,0xff,0x0b,0x00,
- 0x0c,0x00,0x00,0x0d,0x00,0x0f,0x00,0x00,
- 0x10,0x00,0x00,0x11,0x00,0x13,0x00,0x00,
- 0x14,0x00,0x00,0x18,0x00,0x00,0x19,0x00,
- 0x00,0x1a,0x00,0x00,0x1b,0x00,0x00,0xff,
-
- };
- #endif
-
- #ifdef __OWL_VBXCTL_H
-
- // OWL class
- class TVbxMhSlide : public TVbxControl {
- public:
-
- // constructors
- TVbxMhSlide(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, "MHSL200.VBX", "MhSlide",
- title, x, y, w, h, initLen, initData, module) {}
-
- TVbxMhSlide(TWindow* parent, int resourceId, TModule* module=0) :
- TVbxControl(parent, resourceId, module) {}
-
- #if 0
- // event handlers
- void EvChange(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,
- };
-
- enum { // values for property Style
- Style_0_Vertical,
- Style_1_Horizontal,
- };
-
-
- // 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 GetPropForeColor(COLORREF& v) {return GetProp(4,v);}
- BOOL SetPropForeColor(COLORREF v) {return SetProp(4,v);}
-
- BOOL GetPropLeft(long& v) {return GetProp(5,v);}
- BOOL SetPropLeft(long v) {return SetProp(5,v);}
-
- BOOL GetPropTop(long& v) {return GetProp(6,v);}
- BOOL SetPropTop(long v) {return SetProp(6,v);}
-
- BOOL GetPropWidth(long& v) {return GetProp(7,v);}
- BOOL SetPropWidth(long v) {return SetProp(7,v);}
-
- BOOL GetPropHeight(long& v) {return GetProp(8,v);}
- BOOL SetPropHeight(long v) {return SetProp(8,v);}
-
- BOOL GetPropEnabled(BOOL& v) {return GetProp(9,v);}
- BOOL SetPropEnabled(BOOL v) {return SetProp(9,v);}
-
- BOOL GetPropVisible(BOOL& v) {return GetProp(10,v);}
- BOOL SetPropVisible(BOOL v) {return SetProp(10,v);}
-
- BOOL GetPropMousePointer(ENUM& v) {return GetProp(11,v);}
- BOOL SetPropMousePointer(ENUM v) {return SetProp(11,v);}
-
- BOOL GetPropValue(int& v) {return GetProp(12,v);}
- BOOL SetPropValue(int v) {return SetProp(12,v);}
-
- BOOL GetPropDragMode(ENUM& v) {return GetProp(13,v);}
- BOOL SetPropDragMode(ENUM v) {return SetProp(13,v);}
-
- BOOL GetPropDragIcon(HPIC& v) {return GetProp(14,v);}
- BOOL SetPropDragIcon(HPIC v) {return SetProp(14,v);}
-
- BOOL GetPropTabIndex(int& v) {return GetProp(15,v);}
- BOOL SetPropTabIndex(int v) {return SetProp(15,v);}
-
- BOOL GetPropTabStop(BOOL& v) {return GetProp(16,v);}
- BOOL SetPropTabStop(BOOL v) {return SetProp(16,v);}
-
- BOOL GetPropTag(string& v) {return GetProp(17,v);}
- BOOL SetPropTag(string& v) {return SetProp(17,v);}
-
- BOOL GetPropStyle(ENUM& v) {return GetProp(18,v);}
- BOOL SetPropStyle(ENUM v) {return SetProp(18,v);}
-
- BOOL GetPropMin(int& v) {return GetProp(19,v);}
- BOOL SetPropMin(int v) {return SetProp(19,v);}
-
- BOOL GetPropMax(int& v) {return GetProp(20,v);}
- BOOL SetPropMax(int v) {return SetProp(20,v);}
-
- BOOL GetPropPictureSlide(HPIC& v) {return GetProp(21,v);}
- BOOL SetPropPictureSlide(HPIC v) {return SetProp(21,v);}
-
- BOOL GetPropPictureButton(HPIC& v) {return GetProp(22,v);}
- BOOL SetPropPictureButton(HPIC v) {return SetProp(22,v);}
-
- BOOL GetPropPictureMask(HPIC& v) {return GetProp(23,v);}
- BOOL SetPropPictureMask(HPIC v) {return SetProp(23,v);}
-
- BOOL GetPropLargeUp(int& v) {return GetProp(24,v);}
- BOOL SetPropLargeUp(int v) {return SetProp(24,v);}
-
- BOOL GetPropLargeDown(int& v) {return GetProp(25,v);}
- BOOL SetPropLargeDown(int v) {return SetProp(25,v);}
-
- BOOL GetPropSmallUp(int& v) {return GetProp(26,v);}
- BOOL SetPropSmallUp(int v) {return SetProp(26,v);}
-
- BOOL GetPropSmallDown(int& v) {return GetProp(27,v);}
- BOOL SetPropSmallDown(int 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(TVbxMhSlide);
- #endif
- };
-
- #if 0
- // OWL response table
- DEFINE_RESPONSE_TABLE1(TVbxMhSlide, TVbxControl)
- EV_VBXEVENTINDEX( IDC_MhSlide, Event_MhSlide_Change, EvChange ),
- EV_VBXEVENTINDEX( IDC_MhSlide, Event_MhSlide_DragDrop, EvDragDrop ),
- EV_VBXEVENTINDEX( IDC_MhSlide, Event_MhSlide_DragOver, EvDragOver ),
- EV_VBXEVENTINDEX( IDC_MhSlide, Event_MhSlide_GotFocus, EvGotFocus ),
- EV_VBXEVENTINDEX( IDC_MhSlide, Event_MhSlide_KeyDown, EvKeyDown ),
- EV_VBXEVENTINDEX( IDC_MhSlide, Event_MhSlide_KeyPress, EvKeyPress ),
- EV_VBXEVENTINDEX( IDC_MhSlide, Event_MhSlide_KeyUp, EvKeyUp ),
- EV_VBXEVENTINDEX( IDC_MhSlide, Event_MhSlide_LostFocus, EvLostFocus ),
- EV_VBXEVENTINDEX( IDC_MhSlide, Event_MhSlide_MouseDown, EvMouseDown ),
- EV_VBXEVENTINDEX( IDC_MhSlide, Event_MhSlide_MouseMove, EvMouseMove ),
- EV_VBXEVENTINDEX( IDC_MhSlide, Event_MhSlide_MouseUp, EvMouseUp ),
- END_RESPONSE_TABLE;
- #endif
-
- #endif
-
-