Source code for lib_openmolar.client.qt4.colours

#! /usr/bin/env python
# -*- coding: utf-8 -*-

###############################################################################
##                                                                           ##
##  Copyright 2010, Neil Wallace <rowinggolfer@googlemail.com>               ##
##                                                                           ##
##  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/>.    ##
##                                                                           ##
###############################################################################

from PyQt4 import QtGui, QtCore

[docs]class Colours(object): @property
[docs] def CHARTTEXT(self): return QtGui.QColor("#111111")
@property
[docs] def TOOTHLINES(self): return QtGui.QColor("#aaaaaa")
@property
[docs] def IVORY(self): return QtGui.QColor("#ffeedd")
@property
[docs] def UNKNOWN(self): return QtGui.QColor("purple")
@property
[docs] def GLASS(self): GI_ = "#75d185" return QtGui.QColor(GI_)
@property
[docs] def GOLD(self): GOLD_ = "#ffff00" return QtGui.QColor(GOLD_)
@property
[docs] def COMPOSITE(self): COMP_ = "#ffffff" return QtGui.QColor(COMP_)
@property
[docs] def PORCELAIN(self): PORC_ = "#ddffff" return QtGui.QColor(PORC_)
@property
[docs] def AMALGAM(self): AMALGAM_ = "#666666" return QtGui.QColor(AMALGAM_)
@property
[docs] def FISSURE(self): return QtGui.QColor("#bbd0d0")
@property
[docs] def METAL(self): return QtGui.QColor("#000075")
@property
[docs] def DRESSING(self): return QtGui.QColor("magenta")
@property
[docs] def GUTTA_PERCHA(self): return QtGui.QColor("#bb0000")
@property
[docs] def FILL_OUTLINE(self): return QtGui.QColor("#333333") #used to be blue
@property
[docs] def TRANSPARENT(self): return QtCore.Qt.transparent
@property
[docs] def REQUIRED_FIELD(self): return QtGui.QColor("#ffffaa")
@property
[docs] def BOLD_TEXT(self): return QtGui.QColor("red")
colours = Colours() if __name__ == "__main__": pass