You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
3.1 KiB
73 lines
3.1 KiB
4 years ago
|
/*==LICENSE==*
|
||
|
|
||
|
CyanWorlds.com Engine - MMOG client, server and tools
|
||
|
Copyright (C) 2011 Cyan Worlds, Inc.
|
||
|
|
||
|
This program is free software: you can redistribute it and/or modify
|
||
|
it under the terms of the GNU General Public License as published by
|
||
|
the Free Software Foundation, either version 3 of the License, or
|
||
|
(at your option) any later version.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
Additional permissions under GNU GPL version 3 section 7
|
||
|
|
||
|
If you modify this Program, or any covered work, by linking or
|
||
|
combining it with any of RAD Game Tools Bink SDK, Autodesk 3ds Max SDK,
|
||
|
NVIDIA PhysX SDK, Microsoft DirectX SDK, OpenSSL library, Independent
|
||
|
JPEG Group JPEG library, Microsoft Windows Media SDK, or Apple QuickTime SDK
|
||
|
(or a modified version of those libraries),
|
||
|
containing parts covered by the terms of the Bink SDK EULA, 3ds Max EULA,
|
||
|
PhysX SDK EULA, DirectX SDK EULA, OpenSSL and SSLeay licenses, IJG
|
||
|
JPEG Library README, Windows Media SDK EULA, or QuickTime SDK EULA, the
|
||
|
licensors of this Program grant you additional
|
||
|
permission to convey the resulting work. Corresponding Source for a
|
||
|
non-source form of such a combination shall include the source code for
|
||
|
the parts of OpenSSL and IJG JPEG Library used as well as that of the covered
|
||
|
work.
|
||
|
|
||
|
You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||
|
or by snail mail at:
|
||
|
Cyan Worlds, Inc.
|
||
|
14617 N Newport Hwy
|
||
|
Mead, WA 99021
|
||
|
|
||
|
*==LICENSE==*/
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
// //
|
||
|
// plGUICompClassIDs Header //
|
||
|
// //
|
||
|
//////////////////////////////////////////////////////////////////////////////
|
||
|
|
||
|
#ifndef _plGUICompClassIDs_h
|
||
|
#define _plGUICompClassIDs_h
|
||
|
|
||
|
#define GUI_DIALOG_COMP_CLASS_ID Class_ID(0x2421463d, 0x6ae12c78)
|
||
|
|
||
|
#define GUI_UPDOWNPAIR_CLASSID Class_ID(0x3d313f12, 0x76052516)
|
||
|
#define GUI_BUTTON_CLASSID Class_ID(0x7b9b4e5e, 0x61746c00)
|
||
|
#define GUI_DRAGGABLE_CLASSID Class_ID(0x1fdd3182, 0x4bc76749)
|
||
|
#define GUI_LISTBOX_CLASSID Class_ID(0x173304d2, 0x7d9007b2)
|
||
|
#define GUI_TEXTBOX_CLASSID Class_ID(0x37ec36e4, 0x2d202036)
|
||
|
#define GUI_EDITBOX_CLASSID Class_ID(0x430689d, 0x4a570f9a)
|
||
|
#define GUI_KNOBCTRL_CLASSID Class_ID(0x3072431, 0x4f447a04)
|
||
|
#define GUI_DRAGBAR_CLASSID Class_ID(0x2eca7f27, 0x71e70cd0)
|
||
|
#define GUI_CHECKBOX_CLASSID Class_ID(0x5dba1dd4, 0x7e572d4d)
|
||
|
#define GUI_RADIOGROUP_CLASSID Class_ID(0x641754fe, 0x38d52199)
|
||
|
#define GUI_DYNDISPLAY_CLASSID Class_ID(0x3051b96, 0x3c760bd3)
|
||
|
#define GUI_COLORSCHEME_CLASSID Class_ID(0x2b1401bd, 0x41a35d80)
|
||
|
#define GUI_MULTILINE_CLASSID Class_ID(0x10f749f2, 0x3c6e2fdd)
|
||
|
#define GUI_PROGRESS_CLASSID Class_ID(0x13dc5f4b, 0x73e06e68)
|
||
|
#define GUI_CLICKMAP_CLASSID Class_ID(0x64180f8b, 0x434116df)
|
||
|
#define GUI_SKIN_CLASSID Class_ID(0x6f760c1c, 0x65934ba7)
|
||
|
#define GUI_MENUANCHOR_CLASSID Class_ID(0x3756357e, 0x61573fcc)
|
||
|
|
||
|
|
||
|
#endif //_plGUICompClassIDs_h
|