diff --git a/Projects/CodeBlocks/SleepyHead.depend b/Projects/CodeBlocks/SleepyHead.depend index 96b5951d..294f932c 100644 --- a/Projects/CodeBlocks/SleepyHead.depend +++ b/Projects/CodeBlocks/SleepyHead.depend @@ -8300,11 +8300,11 @@ "tinyxml/tinyxml.h" -1307543245 /home/mark/projects/git/sleepyhead/src/graphs/graph.h +1307549647 /home/mark/projects/git/sleepyhead/src/graphs/graph.h -1307547717 /home/mark/projects/git/sleepyhead/src/version.h +1307549946 /home/mark/projects/git/sleepyhead/src/version.h 1307418393 /home/mark/projects/git/sleepyhead/src/libs/sleeplib/prs1_loader.h "machine.h" @@ -8341,7 +8341,7 @@ "sleeplib/profiles.h" "sleeplib/machine_loader.h" -1307545866 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp +1307549075 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp diff --git a/src/graphs/graph.cpp b/src/graphs/graph.cpp index 4fa1a04b..adf0b56c 100644 --- a/src/graphs/graph.cpp +++ b/src/graphs/graph.cpp @@ -141,6 +141,7 @@ gGraphWindow::gGraphWindow(wxWindow *parent, wxWindowID id,const wxString & titl m_block_zoom=false; m_drag_foobar=false; m_foobar_pos=0; + m_foobar_moved=0; } gGraphWindow::~gGraphWindow() { @@ -294,7 +295,8 @@ void gGraphWindow::OnMouseMove(wxMouseEvent &event) // qx is centerpoint of new zoom area. - double dx=MaxX()-MinX(); // zoom rect width; + double minx=MinX(); + double dx=MaxX()-minx; // zoom rect width; // Could smarten this up by remembering where the mouse was clicked on the foobar @@ -309,6 +311,7 @@ void gGraphWindow::OnMouseMove(wxMouseEvent &event) ex=rmaxx; qx=ex-dx; } + m_foobar_moved+=fabs((qx-minx)); SetXBounds(qx,ex); } else @@ -413,6 +416,7 @@ void gGraphWindow::OnMouseLeftDown(wxMouseEvent &event) if ((x>x1) && (xx1) && (xm_scrY-GetBottomMargin()+20) - return; + } + if (hot1.Contains(x,y) || zoom_in) { wxPoint release(event.GetX(), m_scrY-m_marginBottom); wxPoint press(m_mouseLClick.x, m_marginTop); //wxDateTime a,b; @@ -459,14 +478,14 @@ void gGraphWindow::OnMouseLeftRelease(wxMouseEvent &event) //Refresh(); //} } else { - double zoom_fact=0.5; - if (event.ControlDown()) zoom_fact=0.25; - for (list::iterator g=link_zoom.begin();g!=link_zoom.end();g++) { - (*g)->ZoomX(zoom_fact,event.GetX()); - } - if (!m_block_zoom) { - ZoomX(zoom_fact,event.GetX()); //event.GetX()); // adds origin to zoom out.. Doesn't look that cool. - } + double zoom_fact=0.5; + if (event.ControlDown()) zoom_fact=0.25; + for (list::iterator g=link_zoom.begin();g!=link_zoom.end();g++) { + (*g)->ZoomX(zoom_fact,event.GetX()); + } + if (!m_block_zoom) { + ZoomX(zoom_fact,event.GetX()); //event.GetX()); // adds origin to zoom out.. Doesn't look that cool. + } } diff --git a/src/graphs/graph.h b/src/graphs/graph.h index bc6ddc12..32e219d1 100644 --- a/src/graphs/graph.h +++ b/src/graphs/graph.h @@ -218,7 +218,7 @@ class gGraphWindow:public wxWindow // rename to gGraphWindow bool m_block_move; bool m_block_zoom; bool m_drag_foobar; - double m_foobar_pos; + double m_foobar_pos,m_foobar_moved; std::list layers; wxColour m_bgColour; //!< Background Colour wxColour m_fgColour; //!< Foreground Colour diff --git a/src/version.h b/src/version.h index c72acd62..81a3f1e7 100644 --- a/src/version.h +++ b/src/version.h @@ -16,14 +16,14 @@ namespace AutoVersion{ //Standard Version Type static const long MAJOR = 0; static const long MINOR = 7; - static const long BUILD = 3824; - static const long REVISION = 4084; + static const long BUILD = 3836; + static const long REVISION = 4149; //Miscellaneous Version Types - static const long BUILDS_COUNT = 1804; - #define RC_FILEVERSION 0,7,3824,4084 - #define RC_FILEVERSION_STRING "0, 7, 3824, 4084\0" - static const char FULLVERSION_STRING[] = "0.7.3824.4084"; + static const long BUILDS_COUNT = 1829; + #define RC_FILEVERSION 0,7,3836,4149 + #define RC_FILEVERSION_STRING "0, 7, 3836, 4149\0" + static const char FULLVERSION_STRING[] = "0.7.3836.4149"; //These values are to keep track of your versioning state, don't modify them. static const long BUILD_HISTORY = 0;