mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-08 10:51:03 +00:00
(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:
parent
09f334338a
commit
510b77ac25
@ -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
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user