86 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			86 lines
		
	
	
		
			3.9 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| compile insert repos_Toolbar_Equates
 | |
| /*
 | |
|    Copyright (c) 2000-2018 Revelation Software. All rights reserved.
 | |
|    
 | |
|    * This program is proprietary and is not to be used by or disclosed
 | |
|    * to others, nor is it to be copied without written permission from
 | |
|    * Revelation Technologies, Inc.
 | |
|    
 | |
|    Author    Mike Ruane
 | |
|    Date      07 Feb 2018
 | |
|    Purpose   Equates for the repos_ToolBar procedure
 | |
|    
 | |
|    
 | |
|    Comments
 | |
|    ========
 | |
|      
 | |
|    
 | |
|    Amended  Date       Reason
 | |
|    =======  ====       ======
 | |
| 
 | |
| */
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| #ifndef _REPOS_TOOLBAR_EQUATES_
 | |
| #define _REPOS_TOOLBAR_EQUATES_
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
|    $insert repository_Equates
 | |
|    $insert logical
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| 
 | |
|    equ TOOLBAR_STORAGEID$      to "OI"      ; * // SYSREPOSSTORAGE
 | |
|    equ TOOLBAR_FAMILYID$       to "UITOOLS" ; * // SYSREPOSTYPEFAMILIES
 | |
|    
 | |
|    equ TOOLBAR_REPOSTABLE$     to "SYSREPOSTOOLBARS"
 | |
|    equ TOOLBAR_REPOSVOL$       to "REVBOOT"
 | |
|    equ TOOLBAR_NEWTEXT$        to "Toolbar Definition"
 | |
|    equ TOOLBAR_REPOSDESC$      to "Toolbar Definitions"
 | |
|    equ TOOLBAR_REPOSDESCS$     to "Toolbar Definition records"
 | |
|    equ TOOLBAR_REPOSTYPE$      to "TOOLBAR"
 | |
|    equ TOOLBAR_REPOSCLASS$     to ""
 | |
|    equ TOOLBAR_METHODS$        to "ACCESS,              |
 | |
|                                    CHECKCOPYINIT,       |
 | |
|                                    CHECKIN,             |
 | |
|                                    CHECKIN_TRANS,       |
 | |
|                                    CHECKOUT,            |
 | |
|                                    CHECKOUT_TRANS,      |
 | |
|                                    CHECKWRAPUP,         |
 | |
|                                    COMPILE,             |
 | |
|                                    COPY,                |
 | |
|                                    DESIGN,              |
 | |
|                                    DESTROY,             |
 | |
|                                    NEW,                 |
 | |
|                                    UPDATE,              |
 | |
|                                    WRITE"                
 | |
|    
 | |
|    equ TOOLBAR_HOOKPROCID$     to "REPOS_TOOLBAR_HOOK"                                   
 | |
|    equ TOOLBAR_HOOKPROC$       to "$REPOS_TOOLBAR_HOOK"
 | |
|    equ TOOLBAR_HOOKPREFIX$     to "$REPOS." : TOOLBAR_REPOSTYPE$ : ".."
 | |
|    
 | |
|    equ TOOLBAR_SCMFORMAT$      to SCMFMT_JSON$
 | |
|    equ TOOLBAR_SCMINCLUDE$     to SCMINCLUDE_TYPE_INCLUDE$
 | |
|    equ TOOLBAR_STORAGETYPEOS$  to FALSE$
 | |
|    equ TOOLBAR_STORAGETYPELH$  to TRUE$
 | |
|    equ TOOLBAR_RDKEXTRACT$     to "OI" ; *   ; * // RDKEXTRACTREPOSBODY
 | |
|    equ TOOLBAR_KEYFORMAT$      to SYSREP_KEYFORMAT_ACE$
 | |
|    equ TOOLBAR_CLASSFLAG$      to FALSE$
 | |
|    
 | |
|    equ TOOLBAR_ICON$           to "SYSPROG*IMAGE*ICO*RTI_IDE_REPTYPE_TOOLBAR"
 | |
|    equ TOOLBAR_IMG$            to "SYSPROG*IMAGE*PNG*RTI_IDE_REPTYPE_TOOLBAR"
 | |
|    equ TOOLBAR_IMG_SMALL$      to "SYSPROG*IMAGE*PNG*RTI_IDE_REPTYPE_TOOLBAR_S"
 | |
|    equ TOOLBAR_IMG_MEDIUM$     to "SYSPROG*IMAGE*PNG*RTI_IDE_REPTYPE_TOOLBAR_M"
 | |
|    
 | |
|    equ TOOLBAR_DSNTOOL$        to "RTI_DSN_TOOLBAR"
 | |
|    equ TOOLBAR_DSNHELP$        to "SYSPROG*APPNOTE**RTI_IDE_NEW_TOOLBAR"
 | |
|    equ TOOLBAR_DESIGNSUB$      to FALSE$
 | |
|    equ TOOLBAR_COMPILEFLAG$    to FALSE$
 | |
|    equ TOOLBAR_ALLOWNEW$       to TRUE$
 | |
|    
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| #endif
 | |
| ///////////////////////////////////////////////////////////////////////////////
 | |
| /////////////////////////////////////////////////////////////////////////////// 
 |