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.h,v $ 00025 CVS/RCS Revision: $Revision: 1.2 $ 00026 Status: $State: Exp $ 00027 */ 00028 00029 #ifndef PROPSTRINGS_PRIV_H 00030 #define PROPSTRINGS_PRIV_H 00031 00032 #include <string> 00033 00034 // private static strings 00035 class PG_PropStr { 00036 public: 00037 static const std::string Button; 00038 static const std::string Label; 00039 static const std::string ListBox; 00040 static const std::string ListBoxItem; 00041 static const std::string RadioButton; 00042 static const std::string Scrollbar; 00043 static const std::string ScrollbarDown; 00044 static const std::string ScrollbarDrag; 00045 static const std::string ScrollbarDragH; 00046 static const std::string ScrollbarDragV; 00047 static const std::string ScrollbarH; 00048 static const std::string ScrollbarLeft; 00049 static const std::string ScrollbarRight; 00050 static const std::string ScrollbarUp; 00051 static const std::string ScrollbarV; 00052 static const std::string ThemeWidget; 00053 00054 static const std::string label; 00055 static const std::string alignment; 00056 static const std::string simplebackground; 00057 static const std::string nocache; 00058 static const std::string backgroundcolor; 00059 static const std::string background; 00060 static const std::string blend; 00061 static const std::string textcolor; 00062 static const std::string texthighlightcolor; 00063 static const std::string bordercolor0; 00064 static const std::string bordercolor1; 00065 static const std::string bordercolor0i; 00066 static const std::string bordercolor1i; 00067 static const std::string bordersize; 00068 static const std::string backmode; 00069 static const std::string gradient; 00070 static const std::string transparency; 00071 static const std::string width; 00072 static const std::string height; 00073 00074 static const std::string iconup; 00075 static const std::string icondown; 00076 static const std::string iconover; 00077 static const std::string gradient0; 00078 static const std::string gradient1; 00079 static const std::string gradient2; 00080 static const std::string bordersize0; 00081 static const std::string bordersize1; 00082 static const std::string bordersize2; 00083 static const std::string transparency0; 00084 static const std::string transparency1; 00085 static const std::string transparency2; 00086 static const std::string background0; 00087 static const std::string background1; 00088 static const std::string background2; 00089 static const std::string backmode0; 00090 static const std::string backmode1; 00091 static const std::string backmode2; 00092 static const std::string blend0; 00093 static const std::string blend1; 00094 static const std::string blend2; 00095 static const std::string shift; 00096 static const std::string iconindent; 00097 }; 00098 00099 #endif // PROPSTRINGS_PRIV_H
1.4.2