51 lines
2.0 KiB
Plaintext
51 lines
2.0 KiB
Plaintext
compile insert PS_GroupBox_Equates
|
|
/*
|
|
** Copyright (C) 2013-2015 Revelation Software Inc. All Rights Reserved **
|
|
|
|
Author : Carl Of Cthulhu
|
|
Date : Dec 2015
|
|
Purpose : Constants for working with PS GROUPBOX and GROUPBOX object
|
|
structures
|
|
|
|
|
|
Comments
|
|
========
|
|
|
|
Groupboxes are basically STATIC controls that are simply painted to look
|
|
like group boxes.
|
|
|
|
There are two types:
|
|
|
|
GROUPBOX - This is the standard v9 GroupBox that acts as a sibling
|
|
parent and can only be created on a VIEW-based host (i.e
|
|
the PANEL or WINDOW)
|
|
|
|
GROUPBOXEX - This is a GroupBox the behaves like a normal control and
|
|
expects to have a proper parent->child relationship with
|
|
it's grouped controls.
|
|
|
|
|
|
Amended Date Reason
|
|
======= ==== ======
|
|
*/
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#ifndef _PS_GROUPBOX_EQUATES_
|
|
#define _PS_GROUPBOX_EQUATES_
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
$insert ps_Static_Equates
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
* // PS Style equates
|
|
equ PSS_GROUPBOX_NOAFFECTSIBLINGS$ to 0x00000100 ; * // AUTODISABLECONTROLS property
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
#endif
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
///////////////////////////////////////////////////////////////////////////////
|