]> Creatis software - creaMaracasVisu.git/blobdiff - lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/mBarRange.cxx
no message
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / pPlotter / mBarRange.cxx
index 6de905c825af16ac90a6a0a68ffd092ba496f320..70e1b8ba2b73ff6ca0335c41609bea890d32eb5f 100644 (file)
@@ -43,12 +43,12 @@ END_EVENT_TABLE()
 mBarRange::mBarRange(wxWindow *parent, int w, int h)
 :wxScrolledWindow(parent,-1,wxDefaultPosition,wxDefaultSize,wxTAB_TRAVERSAL)
 {
-       acceptedClick = true;
+       acceptedClick           = true;
        _bitmap_bar                     =       NULL;
        SetWidth (w);
        SetHeight(h);
        _initialPoint           =       0;
-       trianglesHalfWidth = 5;
+       trianglesHalfWidth      = 5;
        
        wxColour start_Colour;
 
@@ -418,22 +418,22 @@ void mBarRange::RefreshHorizontalView()
        wxPoint points[3];
 
        //int largestNumberWidthInPixels = 15; // JPRx
-       int pxStart=GetPixelStart();
-       int pxEnd=GetPixelEnd();
-       int pxActual=GetPixelActual();
+       int pxStart             = GetPixelStart();
+       int pxEnd               = GetPixelEnd();
+       int pxActual    = GetPixelActual();
 
        
-       int letterHeight = 9;
-       int barHeight = 2*letterHeight;
-       int tempHeight = _h-(6*letterHeight);
+       int letterHeight= 9;
+       int barHeight   = 2*letterHeight;
+       int tempHeight  = _h-(6*letterHeight);
        
        
        if (_visibleLables)
        {
-               barHeight = (tempHeight>0)  ? tempHeight : (int) _h/2;
+               barHeight       = (tempHeight>0)  ? tempHeight : (int) _h/2;
        }
        else
-               barHeight = _h; 
+               barHeight       = _h;   
 
        wxMemoryDC temp_dc;
        temp_dc.SelectObject( *_bitmap_bar );
@@ -683,24 +683,24 @@ void mBarRange::RefreshVerticalView()
 
 
        // 2 Shadow Triangles: Start and End 
-       points[0].x=_h;
-       points[0].y=0;
-       points[1].x=0;
-       points[1].y=-trianglesHalfWidth-1;
-       points[2].x=0;
-       points[2].y=trianglesHalfWidth+2;
+       points[0].x     = _h;
+       points[0].y     = 0;
+       points[1].x     = 0;
+       points[1].y     = -trianglesHalfWidth-1;
+       points[2].x     = 0;
+       points[2].y     = trianglesHalfWidth+2;
        temp_dc.SetBrush(wxBrush( wxColour(104,104,104),wxSOLID  ));
        temp_dc.SetPen(wxPen( wxColour(104,104,104),1,wxSOLID  ));
        temp_dc.DrawPolygon(3,points,0,px1);
        temp_dc.DrawPolygon(3,points,0,px2);
 
        // 2 Triangles: Start and End 
-       points[0].x=_h;
-       points[0].y=0;
-       points[1].x=0;
-       points[1].y=-trianglesHalfWidth;
-       points[2].x=0;
-       points[2].y=trianglesHalfWidth;
+       points[0].x     = _h;
+       points[0].y     = 0;
+       points[1].x     = 0;
+       points[1].y     = -trianglesHalfWidth;
+       points[2].x     = 0;
+       points[2].y     = trianglesHalfWidth;
        //first triangle (start)
        if( _selectionMoveId==1 )
        {