]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/pPlotter/pPlotterScaleY.cxx
18d585ecbd1a990676b7b23595e8794bc56e012b
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / pPlotter / pPlotterScaleY.cxx
1 //----------------------------------------------------------------------------
2 // Class definition include
3 //----------------------------------------------------------------------------
4 #include "pPlotterScaleY.h"
5
6 // ----------------------------------------------------------------------------
7 // WX headers inclusion.
8 // For compilers that support precompilation, includes <wx/wx.h>.
9 // ----------------------------------------------------------------------------
10
11 #ifndef WX_PRECOMP
12 #include <wx/wx.h>
13 #endif
14
15 //----------------------------------------------------------------------------
16 // Class implementation
17 //----------------------------------------------------------------------------
18
19 #define mpLN10 2.3025850929940456840179914546844
20
21 IMPLEMENT_CLASS(pPlotterScaleY, pPlotterLayer)
22 //----------------------------------------------------------------------------
23 // Methods
24 //----------------------------------------------------------------------------
25 pPlotterScaleY::pPlotterScaleY(wxString aName,int flags) {
26
27         SetName(aName);/*
28         SetFont(*wxSMALL_FONT);
29         SetPen(*wxGREY_PEN);*/
30         wxFont ff( *wxSMALL_FONT);
31         wxPen pp( *wxGREY_PEN);
32         SetPen( pp );
33         SetFont( ff );
34 }
35
36 void pPlotterScaleY::Plot(wxDC& dc, mpWindow& w) 
37 {
38
39         int divisions=20;
40         
41         dc.SetPen( m_pen);
42         dc.SetFont( m_font);
43         
44         //data
45         float min= (float)w.getMinScrY();
46         float max=(float)w.getMaxScrY();
47         float scrY=(float)w.GetScrY()-50;
48         double scaleY=(scrY/(max-min))*w.getZoomFactor();
49         int offsetpy=w.getOffsetPixelsY();
50         int offsetY=w.getOffsetY();
51
52
53         //setting origins
54         
55 //EED 14Mai2009
56 //      const int orgy   = w.GetScrY()-40;
57 //      dc.SetDeviceOrigin(70,orgy);
58 //      dc.SetAxisOrientation(true,true);  //EED  MacOx ??? 
59         
60         const int orgy   = 40;
61         dc.SetDeviceOrigin(70,orgy);
62         dc.SetAxisOrientation(true,false);  
63
64         //      const int extend = w.GetScrY()-50;   //EED
65         
66         //draw the axe
67         dc.DrawLine( 0,0, 0, (max-min)*scaleY);
68
69         //maximum value in Y
70         int d=max-min;
71         if(d<20)
72                 {
73                         int k=d/divisions;
74                         while(k==0)
75                                 {
76                                         divisions--;
77                                         k=d/divisions;
78                                 }
79                 }
80         float step=(max-min)/divisions;
81         
82
83         //drawing the axe with the numbers
84         wxString s;
85         //drawing the first line
86         dc.DrawLine(0,0,-10,0);
87         s.Printf(_T("%d"),(int)(min));
88         dc.DrawText(s,(wxCoord)-20,(wxCoord)0);
89         
90         
91         for(float i=0;i<=(max);i+=step)
92         {
93                 
94                 int p=(i-min-offsetY)*scaleY+offsetpy;
95                 if(p>=0)
96                 {       
97                         dc.DrawLine(0,p,-10,p);
98                         s.Printf(_T("%d"),(int)(i));
99                         dc.DrawText(s,(wxCoord)-20,(wxCoord)p);
100                 }
101         }       
102         //drawing the last line
103         int p=(max-min-offsetY)*scaleY+offsetpy;
104         dc.DrawLine(0,p,-10,p);
105         s.Printf(_T("%d"),(int)(max));
106         dc.DrawText(s,(wxCoord)-20,(wxCoord)p);
107 }
108
109
110