(Herbert): allow the rotation of a graphic by 270.1 degrees and add "mm"

to the choice of Bounding Box units.


git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@3975 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2002-04-11 18:39:17 +00:00
parent 09f334338a
commit 510b77ac25
2 changed files with 9 additions and 3 deletions

View 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

View 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);