Isis 3 Programmer Reference
Color.h
1 #ifndef Color_H
2 #define Color_H
3 
4 class QColor;
5 class QRegExp;
6 class QString;
7 
8 namespace Isis {
20  class Color {
21  public:
22  static QColor fromRGBAString(QString);
23  static QString toRGBAString(QColor);
24  static QRegExp colorRGBAFormat();
25 
26  private:
27  Color();
33  Color(const Color &);
34  ~Color();
40  Color &operator=(const Color &);
41  };
42 }
43 
44 #endif
This class is designed to serialize QColor in a human-readable form.
Definition: Color.h:20
Color & operator=(const Color &)
This function does not appear to be in use.
static QColor fromRGBAString(QString)
Converts a QString to its QColor.
Definition: Color.cpp:15
static QRegExp colorRGBAFormat()
Get the colorRGBAFormat.
Definition: Color.cpp:58
static QString toRGBAString(QColor)
Convert a QColor to its QString.
Definition: Color.cpp:32
Namespace for ISIS/Bullet specific routines.
Definition: Apollo.h:31