Commit 867756ca authored by Davis King's avatar Davis King

In addition to minor code cleanup I also changed the following:

   - The zoomable_region widget now uses exponential rather than linear
     zoom scaling since this is much more pleasing to use.  There is now
     a new requirement on the zoom increment that it must be between 0
     and 1.
   - I added a few missing requires clauses.
   - I changed the set_zoom_scale() function so that it actually changes
     the zoom scale even if the user requests a zoom value outside the
     allowed range.  It just uses the max or min allowed value rather than
     doing nothing.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403170
parent d5118107
...@@ -1963,7 +1963,7 @@ namespace dlib ...@@ -1963,7 +1963,7 @@ namespace dlib
drawable(w,MOUSE_CLICK | MOUSE_WHEEL | MOUSE_MOVE | events), drawable(w,MOUSE_CLICK | MOUSE_WHEEL | MOUSE_MOVE | events),
min_scale(0.15), min_scale(0.15),
max_scale(1.0), max_scale(1.0),
zoom_increment_(0.02), zoom_increment_(0.90),
vsb(w, scroll_bar::VERTICAL), vsb(w, scroll_bar::VERTICAL),
hsb(w, scroll_bar::HORIZONTAL) hsb(w, scroll_bar::HORIZONTAL)
{ {
...@@ -2010,6 +2010,13 @@ namespace dlib ...@@ -2010,6 +2010,13 @@ namespace dlib
double zi double zi
) )
{ {
DLIB_ASSERT(0.0 < zi && zi < 1.0,
"\tvoid zoomable_region::set_zoom_increment(zi)"
<< "\n\t the zoom increment must be between 0 and 1"
<< "\n\t zi: " << zi
<< "\n\t this: " << this
);
auto_mutex M(m); auto_mutex M(m);
zoom_increment_ = zi; zoom_increment_ = zi;
} }
...@@ -2031,6 +2038,13 @@ namespace dlib ...@@ -2031,6 +2038,13 @@ namespace dlib
double ms double ms
) )
{ {
DLIB_ASSERT(ms > 0,
"\tvoid zoomable_region::set_max_zoom_scale(ms)"
<< "\n\t the max zoom scale must be greater than 0"
<< "\n\t ms: " << ms
<< "\n\t this: " << this
);
auto_mutex M(m); auto_mutex M(m);
max_scale = ms; max_scale = ms;
if (scale > ms) if (scale > ms)
...@@ -2048,6 +2062,13 @@ namespace dlib ...@@ -2048,6 +2062,13 @@ namespace dlib
double ms double ms
) )
{ {
DLIB_ASSERT(ms > 0,
"\tvoid zoomable_region::set_min_zoom_scale(ms)"
<< "\n\t the min zoom scale must be greater than 0"
<< "\n\t ms: " << ms
<< "\n\t this: " << this
);
auto_mutex M(m); auto_mutex M(m);
min_scale = ms; min_scale = ms;
...@@ -2084,8 +2105,8 @@ namespace dlib ...@@ -2084,8 +2105,8 @@ namespace dlib
void zoomable_region:: void zoomable_region::
set_size ( set_size (
long width, unsigned long width,
long height unsigned long height
) )
{ {
auto_mutex M(m); auto_mutex M(m);
...@@ -2233,15 +2254,22 @@ namespace dlib ...@@ -2233,15 +2254,22 @@ namespace dlib
double new_scale double new_scale
) )
{ {
if (min_scale <= new_scale && new_scale <= max_scale) // if new_scale isn't in the right range then put it back in range before we do the
// rest of this function
if (!(min_scale <= new_scale && new_scale <= max_scale))
{ {
// find the point in the center of the graph area if (new_scale > max_scale)
point center((display_rect_.left()+display_rect_.right())/2, (display_rect_.top()+display_rect_.bottom())/2); new_scale = max_scale;
point graph_p(gui_to_graph_space(center)); else
scale = new_scale; new_scale = min_scale;
adjust_origin(center, graph_p);
redraw_graph();
} }
// find the point in the center of the graph area
point center((display_rect_.left()+display_rect_.right())/2, (display_rect_.top()+display_rect_.bottom())/2);
point graph_p(gui_to_graph_space(center));
scale = new_scale;
adjust_origin(center, graph_p);
redraw_graph();
} }
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
...@@ -2269,7 +2297,7 @@ namespace dlib ...@@ -2269,7 +2297,7 @@ namespace dlib
{ {
point gui_p(lastx,lasty); point gui_p(lastx,lasty);
point graph_p(gui_to_graph_space(gui_p)); point graph_p(gui_to_graph_space(gui_p));
scale -= zoom_increment_; scale *= zoom_increment_;
if (scale < min_scale) if (scale < min_scale)
scale = min_scale; scale = min_scale;
redraw_graph(); redraw_graph();
...@@ -2289,7 +2317,7 @@ namespace dlib ...@@ -2289,7 +2317,7 @@ namespace dlib
{ {
point gui_p(lastx,lasty); point gui_p(lastx,lasty);
point graph_p(gui_to_graph_space(gui_p)); point graph_p(gui_to_graph_space(gui_p));
scale += zoom_increment_; scale /= zoom_increment_;
if (scale > max_scale) if (scale > max_scale)
scale = max_scale; scale = max_scale;
redraw_graph(); redraw_graph();
...@@ -3127,8 +3155,8 @@ namespace dlib ...@@ -3127,8 +3155,8 @@ namespace dlib
void popup_menu_region:: void popup_menu_region::
set_size ( set_size (
long width, unsigned long width,
long height unsigned long height
) )
{ {
auto_mutex M(m); auto_mutex M(m);
......
...@@ -463,8 +463,8 @@ namespace dlib ...@@ -463,8 +463,8 @@ namespace dlib
){ disable_events();} ){ disable_events();}
void set_size ( void set_size (
long width, unsigned long width,
long height unsigned long height
) )
{ {
auto_mutex M(m); auto_mutex M(m);
...@@ -2143,8 +2143,8 @@ namespace dlib ...@@ -2143,8 +2143,8 @@ namespace dlib
) const; ) const;
void set_size ( void set_size (
long width, unsigned long width,
long height unsigned long height
); );
void show ( void show (
...@@ -2510,8 +2510,8 @@ namespace dlib ...@@ -2510,8 +2510,8 @@ namespace dlib
); );
void set_size ( void set_size (
long width, unsigned long width,
long height unsigned long height
); );
void set_rect ( void set_rect (
......
...@@ -1040,8 +1040,8 @@ namespace dlib ...@@ -1040,8 +1040,8 @@ namespace dlib
!*/ !*/
void set_size ( void set_size (
long width_, unsigned long width_,
long height_ unsigned long height_
); );
/*! /*!
ensures ensures
...@@ -1520,8 +1520,8 @@ namespace dlib ...@@ -1520,8 +1520,8 @@ namespace dlib
!*/ !*/
void set_size ( void set_size (
long width_, unsigned long width_,
long height_ unsigned long height_
); );
/*! /*!
ensures ensures
...@@ -1579,7 +1579,7 @@ namespace dlib ...@@ -1579,7 +1579,7 @@ namespace dlib
INITIAL VALUE INITIAL VALUE
- min_zoom_scale() == 0.15 - min_zoom_scale() == 0.15
- max_zoom_scale() == 1.0 - max_zoom_scale() == 1.0
- zoom_increment() == 0.02 - zoom_increment() == 0.90
- zoom_scale() == 1.0 - zoom_scale() == 1.0
WHAT THIS OBJECT REPRESENTS WHAT THIS OBJECT REPRESENTS
...@@ -1651,6 +1651,8 @@ namespace dlib ...@@ -1651,6 +1651,8 @@ namespace dlib
double zi double zi
); );
/*! /*!
requires
- 0 < zi < 1
ensures ensures
- #zoom_increment() == zi - #zoom_increment() == zi
!*/ !*/
...@@ -1659,14 +1661,20 @@ namespace dlib ...@@ -1659,14 +1661,20 @@ namespace dlib
) const; ) const;
/*! /*!
ensures ensures
- returns the amount by which zoom_scale() is changed when the user - When the user zooms in using the mouse wheel:
zooms in or out by using the mouse wheel. - #zoom_scale() == zoom_scale() / zoom_increment()
- When the user zooms out using the mouse wheel:
- #zoom_scale() == zoom_scale() * zoom_increment()
- So this function returns the number that determines how much the zoom
changes when the mouse wheel is moved.
!*/ !*/
void set_max_zoom_scale ( void set_max_zoom_scale (
double ms double ms
); );
/*! /*!
requires
- ms > 0
ensures ensures
- #max_zoom_scale() == ms - #max_zoom_scale() == ms
!*/ !*/
...@@ -1675,6 +1683,8 @@ namespace dlib ...@@ -1675,6 +1683,8 @@ namespace dlib
double ms double ms
); );
/*! /*!
requires
- ms > 0
ensures ensures
- #min_zoom_scale() == ms - #min_zoom_scale() == ms
!*/ !*/
...@@ -1684,6 +1694,7 @@ namespace dlib ...@@ -1684,6 +1694,7 @@ namespace dlib
/*! /*!
ensures ensures
- returns the minimum allowed value of zoom_scale() - returns the minimum allowed value of zoom_scale()
(i.e. this is the number that determines how far out the user is allowed to zoom)
!*/ !*/
double max_zoom_scale ( double max_zoom_scale (
...@@ -1691,11 +1702,12 @@ namespace dlib ...@@ -1691,11 +1702,12 @@ namespace dlib
/*! /*!
ensures ensures
- returns the maximum allowed value of zoom_scale() - returns the maximum allowed value of zoom_scale()
(i.e. this is the number that determines how far in the user is allowed to zoom)
!*/ !*/
void set_size ( void set_size (
long width, unsigned long width,
long height unsigned long height
); );
/*! /*!
ensures ensures
...@@ -1775,12 +1787,13 @@ namespace dlib ...@@ -1775,12 +1787,13 @@ namespace dlib
requires requires
- mutex drawable::m is locked - mutex drawable::m is locked
ensures ensures
- invalidates the display_rect() so that it will be redrawn
- if (min_zoom_scale() <= new_scale && new_scale <= max_zoom_scale()) then - if (min_zoom_scale() <= new_scale && new_scale <= max_zoom_scale()) then
- #zoom_scale() == new_scale - #zoom_scale() == new_scale
- invalidates the display_rect() so that it will be redrawn - else if (new_scale < min_zoom_scale()) then
- else - #zoom_scale() == min_zoom_scale()
- #zoom_scale() == zoom_scale() - else if (new_scale > max_zoom_scale()) then
I.e. this function has no effect - #zoom_scale() == max_zoom_scale()
!*/ !*/
void center_display_at_graph_point ( void center_display_at_graph_point (
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment