57 lines
2.1 KiB
Plaintext
57 lines
2.1 KiB
Plaintext
compile insert ps_ToolTip_Equates
|
|
/*
|
|
** Copyright (C) 2016 Revelation Software Inc. All Rights Reserved **
|
|
|
|
Author : Wile C Coyote - Super Genius
|
|
Date : 31 May 2019
|
|
Purpose : Constants for working with PS the PS TOOLTIP property
|
|
|
|
|
|
Comments
|
|
========
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _PS_TOOLTIP_EQUATES_
|
|
#define _PS_TOOLTIP_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// PS TOOLTIP property structure position equates for standard controls
|
|
//
|
|
// The TOOLTIP property is a dynamic array formatted as:
|
|
//
|
|
// <1> Text (multiple lines are @tm delimited)
|
|
// <2> Maximum width (leave null for default)
|
|
// <3> Title
|
|
// <4> Icon ("*", "!", "H", or filename)
|
|
// <5> Large Icon (1/0) (small (16x16) or large (32x32) )
|
|
// <6> Balloon Style (1/0)
|
|
// <7> Centered (1/0)
|
|
|
|
equ PS_TOOLTIP_POS_TEXT$ to 1
|
|
equ PS_TOOLTIP_POS_MAXWIDTH$ to 2
|
|
equ PS_TOOLTIP_POS_TITLE$ to 3
|
|
equ PS_TOOLTIP_POS_ICON$ to 4
|
|
equ PS_TOOLTIP_POS_LARGEICON$ to 5
|
|
equ PS_TOOLTIP_POS_BALLOON$ to 6
|
|
equ PS_TOOLTIP_POS_CENTERED$ to 7
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// TOOLTIP property icons
|
|
equ PS_TOOLTIP_ICON_INFO$ to "*"
|
|
equ PS_TOOLTIP_ICON_WARNING$ to "!"
|
|
equ PS_TOOLTIP_ICON_ERROR$ to "H"
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|