65 lines
2.5 KiB
Plaintext
65 lines
2.5 KiB
Plaintext
compile insert PS_SplitBar_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 : May 2013
|
|
Purpose : Constants for working with PS SPLITBAR object structures
|
|
|
|
|
|
Comments
|
|
========
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
mtr 12 Dec 2014 Git sucks
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _PS_SPLITBAR_EQUATES_
|
|
#define _PS_SPLITBAR_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Splitbars are derived from the STATIC control so they inherit STATIC
|
|
// properties.
|
|
|
|
$insert ps_Static_Equates
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Properties held in window style bits in PSPOS_SDKSTYLE$ <0,0,1>
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// PS Style equates
|
|
//
|
|
equ PSS_SPLITBAR_FIXEDPOSITION$ to 0x00000800 ; * // FIXEDPOSITION property
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
// SYSREPOSWINEXES structure overrides
|
|
|
|
equ PSPOS_SPB_LIMITS$ to PSPOS_SCROLLRANGE$; * // <0,0,1> HIGHLIMIT/LOWLIMIT property (WORD/WORD)
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
* // Default values
|
|
|
|
equ PS_SPB_DFLT_LOWLIMIT$ to 0
|
|
equ PS_SPB_DFLT_HIGHLIMIT$ to 0
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|