1 /////////////////////////////////////////////////////////////////////////////
3 // Author: Robert Roebling
5 // Copyright: 2000 (c) Robert Roebling
6 // Licence: wxWindows Licence
7 /////////////////////////////////////////////////////////////////////////////
10 #pragma implementation "canvas.cpp"
13 // For compilers that support precompilation, includes "wx/wx.h".
14 #include "wx/wxprec.h"
20 #include "wx/canvas/canvas.h"
24 #include <gdk/gdkrgb.h>
25 #include "wx/gtk/win_gtk.h"
28 #ifndef wxUSE_FREETYPE
29 #define wxUSE_FREETYPE 1
33 #include <freetype/freetype.h>
36 //----------------------------------------------------------------------------
38 //----------------------------------------------------------------------------
41 FT_Library g_freetypeLibrary
;
44 //----------------------------------------------------------------------------
46 //----------------------------------------------------------------------------
48 wxCanvasObject::wxCanvasObject()
60 void wxCanvasObject::SetArea( int x
, int y
, int width
, int height
)
65 m_area
.height
= height
;
68 void wxCanvasObject::SetArea( wxRect rect
)
72 m_area
.width
= rect
.width
;
73 m_area
.height
= rect
.height
;
76 void wxCanvasObject::Move( int x
, int y
)
86 // TODO: sometimes faster to merge into 1 Update or
87 // to break up into four
88 m_owner
->Update( old_x
, old_y
, m_area
.width
, m_area
.height
);
89 m_owner
->Update( x
, y
, m_area
.width
, m_area
.height
);
93 bool wxCanvasObject::IsHit( int x
, int y
, int margin
)
95 return ((x
>= m_area
.x
-margin
) &&
96 (x
<= m_area
.x
+m_area
.width
+margin
) &&
97 (y
>= m_area
.y
-margin
) &&
98 (y
<= m_area
.y
+m_area
.height
+margin
));
101 void wxCanvasObject::CaptureMouse()
103 m_owner
->SetCaptureMouse( this );
106 void wxCanvasObject::ReleaseMouse()
108 m_owner
->SetCaptureMouse( NULL
);
111 bool wxCanvasObject::IsCapturedMouse()
113 return m_owner
->m_captureMouse
==this;
117 void wxCanvasObject::Render(int xabs
, int yabs
, int clip_x
, int clip_y
, int clip_width
, int clip_height
)
121 void wxCanvasObject::Recreate()
125 void wxCanvasObject::WriteSVG( wxTextOutputStream
&stream
)
129 //----------------------------------------------------------------------------
130 // wxCanvasObjectGroup
131 //----------------------------------------------------------------------------
133 wxCanvasObjectGroup::wxCanvasObjectGroup()
135 m_validbounds
= FALSE
;
138 wxCanvasObjectGroup::~wxCanvasObjectGroup()
142 void wxCanvasObjectGroup::SetOwner(wxCanvas
* canvas
)
145 wxNode
*node
= m_objects
.First();
148 wxCanvasObject
*obj
= (wxCanvasObject
*) node
->Data();
150 obj
->SetOwner(canvas
);
156 void wxCanvasObjectGroup::ExtendArea(double x
, double y
)
160 if (x
< m_minx
) m_minx
= x
;
161 if (y
< m_miny
) m_miny
= y
;
162 if (x
> m_maxx
) m_maxx
= x
;
163 if (y
> m_maxy
) m_maxy
= y
;
167 m_validbounds
= TRUE
;
176 void wxCanvasObjectGroup::DeleteContents( bool flag
)
178 m_objects
.DeleteContents( flag
);
179 m_validbounds
= FALSE
;
182 void wxCanvasObjectGroup::Prepend( wxCanvasObject
* obj
)
184 m_objects
.Insert( obj
);
185 m_validbounds
= FALSE
;
188 void wxCanvasObjectGroup::Append( wxCanvasObject
* obj
)
190 m_objects
.Append( obj
);
191 m_validbounds
= FALSE
;
194 void wxCanvasObjectGroup::Insert( size_t before
, wxCanvasObject
* obj
)
196 m_objects
.Insert( before
, obj
);
197 m_validbounds
= FALSE
;
200 void wxCanvasObjectGroup::Remove( wxCanvasObject
* obj
)
202 m_objects
.DeleteObject( obj
);
203 m_validbounds
= FALSE
;
206 void wxCanvasObjectGroup::Recreate()
208 m_validbounds
= FALSE
;
209 wxNode
*node
= m_objects
.First();
212 wxCanvasObject
*obj
= (wxCanvasObject
*) node
->Data();
215 ExtendArea(obj
->GetX(),obj
->GetY());
216 ExtendArea(obj
->GetX()+obj
->GetWidth(),obj
->GetY()+obj
->GetHeight());
222 void wxCanvasObjectGroup::Render(int xabs
, int yabs
, int x
, int y
, int width
, int height
)
224 // cycle through all objects
225 wxNode
*node
= m_objects
.First();
228 wxCanvasObject
*obj
= (wxCanvasObject
*) node
->Data();
230 if (!obj
->IsControl())
232 // If we have 10.000 objects, we will go through
233 // this 10.000 times for each update, so we have
234 // to optimise carefully.
235 int clip_x
= xabs
+ obj
->GetX();
236 int clip_width
= obj
->GetWidth();
239 clip_width
-= x
-clip_x
;
244 if (clip_x
+ clip_width
> x
+ width
)
245 clip_width
= x
+width
-clip_x
;
249 int clip_y
= yabs
+ obj
->GetY();
250 int clip_height
= obj
->GetHeight();
253 clip_height
-= y
-clip_y
;
258 if (clip_y
+ clip_height
> y
+ height
)
259 clip_height
= y
+height
-clip_y
;
262 obj
->Render(xabs
,yabs
, clip_x
, clip_y
, clip_width
, clip_height
);
272 void wxCanvasObjectGroup::WriteSVG( wxTextOutputStream
&stream
)
276 bool wxCanvasObjectGroup::IsHit( int x
, int y
, int margin
)
278 wxNode
*node
= m_objects
.Last();
281 wxCanvasObject
*obj
= (wxCanvasObject
*) node
->Data();
283 if (!obj
->IsControl())
285 if (obj
->IsHit(x
,y
,margin
))
290 node
= node
->Previous();
295 wxCanvasObject
* wxCanvasObjectGroup::IsHitObject( int x
, int y
, int margin
)
297 wxCanvasObject
*obj
=0;
298 wxNode
*node
= m_objects
.Last();
301 obj
=(wxCanvasObject
*) node
->Data();
303 if (!obj
->IsControl())
305 if (obj
->IsHit(x
,y
,margin
))
310 node
= node
->Previous();
313 return (wxCanvasObject
*) NULL
;
316 //----------------------------------------------------------------------------
317 // wxCanvasObjectGroupRef
318 //----------------------------------------------------------------------------
320 wxCanvasObjectGroupRef::wxCanvasObjectGroupRef(double x
, double y
, wxCanvasObjectGroup
* group
)
325 m_validbounds
= FALSE
;
329 void wxCanvasObjectGroupRef::SetOwner(wxCanvas
* canvas
)
332 m_group
->SetOwner(canvas
);
335 void wxCanvasObjectGroupRef::ExtendArea(double x
, double y
)
339 if (x
< m_minx
) m_minx
= x
;
340 if (y
< m_miny
) m_miny
= y
;
341 if (x
> m_maxx
) m_maxx
= x
;
342 if (y
> m_maxy
) m_maxy
= y
;
346 m_validbounds
= TRUE
;
355 void wxCanvasObjectGroupRef::Recreate()
357 m_validbounds
= FALSE
;
359 ExtendArea(m_group
->GetXMin(),m_group
->GetYMin());
360 ExtendArea(m_group
->GetXMax(),m_group
->GetYMax());
362 //set the area in pixels relative to the parent
363 SetArea( m_owner
->GetDeviceX( m_x
+ m_minx
),
364 m_owner
->GetDeviceY( m_y
+ m_miny
),
365 m_owner
->GetDeviceWidth( m_maxx
-m_minx
),
366 m_owner
->GetDeviceHeight( m_maxy
-m_miny
) );
369 void wxCanvasObjectGroupRef::Render(int xabs
, int yabs
, int x
, int y
, int width
, int height
)
371 xabs
+= m_owner
->GetDeviceX(m_x
);
372 yabs
+= m_owner
->GetDeviceY(m_y
);
374 int clip_x
= xabs
+ m_group
->GetXMin();
375 int clip_width
= m_group
->GetXMax()-m_group
->GetXMin();
378 clip_width
-= x
-clip_x
;
383 if (clip_x
+ clip_width
> x
+ width
)
384 clip_width
= x
+width
-clip_x
;
388 int clip_y
= yabs
+ m_group
->GetYMin();
389 int clip_height
= m_group
->GetYMax()-m_group
->GetYMin();
392 clip_height
-= y
-clip_y
;
397 if (clip_y
+ clip_height
> y
+ height
)
398 clip_height
= y
+height
-clip_y
;
401 m_group
->Render(xabs
,yabs
, clip_x
, clip_y
, clip_width
, clip_height
);
407 void wxCanvasObjectGroupRef::WriteSVG( wxTextOutputStream
&stream
)
411 bool wxCanvasObjectGroupRef::IsHit( int x
, int y
, int margin
)
413 return m_group
->IsHit(x
-GetPosX(),y
-GetPosY(),margin
);
416 wxCanvasObject
* wxCanvasObjectGroupRef::IsHitObject( int x
, int y
, int margin
)
418 return m_group
->IsHitObject(x
-GetPosX(),y
-GetPosY(),margin
);
421 void wxCanvasObjectGroupRef::Move( int x
, int y
)
426 int old_area_x
= m_area
.x
;
427 int old_area_y
= m_area
.y
;
429 m_area
.x
=m_owner
->GetDeviceX( m_x
+ m_minx
);
430 m_area
.y
=m_owner
->GetDeviceY( m_y
+ m_miny
);
432 int leftu
,rightu
,bottomu
,topu
;
433 leftu
= wxMin (m_area
.x
, old_area_x
) ;
434 rightu
= wxMax (old_area_x
+ m_area
.width
, m_area
.x
+ m_area
.width
) ;
435 topu
= wxMin (m_area
.y
,old_area_y
) ;
436 bottomu
= wxMax (old_area_y
+ m_area
.height
, m_area
.y
+ m_area
.height
) ;
438 if ( rightu
- leftu
< 2*m_area
.width
&& bottomu
- topu
< 2*m_area
.height
)
440 m_owner
->Update(leftu
,topu
,rightu
- leftu
,bottomu
- topu
);
444 m_owner
->Update(old_area_x
, old_area_y
, m_area
.width
, m_area
.height
);
445 m_owner
->Update( m_area
.x
, m_area
.y
, m_area
.width
, m_area
.height
);
449 //----------------------------------------------------------------------------
451 //----------------------------------------------------------------------------
453 wxCanvasPolyline::wxCanvasPolyline( int n
, wxPoint2DDouble points
[])
458 m_pen
= *wxBLACK_PEN
;
461 wxCanvasPolyline::~wxCanvasPolyline()
466 void wxCanvasPolyline::ExtendArea(double x
, double y
)
470 if (x
< m_minx
) m_minx
= x
;
471 if (y
< m_miny
) m_miny
= y
;
472 if (x
> m_maxx
) m_maxx
= x
;
473 if (y
> m_maxy
) m_maxy
= y
;
477 m_validbounds
= TRUE
;
486 void wxCanvasPolyline::Recreate()
491 for (i
=0; i
< m_n
;i
++)
493 ExtendArea(m_points
[i
].m_x
,m_points
[i
].m_y
);
496 //include the pen width also
497 ExtendArea(m_minx
-m_pen
.GetWidth(),m_miny
-m_pen
.GetWidth());
498 ExtendArea(m_maxx
+m_pen
.GetWidth()*2,m_maxy
+m_pen
.GetWidth()*2);
500 //set the area in pixels relative to the parent
501 SetArea( m_owner
->GetDeviceX(m_minx
),
502 m_owner
->GetDeviceY(m_miny
),
503 m_owner
->GetDeviceWidth( m_maxx
-m_minx
),
504 m_owner
->GetDeviceHeight( m_maxy
-m_miny
) );
507 void wxCanvasPolyline::Render(int xabs
, int yabs
, int clip_x
, int clip_y
, int clip_width
, int clip_height
)
509 int buffer_x
= m_owner
->GetBufferX();
510 int buffer_y
= m_owner
->GetBufferY();
512 int start_y
= clip_y
- buffer_y
;
513 int end_y
= clip_y
+clip_height
- buffer_y
;
515 int start_x
= clip_x
- buffer_x
;
516 int end_x
= clip_x
+clip_width
- buffer_x
;
520 wxPoint
*cpoints
= new wxPoint
[m_n
];
522 for (i
= 0; i
< m_n
; i
++)
524 cpoints
[i
].x
= m_owner
->GetDeviceX(m_points
[i
].m_x
+xabs
);
525 cpoints
[i
].y
= m_owner
->GetDeviceY(m_points
[i
].m_y
+yabs
);
527 wxMemoryDC
*dc
= m_owner
->GetDC();
528 dc
->SetClippingRegion(start_x
,start_y
,end_x
-start_x
,end_y
-start_y
);
530 dc
->DrawLines(m_n
, cpoints
, 0,0);
532 dc
->SetPen(wxNullPen
);
533 dc
->DestroyClippingRegion();
537 void wxCanvasPolyline::WriteSVG( wxTextOutputStream
&stream
)
541 //----------------------------------------------------------------------------
543 //----------------------------------------------------------------------------
545 wxCanvasPolygon::wxCanvasPolygon( int n
, wxPoint2DDouble points
[])
550 m_brush
= *wxBLACK_BRUSH
;
551 m_pen
= *wxTRANSPARENT_PEN
;
554 wxCanvasPolygon::~wxCanvasPolygon()
559 void wxCanvasPolygon::ExtendArea(double x
, double y
)
563 if (x
< m_minx
) m_minx
= x
;
564 if (y
< m_miny
) m_miny
= y
;
565 if (x
> m_maxx
) m_maxx
= x
;
566 if (y
> m_maxy
) m_maxy
= y
;
570 m_validbounds
= TRUE
;
579 void wxCanvasPolygon::Recreate()
584 for (i
=0; i
< m_n
;i
++)
586 ExtendArea(m_points
[i
].m_x
,m_points
[i
].m_y
);
589 //include the pen width also
590 ExtendArea(m_minx
-m_pen
.GetWidth(),m_miny
-m_pen
.GetWidth());
591 ExtendArea(m_maxx
+m_pen
.GetWidth()*2,m_maxy
+m_pen
.GetWidth()*2);
593 //set the area in pixels relative to the parent
594 SetArea( m_owner
->GetDeviceX( m_minx
),
595 m_owner
->GetDeviceY( m_miny
),
596 m_owner
->GetDeviceWidth( m_maxx
-m_minx
),
597 m_owner
->GetDeviceHeight( m_maxy
-m_miny
) );
600 void wxCanvasPolygon::Render(int xabs
, int yabs
, int clip_x
, int clip_y
, int clip_width
, int clip_height
)
602 int buffer_x
= m_owner
->GetBufferX();
603 int buffer_y
= m_owner
->GetBufferY();
605 int start_y
= clip_y
- buffer_y
;
606 int end_y
= clip_y
+clip_height
- buffer_y
;
608 int start_x
= clip_x
- buffer_x
;
609 int end_x
= clip_x
+clip_width
- buffer_x
;
613 wxPoint
*cpoints
= new wxPoint
[m_n
];
615 for (i
= 0; i
< m_n
; i
++)
617 cpoints
[i
].x
= m_owner
->GetDeviceX(m_points
[i
].m_x
+xabs
);
618 cpoints
[i
].y
= m_owner
->GetDeviceY(m_points
[i
].m_y
+yabs
);
620 wxMemoryDC
*dc
= m_owner
->GetDC();
621 dc
->SetClippingRegion(start_x
,start_y
,end_x
-start_x
,end_y
-start_y
);
622 dc
->SetBrush(m_brush
);
624 dc
->DrawPolygon(m_n
, cpoints
, 0,0,wxWINDING_RULE
);
626 dc
->SetBrush(wxNullBrush
);
627 dc
->SetPen(wxNullPen
);
628 dc
->DestroyClippingRegion();
632 void wxCanvasPolygon::WriteSVG( wxTextOutputStream
&stream
)
638 //----------------------------------------------------------------------------
640 //----------------------------------------------------------------------------
642 wxCanvasRect::wxCanvasRect( double x
, double y
, double w
, double h
)
650 m_brush
= *wxBLACK_BRUSH
;
651 m_pen
= *wxTRANSPARENT_PEN
;
654 void wxCanvasRect::Recreate()
656 SetArea( m_owner
->GetDeviceX( m_x
),
657 m_owner
->GetDeviceY( m_y
),
658 m_owner
->GetDeviceWidth( m_width
),
659 m_owner
->GetDeviceHeight( m_height
) );
662 void wxCanvasRect::Render(int xabs
, int yabs
, int clip_x
, int clip_y
, int clip_width
, int clip_height
)
664 int buffer_x
= m_owner
->GetBufferX();
665 int buffer_y
= m_owner
->GetBufferY();
668 wxImage
*image
= m_owner
->GetBuffer();
670 int start_y
= clip_y
- buffer_y
;
671 int end_y
= clip_y
+clip_height
- buffer_y
;
673 int start_x
= clip_x
- buffer_x
;
674 int end_x
= clip_x
+clip_width
- buffer_x
;
677 for (int y
= start_y
; y
< end_y
; y
++)
678 for (int x
= start_x
; x
< end_x
; x
++)
679 image
->SetRGB( x
, y
, m_red
, m_green
, m_blue
);
681 wxMemoryDC
*dc
= m_owner
->GetDC();
683 dc
->SetBrush( m_brush
);
684 dc
->DrawRectangle( clip_x
-buffer_x
, clip_y
-buffer_y
, clip_width
, clip_height
);
688 void wxCanvasRect::WriteSVG( wxTextOutputStream
&stream
)
692 //----------------------------------------------------------------------------
694 //----------------------------------------------------------------------------
696 wxCanvasLine::wxCanvasLine( double x1
, double y1
, double x2
, double y2
)
704 m_pen
= *wxBLACK_PEN
;
707 void wxCanvasLine::Recreate()
709 int x1
= m_owner
->GetDeviceX( m_x1
);
710 int y1
= m_owner
->GetDeviceY( m_y1
);
711 int x2
= m_owner
->GetDeviceX( m_x2
);
712 int y2
= m_owner
->GetDeviceY( m_y2
);
725 SetArea( x1
, y1
, x2
-x1
+1, y2
-y1
+1 );
728 void wxCanvasLine::Render(int xabs
, int yabs
, int clip_x
, int clip_y
, int clip_width
, int clip_height
)
730 int buffer_x
= m_owner
->GetBufferX();
731 int buffer_y
= m_owner
->GetBufferY();
733 int x1
= xabs
+ m_owner
->GetDeviceX( m_x1
);
734 int y1
= yabs
+ m_owner
->GetDeviceY( m_y1
);
735 int x2
= xabs
+ m_owner
->GetDeviceX( m_x2
);
736 int y2
= yabs
+ m_owner
->GetDeviceY( m_y2
);
739 wxImage
*image
= m_owner
->GetBuffer();
740 if ((m_area
.width
== 0) && (m_area
.height
== 0))
742 image
->SetRGB( m_area
.x
-buffer_x
, m_area
.y
-buffer_y
, m_red
, m_green
, m_blue
);
746 wxInt32 d
, ii
, jj
, di
, ai
, si
, dj
, aj
, sj
;
749 si
= (di
< 0)? -1 : 1;
752 sj
= (dj
< 0)? -1 : 1;
764 if ((ii
>= clip_x
) && (ii
< clip_x
+clip_width
) &&
765 (jj
>= clip_y
) && (jj
< clip_y
+clip_height
))
767 image
->SetRGB( ii
-buffer_x
, jj
-buffer_y
, m_red
, m_blue
, m_green
);
785 if ((ii
>= clip_x
) && (ii
< clip_x
+clip_width
) &&
786 (jj
>= clip_y
) && (jj
< clip_y
+clip_height
))
788 image
->SetRGB( ii
-buffer_x
, jj
-buffer_y
, m_red
, m_blue
, m_green
);
801 wxMemoryDC
*dc
= m_owner
->GetDC();
802 dc
->SetClippingRegion( clip_x
-buffer_x
, clip_y
-buffer_y
, clip_width
, clip_height
);
804 dc
->DrawLine( x1
-buffer_x
, y1
-buffer_y
, x2
-buffer_x
, y2
-buffer_y
);
806 dc
->DestroyClippingRegion();
810 void wxCanvasLine::WriteSVG( wxTextOutputStream
&stream
)
815 //----------------------------------------------------------------------------
817 //----------------------------------------------------------------------------
819 wxCanvasImage::wxCanvasImage( const wxImage
&image
, double x
, double y
, double w
, double h
)
831 void wxCanvasImage::Recreate()
833 SetArea( m_owner
->GetDeviceX( m_x
),
834 m_owner
->GetDeviceY( m_y
),
835 m_owner
->GetDeviceWidth( m_width
),
836 m_owner
->GetDeviceHeight( m_height
) );
839 if ((m_area
.width
== m_image
.GetWidth()) &&
840 (m_area
.width
== m_image
.GetWidth()))
846 m_tmp
= m_image
.Scale( m_area
.width
, m_area
.height
);
849 if ((m_area
.width
== m_image
.GetWidth()) &&
850 (m_area
.width
== m_image
.GetWidth()))
852 m_tmp
= m_image
.ConvertToBitmap();
856 wxImage
tmp( m_image
.Scale( m_area
.width
, m_area
.height
) );
857 m_tmp
= tmp
.ConvertToBitmap();
862 void wxCanvasImage::Render(int xabs
, int yabs
, int clip_x
, int clip_y
, int clip_width
, int clip_height
)
864 int buffer_x
= m_owner
->GetBufferX();
865 int buffer_y
= m_owner
->GetBufferY();
868 if ((clip_x
== xabs
+ m_area
.x
) &&
869 (clip_y
== yabs
+ m_area
.y
) &&
870 (clip_width
== m_area
.width
) &&
871 (clip_height
== m_area
.height
))
873 m_owner
->GetBuffer()->Paste( m_tmp
, clip_x
-buffer_x
, clip_y
-buffer_y
);
878 int start_x
= clip_x
- (xabs
+ m_area
.x
);
879 int start_y
= clip_y
- (yabs
+ m_area
.y
);
881 wxRect
rect( start_x
, start_y
, clip_width
, clip_height
);
882 wxImage
sub_image( m_tmp
.GetSubImage( rect
) );
883 m_owner
->GetBuffer()->Paste( sub_image
, clip_x
-buffer_x
, clip_y
-buffer_y
);
886 wxMemoryDC
*dc
= m_owner
->GetDC();
888 if ((clip_x
== xabs
+ m_area
.x
) &&
889 (clip_y
== yabs
+ m_area
.y
) &&
890 (clip_width
== m_area
.width
) &&
891 (clip_height
== m_area
.height
))
893 dc
->DrawBitmap( m_tmp
, clip_x
-buffer_x
, clip_y
-buffer_y
, TRUE
);
898 int start_x
= clip_x
- (xabs
+ m_area
.x
);
899 int start_y
= clip_y
- (yabs
+ m_area
.y
);
901 // Clipping region faster ?
902 wxRect
rect( start_x
, start_y
, clip_width
, clip_height
);
903 wxBitmap
sub_bitmap( m_tmp
.GetSubBitmap( rect
) );
904 dc
->DrawBitmap( sub_bitmap
, clip_x
-buffer_x
, clip_y
-buffer_y
, TRUE
);
909 void wxCanvasImage::WriteSVG( wxTextOutputStream
&stream
)
914 //----------------------------------------------------------------------------
916 //----------------------------------------------------------------------------
918 wxCanvasControl::wxCanvasControl( wxWindow
*control
)
925 wxCanvasControl::~wxCanvasControl()
927 m_control
->Destroy();
930 void wxCanvasControl::Recreate()
932 m_control
->GetSize( &m_area
.width
, &m_area
.height
);
933 m_control
->GetPosition( &m_area
.x
, &m_area
.y
);
936 void wxCanvasControl::Move( int x
, int y
)
938 m_control
->Move( x
, y
);
941 //----------------------------------------------------------------------------
943 //----------------------------------------------------------------------------
955 wxCanvasText::wxCanvasText( const wxString
&text
, double x
, double y
, const wxString
&fontFile
, int size
)
959 m_fontFileName
= fontFile
;
972 wxFaceData
*data
= new wxFaceData
;
975 int error
= FT_New_Face( g_freetypeLibrary
,
980 error
= FT_Set_Char_Size( data
->m_face
,
988 wxCanvasText::~wxCanvasText()
991 wxFaceData
*data
= (wxFaceData
*) m_faceData
;
995 if (m_alpha
) delete [] m_alpha
;
998 void wxCanvasText::SetRGB( unsigned char red
, unsigned char green
, unsigned char blue
)
1005 void wxCanvasText::SetFlag( int flag
)
1010 void wxCanvasText::Render(int xabs
, int yabs
, int clip_x
, int clip_y
, int clip_width
, int clip_height
)
1012 if (!m_alpha
) return;
1015 wxImage
*image
= m_owner
->GetBuffer();
1016 int buffer_x
= m_owner
->GetBufferX();
1017 int buffer_y
= m_owner
->GetBufferY();
1019 // local coordinates
1020 int start_x
= clip_x
- m_area
.x
;
1021 int end_x
= clip_width
+ start_x
;
1022 int start_y
= clip_y
- m_area
.y
;
1023 int end_y
= clip_height
+ start_y
;
1025 for (int y
= start_y
; y
< end_y
; y
++)
1026 for (int x
= start_x
; x
< end_x
; x
++)
1028 int alpha
= m_alpha
[y
*m_area
.width
+ x
];
1031 int image_x
= m_area
.x
+x
- buffer_x
;
1032 int image_y
= m_area
.y
+y
- buffer_y
;
1035 image
->SetRGB( image_x
, image_y
, m_red
, m_green
, m_blue
);
1038 int red1
= (m_red
* alpha
) / 255;
1039 int green1
= (m_green
* alpha
) / 255;
1040 int blue1
= (m_blue
* alpha
) / 255;
1043 int red2
= image
->GetRed( image_x
, image_y
);
1044 int green2
= image
->GetGreen( image_x
, image_y
);
1045 int blue2
= image
->GetBlue( image_x
, image_y
);
1046 red2
= (red2
* alpha
) / 255;
1047 green2
= (green2
* alpha
) / 255;
1048 blue2
= (blue2
* alpha
) / 255;
1050 image
->SetRGB( image_x
, image_y
, red1
+red2
, green1
+green2
, blue1
+blue2
);
1056 void wxCanvasText::WriteSVG( wxTextOutputStream
&stream
)
1060 void wxCanvasText::Recreate()
1062 if (m_alpha
) delete [] m_alpha
;
1064 m_area
.x
= m_owner
->GetDeviceX( m_x
);
1065 m_area
.y
= m_owner
->GetDeviceY( m_y
);
1067 m_area
.width
= 100; // TODO, calculate length
1068 m_area
.height
= m_size
;
1069 m_alpha
= new unsigned char[100*m_size
];
1070 memset( m_alpha
, 0, m_area
.width
*m_area
.height
);
1073 FT_Face face
= ((wxFaceData
*)m_faceData
)->m_face
;
1074 FT_GlyphSlot slot
= face
->glyph
;
1078 for (int n
= 0; n
< (int)m_text
.Len(); n
++)
1080 FT_UInt index
= FT_Get_Char_Index( face
, m_text
[n
] );
1082 int error
= FT_Load_Glyph( face
, index
, FT_LOAD_DEFAULT
);
1083 if (error
) continue;
1085 error
= FT_Render_Glyph( face
->glyph
, ft_render_mode_normal
);
1086 if (error
) continue;
1088 FT_Bitmap
*bitmap
= &slot
->bitmap
;
1089 unsigned char* buffer
= bitmap
->buffer
;
1090 for (int y
= 0; y
< bitmap
->rows
; y
++)
1091 for (int x
= 0; x
< bitmap
->width
; x
++)
1093 unsigned char alpha
= buffer
[ y
*bitmap
->pitch
+ x
];
1094 if (alpha
== 0) continue;
1096 int xx
= pen_x
+ slot
->bitmap_left
+ x
;
1097 int yy
= pen_y
- slot
->bitmap_top
+ y
;
1098 m_alpha
[ yy
* m_area
.width
+ xx
] = alpha
;
1101 pen_x
+= slot
->advance
.x
>> 6;
1102 pen_y
+= slot
->advance
.y
>> 6;
1107 //----------------------------------------------------------------------------
1109 //----------------------------------------------------------------------------
1111 IMPLEMENT_CLASS(wxCanvas
,wxScrolledWindow
)
1113 BEGIN_EVENT_TABLE(wxCanvas
,wxScrolledWindow
)
1114 EVT_CHAR( wxCanvas::OnChar
)
1115 EVT_PAINT( wxCanvas::OnPaint
)
1116 EVT_SIZE( wxCanvas::OnSize
)
1117 EVT_IDLE( wxCanvas::OnIdle
)
1118 EVT_MOUSE_EVENTS( wxCanvas::OnMouse
)
1119 EVT_SET_FOCUS( wxCanvas::OnSetFocus
)
1120 EVT_KILL_FOCUS( wxCanvas::OnKillFocus
)
1121 EVT_ERASE_BACKGROUND( wxCanvas::OnEraseBackground
)
1124 wxCanvas::wxCanvas( wxWindow
*parent
, wxWindowID id
,
1125 const wxPoint
&position
, const wxSize
& size
, long style
) :
1126 wxScrolledWindow( parent
, id
, position
, size
, style
)
1130 m_needUpdate
= FALSE
;
1134 m_lastMouse
= (wxCanvasObject
*)NULL
;
1135 m_captureMouse
= (wxCanvasObject
*)NULL
;
1140 //root group always at 0,0
1141 m_root
= new wxCanvasObjectGroup();
1142 m_root
->DeleteContents( TRUE
);
1143 m_root
->SetOwner(this);
1146 wxCanvas::~wxCanvas()
1148 wxNode
*node
= m_updateRects
.First();
1151 wxRect
*rect
= (wxRect
*) node
->Data();
1153 m_updateRects
.DeleteNode( node
);
1154 node
= m_updateRects
.First();
1158 void wxCanvas::SetArea( int width
, int height
)
1160 SetScrollbars( 10, 10, width
/10, height
/10 );
1163 void wxCanvas::SetColour( unsigned char red
, unsigned char green
, unsigned char blue
)
1169 SetBackgroundColour( wxColour( red
, green
, blue
) );
1171 if (m_frozen
) return;
1174 unsigned char *data
= m_buffer
.GetData();
1176 for (int y
= 0; y
< m_buffer
.GetHeight(); y
++)
1177 for (int x
= 0; x
< m_buffer
.GetWidth(); x
++)
1188 dc
.SelectObject( m_buffer
);
1189 dc
.SetPen( *wxTRANSPARENT_PEN
);
1190 wxBrush
brush( wxColour( red
,green
,blue
), wxSOLID
);
1191 dc
.SetBrush( brush
);
1192 dc
.DrawRectangle( 0, 0, m_buffer
.GetWidth(), m_buffer
.GetHeight() );
1193 dc
.SelectObject( wxNullBitmap
);
1197 void wxCanvas::SetCaptureMouse( wxCanvasObject
*obj
)
1201 wxWindow::CaptureMouse();
1202 m_captureMouse
= obj
;
1206 wxWindow::ReleaseMouse();
1207 m_captureMouse
= NULL
;
1211 void wxCanvas::Freeze()
1216 void wxCanvas::Thaw()
1218 wxNode
*node
= m_updateRects
.First();
1221 wxRect
*rect
= (wxRect
*) node
->Data();
1223 m_updateRects
.DeleteNode( node
);
1224 node
= m_updateRects
.First();
1230 Update( m_bufferX
, m_bufferY
, m_buffer
.GetWidth(), m_buffer
.GetHeight() );
1233 void wxCanvas::Update( int x
, int y
, int width
, int height
, bool blit
)
1235 CalcScrolledPosition( 0, 0, &m_oldDeviceX
, &m_oldDeviceY
);
1237 if (m_frozen
) return;
1242 width
-= m_bufferX
-x
;
1245 if (width
<= 0) return;
1249 height
-= m_bufferY
-y
;
1252 if (height
<= 0) return;
1254 if (x
+width
> m_bufferX
+m_buffer
.GetWidth())
1256 width
= m_bufferX
+m_buffer
.GetWidth() - x
;
1258 if (width
<= 0) return;
1260 if (y
+height
> m_bufferY
+m_buffer
.GetHeight())
1262 height
= m_bufferY
+m_buffer
.GetHeight() - y
;
1264 if (height
<= 0) return;
1266 // update is within the buffer
1267 m_needUpdate
= TRUE
;
1269 // has to be blitted to screen later
1272 m_updateRects
.Append(
1273 (wxObject
*) new wxRect( x
,y
,width
,height
) );
1277 // speed up with direct access, maybe add wxImage::Clear(x,y,w,h,r,g,b)
1278 int start_y
= y
- m_bufferY
;
1279 int end_y
= y
+height
- m_bufferY
;
1280 int start_x
= x
- m_bufferX
;
1281 int end_x
= x
+width
- m_bufferX
;
1282 for (int yy
= start_y
; yy
< end_y
; yy
++)
1283 for (int xx
= start_x
; xx
< end_x
; xx
++)
1284 m_buffer
.SetRGB( xx
, yy
, m_red
, m_green
, m_blue
);
1286 m_root
->Render(0,0, x
, y
, width
, height
);
1289 dc
.SelectObject( m_buffer
);
1290 dc
.SetPen( *wxTRANSPARENT_PEN
);
1291 wxBrush
brush( wxColour( m_red
,m_green
,m_blue
), wxSOLID
);
1292 dc
.SetBrush( brush
);
1293 dc
.DrawRectangle( x
-m_bufferX
, y
-m_bufferY
, width
, height
);
1296 m_root
->Render(0,0, x
, y
, width
, height
);
1298 dc
.SelectObject( wxNullBitmap
);
1302 void wxCanvas::BlitBuffer( wxDC
&dc
)
1304 wxNode
*node
= m_updateRects
.First();
1307 wxRect
*rect
= (wxRect
*) node
->Data();
1309 wxRect
sub_rect( *rect
);
1310 sub_rect
.x
-= m_bufferX
;
1311 sub_rect
.y
-= m_bufferY
;
1315 wxImage
sub_image( m_buffer
.GetSubImage( sub_rect
) );
1317 int bpp
= wxDisplayDepth();
1320 // the init code is doubled in wxImage
1321 static bool s_hasInitialized
= FALSE
;
1323 if (!s_hasInitialized
)
1326 s_hasInitialized
= TRUE
;
1329 gdk_draw_rgb_image( GTK_PIZZA(m_wxwindow
)->bin_window
,
1330 m_wxwindow
->style
->black_gc
,
1331 sub_rect
.x
, sub_rect
.y
,
1332 sub_image
.GetWidth(), sub_image
.GetHeight(),
1333 GDK_RGB_DITHER_NONE
,
1334 sub_image
.GetData(),
1335 sub_image
.GetWidth()*3 );
1339 wxBitmap
bitmap( sub_image
.ConvertToBitmap() );
1340 dc
.DrawBitmap( bitmap
, rect
->x
, rect
->y
);
1343 wxBitmap
bitmap( sub_image
.ConvertToBitmap() );
1344 dc
.DrawBitmap( bitmap
, rect
->x
, rect
->y
);
1347 #else // IMAGE_CANVAS
1349 // Maybe clipping use SetClipping() is faster than
1350 // getting the subrect first and drawing it then?
1351 wxBitmap
sub_bitmap( m_buffer
.GetSubBitmap( sub_rect
) );
1352 dc
.DrawBitmap( sub_bitmap
, rect
->x
, rect
->y
);
1356 m_updateRects
.DeleteNode( node
);
1357 node
= m_updateRects
.First();
1360 m_needUpdate
= FALSE
;
1363 void wxCanvas::UpdateNow()
1365 if (m_frozen
) return;
1367 if (!m_needUpdate
) return;
1369 wxClientDC
dc( this );
1375 int wxCanvas::GetDeviceX( double x
)
1380 int wxCanvas::GetDeviceY( double y
)
1385 int wxCanvas::GetDeviceWidth( double width
)
1390 int wxCanvas::GetDeviceHeight( double height
)
1392 return (int) height
;
1395 void wxCanvas::Recreate()
1400 void wxCanvas::Prepend( wxCanvasObject
* obj
)
1402 m_root
->Prepend( obj
);
1403 obj
->SetOwner(this);
1407 if (!obj
->IsControl())
1408 Update( obj
->GetX(), obj
->GetY(), obj
->GetWidth(), obj
->GetHeight() );
1411 void wxCanvas::Append( wxCanvasObject
* obj
)
1413 m_root
->Append( obj
);
1414 obj
->SetOwner(this);
1418 if (!obj
->IsControl())
1419 Update( obj
->GetX(), obj
->GetY(), obj
->GetWidth(), obj
->GetHeight() );
1422 void wxCanvas::Insert( size_t before
, wxCanvasObject
* obj
)
1424 m_root
->Insert( before
, obj
);
1425 obj
->SetOwner(this);
1429 if (!obj
->IsControl())
1430 Update( obj
->GetX(), obj
->GetY(), obj
->GetWidth(), obj
->GetHeight() );
1433 void wxCanvas::Remove( wxCanvasObject
* obj
)
1435 int x
= obj
->GetX();
1436 int y
= obj
->GetY();
1437 int w
= obj
->GetWidth();
1438 int h
= obj
->GetHeight();
1439 bool ic
= obj
->IsControl();
1441 m_root
->Remove( obj
);
1444 Update( x
, y
, w
, h
);
1447 void wxCanvas::OnPaint(wxPaintEvent
&event
)
1452 if (!m_buffer
.Ok()) return;
1454 if (m_frozen
) return;
1456 m_needUpdate
= TRUE
;
1458 wxRegionIterator
it( GetUpdateRegion() );
1464 int w
= it
.GetWidth();
1465 int h
= it
.GetHeight();
1467 if (x
+w
> m_buffer
.GetWidth())
1468 w
= m_buffer
.GetWidth() - x
;
1469 if (y
+h
> m_buffer
.GetHeight())
1470 h
= m_buffer
.GetHeight() - y
;
1472 if ((w
> 0) && (h
> 0))
1474 CalcUnscrolledPosition( x
, y
, &x
, &y
);
1475 m_updateRects
.Append( (wxObject
*) new wxRect( x
, y
, w
, h
) );
1484 void wxCanvas::ScrollWindow( int dx
, int dy
, const wxRect
* rect
)
1486 // If any updates are pending, do them now since they will
1487 // expect the previous m_bufferX and m_bufferY as well as
1488 // the previous device origin values.
1489 wxClientDC
dc( this );
1490 dc
.SetDeviceOrigin( m_oldDeviceX
, m_oldDeviceY
);
1493 // The buffer always starts at the top left corner of the
1494 // client area. Indeed, it is the client area.
1495 CalcUnscrolledPosition( 0, 0, &m_bufferX
, &m_bufferY
);
1498 unsigned char* data
= m_buffer
.GetData();
1504 unsigned char *source
= data
;
1505 unsigned char *dest
= data
+ (dy
* m_buffer
.GetWidth() * 3);
1506 size_t count
= (size_t) (m_buffer
.GetWidth() * 3 * (m_buffer
.GetHeight()-dy
));
1507 memmove( dest
, source
, count
);
1509 // We update the new buffer area, but there is no need to
1510 // blit (last param FALSE) since the ensuing paint event will
1512 Update( m_bufferX
, m_bufferY
, m_buffer
.GetWidth(), dy
, FALSE
);
1516 unsigned char *dest
= data
;
1517 unsigned char *source
= data
+ (-dy
* m_buffer
.GetWidth() * 3);
1518 size_t count
= (size_t) (m_buffer
.GetWidth() * 3 * (m_buffer
.GetHeight()+dy
));
1519 memmove( dest
, source
, count
);
1521 // We update the new buffer area, but there is no need to
1522 // blit (last param FALSE) since the ensuing paint event will
1524 Update( m_bufferX
, m_bufferY
+m_buffer
.GetHeight()+dy
, m_buffer
.GetWidth(), -dy
, FALSE
);
1532 unsigned char *source
= data
;
1533 for (int y
= 0; y
< m_buffer
.GetHeight(); y
++)
1535 unsigned char *dest
= source
+ dx
*3;
1536 memmove( dest
, source
, (m_buffer
.GetWidth()-dx
) * 3 );
1537 source
+= m_buffer
.GetWidth()*3;
1540 // We update the new buffer area, but there is no need to
1541 // blit (last param FALSE) since the ensuing paint event will
1543 Update( m_bufferX
, m_bufferY
, dx
, m_buffer
.GetHeight(), FALSE
);
1547 unsigned char *dest
= data
;
1548 for (int y
= 0; y
< m_buffer
.GetHeight(); y
++)
1550 unsigned char *source
= dest
- dx
*3;
1551 memmove( dest
, source
, (m_buffer
.GetWidth()+dx
) * 3 );
1552 dest
+= m_buffer
.GetWidth()*3;
1555 // We update the new buffer area, but there is no need to
1556 // blit (last param FALSE) since the ensuing paint event will
1558 Update( m_bufferX
+m_buffer
.GetWidth()+dx
, m_bufferY
, -dx
, m_buffer
.GetHeight(), FALSE
);
1562 // Update everything, TODO: scrolling
1563 Update( m_bufferX
, m_bufferY
, m_buffer
.GetWidth(), m_buffer
.GetHeight(), FALSE
);
1566 wxWindow::ScrollWindow( dx
, dy
, rect
);
1569 void wxCanvas::OnMouse(wxMouseEvent
&event
)
1571 int x
= event
.GetX();
1572 int y
= event
.GetY();
1573 CalcUnscrolledPosition( x
, y
, &x
, &y
);
1575 if (event
.GetEventType() == wxEVT_MOTION
)
1577 if (m_captureMouse
) //no matter what go to this one
1579 wxMouseEvent
child_event( wxEVT_MOTION
);
1580 child_event
.SetEventObject(m_captureMouse
);
1581 child_event
.m_x
= x
- m_captureMouse
->GetX();
1582 child_event
.m_y
= y
- m_captureMouse
->GetY();
1583 child_event
.m_leftDown
= event
.m_leftDown
;
1584 child_event
.m_rightDown
= event
.m_rightDown
;
1585 child_event
.m_middleDown
= event
.m_middleDown
;
1586 child_event
.m_controlDown
= event
.m_controlDown
;
1587 child_event
.m_shiftDown
= event
.m_shiftDown
;
1588 child_event
.m_altDown
= event
.m_altDown
;
1589 child_event
.m_metaDown
= event
.m_metaDown
;
1591 m_captureMouse
->ProcessEvent( child_event
);
1596 wxCanvasObject
*obj
= m_root
->IsHitObject(x
,y
,0);
1598 if (obj
&& !obj
->IsControl())
1600 wxMouseEvent
child_event( wxEVT_MOTION
);
1601 child_event
.SetEventObject( obj
);
1602 child_event
.m_x
= x
- obj
->GetX();
1603 child_event
.m_y
= y
- obj
->GetY();
1604 child_event
.m_leftDown
= event
.m_leftDown
;
1605 child_event
.m_rightDown
= event
.m_rightDown
;
1606 child_event
.m_middleDown
= event
.m_middleDown
;
1607 child_event
.m_controlDown
= event
.m_controlDown
;
1608 child_event
.m_shiftDown
= event
.m_shiftDown
;
1609 child_event
.m_altDown
= event
.m_altDown
;
1610 child_event
.m_metaDown
= event
.m_metaDown
;
1612 if ((obj
!= m_lastMouse
) && (m_lastMouse
!= NULL
))
1614 child_event
.SetEventType( wxEVT_LEAVE_WINDOW
);
1615 child_event
.SetEventObject( m_lastMouse
);
1616 child_event
.m_x
= x
- m_lastMouse
->GetX();
1617 child_event
.m_y
= y
- m_lastMouse
->GetY();
1618 m_lastMouse
->ProcessEvent( child_event
);
1621 child_event
.SetEventType( wxEVT_ENTER_WINDOW
);
1622 child_event
.SetEventObject( m_lastMouse
);
1623 child_event
.m_x
= x
- m_lastMouse
->GetX();
1624 child_event
.m_y
= y
- m_lastMouse
->GetY();
1625 m_lastMouse
->ProcessEvent( child_event
);
1627 child_event
.SetEventType( wxEVT_MOTION
);
1628 child_event
.SetEventObject( obj
);
1631 obj
->ProcessEvent( child_event
);
1637 wxMouseEvent
child_event( wxEVT_LEAVE_WINDOW
);
1638 child_event
.SetEventObject( m_lastMouse
);
1639 child_event
.m_x
= x
- m_lastMouse
->GetX();
1640 child_event
.m_y
= y
- m_lastMouse
->GetY();
1641 child_event
.m_leftDown
= event
.m_leftDown
;
1642 child_event
.m_rightDown
= event
.m_rightDown
;
1643 child_event
.m_middleDown
= event
.m_middleDown
;
1644 child_event
.m_controlDown
= event
.m_controlDown
;
1645 child_event
.m_shiftDown
= event
.m_shiftDown
;
1646 child_event
.m_altDown
= event
.m_altDown
;
1647 child_event
.m_metaDown
= event
.m_metaDown
;
1648 m_lastMouse
->ProcessEvent( child_event
);
1650 m_lastMouse
= (wxCanvasObject
*) NULL
;
1656 if (m_captureMouse
) //no matter what go to this one
1658 wxMouseEvent
child_event( event
.GetEventType() );
1659 child_event
.SetEventObject(m_captureMouse
);
1660 child_event
.m_x
= x
- m_captureMouse
->GetX();
1661 child_event
.m_y
= y
- m_captureMouse
->GetY();
1662 child_event
.m_leftDown
= event
.m_leftDown
;
1663 child_event
.m_rightDown
= event
.m_rightDown
;
1664 child_event
.m_middleDown
= event
.m_middleDown
;
1665 child_event
.m_controlDown
= event
.m_controlDown
;
1666 child_event
.m_shiftDown
= event
.m_shiftDown
;
1667 child_event
.m_altDown
= event
.m_altDown
;
1668 child_event
.m_metaDown
= event
.m_metaDown
;
1669 m_captureMouse
->ProcessEvent( child_event
);
1673 wxCanvasObject
*obj
= m_root
->IsHitObject(x
,y
,0);
1675 if (obj
&& !obj
->IsControl())
1677 wxMouseEvent
child_event( event
.GetEventType() );
1678 child_event
.SetEventObject( obj
);
1679 child_event
.m_x
= x
- obj
->GetX();
1680 child_event
.m_y
= y
- obj
->GetY();
1681 child_event
.m_leftDown
= event
.m_leftDown
;
1682 child_event
.m_rightDown
= event
.m_rightDown
;
1683 child_event
.m_middleDown
= event
.m_middleDown
;
1684 child_event
.m_controlDown
= event
.m_controlDown
;
1685 child_event
.m_shiftDown
= event
.m_shiftDown
;
1686 child_event
.m_altDown
= event
.m_altDown
;
1687 child_event
.m_metaDown
= event
.m_metaDown
;
1689 obj
->ProcessEvent( child_event
);
1698 void wxCanvas::OnSize(wxSizeEvent
&event
)
1701 GetClientSize( &w
, &h
);
1703 m_buffer
= wxImage( w
, h
);
1705 m_buffer
= wxBitmap( w
, h
);
1708 CalcUnscrolledPosition( 0, 0, &m_bufferX
, &m_bufferY
);
1710 wxNode
*node
= m_updateRects
.First();
1713 wxRect
*rect
= (wxRect
*) node
->Data();
1715 m_updateRects
.DeleteNode( node
);
1716 node
= m_updateRects
.First();
1721 Update( m_bufferX
, m_bufferY
, m_buffer
.GetWidth(), m_buffer
.GetHeight(), FALSE
);
1726 void wxCanvas::OnIdle(wxIdleEvent
&event
)
1732 void wxCanvas::OnSetFocus(wxFocusEvent
&event
)
1736 void wxCanvas::OnKillFocus(wxFocusEvent
&event
)
1740 void wxCanvas::OnChar(wxKeyEvent
&event
)
1745 void wxCanvas::OnEraseBackground(wxEraseEvent
&event
)
1749 //--------------------------------------------------------------------
1751 //--------------------------------------------------------------------
1753 class wxCanvasModule
: public wxModule
1756 virtual bool OnInit();
1757 virtual void OnExit();
1760 DECLARE_DYNAMIC_CLASS(wxCanvasModule
)
1763 IMPLEMENT_DYNAMIC_CLASS(wxCanvasModule
, wxModule
)
1765 bool wxCanvasModule::OnInit()
1768 int error
= FT_Init_FreeType( &g_freetypeLibrary
);
1769 if (error
) return FALSE
;
1775 void wxCanvasModule::OnExit()
1778 FT_Done_FreeType( g_freetypeLibrary
);