00001 #------------------------------------------------------------------------------ 00002 # This file is part of the OpenStructure project <www.openstructure.org> 00003 # 00004 # Copyright (C) 2008-2010 by the OpenStructure authors 00005 # 00006 # This library is free software; you can redistribute it and/or modify it under 00007 # the terms of the GNU Lesser General Public License as published by the Free 00008 # Software Foundation; either version 3.0 of the License, or (at your option) 00009 # any later version. 00010 # This library is distributed in the hope that it will be useful, but WITHOUT 00011 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 00012 # FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 00013 # details. 00014 # 00015 # You should have received a copy of the GNU Lesser General Public License 00016 # along with this library; if not, write to the Free Software Foundation, Inc., 00017 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 00018 #------------------------------------------------------------------------------ 00019 from _gfx import * 00020 00021 WHITE=Color(0xffffff) 00022 BLACK=Color(0x000000) 00023 GREY=Color(0x7f7f7f) 00024 RED=Color(0xff0000) 00025 DARKRED=Color(0x7f0000) 00026 LIGHTRED=Color(0xff7f7f) 00027 GREEN=Color(0x00ff00) 00028 DARKGREEN=Color(0x007f00) 00029 LIGHTGREEN=Color(0x7fff7f) 00030 BLUE=Color(0x0000ff) 00031 DARKBLUE=Color(0x00007f) 00032 LIGHTBLUE=Color(0x7f7fff) 00033 YELLOW=Color(0xffff00) 00034 DARKYELLOW=Color(0x7f7f00) 00035 LIGHTYELLOW=Color(0xffff7f) 00036 CYAN=Color(0x00ffff) 00037 DARKCYAN=Color(0x007f7f) 00038 LIGHTCYAN=Color(0x7fffff) 00039 MAGENTA=Color(0xff00ff) 00040 DARKMAGENTA=Color(0x7f00ff) 00041 LIGHTMAGENTA=Color(0xff7fff)
1.5.8