rawTherapee/rtgui/lensgeom.cc
Morgan Hardwood bb6282fad3 Icons tweaked #4469
- The "light" icon theme is now a little lighter, to increase contrast.
- Toolbox icons are now small.
- Buttons:
  - Buttons without labels which use icons as their only source of info regarding what the button does (e.g. the white-balance pipette button) use normal-sized icons.
  - Labeled buttons which use icons as an auxiliary source of information (e.g. Auto-Crop) now use small icons. Curve type icons are also small even though they have no labels.
- Colored circles are smaller.
- Curve type icons redesigned and small.
- Hand icons (when panning the preview) redesigned to have a clear outline regardless of background color.
- Magnifier icons redesigned to have a thinner magnifier frame and larger inner parts.
- Perspective, distortion and crop icons redesigned.
- Some small icons were missing the `-small` suffix, now renamed.
2018-07-16 12:41:40 +02:00

122 lines
3.2 KiB
C++

/*
* This file is part of RawTherapee.
*
* Copyright (c) 2004-2010 Gabor Horvath <hgabor@rawtherapee.com>
*
* RawTherapee 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 3 of the License, or
* (at your option) any later version.
*
* RawTherapee 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 RawTherapee. If not, see <http://www.gnu.org/licenses/>.
*/
#include "lensgeom.h"
#include "guiutils.h"
#include "rtimage.h"
using namespace rtengine;
using namespace rtengine::procparams;
LensGeometry::LensGeometry () : FoldableToolPanel(this, "lensgeom", M("TP_LENSGEOM_LABEL")), rlistener(nullptr), lastFill(false)
{
fill = Gtk::manage (new Gtk::CheckButton (M("TP_LENSGEOM_FILL")));
pack_start (*fill);
autoCrop = Gtk::manage (new Gtk::Button (M("TP_LENSGEOM_AUTOCROP")));
autoCrop->set_image (*Gtk::manage (new RTImage ("crop-auto-small.png")));
pack_start (*autoCrop, Gtk::PACK_SHRINK, 2);
packBox = Gtk::manage (new ToolParamBlock ());
pack_start (*packBox);
autoCrop->signal_pressed().connect( sigc::mem_fun(*this, &LensGeometry::autoCropPressed) );
fillConn = fill->signal_toggled().connect( sigc::mem_fun(*this, &LensGeometry::fillPressed) );
fill->set_active (true);
show_all ();
}
LensGeometry::~LensGeometry ()
{
idle_register.destroy();
}
void LensGeometry::read (const ProcParams* pp, const ParamsEdited* pedited)
{
disableListener ();
if (pedited) {
fill->set_inconsistent (!pedited->commonTrans.autofill);
}
fillConn.block (true);
fill->set_active (pp->commonTrans.autofill);
fillConn.block (false);
autoCrop->set_sensitive (!pp->commonTrans.autofill);
lastFill = pp->commonTrans.autofill;
enableListener ();
}
void LensGeometry::write (ProcParams* pp, ParamsEdited* pedited)
{
pp->commonTrans.autofill = fill->get_active ();
if (pedited) {
pedited->commonTrans.autofill = !fill->get_inconsistent();
}
}
void LensGeometry::autoCropPressed ()
{
if (rlistener) {
rlistener->autoCropRequested ();
}
}
void LensGeometry::fillPressed ()
{
if (batchMode) {
if (fill->get_inconsistent()) {
fill->set_inconsistent (false);
fillConn.block (true);
fill->set_active (false);
fillConn.block (false);
} else if (lastFill) {
fill->set_inconsistent (true);
}
lastFill = fill->get_active ();
} else {
autoCrop->set_sensitive (!fill->get_active());
}
if (listener) {
if (fill->get_active ()) {
listener->panelChanged (EvTransAutoFill, M("GENERAL_ENABLED"));
} else {
listener->panelChanged (EvTransAutoFill, M("GENERAL_DISABLED"));
}
}
}
void LensGeometry::setBatchMode (bool batchMode)
{
ToolPanel::setBatchMode (batchMode);
removeIfThere (this, autoCrop);
}