GUI touchups: icons (issue 754) pass 2
This commit is contained in:
BIN
rtdata/images/crop_auto_22.png
Normal file
BIN
rtdata/images/crop_auto_22.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 2.9 KiB |
BIN
rtdata/images/distortion.png
Normal file
BIN
rtdata/images/distortion.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
BIN
rtdata/images/distortion_auto.png
Normal file
BIN
rtdata/images/distortion_auto.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 3.4 KiB |
@@ -759,7 +759,7 @@ TP_DIRPYREQUALIZER_LUMAFINEST;Finest
|
|||||||
TP_DIRPYREQUALIZER_LUMANEUTRAL;Neutral
|
TP_DIRPYREQUALIZER_LUMANEUTRAL;Neutral
|
||||||
TP_DIRPYREQUALIZER_THRESHOLD;Threshold
|
TP_DIRPYREQUALIZER_THRESHOLD;Threshold
|
||||||
TP_DISTORTION_AMOUNT;Amount
|
TP_DISTORTION_AMOUNT;Amount
|
||||||
TP_DISTORTION_AUTO;Auto distortion correction
|
TP_DISTORTION_AUTO; Auto distortion correction
|
||||||
TP_DISTORTION_AUTO_TIP;(Exprimental) Correct lens distortion automatically for some cameras (M4/3, some compact DC, etc.)
|
TP_DISTORTION_AUTO_TIP;(Exprimental) Correct lens distortion automatically for some cameras (M4/3, some compact DC, etc.)
|
||||||
TP_DISTORTION_LABEL;Distortion
|
TP_DISTORTION_LABEL;Distortion
|
||||||
TP_EQUALIZER_CONTRAST_MINUS;Contrast-
|
TP_EQUALIZER_CONTRAST_MINUS;Contrast-
|
||||||
@@ -838,7 +838,7 @@ TP_LABCURVE_ENABLESATLIMITER;Enable saturation limiter
|
|||||||
TP_LABCURVE_LABEL;Lab Adjustments
|
TP_LABCURVE_LABEL;Lab Adjustments
|
||||||
TP_LABCURVE_SATLIMIT;Saturation limit
|
TP_LABCURVE_SATLIMIT;Saturation limit
|
||||||
TP_LABCURVE_SATURATION;Saturation
|
TP_LABCURVE_SATURATION;Saturation
|
||||||
TP_LENSGEOM_AUTOCROP;Auto Crop
|
TP_LENSGEOM_AUTOCROP; Auto Crop
|
||||||
TP_LENSGEOM_FILL;Auto Fill
|
TP_LENSGEOM_FILL;Auto Fill
|
||||||
TP_LENSGEOM_LABEL;Lens / Geometry
|
TP_LENSGEOM_LABEL;Lens / Geometry
|
||||||
TP_LUMADENOISE_EDGETOLERANCE;Edge Tolerance
|
TP_LUMADENOISE_EDGETOLERANCE;Edge Tolerance
|
||||||
|
@@ -76,7 +76,7 @@ Crop::Crop (): Gtk::VBox(), FoldableToolPanel(this) {
|
|||||||
pack_start (*hb2, Gtk::PACK_SHRINK, 4);
|
pack_start (*hb2, Gtk::PACK_SHRINK, 4);
|
||||||
|
|
||||||
selectCrop = Gtk::manage (new Gtk::Button (M("TP_CROP_SELECTCROP")));
|
selectCrop = Gtk::manage (new Gtk::Button (M("TP_CROP_SELECTCROP")));
|
||||||
selectCrop->set_image (*Gtk::manage (new Gtk::Image (argv0+"/images/crop16.png")));
|
selectCrop->set_image (*Gtk::manage (new Gtk::Image (argv0+"/images/crop22.png")));
|
||||||
|
|
||||||
pack_start (*selectCrop, Gtk::PACK_SHRINK, 2);
|
pack_start (*selectCrop, Gtk::PACK_SHRINK, 2);
|
||||||
|
|
||||||
|
@@ -19,6 +19,8 @@
|
|||||||
#include <distortion.h>
|
#include <distortion.h>
|
||||||
#include <iomanip>
|
#include <iomanip>
|
||||||
|
|
||||||
|
extern Glib::ustring argv0;
|
||||||
|
|
||||||
using namespace rtengine;
|
using namespace rtengine;
|
||||||
using namespace rtengine::procparams;
|
using namespace rtengine::procparams;
|
||||||
|
|
||||||
@@ -26,6 +28,7 @@ Distortion::Distortion (): Gtk::VBox(), FoldableToolPanel(this) {
|
|||||||
|
|
||||||
rlistener = NULL;
|
rlistener = NULL;
|
||||||
autoDistor = Gtk::manage (new Gtk::Button (M("TP_DISTORTION_AUTO")));
|
autoDistor = Gtk::manage (new Gtk::Button (M("TP_DISTORTION_AUTO")));
|
||||||
|
autoDistor->set_image (*Gtk::manage (new Gtk::Image (argv0+"/images/distortion_auto.png")));
|
||||||
autoDistor->set_tooltip_text (M("TP_DISTORTION_AUTO_TIP"));
|
autoDistor->set_tooltip_text (M("TP_DISTORTION_AUTO_TIP"));
|
||||||
idConn = autoDistor->signal_pressed().connect( sigc::mem_fun(*this, &Distortion::idPressed) );
|
idConn = autoDistor->signal_pressed().connect( sigc::mem_fun(*this, &Distortion::idPressed) );
|
||||||
autoDistor->show();
|
autoDistor->show();
|
||||||
|
@@ -30,6 +30,7 @@ LensGeometry::LensGeometry () : Gtk::VBox(), FoldableToolPanel(this), rlistener(
|
|||||||
pack_start (*fill);
|
pack_start (*fill);
|
||||||
|
|
||||||
autoCrop = Gtk::manage (new Gtk::Button (M("TP_LENSGEOM_AUTOCROP")));
|
autoCrop = Gtk::manage (new Gtk::Button (M("TP_LENSGEOM_AUTOCROP")));
|
||||||
|
autoCrop->set_image (*Gtk::manage (new Gtk::Image (argv0+"/images/crop_auto_22.png")));
|
||||||
pack_start (*autoCrop, Gtk::PACK_SHRINK, 2);
|
pack_start (*autoCrop, Gtk::PACK_SHRINK, 2);
|
||||||
|
|
||||||
packBox = Gtk::manage (new Gtk::VBox ());
|
packBox = Gtk::manage (new Gtk::VBox ());
|
||||||
|
Reference in New Issue
Block a user