00001 /* 00002 ParaGUI - crossplatform widgetset 00003 Copyright (C) 2000,2001,2002,2003,2004 Alexander Pipelka 00004 00005 This library is free software; you can redistribute it and/or 00006 modify it under the terms of the GNU Library General Public 00007 License as published by the Free Software Foundation; either 00008 version 2 of the License, or (at your option) any later version. 00009 00010 This library is distributed in the hope that it will be useful, 00011 but WITHOUT ANY WARRANTY; without even the implied warranty of 00012 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 00013 Library General Public License for more details. 00014 00015 You should have received a copy of the GNU Library General Public 00016 License along with this library; if not, write to the Free 00017 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 00018 00019 Alexander Pipelka 00020 pipelka@teleweb.at 00021 00022 Last Update: $Author: mbickel $ 00023 Update Date: $Date: 2007-04-13 16:16:04 $ 00024 Source File: $Source: /home/cvspsrv/cvsroot/games/asc/source/libs/paragui/src/widgets/propstrings_priv.cpp,v $ 00025 CVS/RCS Revision: $Revision: 1.2 $ 00026 Status: $State: Exp $ 00027 */ 00028 00029 #include "propstrings_priv.h" 00030 00031 const std::string PG_PropStr::Button = "Button"; 00032 const std::string PG_PropStr::Label = "Label"; 00033 const std::string PG_PropStr::ListBox = "ListBox"; 00034 const std::string PG_PropStr::ListBoxItem = "ListBoxItem"; 00035 const std::string PG_PropStr::RadioButton = "RadioButton"; 00036 const std::string PG_PropStr::Scrollbar = "Scrollbar"; 00037 const std::string PG_PropStr::ScrollbarDown = "ScrollbarDown"; 00038 const std::string PG_PropStr::ScrollbarDrag = "ScrollbarDrag"; 00039 const std::string PG_PropStr::ScrollbarDragH = "ScrollbarDragH"; 00040 const std::string PG_PropStr::ScrollbarDragV = "ScrollbarDragV"; 00041 const std::string PG_PropStr::ScrollbarH = "ScrollbarH"; 00042 const std::string PG_PropStr::ScrollbarLeft = "ScrollbarLeft"; 00043 const std::string PG_PropStr::ScrollbarRight = "ScrollbarRight"; 00044 const std::string PG_PropStr::ScrollbarUp = "ScrollbarUp"; 00045 const std::string PG_PropStr::ScrollbarV = "ScrollbarV"; 00046 const std::string PG_PropStr::ThemeWidget = "ThemeWidget"; 00047 00048 const std::string PG_PropStr::label = "label"; 00049 const std::string PG_PropStr::alignment = "alignment"; 00050 00051 const std::string PG_PropStr::simplebackground = "simplebackground"; 00052 const std::string PG_PropStr::nocache = "nocache"; 00053 const std::string PG_PropStr::backgroundcolor = "backgroundcolor"; 00054 const std::string PG_PropStr::background = "background"; 00055 const std::string PG_PropStr::blend = "blend"; 00056 const std::string PG_PropStr::bordersize = "bordersize"; 00057 const std::string PG_PropStr::textcolor = "textcolor"; 00058 const std::string PG_PropStr::texthighlightcolor = "texthighlightcolor"; 00059 00060 const std::string PG_PropStr::bordercolor0 = "bordercolor0"; 00061 const std::string PG_PropStr::bordercolor1 = "bordercolor1"; 00062 const std::string PG_PropStr::bordercolor0i = "bordercolor0i"; 00063 const std::string PG_PropStr::bordercolor1i = "bordercolor1i"; 00064 const std::string PG_PropStr::backmode = "backmode"; 00065 const std::string PG_PropStr::gradient = "gradient"; 00066 const std::string PG_PropStr::transparency = "transparency"; 00067 const std::string PG_PropStr::width = "width"; 00068 const std::string PG_PropStr::height = "height"; 00069 00070 const std::string PG_PropStr::iconup = "iconup"; 00071 const std::string PG_PropStr::icondown = "icondown"; 00072 const std::string PG_PropStr::iconover = "iconover"; 00073 const std::string PG_PropStr::gradient0 = "gradient0"; 00074 const std::string PG_PropStr::gradient1 = "gradient1"; 00075 const std::string PG_PropStr::gradient2 = "gradient2"; 00076 const std::string PG_PropStr::bordersize0 = "bordersize0"; 00077 const std::string PG_PropStr::bordersize1 = "bordersize1"; 00078 const std::string PG_PropStr::bordersize2 = "bordersize2"; 00079 const std::string PG_PropStr::transparency0 = "transparency0"; 00080 const std::string PG_PropStr::transparency1 = "transparency1"; 00081 const std::string PG_PropStr::transparency2 = "transparency2"; 00082 const std::string PG_PropStr::background0 = "background0"; 00083 const std::string PG_PropStr::background1 = "background1"; 00084 const std::string PG_PropStr::background2 = "background2"; 00085 const std::string PG_PropStr::backmode0 = "backmode0"; 00086 const std::string PG_PropStr::backmode1 = "backmode1"; 00087 const std::string PG_PropStr::backmode2 = "backmode2"; 00088 const std::string PG_PropStr::blend0 = "blend0"; 00089 const std::string PG_PropStr::blend1 = "blend1"; 00090 const std::string PG_PropStr::blend2 = "blend2"; 00091 const std::string PG_PropStr::shift = "shift"; 00092 const std::string PG_PropStr::iconindent = "iconindent";
1.4.2