X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Flib%2Frgba.cc;h=4d2c28085eb74fa4a2dc8b8b58c45fdbf746f4e8;hb=07b21bb92a8d54c6c03de9aadc63ab93b65d9bc5;hp=dac58418de9855883a3692361e0a46e1e3c46683;hpb=cef07676fb15c9f1c3c3073d22f06ffe95d9c2ce;p=dcpomatic.git diff --git a/src/lib/rgba.cc b/src/lib/rgba.cc index dac58418d..4d2c28085 100644 --- a/src/lib/rgba.cc +++ b/src/lib/rgba.cc @@ -1,46 +1,55 @@ /* - Copyright (C) 2016 Carl Hetherington + Copyright (C) 2016-2021 Carl Hetherington - This program is free software; you can redistribute it and/or modify + This file is part of DCP-o-matic. + + DCP-o-matic 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 2 of the License, or (at your option) any later version. - This program is distributed in the hope that it will be useful, + DCP-o-matic 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, write to the Free Software - Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. + along with DCP-o-matic. If not, see . */ + #include "rgba.h" +#include "warnings.h" +DCPOMATIC_DISABLE_WARNINGS #include +DCPOMATIC_ENABLE_WARNINGS #include + using std::string; using boost::lexical_cast; + RGBA::RGBA (cxml::ConstNodePtr node) { - r = node->number_child ("R"); - g = node->number_child ("G"); - b = node->number_child ("B"); - a = node->number_child ("A"); + r = node->number_child("R"); + g = node->number_child("G"); + b = node->number_child("B"); + a = node->number_child("A"); } + void RGBA::as_xml (xmlpp::Node* parent) const { - parent->add_child("R")->add_child_text (lexical_cast (int (r))); - parent->add_child("G")->add_child_text (lexical_cast (int (g))); - parent->add_child("B")->add_child_text (lexical_cast (int (b))); - parent->add_child("A")->add_child_text (lexical_cast (int (a))); + parent->add_child("R")->add_child_text(lexical_cast(int(r))); + parent->add_child("G")->add_child_text(lexical_cast(int(g))); + parent->add_child("B")->add_child_text(lexical_cast(int(b))); + parent->add_child("A")->add_child_text(lexical_cast(int(a))); } + bool RGBA::operator< (RGBA const & other) const {