>
> On 01.03.2008, at 16:33, cableguy67 wrote:
>
> > So far so good however. Everything builds cleanly and I hadn't found
> > any problems with CygWin current and 1.1.8rc1 and XP.
>
>
> Thanks for the info. And for the recognition ;-)
>
> Matthias
>
> ----
> http://robowerk.com/
>
>
OK, everything in the test directory checks out. The only suggestion would be 
to change the tiled_image to use Fl_Double_Window as there is a lot of flashing 
when resizing the window. image.cxx works so the alpha channel stuff is ok but 
I don't know if there is anything in the test directory that would show the 
reported problems with a transparent png.

Mark

$ svn diff ./tiled_image.cxx
Index: tiled_image.cxx
===================================================================
--- tiled_image.cxx     (revision 6062)
+++ tiled_image.cxx     (working copy)
@@ -26,7 +26,7 @@
 //

 #include <FL/Fl.H>
-#include <FL/Fl_Window.H>
+#include <FL/Fl_Double_Window.H>
 #include <FL/Fl_Button.H>
 #include <FL/Fl_Pixmap.H>
 #include <FL/Fl_Tiled_Image.H>
@@ -37,7 +37,7 @@
 #include "pixmaps/tile.xpm"

 Fl_Button *b;
-Fl_Window *w;
+Fl_Double_Window *w;

 void button_cb(Fl_Widget *,void *) {
   w->hide();
@@ -83,7 +83,7 @@
   }
 #endif

-  Fl_Window window(400,400); ::w = &window;
+  Fl_Double_Window window(400,400); ::w = &window;
   Fl_Group group(0,0,400,400);
   group.image(new Fl_Tiled_Image(new Fl_Pixmap((const char * const 
*)tile_xpm)));
   group.align(FL_ALIGN_INSIDE);

_______________________________________________
fltk-dev mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-dev

Reply via email to