TBpro-Constants |
Constants used with the TBpro library. You can use all constants directly in PureBasic after installing the TBpro.RES file in PureBasic\Residents\, so its not needed to include the constants in every source-code. The constants are listed for the sake of completeness only. You should use the constants, not the values. If a change to the constants is made later, its not required to change your source. Example: |
; ; SetTBimage types ; #TBpro_NORMAL = $400+48 #TBpro_HOT = $400+52 #TBpro_DISABLED = $400+54 ; ; Toolbar style flags ; #TBpro_FLAT = $800 #TBpro_BOTTOM = $3 #TBpro_BORDER = $800000 #TBpro_TRANSPARENCY = $8000 #TBpro_TRANSPARENT = $8000 #TBpro_LISTVIEW = $1000 ; ; Button styles ; #TBpro_BUTTON = $0 #TBpro_PushBUTTON = $2 #TBpro_CheckBUTTON = $2 | $4 #TBpro_DropdownBUTTON = $8 #TBpro_WholeDropdownBUTTON = $80 ; ; System icons ; #TBpro_SYSTEM_ICON = %10000000000000000000000000000000 #TBpro_CUT = 1 | #TBpro_SYSTEM_ICON #TBpro_COPY = 2 | #TBpro_SYSTEM_ICON #TBpro_PASTE = 3 | #TBpro_SYSTEM_ICON #TBpro_UNDO = 4 | #TBpro_SYSTEM_ICON #TBpro_REDO = 5 | #TBpro_SYSTEM_ICON #TBpro_DELETE = 6 | #TBpro_SYSTEM_ICON #TBpro_FILENEW = 7 | #TBpro_SYSTEM_ICON #TBpro_FILEOPEN = 8 | #TBpro_SYSTEM_ICON #TBpro_FILESAVE = 9 | #TBpro_SYSTEM_ICON #TBpro_PRINTPREVIEW = 10 | #TBpro_SYSTEM_ICON #TBpro_PROPERTIES = 11 | #TBpro_SYSTEM_ICON #TBpro_HELP = 12 | #TBpro_SYSTEM_ICON #TBpro_FIND = 13 | #TBpro_SYSTEM_ICON #TBpro_REPLACE = 14 | #TBpro_SYSTEM_ICON #TBpro_PRINT = 15 | #TBpro_SYSTEM_ICON #TBpro_BACK = 16 | #TBpro_SYSTEM_ICON #TBpro_FORWARD = 17 | #TBpro_SYSTEM_ICON #TBpro_FAVORITES = 18 | #TBpro_SYSTEM_ICON #TBpro_ADDTOFAVORITES = 19 | #TBpro_SYSTEM_ICON #TBpro_VIEWTREE = 20 | #TBpro_SYSTEM_ICON #TBpro_LARGEICONS = 21 | #TBpro_SYSTEM_ICON #TBpro_SMALLICONS = 22 | #TBpro_SYSTEM_ICON #TBpro_LISTICONS = 23 | #TBpro_SYSTEM_ICON #TBpro_DETAILICONS = 24 | #TBpro_SYSTEM_ICON #TBpro_SORTNAME = 25 | #TBpro_SYSTEM_ICON #TBpro_SORTSIZE = 26 | #TBpro_SYSTEM_ICON #TBpro_SORTDATE = 27 | #TBpro_SYSTEM_ICON #TBpro_SORTTYPE = 28 | #TBpro_SYSTEM_ICON #TBpro_PARENTFOLDER = 29 | #TBpro_SYSTEM_ICON #TBpro_NETCONNECT = 30 | #TBpro_SYSTEM_ICON #TBpro_NETDISCONNECT = 31 | #TBpro_SYSTEM_ICON #TBpro_NEWFOLDER = 32 | #TBpro_SYSTEM_ICON |
|