Added better handling of failures loading icons, as Cairo generated exception were crashing app under windows. Minor fix to handling missing processing params to not alter the global defaults.
This commit is contained in:
195
rtgui/toolbar.cc
Normal file
195
rtgui/toolbar.cc
Normal file
@@ -0,0 +1,195 @@
|
||||
/*
|
||||
* 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 "toolbar.h"
|
||||
#include <multilangmgr.h>
|
||||
|
||||
extern Glib::ustring argv0;
|
||||
|
||||
ToolBar::ToolBar () : listener (NULL) {
|
||||
|
||||
handTool = Gtk::manage (new Gtk::ToggleButton ());
|
||||
Gtk::Image* handimg = Gtk::manage (new Gtk::Image (argv0+"/images/openhand22.png"));
|
||||
handTool->add (*handimg);
|
||||
handimg->show ();
|
||||
handTool->set_relief(Gtk::RELIEF_NONE);
|
||||
handTool->show ();
|
||||
|
||||
pack_start (*handTool);
|
||||
|
||||
wbTool = Gtk::manage (new Gtk::ToggleButton ());
|
||||
Gtk::Image* wbimg = Gtk::manage (new Gtk::Image (argv0+"/images/wbpicker22.png"));
|
||||
wbTool->add (*wbimg);
|
||||
wbimg->show ();
|
||||
wbTool->set_relief(Gtk::RELIEF_NONE);
|
||||
wbTool->show ();
|
||||
|
||||
pack_start (*wbTool);
|
||||
|
||||
cropTool = Gtk::manage (new Gtk::ToggleButton ());
|
||||
Gtk::Image* cropimg = Gtk::manage (new Gtk::Image (argv0+"/images/crop22.png"));
|
||||
cropTool->add (*cropimg);
|
||||
cropimg->show ();
|
||||
cropTool->set_relief(Gtk::RELIEF_NONE);
|
||||
cropTool->show ();
|
||||
|
||||
pack_start (*cropTool);
|
||||
|
||||
straTool = Gtk::manage (new Gtk::ToggleButton ());
|
||||
Gtk::Image* straimg = Gtk::manage (new Gtk::Image (argv0+"/images/straighten22.png"));
|
||||
straTool->add (*straimg);
|
||||
straimg->show ();
|
||||
straTool->set_relief(Gtk::RELIEF_NONE);
|
||||
straTool->show ();
|
||||
|
||||
pack_start (*straTool);
|
||||
|
||||
|
||||
handTool->set_active (true);
|
||||
current = TMHand;
|
||||
|
||||
handConn = handTool->signal_toggled().connect( sigc::mem_fun(*this, &ToolBar::hand_pressed));
|
||||
wbConn = wbTool->signal_toggled().connect( sigc::mem_fun(*this, &ToolBar::wb_pressed));
|
||||
cropConn = cropTool->signal_toggled().connect( sigc::mem_fun(*this, &ToolBar::crop_pressed));
|
||||
straConn = straTool->signal_toggled().connect( sigc::mem_fun(*this, &ToolBar::stra_pressed));
|
||||
|
||||
handTool->set_tooltip_text (M("TOOLBAR_TOOLTIP_HAND"));
|
||||
wbTool->set_tooltip_text (M("TOOLBAR_TOOLTIP_WB"));
|
||||
cropTool->set_tooltip_text (M("TOOLBAR_TOOLTIP_CROP"));
|
||||
straTool->set_tooltip_text (M("TOOLBAR_TOOLTIP_STRAIGHTEN"));
|
||||
}
|
||||
|
||||
//
|
||||
// Selects the desired tool without notifying the listener
|
||||
//
|
||||
void ToolBar::setTool (ToolMode tool) {
|
||||
|
||||
handConn.block (true);
|
||||
cropConn.block (true);
|
||||
wbConn.block (true);
|
||||
straConn.block (true);
|
||||
|
||||
handTool->set_active (false);
|
||||
wbTool->set_active (false);
|
||||
cropTool->set_active (false);
|
||||
straTool->set_active (false);
|
||||
|
||||
if (tool==TMHand)
|
||||
handTool->set_active (true);
|
||||
else if (tool==TMSpotWB)
|
||||
wbTool->set_active (true);
|
||||
else if (tool==TMCropSelect)
|
||||
cropTool->set_active (true);
|
||||
else if (tool==TMStraighten)
|
||||
straTool->set_active (true);
|
||||
|
||||
current = tool;
|
||||
|
||||
handConn.block (false);
|
||||
cropConn.block (false);
|
||||
wbConn.block (false);
|
||||
straConn.block (false);
|
||||
}
|
||||
|
||||
void ToolBar::hand_pressed () {
|
||||
|
||||
handConn.block (true);
|
||||
cropConn.block (true);
|
||||
wbConn.block (true);
|
||||
straConn.block (true);
|
||||
if (current!=TMHand) {
|
||||
wbTool->set_active (false);
|
||||
cropTool->set_active (false);
|
||||
straTool->set_active (false);
|
||||
current = TMHand;
|
||||
}
|
||||
handTool->set_active (true);
|
||||
handConn.block (false);
|
||||
cropConn.block (false);
|
||||
wbConn.block (false);
|
||||
straConn.block (false);
|
||||
|
||||
if (listener)
|
||||
listener->toolSelected (TMHand);
|
||||
}
|
||||
|
||||
void ToolBar::wb_pressed () {
|
||||
|
||||
handConn.block (true);
|
||||
cropConn.block (true);
|
||||
wbConn.block (true);
|
||||
straConn.block (true);
|
||||
if (current!=TMSpotWB) {
|
||||
handTool->set_active (false);
|
||||
cropTool->set_active (false);
|
||||
straTool->set_active (false);
|
||||
current = TMSpotWB;
|
||||
}
|
||||
wbTool->set_active (true);
|
||||
handConn.block (false);
|
||||
cropConn.block (false);
|
||||
wbConn.block (false);
|
||||
straConn.block (false);
|
||||
|
||||
if (listener)
|
||||
listener->toolSelected (TMSpotWB);
|
||||
}
|
||||
|
||||
void ToolBar::crop_pressed () {
|
||||
|
||||
handConn.block (true);
|
||||
cropConn.block (true);
|
||||
wbConn.block (true);
|
||||
straConn.block (true);
|
||||
if (current!=TMCropSelect) {
|
||||
handTool->set_active (false);
|
||||
wbTool->set_active (false);
|
||||
straTool->set_active (false);
|
||||
current = TMCropSelect;
|
||||
}
|
||||
cropTool->set_active (true);
|
||||
handConn.block (false);
|
||||
cropConn.block (false);
|
||||
wbConn.block (false);
|
||||
straConn.block (false);
|
||||
|
||||
if (listener)
|
||||
listener->toolSelected (TMCropSelect);
|
||||
}
|
||||
|
||||
void ToolBar::stra_pressed () {
|
||||
|
||||
handConn.block (true);
|
||||
cropConn.block (true);
|
||||
wbConn.block (true);
|
||||
straConn.block (true);
|
||||
if (current!=TMStraighten) {
|
||||
handTool->set_active (false);
|
||||
wbTool->set_active (false);
|
||||
cropTool->set_active (false);
|
||||
current = TMStraighten;
|
||||
}
|
||||
straTool->set_active (true);
|
||||
handConn.block (false);
|
||||
cropConn.block (false);
|
||||
wbConn.block (false);
|
||||
straConn.block (false);
|
||||
|
||||
if (listener)
|
||||
listener->toolSelected (TMStraighten);
|
||||
}
|
Reference in New Issue
Block a user