From ba0730de65d6a867bdb3ed506628a99a8ed5ec95 Mon Sep 17 00:00:00 2001 From: Robert Roebling Date: Fri, 16 Apr 1999 09:52:32 +0000 Subject: [PATCH] wxImage now uses GTK 1.2's fast rendering code if possible git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@2190 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- samples/controls/controls.cpp | 2 +- samples/image/image.cpp | 2 -- src/common/image.cpp | 63 ++++++++++++++++++++++++++--------- 3 files changed, 49 insertions(+), 18 deletions(-) diff --git a/samples/controls/controls.cpp b/samples/controls/controls.cpp index 9b02248738..ed994f58f5 100644 --- a/samples/controls/controls.cpp +++ b/samples/controls/controls.cpp @@ -182,7 +182,7 @@ bool MyApp::OnInit() file_menu->Append(MINIMAL_ABOUT, "&About"); file_menu->Append(MINIMAL_QUIT, "E&xit"); - wxMenuBar *menu_bar = new wxMenuBar; + wxMenuBar *menu_bar = new wxMenuBar( wxMB_DOCKABLE ); menu_bar->Append(file_menu, "&File"); #if wxUSE_TOOLTIPS diff --git a/samples/image/image.cpp b/samples/image/image.cpp index 16c2120ba9..4b4f1104b6 100644 --- a/samples/image/image.cpp +++ b/samples/image/image.cpp @@ -114,8 +114,6 @@ MyCanvas::MyCanvas( wxWindow *parent, wxWindowID id, image.LoadFile( dir + wxString("test.png"), wxBITMAP_TYPE_PNG ); my_square = new wxBitmap( image.ConvertToBitmap() ); - (void)new wxTextCtrl( this, -1, "", wxPoint(10,200), wxSize(120,-1) ); - CreateAntiAliasedBitmap(); } diff --git a/src/common/image.cpp b/src/common/image.cpp index 0aaa5d908d..08cf535a6a 100644 --- a/src/common/image.cpp +++ b/src/common/image.cpp @@ -1277,6 +1277,10 @@ wxImage::wxImage( const wxBitmap &bitmap ) #include "gdk/gdk.h" #include "gdk/gdkx.h" +#if (GTK_MINOR_VERSION > 0) +#include "gdk/gdkrgb.h" +#endif + wxBitmap wxImage::ConvertToBitmap() const { wxBitmap bitmap; @@ -1289,14 +1293,54 @@ wxBitmap wxImage::ConvertToBitmap() const bitmap.SetHeight( height ); bitmap.SetWidth( width ); - // Create picture + bitmap.SetPixmap( gdk_pixmap_new( (GdkWindow*)&gdk_root_parent, width, height, -1 ) ); + + // Retrieve depth + + GdkVisual *visual = gdk_window_get_visual( bitmap.GetPixmap() ); + if (visual == NULL) visual = gdk_window_get_visual( (GdkWindow*) &gdk_root_parent ); + int bpp = visual->depth; + + bitmap.SetDepth( bpp ); + + if ((bpp == 16) && (visual->red_mask != 0xf800)) bpp = 15; + if (bpp < 8) bpp = 8; + +#if (GTK_MINOR_VERSION > 0) + + if (!HasMask() && (bpp > 8)) + { + static bool s_hasInitialized = FALSE; + + if (!s_hasInitialized) + { + gdk_rgb_init(); + s_hasInitialized = TRUE; + } + + GdkGC *gc = gdk_gc_new( bitmap.GetPixmap() ); + + gdk_draw_rgb_image( bitmap.GetPixmap(), + gc, + 0, 0, + width, height, + GDK_RGB_DITHER_NONE, + GetData(), + width*3 ); + + gdk_gc_unref( gc ); + + return bitmap; + } + +#endif + + // Create picture image GdkImage *data_image = gdk_image_new( GDK_IMAGE_FASTEST, gdk_visual_get_system(), width, height ); - bitmap.SetPixmap( gdk_pixmap_new( (GdkWindow*)&gdk_root_parent, width, height, -1 ) ); - - // Create mask + // Create mask image GdkImage *mask_image = (GdkImage*) NULL; @@ -1312,17 +1356,6 @@ wxBitmap wxImage::ConvertToBitmap() const bitmap.SetMask( mask ); } - // Retrieve depth - - GdkVisual *visual = gdk_window_get_visual( bitmap.GetPixmap() ); - if (visual == NULL) visual = gdk_window_get_visual( (GdkWindow*) &gdk_root_parent ); - int bpp = visual->depth; - - bitmap.SetDepth( bpp ); - - if ((bpp == 16) && (visual->red_mask != 0xf800)) bpp = 15; - if (bpp < 8) bpp = 8; - // Render enum byte_order { RGB, RBG, BRG, BGR, GRB, GBR }; -- 2.45.2