selected-color.h revision 0dee5a752d2422278f79acba43c26d1472f071ff
/** @file
* Color selected in color selector widget.
* This file was created during the refactoring of SPColorSelector
*//*
* Authors:
* bulia byak <buliabyak@users.sf.net>
* Jon A. Cruz <jon@joncruz.org>
* Tomasz Boczkowski <penginsbacon@gmail.com>
*
* Copyright (C) 2014 Authors
* Released under GNU GPL, read the file 'COPYING' for more information
*/
#ifndef SEEN_SELECTED_COLOR
#define SEEN_SELECTED_COLOR
#include "color.h"
{
}
virtual ~SelectedColor();
void preserveICC();
// By default, disallow copy constructor and assignment operator
/**
* Color alpha value guaranteed to be in [0, 1].
*/
bool _held;
/**
* This flag is true if no color is set yet
*/
bool _virgin;
bool _updating;
static double const _EPSILON;
};
}
};
}
}
#endif
/*
Local Variables:
mode:c++
c-file-style:"stroustrup"
c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
indent-tabs-mode:nil
fill-column:99
End:
*/
// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 :