open-insight/SYSPROG/STPROCINS/TOOLBAR_EQUATES.txt
2024-03-25 15:17:34 -07:00

78 lines
3.0 KiB
Plaintext

compile insert toolBar_Equates
/*
** Copyright (C) 1992-2018 Revelation Software Inc. All Rights Reserved **
Author : MTR
Date : February 2018
Purpose : Constants for use with TOOLBAR entities
Comments
========
Amended Date Reason
======= ==== ======
*/
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#ifndef _TOOLBAR_EQUATES_
#define _TOOLBAR_EQUATES_
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
$insert ps_Window_equates
$insert colors
$insert logical
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// SYSREPOSTOOLBARS table layout
equ TLBR_APPID$ to 0 ; // Key 1
equ TLBR_CLASSID$ to 0 ; // Key 2
equ TLBR_ENTITYID$ to 0 ; // Key 3
// Buttons AMV
equ TLBR_BTN_ID$ to 1
equ TLBR_BTN_TEXT$ to 2
equ TLBR_BTN_IMAGELIST_INDEX$ to 3
equ TLBR_BTN_IMAGE$ to 4
equ TLBR_BTN_AUTOSIZE$ to 5
equ TLBR_BTN_VISIBLE$ to 6
equ TLBR_BTN_ENABLED$ to 7
equ TLBR_BTN_TOOLTIP_TEXT$ to 8
equ TLBR_BTN_BUTTONTYPE$ to 9
equ TLBR_BUTTONPADDING$ to 10
equ TLBR_BUTTONSIZE$ to 11
equ TLBR_BUTTONSPACING$ to 12
equ TLBR_LISTSTYLE$ to 13
equ TLBR_WRAPPABLE$ to 14
equ TLBR_SHOWDROPDOWNARROWS$ to 15
equ TLBR_IMAGELIST$ to 16
equ TLBR_BTNTYPE_PUSHBUTTON$ to 0
equ TLBR_BTNTYPE_CHECKBUTTON$ to 1
equ TLBR_BTNTYPE_DROPDOWN$ to 2
equ TLBR_BTNTYPE_SPLITBUTTON$ to 3
equ TLBR_BTNTYPE_GROUPED$ to 4
equ TLBR_BTNTYPE_SEPARATOR$ to 5
// Property Panel Names
equ PPL_BTNPADDING$ to "Button Padding"
equ PPL_BTNSIZE$ to "Button Size"
equ PPL_BTNSPACING$ to "Button Spacing"
equ PPL_WRAPPABLE$ to "Wrappable"
equ PPL_LISTSTYLE$ to "Show Text and Image"
equ PPL_SHOWARROWS$ to "Show DropDown Arrows"
equ PPL_IMAGELIST$ to "Imagelist"
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
#endif
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////