Re: drawing multiple image(.pgm) using single Ggk::Pixbuf in Gtk::Drawing area

2014-07-09 Thread Kjell Ahlstedt
When you draw two images, the row stride is still 360*3, but the width of the drawing area is 720 pixels. Isn't the expected result something like the following? (n:m means image n, row m) 1:1 1:2 1:2 1:3 1:3 1:4 1:639 1:640 1:640 2:1 2014-07-03 15:57, sunil skrev: Hey All

[no subject]

2014-07-09 Thread Tejas Hs
Hello guys, I am having some performance issues with Pixbuf, specifically on windows This is the test program i am using #include #include #include int main(int argc, char *argv[]) {   Glib::RefPtr app =     Gtk::Application::create(argc, argv,   "org.gtkmm.examples.base");     Gtk:

Gtk::Application and signal_startup()

2014-07-09 Thread Christoph Brill
Hi list, I'm currently working on porting meld (the diff viewer) from pygtk to gtkmm. It basically does the following when starting: class MeldApp(Gtk.Application): def some_method(): Gtk.Application.do_startup(self) widget = builder.get_widget() self.add_window(widget