73 lines
2.8 KiB
Plaintext
73 lines
2.8 KiB
Plaintext
compile insert rti_IDE_PGO_TEXTLINE_Equates
|
|
/*
|
|
** Copyright (C) 2012-2016 Revelation Software Inc. 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 : Mr C
|
|
Date : 16 Feb 2016
|
|
Purpose : Equates for use with the RTI_IDE_PGO_TEXTLINE dialog
|
|
|
|
Comments
|
|
========
|
|
|
|
("PGO" == Property Grid Options)
|
|
o
|
|
This dialog is used by the form designer to show extra text that doesn't fit
|
|
in the property grid
|
|
|
|
It should return the text as entered.
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
Mr C 21 Jul 22 Added PGOTEXTLINE_CREATEPARAM_MAXCHAR$
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _RTI_IDE_PGO_TEXTLINE_EQUATES_
|
|
#define _RTI_IDE_PGO_TEXTLINE_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// CREATE method CreateParam equates
|
|
//
|
|
// <1> "Parent" property grid ID
|
|
// <2> Property name that is being edited
|
|
// <3> The Text
|
|
// <4> If TRUE then the text should be read-only
|
|
// <5> VALIDCHARS property for the editline
|
|
// <6> TEXTCASE property for the editline
|
|
// <7> Cache ID - this dialog can cache it's client size for use with
|
|
// subsequent operations
|
|
// <8> Maximum number of chars that may be entered
|
|
|
|
equ PGOTEXTLINE_CREATEPARAM_PROPGRID$ to 1
|
|
equ PGOTEXTLINE_CREATEPARAM_PROPNAME$ to 2
|
|
equ PGOTEXTLINE_CREATEPARAM_TEXT$ to 3
|
|
equ PGOTEXTLINE_CREATEPARAM_READONLY$ to 4
|
|
equ PGOTEXTLINE_CREATEPARAM_VALIDCHARS$ to 5
|
|
equ PGOTEXTLINE_CREATEPARAM_TEXTCASE$ to 6
|
|
equ PGOTEXTLINE_CREATEPARAM_CACHEID$ to 7
|
|
equ PGOTEXTLINE_CREATEPARAM_MAXCHARS$ to 8
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Cache structure
|
|
//
|
|
// <0,0,1> Client Width
|
|
// <0,0,2> Client Height
|
|
|
|
equ PGOTEXTLINE_CACHEPOS_CLIENT_W$ to 1
|
|
equ PGOTEXTLINE_CACHEPOS_CLIENT_H$ to 2
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|