Printing: add another color in color palettes

Add another color 'Table cells 2' to the color palette, make all the
backgrounds solid white by default.

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
This commit is contained in:
Gehad elrobey 2015-08-07 09:54:09 +02:00 committed by Lubomir I. Ivanov
parent 1a2f154cf4
commit 1dbe10fe27
5 changed files with 80 additions and 25 deletions

View file

@ -27,12 +27,14 @@ struct template_options {
QColor color3;
QColor color4;
QColor color5;
QColor color6;
bool operator!=(const color_palette_struct &other) const {
return other.color1 != color1
|| other.color2 != color2
|| other.color3 != color3
|| other.color4 != color4
|| other.color5 != color5;
|| other.color5 != color5
|| other.color6 != color6;
}
} color_palette;
bool operator!=(const template_options &other) const {