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(int x
, int 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
)
329 void wxCanvasObjectGroupRef::SetOwner(wxCanvas
* canvas
)
332 m_group
->SetOwner(canvas
);
335 void wxCanvasObjectGroupRef::ExtendArea(int x
, int 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;
356 void wxCanvasObjectGroupRef::Recreate()
360 ExtendArea(m_group
->GetXMin(),m_group
->GetYMin());
361 ExtendArea(m_group
->GetXMax(),m_group
->GetYMax());
363 //set the area in pixels relative to the parent
364 SetArea( m_owner
->GetDeviceX( m_x
+ m_minx
),
365 m_owner
->GetDeviceY( m_y
+ m_miny
),
366 m_owner
->GetDeviceWidth( m_maxx
-m_minx
),
367 m_owner
->GetDeviceHeight( m_maxy
-m_miny
) );
370 void wxCanvasObjectGroupRef::Render(int xabs
, int yabs
, int x
, int y
, int width
, int height
)
372 xabs
+= m_owner
->GetDeviceX(GetPosX());
373 yabs
+= m_owner
->GetDeviceY(GetPosY());
375 int clip_x
= xabs
+ m_group
->GetXMin();
376 int clip_width
= m_group
->GetXMax()-m_group
->GetXMin();
379 clip_width
-= x
-clip_x
;
384 if (clip_x
+ clip_width
> x
+ width
)
385 clip_width
= x
+width
-clip_x
;
389 int clip_y
= yabs
+ m_group
->GetYMin();
390 int clip_height
= m_group
->GetYMax()-m_group
->GetYMin();
393 clip_height
-= y
-clip_y
;
398 if (clip_y
+ clip_height
> y
+ height
)
399 clip_height
= y
+height
-clip_y
;
402 m_group
->Render(xabs
,yabs
, clip_x
, clip_y
, clip_width
, clip_height
);
408 void wxCanvasObjectGroupRef::WriteSVG( wxTextOutputStream
&stream
)
412 bool wxCanvasObjectGroupRef::IsHit( int x
, int y
, int margin
)
414 return m_group
->IsHit(x
-GetPosX(),y
-GetPosY(),margin
);
417 wxCanvasObject
* wxCanvasObjectGroupRef::IsHitObject( int x
, int y
, int margin
)
419 return m_group
->IsHitObject(x
-GetPosX(),y
-GetPosY(),margin
);
422 void wxCanvasObjectGroupRef::Move( int x
, int y
)
429 // TODO: sometimes faster to merge into 1 Update or
430 // to break up into four
431 m_owner
->Update(m_area
.x
, m_area
.y
, m_area
.width
, m_area
.height
);
432 //calculate the new area in pixels relative to the parent
433 SetArea( m_owner
->GetDeviceX( m_x
+ m_minx
),
434 m_owner
->GetDeviceY( m_y
+ m_miny
),
435 m_owner
->GetDeviceWidth( m_maxx
-m_minx
),
436 m_owner
->GetDeviceHeight( m_maxy
-m_miny
) );
437 m_owner
->Update( m_area
.x
, m_area
.y
, m_area
.width
, m_area
.height
);
442 //----------------------------------------------------------------------------
444 //----------------------------------------------------------------------------
446 wxCanvasRect::wxCanvasRect( double x
, double y
, double w
, double h
,
447 unsigned char red
, unsigned char green
, unsigned char blue
)
460 void wxCanvasRect::Recreate()
462 SetArea( m_owner
->GetDeviceX( m_x
),
463 m_owner
->GetDeviceY( m_y
),
464 m_owner
->GetDeviceWidth( m_width
),
465 m_owner
->GetDeviceHeight( m_height
) );
468 void wxCanvasRect::Render(int xabs
, int yabs
, int clip_x
, int clip_y
, int clip_width
, int clip_height
)
470 wxImage
*image
= m_owner
->GetBuffer();
471 int buffer_x
= m_owner
->GetBufferX();
472 int buffer_y
= m_owner
->GetBufferY();
474 int start_y
= clip_y
- buffer_y
;
475 int end_y
= clip_y
+clip_height
- buffer_y
;
477 int start_x
= clip_x
- buffer_x
;
478 int end_x
= clip_x
+clip_width
- buffer_x
;
481 for (int y
= start_y
; y
< end_y
; y
++)
482 for (int x
= start_x
; x
< end_x
; x
++)
483 image
->SetRGB( x
, y
, m_red
, m_green
, m_blue
);
486 void wxCanvasRect::WriteSVG( wxTextOutputStream
&stream
)
490 //----------------------------------------------------------------------------
492 //----------------------------------------------------------------------------
494 wxCanvasLine::wxCanvasLine( double x1
, double y1
, double x2
, double y2
,
495 unsigned char red
, unsigned char green
, unsigned char blue
)
508 void wxCanvasLine::Recreate()
510 int x1
= m_owner
->GetDeviceX( m_x1
);
511 int y1
= m_owner
->GetDeviceY( m_y1
);
512 int x2
= m_owner
->GetDeviceX( m_x2
);
513 int y2
= m_owner
->GetDeviceY( m_y2
);
526 SetArea( x1
, y1
, x2
-x1
+1, y2
-y1
+1 );
529 void wxCanvasLine::Render(int xabs
, int yabs
, int clip_x
, int clip_y
, int clip_width
, int clip_height
)
531 wxImage
*image
= m_owner
->GetBuffer();
532 int buffer_x
= m_owner
->GetBufferX();
533 int buffer_y
= m_owner
->GetBufferY();
535 if ((m_area
.width
== 0) && (m_area
.height
== 0))
537 image
->SetRGB( m_area
.x
-buffer_x
, m_area
.y
-buffer_y
, m_red
, m_green
, m_blue
);
541 int x1
= xabs
+ m_owner
->GetDeviceX( m_x1
);
542 int y1
= yabs
+ m_owner
->GetDeviceY( m_y1
);
543 int x2
= xabs
+ m_owner
->GetDeviceX( m_x2
);
544 int y2
= yabs
+ m_owner
->GetDeviceY( m_y2
);
546 wxInt32 d
, ii
, jj
, di
, ai
, si
, dj
, aj
, sj
;
549 si
= (di
< 0)? -1 : 1;
552 sj
= (dj
< 0)? -1 : 1;
564 if ((ii
>= clip_x
) && (ii
< clip_x
+clip_width
) &&
565 (jj
>= clip_y
) && (jj
< clip_y
+clip_height
))
567 image
->SetRGB( ii
-buffer_x
, jj
-buffer_y
, m_red
, m_blue
, m_green
);
585 if ((ii
>= clip_x
) && (ii
< clip_x
+clip_width
) &&
586 (jj
>= clip_y
) && (jj
< clip_y
+clip_height
))
588 image
->SetRGB( ii
-buffer_x
, jj
-buffer_y
, m_red
, m_blue
, m_green
);
602 void wxCanvasLine::WriteSVG( wxTextOutputStream
&stream
)
607 //----------------------------------------------------------------------------
609 //----------------------------------------------------------------------------
611 wxCanvasImage::wxCanvasImage( const wxImage
&image
, double x
, double y
, double w
, double h
)
623 void wxCanvasImage::Recreate()
625 SetArea( m_owner
->GetDeviceX( m_x
),
626 m_owner
->GetDeviceY( m_y
),
627 m_owner
->GetDeviceWidth( m_width
),
628 m_owner
->GetDeviceHeight( m_height
) );
630 if ((m_area
.width
== m_image
.GetWidth()) &&
631 (m_area
.width
== m_image
.GetWidth()))
634 m_tmp
= m_image
.Scale( m_area
.width
, m_area
.height
);
637 void wxCanvasImage::Render(int xabs
, int yabs
, int clip_x
, int clip_y
, int clip_width
, int clip_height
)
639 int buffer_x
= m_owner
->GetBufferX();
640 int buffer_y
= m_owner
->GetBufferY();
642 if ((clip_x
== xabs
+ m_area
.x
) &&
643 (clip_y
== yabs
+ m_area
.y
) &&
644 (clip_width
== m_area
.width
) &&
645 (clip_height
== m_area
.height
))
647 m_owner
->GetBuffer()->Paste( m_tmp
, clip_x
-buffer_x
, clip_y
-buffer_y
);
652 int start_x
= clip_x
- (xabs
+ m_area
.x
);
653 int start_y
= clip_y
- (yabs
+ m_area
.y
);
655 wxRect
rect( start_x
, start_y
, clip_width
, clip_height
);
656 wxImage
sub_image( m_tmp
.GetSubImage( rect
) );
657 m_owner
->GetBuffer()->Paste( sub_image
, clip_x
-buffer_x
, clip_y
-buffer_y
);
661 void wxCanvasImage::WriteSVG( wxTextOutputStream
&stream
)
666 //----------------------------------------------------------------------------
668 //----------------------------------------------------------------------------
670 wxCanvasControl::wxCanvasControl( wxWindow
*control
)
677 wxCanvasControl::~wxCanvasControl()
679 m_control
->Destroy();
682 void wxCanvasControl::Recreate()
684 m_control
->GetSize( &m_area
.width
, &m_area
.height
);
685 m_control
->GetPosition( &m_area
.x
, &m_area
.y
);
688 void wxCanvasControl::Move( int x
, int y
)
690 m_control
->Move( x
, y
);
693 //----------------------------------------------------------------------------
695 //----------------------------------------------------------------------------
707 wxCanvasText::wxCanvasText( const wxString
&text
, double x
, double y
, const wxString
&fontFile
, int size
)
711 m_fontFileName
= fontFile
;
724 wxFaceData
*data
= new wxFaceData
;
727 int error
= FT_New_Face( g_freetypeLibrary
,
732 error
= FT_Set_Char_Size( data
->m_face
,
740 wxCanvasText::~wxCanvasText()
743 wxFaceData
*data
= (wxFaceData
*) m_faceData
;
747 if (m_alpha
) delete [] m_alpha
;
750 void wxCanvasText::SetRGB( unsigned char red
, unsigned char green
, unsigned char blue
)
757 void wxCanvasText::SetFlag( int flag
)
762 void wxCanvasText::Render(int xabs
, int yabs
, int clip_x
, int clip_y
, int clip_width
, int clip_height
)
764 if (!m_alpha
) return;
766 wxImage
*image
= m_owner
->GetBuffer();
767 int buffer_x
= m_owner
->GetBufferX();
768 int buffer_y
= m_owner
->GetBufferY();
771 int start_x
= clip_x
- m_area
.x
;
772 int end_x
= clip_width
+ start_x
;
773 int start_y
= clip_y
- m_area
.y
;
774 int end_y
= clip_height
+ start_y
;
776 for (int y
= start_y
; y
< end_y
; y
++)
777 for (int x
= start_x
; x
< end_x
; x
++)
779 int alpha
= m_alpha
[y
*m_area
.width
+ x
];
782 int image_x
= m_area
.x
+x
- buffer_x
;
783 int image_y
= m_area
.y
+y
- buffer_y
;
786 image
->SetRGB( image_x
, image_y
, m_red
, m_green
, m_blue
);
789 int red1
= (m_red
* alpha
) / 255;
790 int green1
= (m_green
* alpha
) / 255;
791 int blue1
= (m_blue
* alpha
) / 255;
794 int red2
= image
->GetRed( image_x
, image_y
);
795 int green2
= image
->GetGreen( image_x
, image_y
);
796 int blue2
= image
->GetBlue( image_x
, image_y
);
797 red2
= (red2
* alpha
) / 255;
798 green2
= (green2
* alpha
) / 255;
799 blue2
= (blue2
* alpha
) / 255;
801 image
->SetRGB( image_x
, image_y
, red1
+red2
, green1
+green2
, blue1
+blue2
);
806 void wxCanvasText::WriteSVG( wxTextOutputStream
&stream
)
810 void wxCanvasText::Recreate()
812 if (m_alpha
) delete [] m_alpha
;
814 m_area
.x
= m_owner
->GetDeviceX( m_x
);
815 m_area
.y
= m_owner
->GetDeviceY( m_y
);
817 m_area
.width
= 100; // TODO, calculate length
818 m_area
.height
= m_size
;
819 m_alpha
= new unsigned char[100*m_size
];
820 memset( m_alpha
, 0, m_area
.width
*m_area
.height
);
823 FT_Face face
= ((wxFaceData
*)m_faceData
)->m_face
;
824 FT_GlyphSlot slot
= face
->glyph
;
828 for (int n
= 0; n
< (int)m_text
.Len(); n
++)
830 FT_UInt index
= FT_Get_Char_Index( face
, m_text
[n
] );
832 int error
= FT_Load_Glyph( face
, index
, FT_LOAD_DEFAULT
);
835 error
= FT_Render_Glyph( face
->glyph
, ft_render_mode_normal
);
838 FT_Bitmap
*bitmap
= &slot
->bitmap
;
839 unsigned char* buffer
= bitmap
->buffer
;
840 for (int y
= 0; y
< bitmap
->rows
; y
++)
841 for (int x
= 0; x
< bitmap
->width
; x
++)
843 unsigned char alpha
= buffer
[ y
*bitmap
->pitch
+ x
];
844 if (alpha
== 0) continue;
846 int xx
= pen_x
+ slot
->bitmap_left
+ x
;
847 int yy
= pen_y
- slot
->bitmap_top
+ y
;
848 m_alpha
[ yy
* m_area
.width
+ xx
] = alpha
;
851 pen_x
+= slot
->advance
.x
>> 6;
852 pen_y
+= slot
->advance
.y
>> 6;
857 //----------------------------------------------------------------------------
859 //----------------------------------------------------------------------------
861 IMPLEMENT_CLASS(wxCanvas
,wxScrolledWindow
)
863 BEGIN_EVENT_TABLE(wxCanvas
,wxScrolledWindow
)
864 EVT_CHAR( wxCanvas::OnChar
)
865 EVT_PAINT( wxCanvas::OnPaint
)
866 EVT_SIZE( wxCanvas::OnSize
)
867 EVT_IDLE( wxCanvas::OnIdle
)
868 EVT_MOUSE_EVENTS( wxCanvas::OnMouse
)
869 EVT_SET_FOCUS( wxCanvas::OnSetFocus
)
870 EVT_KILL_FOCUS( wxCanvas::OnKillFocus
)
871 EVT_ERASE_BACKGROUND( wxCanvas::OnEraseBackground
)
874 wxCanvas::wxCanvas( wxWindow
*parent
, wxWindowID id
,
875 const wxPoint
&position
, const wxSize
& size
, long style
) :
876 wxScrolledWindow( parent
, id
, position
, size
, style
)
880 m_needUpdate
= FALSE
;
884 m_lastMouse
= (wxCanvasObject
*)NULL
;
885 m_captureMouse
= (wxCanvasObject
*)NULL
;
887 m_requestNewBuffer
= TRUE
;
889 //root group always at 0,0
890 m_root
= new wxCanvasObjectGroup();
891 m_root
->DeleteContents( TRUE
);
892 m_root
->SetOwner(this);
895 wxCanvas::~wxCanvas()
897 wxNode
*node
= m_updateRects
.First();
900 wxRect
*rect
= (wxRect
*) node
->Data();
902 m_updateRects
.DeleteNode( node
);
903 node
= m_updateRects
.First();
907 void wxCanvas::SetArea( int width
, int height
)
909 SetScrollbars( 10, 10, width
/10, height
/10 );
912 void wxCanvas::SetColour( unsigned char red
, unsigned char green
, unsigned char blue
)
918 SetBackgroundColour( wxColour( red
, green
, blue
) );
920 if (m_frozen
) return;
922 unsigned char *data
= m_buffer
.GetData();
924 for (int y
= 0; y
< m_buffer
.GetHeight(); y
++)
925 for (int x
= 0; x
< m_buffer
.GetWidth(); x
++)
936 void wxCanvas::SetCaptureMouse( wxCanvasObject
*obj
)
940 wxWindow::CaptureMouse();
941 m_captureMouse
= obj
;
945 wxWindow::ReleaseMouse();
946 m_captureMouse
= NULL
;
950 void wxCanvas::Freeze()
955 void wxCanvas::Thaw()
957 wxNode
*node
= m_updateRects
.First();
960 wxRect
*rect
= (wxRect
*) node
->Data();
962 m_updateRects
.DeleteNode( node
);
963 node
= m_updateRects
.First();
969 Update( m_bufferX
, m_bufferY
, m_buffer
.GetWidth(), m_buffer
.GetHeight() );
972 void wxCanvas::Update( int x
, int y
, int width
, int height
, bool blit
)
974 if (m_frozen
) return;
979 width
-= m_bufferX
-x
;
982 if (width
< 0) return;
986 height
-= m_bufferY
-y
;
989 if (height
< 0) return;
991 if (x
+width
> m_bufferX
+m_buffer
.GetWidth())
993 width
= m_bufferX
+m_buffer
.GetWidth() - x
;
995 if (width
< 0) return;
997 if (y
+height
> m_bufferY
+m_buffer
.GetHeight())
999 height
= m_bufferY
+m_buffer
.GetHeight() - y
;
1001 if (height
< 0) return;
1003 // update is within the buffer
1004 m_needUpdate
= TRUE
;
1006 // has to be blitted to screen later
1009 m_updateRects
.Append(
1010 (wxObject
*) new wxRect( x
,y
,width
,height
) );
1013 // speed up with direct access, maybe add wxImage::Clear(x,y,w,h,r,g,b)
1014 int start_y
= y
- m_bufferY
;
1015 int end_y
= y
+height
- m_bufferY
;
1016 int start_x
= x
- m_bufferX
;
1017 int end_x
= x
+width
- m_bufferX
;
1018 for (int yy
= start_y
; yy
< end_y
; yy
++)
1019 for (int xx
= start_x
; xx
< end_x
; xx
++)
1020 m_buffer
.SetRGB( xx
, yy
, m_red
, m_green
, m_blue
);
1022 m_root
->Render(0,0, x
, y
, width
, height
);
1026 void wxCanvas::BlitBuffer( wxDC
&dc
)
1028 wxNode
*node
= m_updateRects
.First();
1031 wxRect
*rect
= (wxRect
*) node
->Data();
1033 wxRect
sub_rect( *rect
);
1034 sub_rect
.x
-= m_bufferX
;
1035 sub_rect
.y
-= m_bufferY
;
1037 wxImage
sub_image( m_buffer
.GetSubImage( sub_rect
) );
1040 int bpp
= wxDisplayDepth();
1043 // the init code is doubled in wxImage
1044 static bool s_hasInitialized
= FALSE
;
1046 if (!s_hasInitialized
)
1049 s_hasInitialized
= TRUE
;
1052 gdk_draw_rgb_image( GTK_PIZZA(m_wxwindow
)->bin_window
,
1053 m_wxwindow
->style
->black_gc
,
1054 sub_rect
.x
, sub_rect
.y
,
1055 sub_image
.GetWidth(), sub_image
.GetHeight(),
1056 GDK_RGB_DITHER_NONE
,
1057 sub_image
.GetData(),
1058 sub_image
.GetWidth()*3 );
1062 wxBitmap
bitmap( sub_image
.ConvertToBitmap() );
1063 dc
.DrawBitmap( bitmap
, rect
->x
, rect
->y
);
1068 wxBitmap
bitmap( sub_image
.ConvertToBitmap() );
1069 dc
.DrawBitmap( bitmap
, rect
->x
, rect
->y
);
1073 m_updateRects
.DeleteNode( node
);
1074 node
= m_updateRects
.First();
1077 m_needUpdate
= FALSE
;
1080 void wxCanvas::UpdateNow()
1082 if (m_frozen
) return;
1084 if (!m_needUpdate
) return;
1086 wxClientDC
dc( this );
1092 int wxCanvas::GetDeviceX( double x
)
1097 int wxCanvas::GetDeviceY( double y
)
1102 int wxCanvas::GetDeviceWidth( double width
)
1107 int wxCanvas::GetDeviceHeight( double height
)
1109 return (int) height
;
1112 void wxCanvas::Recreate()
1117 void wxCanvas::Prepend( wxCanvasObject
* obj
)
1119 m_root
->Prepend( obj
);
1120 obj
->SetOwner(this);
1124 if (!obj
->IsControl())
1125 Update( obj
->GetX(), obj
->GetY(), obj
->GetWidth(), obj
->GetHeight() );
1128 void wxCanvas::Append( wxCanvasObject
* obj
)
1130 m_root
->Append( obj
);
1131 obj
->SetOwner(this);
1135 if (!obj
->IsControl())
1136 Update( obj
->GetX(), obj
->GetY(), obj
->GetWidth(), obj
->GetHeight() );
1139 void wxCanvas::Insert( size_t before
, wxCanvasObject
* obj
)
1141 m_root
->Insert( before
, obj
);
1142 obj
->SetOwner(this);
1146 if (!obj
->IsControl())
1147 Update( obj
->GetX(), obj
->GetY(), obj
->GetWidth(), obj
->GetHeight() );
1150 void wxCanvas::Remove( wxCanvasObject
* obj
)
1152 int x
= obj
->GetX();
1153 int y
= obj
->GetY();
1154 int w
= obj
->GetWidth();
1155 int h
= obj
->GetHeight();
1156 bool ic
= obj
->IsControl();
1158 m_root
->Remove( obj
);
1161 Update( x
, y
, w
, h
);
1164 void wxCanvas::OnPaint(wxPaintEvent
&event
)
1169 if (!m_buffer
.Ok()) return;
1171 if (m_frozen
) return;
1173 m_needUpdate
= TRUE
;
1175 wxRegionIterator
it( GetUpdateRegion() );
1181 int w
= it
.GetWidth();
1182 int h
= it
.GetHeight();
1184 if (x
+w
> m_buffer
.GetWidth())
1185 w
= m_buffer
.GetWidth() - x
;
1186 if (y
+h
> m_buffer
.GetHeight())
1187 h
= m_buffer
.GetHeight() - y
;
1189 if ((w
> 0) && (h
> 0))
1191 CalcUnscrolledPosition( x
, y
, &x
, &y
);
1192 m_updateRects
.Append( (wxObject
*) new wxRect( x
, y
, w
, h
) );
1201 void wxCanvas::ScrollWindow( int dx
, int dy
, const wxRect
* rect
)
1203 // If any updates are pending, do them now since they will
1204 // expect the previous m_bufferX and m_bufferY values.
1207 // The buffer always starts at the top left corner of the
1208 // client area. Indeed, it is the client area.
1209 CalcUnscrolledPosition( 0, 0, &m_bufferX
, &m_bufferY
);
1211 unsigned char* data
= m_buffer
.GetData();
1217 unsigned char *source
= data
;
1218 unsigned char *dest
= data
+ (dy
* m_buffer
.GetWidth() * 3);
1219 size_t count
= (size_t) (m_buffer
.GetWidth() * 3 * (m_buffer
.GetHeight()-dy
));
1220 memmove( dest
, source
, count
);
1222 // We update the new buffer area, but there is no need to
1223 // blit (last param FALSE) since the ensuing paint event will
1225 Update( m_bufferX
, m_bufferY
, m_buffer
.GetWidth(), dy
, FALSE
);
1229 unsigned char *dest
= data
;
1230 unsigned char *source
= data
+ (-dy
* m_buffer
.GetWidth() * 3);
1231 size_t count
= (size_t) (m_buffer
.GetWidth() * 3 * (m_buffer
.GetHeight()+dy
));
1232 memmove( dest
, source
, count
);
1234 // We update the new buffer area, but there is no need to
1235 // blit (last param FALSE) since the ensuing paint event will
1237 Update( m_bufferX
, m_bufferY
+m_buffer
.GetHeight()+dy
, m_buffer
.GetWidth(), -dy
, FALSE
);
1245 unsigned char *source
= data
;
1246 for (int y
= 0; y
< m_buffer
.GetHeight(); y
++)
1248 unsigned char *dest
= source
+ dx
*3;
1249 memmove( dest
, source
, (m_buffer
.GetWidth()-dx
) * 3 );
1250 source
+= m_buffer
.GetWidth()*3;
1253 // We update the new buffer area, but there is no need to
1254 // blit (last param FALSE) since the ensuing paint event will
1256 Update( m_bufferX
, m_bufferY
, dx
, m_buffer
.GetHeight(), FALSE
);
1260 unsigned char *dest
= data
;
1261 for (int y
= 0; y
< m_buffer
.GetHeight(); y
++)
1263 unsigned char *source
= dest
- dx
*3;
1264 memmove( dest
, source
, (m_buffer
.GetWidth()+dx
) * 3 );
1265 dest
+= m_buffer
.GetWidth()*3;
1268 // We update the new buffer area, but there is no need to
1269 // blit (last param FALSE) since the ensuing paint event will
1271 Update( m_bufferX
+m_buffer
.GetWidth()+dx
, m_bufferY
, -dx
, m_buffer
.GetHeight(), FALSE
);
1275 wxWindow::ScrollWindow( dx
, dy
, rect
);
1278 void wxCanvas::OnMouse(wxMouseEvent
&event
)
1280 int x
= event
.GetX();
1281 int y
= event
.GetY();
1282 CalcUnscrolledPosition( x
, y
, &x
, &y
);
1284 if (event
.GetEventType() == wxEVT_MOTION
)
1286 if (m_captureMouse
) //no matter what go to this one
1288 wxMouseEvent
child_event( wxEVT_MOTION
);
1289 child_event
.SetEventObject(m_captureMouse
);
1290 child_event
.m_x
= x
- m_captureMouse
->GetX();
1291 child_event
.m_y
= y
- m_captureMouse
->GetY();
1292 child_event
.m_leftDown
= event
.m_leftDown
;
1293 child_event
.m_rightDown
= event
.m_rightDown
;
1294 child_event
.m_middleDown
= event
.m_middleDown
;
1295 child_event
.m_controlDown
= event
.m_controlDown
;
1296 child_event
.m_shiftDown
= event
.m_shiftDown
;
1297 child_event
.m_altDown
= event
.m_altDown
;
1298 child_event
.m_metaDown
= event
.m_metaDown
;
1299 m_captureMouse
->ProcessEvent( child_event
);
1303 wxCanvasObject
*obj
= m_root
->IsHitObject(x
,y
,0);
1305 if (obj
&& !obj
->IsControl())
1307 wxMouseEvent
child_event( wxEVT_MOTION
);
1308 child_event
.SetEventObject( obj
);
1309 child_event
.m_x
= x
- obj
->GetX();
1310 child_event
.m_y
= y
- obj
->GetY();
1311 child_event
.m_leftDown
= event
.m_leftDown
;
1312 child_event
.m_rightDown
= event
.m_rightDown
;
1313 child_event
.m_middleDown
= event
.m_middleDown
;
1314 child_event
.m_controlDown
= event
.m_controlDown
;
1315 child_event
.m_shiftDown
= event
.m_shiftDown
;
1316 child_event
.m_altDown
= event
.m_altDown
;
1317 child_event
.m_metaDown
= event
.m_metaDown
;
1319 if ((obj
!= m_lastMouse
) && (m_lastMouse
!= NULL
))
1321 child_event
.SetEventType( wxEVT_LEAVE_WINDOW
);
1322 child_event
.SetEventObject( m_lastMouse
);
1323 child_event
.m_x
= x
- m_lastMouse
->GetX();
1324 child_event
.m_y
= y
- m_lastMouse
->GetY();
1325 m_lastMouse
->ProcessEvent( child_event
);
1328 child_event
.SetEventType( wxEVT_ENTER_WINDOW
);
1329 child_event
.SetEventObject( m_lastMouse
);
1330 child_event
.m_x
= x
- m_lastMouse
->GetX();
1331 child_event
.m_y
= y
- m_lastMouse
->GetY();
1332 m_lastMouse
->ProcessEvent( child_event
);
1334 child_event
.SetEventType( wxEVT_MOTION
);
1335 child_event
.SetEventObject( obj
);
1337 obj
->ProcessEvent( child_event
);
1343 wxMouseEvent
child_event( wxEVT_LEAVE_WINDOW
);
1344 child_event
.SetEventObject( m_lastMouse
);
1345 child_event
.m_x
= x
- m_lastMouse
->GetX();
1346 child_event
.m_y
= y
- m_lastMouse
->GetY();
1347 child_event
.m_leftDown
= event
.m_leftDown
;
1348 child_event
.m_rightDown
= event
.m_rightDown
;
1349 child_event
.m_middleDown
= event
.m_middleDown
;
1350 child_event
.m_controlDown
= event
.m_controlDown
;
1351 child_event
.m_shiftDown
= event
.m_shiftDown
;
1352 child_event
.m_altDown
= event
.m_altDown
;
1353 child_event
.m_metaDown
= event
.m_metaDown
;
1354 m_lastMouse
->ProcessEvent( child_event
);
1356 m_lastMouse
= (wxCanvasObject
*) NULL
;
1364 void wxCanvas::OnSize(wxSizeEvent
&event
)
1367 GetClientSize( &w
, &h
);
1368 m_buffer
= wxImage( w
, h
);
1370 CalcUnscrolledPosition( 0, 0, &m_bufferX
, &m_bufferY
);
1372 wxNode
*node
= m_updateRects
.First();
1375 wxRect
*rect
= (wxRect
*) node
->Data();
1377 m_updateRects
.DeleteNode( node
);
1378 node
= m_updateRects
.First();
1383 Update( m_bufferX
, m_bufferY
, m_buffer
.GetWidth(), m_buffer
.GetHeight(), FALSE
);
1388 void wxCanvas::OnIdle(wxIdleEvent
&event
)
1394 void wxCanvas::OnSetFocus(wxFocusEvent
&event
)
1398 void wxCanvas::OnKillFocus(wxFocusEvent
&event
)
1402 void wxCanvas::OnChar(wxKeyEvent
&event
)
1407 void wxCanvas::OnEraseBackground(wxEraseEvent
&event
)
1411 //--------------------------------------------------------------------
1413 //--------------------------------------------------------------------
1415 class wxCanvasModule
: public wxModule
1418 virtual bool OnInit();
1419 virtual void OnExit();
1422 DECLARE_DYNAMIC_CLASS(wxCanvasModule
)
1425 IMPLEMENT_DYNAMIC_CLASS(wxCanvasModule
, wxModule
)
1427 bool wxCanvasModule::OnInit()
1430 int error
= FT_Init_FreeType( &g_freetypeLibrary
);
1431 if (error
) return FALSE
;
1437 void wxCanvasModule::OnExit()
1440 FT_Done_FreeType( g_freetypeLibrary
);