Re: Gtkmm Windows Maintainership

2008-07-15 Thread Jens Georg
Hi Armin, Hi Cedric, I would like to experiment with building gtkmm and companion libraries on Windows with mingw and MSVC, to eventually take over maintainership of the Windows installer at least temporarily and/or partially. In a mail from April 2008 [1], you proposed to put the installer

up-to-date libglade-dev package for win32

2008-07-16 Thread Jens Georg
Hi, I'm looking for an up-to-date libglade-dev package including the msvc *.lib files to compile libglademm . The package on ftp.gnome.org only includes the .dll.a for mingw and the package on gladewin32.sf.net is missing Changeset 539, it seems, because I run exactly into this error.

Re: up-to-date libglade-dev package for win32

2008-07-16 Thread Jens Georg
I'm looking for an up-to-date libglade-dev package including the msvc *.lib files to compile libglademm . The package on ftp.gnome.org only includes the .dll.a for mingw and the package on gladewin32.sf.net is missing Changeset 539, it seems, because I run exactly into this error. Nevermind.

Re: Gtkmm Windows Maintainership

2008-07-17 Thread Jens Georg
You should maybe add the project files into the subversion repositories, so that it is easy for others to build the libraries using the same compiler. The project files for MSVC 7 from SVN are just fine to use with MSVC 9 despite from the two patches I already sent to bugzilla, but that's a

Re: Libpng DLL conflict

2008-07-29 Thread Jens Georg
I have been having trouble with libpng, a noticed that it was calling libpng12.dll from the GTK/bin folder instead of libpng.dll from the applications folder. As there may be a version conflict, I would like my program to use the local copy, although presumably GTK may need to use it's

Re: Glibmm Compilation.

2008-07-30 Thread Jens Georg
c2001: newline in constant. Just a wild guess: - Some weird \n vs. \r\n linefeed issue? - accidently edited file? ___ gtkmm-list mailing list gtkmm-list@gnome.org http://mail.gnome.org/mailman/listinfo/gtkmm-list

Crash in Glib::Object::~Object()

2008-08-09 Thread Jens Georg
Dear List, I'm on Windows using a self-compiled gtkmm with MSVC 2008. When defining derivatives from Glib::Object, I experience a crash upon destruction, even for simple cases as: class Foo : public Glib::Object { public: Foo() : Glib::ObjectBase(typeid(Foo)),

Re: Embed movie player using mplayer - How to execute mplayer (fork?)

2008-08-18 Thread Jens Georg
How can I execute mplayer in my program? I tried using fork but didn't work... When I create a graphic app I need a different aproach? And to be more complicated I need a solution that works on linux and windows... :'( Glib provides an abstraction layer above the various OS process spawning

Re: Embed movie player using mplayer - How to execute mplayer (fork?)

2008-08-19 Thread Jens Georg
Sorry Paulo, I sent reply to one, first. One quick gotcha is that argv contains a vector of all the command options. These are typically separated by spaces when typed on the command line. However, your example has the whole command as one option. So put the wid to a std::string,

Re: Gtkmm Windows Runtime Installer - Silent Option

2008-10-14 Thread Jens Georg
Yes, I think this is fairly common on Windows. Even MS doesn't seem to have a good-enough record of ABI stability for all their DLLs, plus installers are rarely well-behaved, so they can easily overwrite each other's DLLs if they are shared. Opinions differ. At least Microsoft is trying to

Re: linkbutton and documentation

2009-10-21 Thread Jens Georg
And.. about the documentation... Since the doc is on gnome lib, i can hardly find anything. Before, I had this link: http://www.gtkmm.org/docs/gtkmm-2.4/docs/ and from that I could find anything like: Glib, Gio, ustring, any widget etc. I really used to it to find things there. Now if I

Re: Converting signal code from RubyGTK to Gtkmm

2010-07-10 Thread Jens Georg
$image.signal_connect('expose_event') do if $rgb == nil || $rgb.length != $iwidth*$iheight*3 puts 'rgb buffer is null or wrong length' else Gdk::RGB.draw_rgb_image($image.window, $image.style.fg_gc($image.state), 0, 0, $iwidth, $iheight,

soupmm status

2011-02-05 Thread Jens Georg
Hi, I'm in the process of binding the GUPnP stack for *mm.. GUPnP uses libsoup for all the heavy HTTP lifting so some of the classes and functions return/need various bits and pieces from soup. I found that there is a soupmm repository on git.gnome.org, but the last commit looks like it's been

Re: soupmm status

2011-02-11 Thread Jens Georg
Hi! Maybe try to contact with him by deviantart (he was there 20h ago) or by the Facebook or by other webpage where he has a profile http://siavashs.org/about Ah, thanks, the gmail address worked :) ___ gtkmm-list mailing list

Re: Using gtkmm and gtk+ in one application

2011-02-28 Thread Jens Georg
On Sun, 2011-02-27 at 18:36 +0100, Stefan Westerfeld wrote: To see if that would work, I've tried to use a gtk+ hello world, written in C. Then I added a file written in C++, which would create a Gtk::Main object (after gtk_init was called by the C application), and then some widgets. That

Re: Wrapping Clutter functions.

2011-09-04 Thread Jens Georg
On So, 2011-09-04 at 04:32 -0700, Ian Martin wrote: The return value is a pointer to the object itself. In C I believe this helps chain the function; I'm struggling to see why I'd bother in C++. So can I change it to return void (or mabe bool?) or is that messing with the library too much?

Re: Virtual Keyboard

2012-05-02 Thread Jens Georg
On Mo, 2012-04-30 at 15:55 -0700, kenton.wil...@gmail.com wrote: On Mon, 30 Apr 2012 23:39:13 +0200, Florian Philipp li...@binarywings.net wrote: Am 30.04.2012 23:31, schrieb kenton.wil...@gmail.com: What environment are we talking about? Linux with X-Server? Regards, Florian Philipp

Re: g_hash_table

2013-03-06 Thread Jens Georg
[ g_hash_table_* missing ] This isn't a criticism BTW. I'm just curious to know why it's missing. I suppose there's no real need to bind that with std::map and std::hash available. ___ gtkmm-list mailing list gtkmm-list@gnome.org

Re: gtkmm 3 win32?

2013-09-06 Thread Jens Georg
Nice effort! Given that sf has started acting odd by adding weird installers [1] that download even weirder toolbars[2] [1]http://www.davescomputertips.com/sourceforges-new-installer-bundles-adware/ [2]http://sourceforge.net/devshare/why I'd probably chose a different hosting site. Hi guys,

Re: An instance of Gdk::PixbufError is throwing...

2013-10-31 Thread Jens Georg
Hi, Glib::RefPtr Gdk::Pixbuf m_pixbuf = Gdk::Pixbuf::create_from_file (Glib::build_filename (DATADIR, picture.svg), 130, 130); Is it normal that this code that ran perfectly in past now produces an abortion in runtime ? With a message like, terminate called after throwing

Re: Trapping Glib critical error messages

2019-08-08 Thread Jens Georg
On Do, Aug 8, 2019 at 9:12 AM, Kjell Ahlstedt via gtkmm-list wrote: Or, in gdb: break g_log You might want to set a condition then, though, because some things are quite debug-chatty ___ gtkmm-list mailing list gtkmm-list@gnome.org