Created initial XmlLabelCreator.

This commit is contained in:
Jim Evins
2015-09-05 17:06:56 -04:00
parent 54bfcca5a9
commit 68cb85ce36
13 changed files with 554 additions and 104 deletions
+12
View File
@@ -149,6 +149,18 @@ namespace glabels
}
uint32_t ColorNode::rgba( void ) const
{
uint32_t c =
mColor.red() << 24 |
mColor.green() << 16 |
mColor.blue() << 8 |
mColor.alpha();
return c;
}
#if TODO
QColor ColorNode::expand( MergeRecord? record )
{