diff --git a/Projects/CodeBlocks/SleepyHead.depend b/Projects/CodeBlocks/SleepyHead.depend index 9af695cc..93a2e573 100644 --- a/Projects/CodeBlocks/SleepyHead.depend +++ b/Projects/CodeBlocks/SleepyHead.depend @@ -8304,7 +8304,7 @@ -1307601259 /home/mark/projects/git/sleepyhead/src/version.h +1307609269 /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" -1307600933 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp +1307607607 source:/home/mark/projects/git/sleepyhead/src/graphs/graph.cpp diff --git a/src/graphs/graph.cpp b/src/graphs/graph.cpp index 781b5a72..9443f3d9 100644 --- a/src/graphs/graph.cpp +++ b/src/graphs/graph.cpp @@ -328,11 +328,17 @@ void gGraphWindow::ZoomX(double mult,int origin_px) } SetXBounds(min,max); } +gGraphWindow *LastGraphLDown=NULL; void gGraphWindow::OnMouseMove(wxMouseEvent &event) { // static bool first=true; static wxRect last; + if (LastGraphLDown && (LastGraphLDown!=this)) { + LastGraphLDown->OnMouseMove(event); + return; + } + if (foobar && m_drag_foobar) { int y=event.GetY(); int x=event.GetX(); @@ -449,7 +455,6 @@ void gGraphWindow::OnMouseRightRelease(wxMouseEvent &event) event.Skip(); } -gGraphWindow *LastGraphLDown=NULL; void gGraphWindow::OnMouseLeftDown(wxMouseEvent &event) { int y=event.GetY(); @@ -461,6 +466,9 @@ void gGraphWindow::OnMouseLeftDown(wxMouseEvent &event) m_mouseLClick.y = y; + //if (LastGraphLDown) { // Windows retransmits this crap. + //return; + //} if (hot1.Contains(x,y)) { m_mouseLDown=true; @@ -492,7 +500,9 @@ void gGraphWindow::OnMouseLeftDown(wxMouseEvent &event) void gGraphWindow::OnMouseLeftRelease(wxMouseEvent &event) { if (LastGraphLDown && (LastGraphLDown!=this)) { // Same graph that initiated the click?? - LastGraphLDown->OnMouseLeftDown(event); // Nope.. Give it the event. + //m_mouseLDown=false; + //m_drag_foobar=false; + LastGraphLDown->OnMouseLeftRelease(event); // Nope.. Give it the event. return; } @@ -505,7 +515,7 @@ void gGraphWindow::OnMouseLeftRelease(wxMouseEvent &event) bool zoom_in=false; bool did_draw=false; // Finished Dragging the FooBar? - if (foobar && m_drag_foobar) { + // if (foobar && m_drag_foobar) { double rx=RealMaxX()-RealMinX(); double qx=double(width)/rx; double minx=MinX()-RealMinX(); @@ -518,7 +528,10 @@ void gGraphWindow::OnMouseLeftRelease(wxMouseEvent &event) x1+=GetLeftMargin(); x2+=GetLeftMargin(); if ((x>x1) && (x3) { + if ((t2-t1)>4) { // Range Selected ZoomXPixels(t1,t2); did_draw=true; @@ -550,18 +563,17 @@ void gGraphWindow::OnMouseLeftRelease(wxMouseEvent &event) } //goto end; - } - if (!did_draw && (m_mouseLDown && (hot1.Contains(x,y)) || zoom_in)) { - int xp=event.GetX(); + if ((!did_draw && hot1.Contains(x,y)) || zoom_in) { + int xp=x; if (zoom_in) xp=0; 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,xp); - } + //for (list::iterator g=link_zoom.begin();g!=link_zoom.end();g++) { + // (*g)->ZoomX(zoom_fact,xp); + //} if (!m_block_zoom) { ZoomX(zoom_fact,xp); //event.GetX()); // adds origin to zoom in.. Doesn't look that cool. } @@ -570,12 +582,12 @@ void gGraphWindow::OnMouseLeftRelease(wxMouseEvent &event) } m_mouseRBrect=wxRect(0, 0, 0, 0); - if (m_mouseLDown && !did_draw) { + m_mouseLDown=false; + m_drag_foobar=false; + if (!did_draw) { Refresh(); } -end: - m_drag_foobar=false; - m_mouseLDown=false; + LastGraphLDown=NULL; event.Skip(); } diff --git a/src/version.h b/src/version.h index c680d33d..2106cc47 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 = 4036; - static const long REVISION = 5232; + static const long BUILD = 4058; + static const long REVISION = 5369; //Miscellaneous Version Types - static const long BUILDS_COUNT = 2284; - #define RC_FILEVERSION 0,7,4036,5232 - #define RC_FILEVERSION_STRING "0, 7, 4036, 5232\0" - static const char FULLVERSION_STRING[] = "0.7.4036.5232"; + static const long BUILDS_COUNT = 2363; + #define RC_FILEVERSION 0,7,4058,5369 + #define RC_FILEVERSION_STRING "0, 7, 4058, 5369\0" + static const char FULLVERSION_STRING[] = "0.7.4058.5369"; //These values are to keep track of your versioning state, don't modify them. static const long BUILD_HISTORY = 0;