pre cutover push

This commit is contained in:
Infineon\StieberD
2024-09-04 20:33:41 -07:00
parent 6ea6969f4b
commit 7762b129af
2072 changed files with 130000 additions and 95295 deletions

View File

@ -1,6 +1,6 @@
compile insert PS_EditTable_Equates
/*
** Copyright (C) 2015-2021 Revelation Software Inc. All Rights Reserved **
** Copyright (C) 2015-2024 Revelation Software Inc. All Rights Reserved **
Author : Wile C Coyote - Super Genius
Date : April 2015
@ -13,6 +13,9 @@ compile insert PS_EditTable_Equates
Amended Date Reason
======= ==== ======
Mr C 06 Jun 24 Added CELLSTYLES property equates
Mr C 20 Feb 24 Added PSSX_EDT_SVMMULTILINEDELIM$, PSSX_EDT_TMMULTILINEDELIM$
Mr C 19 Feb 24 Renamed PS_EDT_AT_LEAVETRAILINGROWS$ to PS_EDT_AT_NOTRAILINGROWS$
Mr C 29 Aug 23 Update PS Extended styles for ALLOWRESETPREVPOS
Mr C 24 Oct 22 Added CELLPOSCHANGED context flags
Mr C 15 Dec 21 Corrected CELLTYPE comments
@ -100,7 +103,7 @@ compile insert PS_EditTable_Equates
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// CELLSTYLE equates
// CELLSTYLE method equates
//
// A column, row or cell can have a style applied to it that is used for
// a specific state (this applies to header cells as well)
@ -143,6 +146,39 @@ compile insert PS_EditTable_Equates
equ PS_EDT_CS_POS_UNDERLINE$ to 6
equ PS_EDT_CS_POS_TRANSLUCENCY$ to 7
equ PS_EDT_CS_POS_GLYPHINDEX$ to 8
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// CELLSTYLES property equates
//
// Category indexes
//
// <1> Data-cell CellStyles
// <2> Column Header CellStyles
// <3> Row Header CellStyles
equ PS_EDT_CSS_POS_DATACELL$ to 1
equ PS_EDT_CSS_POS_COLHEADER$ to 2
equ PS_EDT_CSS_POS_ROWHEADER$ to 3
// State indexes
//
// <0,1> Normal State CellStyle
// <0,2> Hot State CellStyle
// <0,3> Disabled State CellStyle
// <0,4> Selected State CellStyle
// <0,5> HotSelected State CellStyle
// <0,6> SelectedNoFocus State CellStyle
// <0,7> CurrentCell State CellStyle
equ PS_EDT_CSS_POS_NORMAL$ to 1
equ PS_EDT_CSS_POS_HOT$ to 2
equ PS_EDT_CSS_POS_DISABLED$ to 3
equ PS_EDT_CSS_POS_SELECTED$ to 4
equ PS_EDT_CSS_POS_HOTSELECTED$ to 5
equ PS_EDT_CSS_POS_SELNOFOCUS$ to 6
equ PS_EDT_CSS_POS_CURRENT$ to 7
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
@ -239,13 +275,25 @@ compile insert PS_EditTable_Equates
// AUTOTRIMOPTIONS equates
//
// <1> If TRUE$ then treat whitespace as data
// <2> If TRUE$ then leave a trailing blank row
// <2> 2> If TRUE$ then don't leave a trailing blank row
// <3> If TRUE$ then scan all rows, not just the trailing ones
equ PS_EDT_AT_WHITESPACEISDATA$ to 1;
equ PS_EDT_AT_LEAVETRAILINGROW$ to 2;
equ PS_EDT_AT_NOTRAILINGROWS$ to 2;
equ PS_EDT_AT_SCANALLROWS$ to 3;
// Deprecated - do not use - incorrect name ***
equ PS_EDT_AT_LEAVETRAILINGROW$ to PS_EDT_AT_NOTRAILINGROWS$
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
// MULTILINEDELIM equates
//
equ PS_EDT_MLD_DEFAULT$ to 0; // CRLF
equ PS_EDT_MLD_SVM$ to 1; // @svm
equ PS_EDT_MLD_TM$ to 2; // @tm
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////
@ -526,6 +574,8 @@ compile insert PS_EditTable_Equates
equ PSSX_EDT_ALLOWRESETPREVPOS$ to 0x00000400
equ PSSX_EDT_SHOWSELNOFOCUS$ to 0x00000800
equ PSSX_EDT_SUPPRESSCELLTOOLTIPS$ to 0x00001000
equ PSSX_EDT_SVMMULTILINEDELIM$ to 0x00100000
equ PSSX_EDT_TMMULTILINEDELIM$ to 0x00200000
///////////////////////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////////