Pipette and "On Preview Widgets" branch. See issue 227

The pipette part is already working quite nice but need to be finished. The widgets part needs more work...
This commit is contained in:
Hombre
2014-01-21 23:37:36 +01:00
commit 8b2eac9a3d
1631 changed files with 379231 additions and 0 deletions

241
rtgui/toolbar.cc Normal file
View File

@@ -0,0 +1,241 @@
/*
* 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"
#include "rtimage.h"
#include "guiutils.h"
ToolBar::ToolBar () : listener (NULL) {
handTool = Gtk::manage (new Gtk::ToggleButton ());
Gtk::Image* handimg = Gtk::manage (new RTImage ("openhand.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 RTImage ("gtk-color-picker.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 RTImage ("crop.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 RTImage ("straighten.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_markup (M("TOOLBAR_TOOLTIP_HAND"));
wbTool->set_tooltip_markup (M("TOOLBAR_TOOLTIP_WB"));
cropTool->set_tooltip_markup (M("TOOLBAR_TOOLTIP_CROP"));
straTool->set_tooltip_markup (M("TOOLBAR_TOOLTIP_STRAIGHTEN"));
}
//
// Selects the desired tool without notifying the listener
//
void ToolBar::setTool (ToolMode tool) {
handConn.block (true);
cropConn.block (true);
if (wbTool) wbConn.block (true);
straConn.block (true);
handTool->set_active (false);
if (wbTool) wbTool->set_active (false);
cropTool->set_active (false);
straTool->set_active (false);
if (tool==TMHand){
handTool->set_active (true);
handTool->grab_focus();; // switch focus to the handTool button
}
else if (tool==TMSpotWB) {
if (wbTool) 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);
if (wbTool) wbConn.block (false);
straConn.block (false);
}
void ToolBar::hand_pressed () {
handConn.block (true);
cropConn.block (true);
if (wbTool) wbConn.block (true);
straConn.block (true);
if (current!=TMHand) {
if (wbTool) wbTool->set_active (false);
cropTool->set_active (false);
straTool->set_active (false);
current = TMHand;
}
handTool->set_active (true);
handConn.block (false);
cropConn.block (false);
if (wbTool) wbConn.block (false);
straConn.block (false);
if (listener)
listener->toolSelected (TMHand);
}
void ToolBar::wb_pressed () {
handConn.block (true);
cropConn.block (true);
if (wbTool) wbConn.block (true);
straConn.block (true);
if (current!=TMSpotWB) {
handTool->set_active (false);
cropTool->set_active (false);
straTool->set_active (false);
current = TMSpotWB;
}
if (wbTool) wbTool->set_active (true);
handConn.block (false);
cropConn.block (false);
if (wbTool) wbConn.block (false);
straConn.block (false);
if (listener)
listener->toolSelected (TMSpotWB);
}
void ToolBar::crop_pressed () {
handConn.block (true);
cropConn.block (true);
if (wbTool) wbConn.block (true);
straConn.block (true);
if (current!=TMCropSelect) {
handTool->set_active (false);
if (wbTool) 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);
if (wbTool) wbConn.block (true);
straConn.block (true);
if (current!=TMStraighten) {
handTool->set_active (false);
if (wbTool) wbTool->set_active (false);
cropTool->set_active (false);
current = TMStraighten;
}
straTool->set_active (true);
handConn.block (false);
cropConn.block (false);
if (wbTool) wbConn.block (false);
straConn.block (false);
if (listener)
listener->toolSelected (TMStraighten);
}
bool ToolBar::handleShortcutKey (GdkEventKey* event) {
bool ctrl = event->state & GDK_CONTROL_MASK;
//bool shift = event->state & GDK_SHIFT_MASK;
bool alt = event->state & GDK_MOD1_MASK;
if (!ctrl && !alt) {
switch(event->keyval) {
case GDK_w:
case GDK_W:
wb_pressed ();
return true;
case GDK_c:
case GDK_C:
crop_pressed ();
return true;
case GDK_s:
case GDK_S:
stra_pressed ();
return true;
case GDK_h:
case GDK_H:
hand_pressed ();
return true;
}
}
else {
switch (event->keyval) {
}
}
return false;
}
void ToolBar::removeWbTool() {
if (wbTool) {
wbConn.disconnect();
removeIfThere(this, wbTool, false);
wbTool = NULL;
}
}