Changeset 72
- Timestamp:
- Nov 2, 2014, 4:59:47 AM (10 years ago)
- Location:
- projects/vrobjex
- Files:
-
- 6 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified projects/vrobjex/C/SOMINIT.C ¶
r48 r72 14 14 #include "icobtn.h" 15 15 #include "tooltip.h" 16 #include "progress.h" 16 17 /* :sominit:hfiles: */ 17 18 … … 23 24 PSZ VRIconButtonPicturePath = "#102:" DLLNAME ; 24 25 PSZ VRToolTipPicturePath = "#104:" DLLNAME ; 25 /* :sominit:icons:105: */ 26 PSZ VRProgressPicturePath = "#105:" DLLNAME ; 27 /* :sominit:icons:106: */ 26 28 27 29 #ifndef MAKELIB … … 88 90 VRIconButtonNewClass( majorVersion, minorVersion ); 89 91 VRToolTipNewClass( majorVersion, minorVersion ); 92 VRProgressNewClass( majorVersion, minorVersion ); 90 93 /* :sominit:init: */ 91 94 } … … 104 107 UnClass( VRIconButton ); 105 108 UnClass( VRToolTip ); 109 UnClass( VRProgress ); 106 110 /* :sominit:uninit: */ 107 111 } -
TabularUnified projects/vrobjex/C/props.c ¶
r48 r72 9 9 #include "icobtn.prp" 10 10 #include "tooltip.prp" 11 #include "progress.prp" -
TabularUnified projects/vrobjex/RC/dialogs.dlg ¶
r51 r72 115 115 LTEXT "Directory:", IDD_DIRTEXT, 3, 143, 64, 8, DT_VCENTER 116 116 PUSHBUTTON "~Home", IDD_HOMEDIR, 96, 142, 30, 11, WS_GROUP | NOT WS_VISIBLE 117 PUSHBUTTON "~New", IDD_ HOMEDIR,127, 142, 30, 11, NOT WS_TABSTOP | NOT WS_VISIBLE117 PUSHBUTTON "~New", IDD_NEWDIR, 127, 142, 30, 11, NOT WS_TABSTOP | NOT WS_VISIBLE 118 118 ENTRYFIELD "", IDD_FULLNAME,4, 132, 152, 8, ES_MARGIN | ES_READONLY 119 119 PRESPARAMS PP_BACKGROUNDCOLORINDEX, SYSCLR_DIALOGBACKGROUND -
TabularUnified projects/vrobjex/RC/vrobjex.rc ¶
r48 r72 5 5 ICON 100 tabdlg.ICO 6 6 ICON 102 icobtn.ICO 7 ICON 104 tooltip.ICO 8 ICON 105 progress.ICO 7 9 8 10 RCINCLUDE dialogs.dlg 9 11 10 12 11 ICON 104 tooltip.ICO 13 -
TabularUnified projects/vrobjex/SOM/SC/vxrexx.mak ¶
r48 r72 26 26 27 27 !ifdef USE_WMAKE 28 hfiles = tabdlg.h tooltip.h icobtn.h28 hfiles = tabdlg.h progress.h tooltip.h icobtn.h 29 29 !else 30 hfiles = tabdlg.h tooltip.h icobtn.h30 hfiles = tabdlg.h progress.h tooltip.h icobtn.h 31 31 !endif 32 32 … … 40 40 41 41 tabdlg.h: tabdlg.csc 42 43 progress.h: progress.csc 42 44 43 45 tooltip.h: tooltip.csc -
TabularUnified projects/vrobjex/SOM/VXREXX.CLS ¶
r55 r72 29 29 load slider.cls 30 30 load value.cls 31 load progress.cls 31 32 load client.cls 32 33 load timer.cls -
TabularUnified projects/vrobjex/VROBJEX.LNK ¶
r48 r72 1 1 ICOBTN.obj + 2 2 INITTERM.obj + 3 PROGRESS.obj + 3 4 props.obj + 4 5 SOMINIT.obj + -
TabularUnified projects/vrobjex/VROBJEX.def ¶
r55 r72 17 17 VRXPutClipboardText 18 18 VRXVersion 19 DESCRIPTION '@#Alex Taylor:1.20#@##1## 1 Jun 2013 15:56:27REINFORCE::::::@@VX-REXX Extras API Library'19 DESCRIPTION '@#Alex Taylor:1.20#@##1## 2 Nov 2014 12:50:09 REINFORCE::::::@@VX-REXX Extras API Library' -
TabularUnified projects/vrobjex/makefile ¶
r48 r72 12 12 $(o)\ICOBTN.obj \ 13 13 $(o)\INITTERM.obj \ 14 $(o)\PROGRESS.obj \ 14 15 $(o)\props.obj \ 15 16 $(o)\SOMINIT.obj \ … … 30 31 cd .. 31 32 32 $(o)\props.obj : c\props.c som\sc\icobtn.prp som\sc\ tabdlg.prp som\sc\tooltip.prp33 $(o)\props.obj : c\props.c som\sc\icobtn.prp som\sc\progress.prp som\sc\tabdlg.prp som\sc\tooltip.prp 33 34 34 $(o)\$(dllname).res : rc\$(dllname).rc rc\icobtn.ico rc\ tabdlg.ico rc\tooltip.ICO rc\vrobjex.ico35 $(o)\$(dllname).res : rc\$(dllname).rc rc\icobtn.ico rc\progress.ico rc\tabdlg.ico rc\tooltip.ICO rc\vrobjex.ico 35 36 -
TabularUnified projects/vrobjex/readme.source ¶
r54 r72 165 165 data' category through the Class Browser. Any function can access these 166 166 variables by simply prefixing the variable name with an underscore (_), as 167 long as the som Selfobject has been initialized (by calling the function167 long as the somThis object has been initialized (by calling the function 168 168 <classname>GetData). 169 169 … … 232 232 LICENSE 233 233 234 VX-REXX Extras Library, (C) 2010, 201 3Alex Taylor234 VX-REXX Extras Library, (C) 2010, 2014 Alex Taylor 235 235 236 236 Redistribution and use in source and binary forms, with or without
Note:
See TracChangeset
for help on using the changeset viewer.