58 lines
2.0 KiB
Plaintext
58 lines
2.0 KiB
Plaintext
compile insert PS_ColorDropdown_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 : February 2015
|
|
Purpose : Constants for working with PS COLORDROPDOWN object structures
|
|
|
|
|
|
Comments
|
|
========
|
|
|
|
This is pretty much the same as a normal dropdown COMBOBOX, but with some
|
|
restrictions enforced at runtime.
|
|
|
|
The following combobox properties are not supported:
|
|
|
|
COMBOSTYLE
|
|
HOTIMAGENUMBER
|
|
HOTTRACK
|
|
IMAGELIST
|
|
LIMITTEXT
|
|
LISTX
|
|
SELECTION
|
|
TABOUTEXCEED
|
|
TEXTCASE
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
Mr C 08 Apr 15 Schpelling ...
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _PS_COLORDROPDOWN_EQUATES_
|
|
#define _PS_COLORDROPDOWN_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
$insert ps_ComboBox_Equates
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// PS Style equates
|
|
|
|
equ PSS_COLORDROPDOWN_COLORKEYMODE$ to 0x08000000 ; * // COLORKEYMODE property
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|