59 lines
2.7 KiB
Plaintext
59 lines
2.7 KiB
Plaintext
compile insert PS_HyperLink_Equates
|
|
/*
|
|
** Copyright (C) 2013 Revelation Software Inc. All Rights Reserved **
|
|
|
|
This insert 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 : Wile C Coyote - Super Genius
|
|
Date : June 2013
|
|
Purpose : Constants for working with PS HYPERLINK object structures
|
|
|
|
|
|
Comments
|
|
========
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
Mr C 12 Feb 15 Added LINKCURSOR equates
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _PS_HYPERLINK_EQUATES_
|
|
#define _PS_HYPERLINK_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Hyperlinks are basically derived STATIC controls so most STATIC constants
|
|
// apply here as well
|
|
$insert ps_Static_Equates
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
* // PS Style equates
|
|
equ PSS_HYPERLINK_SHOWVISITED$ to 0x00020000 ; * // SHOWVISITED property
|
|
equ PSS_HYPERLINK_NOAUTOUNDERLINE$ to 0x00040000 ; * // AUTOUNDERLINE property (inverse)
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
* // SYSREPOSWINS structure overrides
|
|
|
|
equ POS_HPL_LINK$ to POS_TEXT_1$ ; * // LINK property
|
|
equ POS_HPL_LINKCURSOR$ to POS_TEXT_2$ ; * // LINKCURSOR property (Repos ID)
|
|
equ POS_HPL_VISITEDFORECOLOR$ to POS_COLOR_3$ ; * // VISITEDFORECOLOR property - <0,0,1> only
|
|
|
|
* // SYSREPOSWINEXES structure overrides
|
|
|
|
equ PSPOS_HPL_LINK$ to PSPOS_TEXT_1$ ; * // LINK property
|
|
equ PSPOS_HPL_LINKCURSOR$ to PSPOS_TEXT_2$ ; * // LINKCURSOR property
|
|
equ PSPOS_HPL_VISITEDFORECOLOR$ to PSPOS_COLOR_3$ ; * // VISITEDFORECOLOR property - <0,0,1> only
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|