]> git.lyx.org Git - features.git/commitdiff
(Herbert): allow the rotation of a graphic by 270.1 degrees and add "mm"
authorAngus Leeming <leeming@lyx.org>
Thu, 11 Apr 2002 18:39:17 +0000 (18:39 +0000)
committerAngus Leeming <leeming@lyx.org>
Thu, 11 Apr 2002 18:39:17 +0000 (18:39 +0000)
to the choice of Bounding Box units.

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3975 a592a061-630c-0410-9148-cb99ea01b6c8

src/frontends/xforms/ChangeLog
src/frontends/xforms/FormGraphics.C

index 38dfafdc9a1ff6b5365ccf1e34faf1274d084ba9..00067cc2a94a1225dd82c0d01af7c77c0584b75d 100644 (file)
@@ -1,3 +1,9 @@
+2002-04-09  Herbert Voss  <voss@perce.de>
+
+       * FormGraphics.C: allow rotate-values like 270.1
+       * xformsGImage.C (rotate): get the right rotate-angle from
+       GraphicParams
+
 2002-04-08  Angus Leeming  <a.leeming@ic.ac.uk>
 
        * xformsGImage.C (clip): no need to check if the width, height are > 0
index 38866c2af45afe07bd97621f87f08817541a05c1..6b43148610f3654c7eb818c8ff97af4a7a4cbd6d 100644 (file)
@@ -32,10 +32,10 @@ using std::endl;
 namespace {
 
 // Bound the number of input characters
-int const SCALE_MAXDIGITS = 3;
+int const SCALE_MAXDIGITS = 3;         // %-value
 int const WIDTH_MAXDIGITS = 10;
 int const HEIGHT_MAXDIGITS = 10;
-int const ROTATE_MAXCHARS = 4;
+int const ROTATE_MAXCHARS = 5;         // like 270.1
 int const FILENAME_MAXCHARS = 1024;
 string defaultUnit("cm");
 
@@ -169,7 +169,7 @@ void FormGraphics::build()
        setPrehandler(bbox_->input_bb_x1);
        setPrehandler(bbox_->input_bb_y1);
 
-       string const bb_units = "bp|cm|in";
+       string const bb_units = "bp|cm|mm|in";
        fl_addto_choice(bbox_->choice_bb_units, bb_units.c_str());
        bc().addReadOnly(bbox_->button_getBB);
        bc().addReadOnly(bbox_->check_clip);