]> git.lyx.org Git - lyx.git/blobdiff - src/frontends/xforms/FormGraphics.C
remove defaults stuff, let Qt handle no toolbar
[lyx.git] / src / frontends / xforms / FormGraphics.C
index 6e4c2ea4020183d978017a0c0e456be5bc5ac72c..32bd0e2011ec351a246e8f6c4c957d67505fd23e 100644 (file)
@@ -12,9 +12,6 @@
 
 #include <config.h>
 
-#ifdef __GNUG__
-#pragma implementation
-#endif
 
 #include "xformsBC.h"
 #include "ControlGraphics.h"
@@ -39,6 +36,8 @@
 #include "support/lyxlib.h"  // for float_equal
 #include "support/filetools.h"  // for MakeAbsPath etc
 
+#include "support/BoostFormat.h"
+
 #include FORMS_H_LOCATION
 
 using std::endl;
@@ -56,10 +55,10 @@ string defaultUnit("cm");
 } // namespace anon
 
 
-typedef FormCB<ControlGraphics, FormDB<FD_graphics> > base_class;
+typedef FormController<ControlGraphics, FormView<FD_graphics> > base_class;
 
-FormGraphics::FormGraphics()
-       : base_class(_("Graphics"), false)
+FormGraphics::FormGraphics(Dialog & parent)
+       : base_class(parent, _("Graphics"), false)
 {}
 
 
@@ -80,23 +79,23 @@ void FormGraphics::build()
        dialog_.reset(build_graphics(this));
 
        // Manage the ok, apply, restore and cancel/close buttons
-       bc().setOK(dialog_->button_ok);
-       bc().setApply(dialog_->button_apply);
-       bc().setCancel(dialog_->button_close);
-       bc().setRestore(dialog_->button_restore);
+       bcview().setOK(dialog_->button_ok);
+       bcview().setApply(dialog_->button_apply);
+       bcview().setCancel(dialog_->button_close);
+       bcview().setRestore(dialog_->button_restore);
 
        // the file section
        file_.reset(build_graphics_file(this));
 
        // disable for read-only documents
-       bc().addReadOnly(file_->button_browse);   
-       bc().addReadOnly(file_->check_aspectratio);
-       bc().addReadOnly(file_->check_draft);
-       bc().addReadOnly(file_->check_nounzip);
+       bcview().addReadOnly(file_->button_browse);
+       bcview().addReadOnly(file_->check_aspectratio);
+       bcview().addReadOnly(file_->check_draft);
+       bcview().addReadOnly(file_->check_nounzip);
 
        // check validity of "length + unit" input
-       addCheckedGlueLength(bc(), file_->input_width);
-       addCheckedGlueLength(bc(), file_->input_height);
+       addCheckedGlueLength(bcview(), file_->input_width);
+       addCheckedGlueLength(bcview(), file_->input_height);
 
        // trigger an input event for cut&paste with middle mouse button.
        setPrehandler(file_->input_filename);
@@ -116,12 +115,17 @@ void FormGraphics::build()
        // width default is scaling: use unsigned float filter
        fl_set_input_filter(file_->input_width, fl_unsigned_float_filter);
        fl_set_input_maxchars(file_->input_height, SIZE_MAXDIGITS);
-       
+
        string const display_List =
                _("Default|Monochrome|Grayscale|Color|Do not display");
        fl_addto_choice(file_->choice_display, display_List.c_str());
-       
+
+#if USE_BOOST_FORMAT
+       string const width_list = boost::io::str(boost::format(_("Scale%%%%|%1$s")) % choice_Length_All);
+#else
+       // xgettext:no-c-format
        string const width_list = _("Scale%%|") + choice_Length_All;
+#endif
        fl_addto_choice(file_->choice_width, width_list.c_str());
 
        fl_addto_choice(file_->choice_height, choice_Length_All.c_str());
@@ -139,14 +143,15 @@ void FormGraphics::build()
 
        str = _("Set the image width to the inserted value.");
        tooltips().init(file_->input_width, str);
+       // xgettext:no-c-format
        str = _("Select unit for width; Scale% for scaling whole image.");
        tooltips().init(file_->choice_width, str);
        str = _("Set the image height to the inserted value.");
        tooltips().init(file_->input_height, str);
        str = _("Select unit for height.");
        tooltips().init(file_->choice_height, str);
-       str = _("Do not distort the image. " 
-                "Keep image within \"width\" by \"height\" and obey "
+       str = _("Do not distort the image. "
+               "Keep image within \"width\" by \"height\" and obey "
                "aspect ratio.");
        tooltips().init(file_->check_aspectratio, str);
        str = _("Pass a filename like \"file.eps.gz\" to the LaTeX output. "
@@ -161,11 +166,11 @@ void FormGraphics::build()
        bbox_.reset(build_graphics_bbox(this));
 
        // disable for read-only documents
-       bc().addReadOnly(bbox_->button_getBB);
-       bc().addReadOnly(bbox_->check_clip);
+       bcview().addReadOnly(bbox_->button_getBB);
+       bcview().addReadOnly(bbox_->check_clip);
 
        // check validity of "length + unit" input
-       addCheckedLyXLength(bc(), bbox_->input_bb_x1, bbox_->text_X);
+       addCheckedLyXLength(bcview(), bbox_->input_bb_x1, bbox_->text_X);
 
        // trigger an input event for cut&paste with middle mouse button.
        setPrehandler(bbox_->input_bb_x0);
@@ -212,10 +217,10 @@ void FormGraphics::build()
        extra_.reset(build_graphics_extra(this));
 
        // disable for read-only documents
-       bc().addReadOnly(extra_->input_rotate_angle);
-       bc().addReadOnly(extra_->choice_origin);
-       bc().addReadOnly(extra_->check_subcaption);
-       bc().addReadOnly(extra_->input_special);
+       bcview().addReadOnly(extra_->input_rotate_angle);
+       bcview().addReadOnly(extra_->choice_origin);
+       bcview().addReadOnly(extra_->check_subcaption);
+       bcview().addReadOnly(extra_->input_special);
 
        // trigger an input event for cut&paste with middle mouse button.
        setPrehandler(extra_->input_rotate_angle);
@@ -234,12 +239,12 @@ void FormGraphics::build()
        // Store the identifiers for later
        origins_ = getSecond(origindata);
 
-       string const choice = "Default|" + getStringFromVector(getFirst(origindata), "|");
+       string const choice = getStringFromVector(getFirst(origindata), "|");
        fl_addto_choice(extra_->choice_origin, choice.c_str());
 
        // set up the tooltips for the extra section
        str = _("Insert the rotation angle in degrees. "
-               "Positive value rotates anti-clockwise, "
+               "Positive value rotates anti-clockwise, "
                "negative value clockwise.");
        tooltips().init(extra_->input_rotate_angle, str);
        str = _("Insert the point of origin for rotation.");
@@ -248,8 +253,8 @@ void FormGraphics::build()
        tooltips().init(extra_->check_subcaption, str);
        str = _("Insert the optional subfigure caption.");
        tooltips().init(extra_->input_subcaption, str);
-       str = _("Add any additional latex option, which is defined in the "
-                "graphicx-package and not mentioned in the gui's tabfolders.");
+       str = _("Add any additional LaTeX option, which is defined in the "
+               "graphicx-package and not mentioned in the gui's tabfolders.");
        tooltips().init(extra_->input_special, str);
 
        // add the different tabfolders
@@ -286,7 +291,7 @@ void FormGraphics::apply()
        if (igp.lyxscale == 0) {
                igp.lyxscale = 100;
        }
-       
+
        switch (fl_get_choice(file_->choice_display)) {
        case 5:
                igp.display = grfx::NoDisplay;
@@ -325,7 +330,7 @@ void FormGraphics::apply()
 
        // the bb section
        if (!controller().bbChanged) {
-               // don't write anything         
+               // don't write anything
                igp.bb.erase();
        } else {
                // allow length + unit input only for x1 input field
@@ -361,21 +366,21 @@ void FormGraphics::apply()
                        bb = getLengthFromWidgets(bbox_->input_bb_x0,
                                                  bbox_->choice_bb_units);
 
-               bb += " ";
+               bb += ' ';
 
                if (getString(bbox_->input_bb_y0).empty())
-                       bb += "0";
+                       bb += '0';
                else
                        bb += getLengthFromWidgets(bbox_->input_bb_y0,
                                                  bbox_->choice_bb_units);
 
-               bb += " " + x1_str + " ";
+               bb += ' ' + x1_str + ' ';
 
                if (getString(bbox_->input_bb_y1).empty())
-                       bb += "0";
+                       bb += '0';
                else
                        bb += getLengthFromWidgets(bbox_->input_bb_y1,
-                                                  bbox_->choice_bb_units); 
+                                                  bbox_->choice_bb_units);
 
                igp.bb = bb;
        }
@@ -383,7 +388,7 @@ void FormGraphics::apply()
 
        // the extra section
        igp.rotateAngle = strToDbl(getString(extra_->input_rotate_angle));
-       
+
        // map angle into -360 (clock-wise) to +360 (counter clock-wise)
        while (igp.rotateAngle <= -360.0) {
                igp.rotateAngle += 360.0;
@@ -394,10 +399,10 @@ void FormGraphics::apply()
        fl_set_input(extra_->input_rotate_angle, tostr(igp.rotateAngle).c_str());
 
        int const origin_pos = fl_get_choice(extra_->choice_origin);
-       if (origin_pos == 1) {
+       if (origin_pos == 0) {
                igp.rotateOrigin.erase();
        } else {
-               igp.rotateOrigin = origins_[origin_pos - 2];
+               igp.rotateOrigin = origins_[origin_pos - 1];
        }
 
        igp.subcaption = fl_get_button(extra_->check_subcaption);
@@ -452,7 +457,7 @@ void FormGraphics::update() {
        bool const disable_height = !lyx::float_equal(igp.scale, 0.0, 0.05);
        setEnabled(file_->input_height, !disable_height);
        setEnabled(file_->choice_height, !disable_height);
-       
+
        fl_set_button(file_->check_aspectratio, igp.keepAspectRatio);
        fl_set_button(file_->check_draft, igp.draft);
        fl_set_button(file_->check_nounzip, igp.noUnzip);
@@ -478,7 +483,7 @@ void FormGraphics::update() {
        if (igp.rotateOrigin.empty()) {
                origin_pos = 1;
        } else {
-               origin_pos = 2 + findPos(origins_, igp.rotateOrigin);
+               origin_pos = 1 + findPos(origins_, igp.rotateOrigin);
        }
        fl_set_choice(extra_->choice_origin, origin_pos);
 
@@ -579,7 +584,7 @@ ButtonPolicy::SMInput FormGraphics::input(FL_OBJECT * ob, long)
                bool const scaling = fl_get_choice(file_->choice_width) == 1;
                setEnabled(file_->input_height, !scaling);
                setEnabled(file_->choice_height, !scaling);
-               
+
                // allow only integer intput for scaling; float otherwise
                if (scaling) {
                        fl_set_input_filter(file_->input_width, fl_unsigned_float_filter);