Re: Referring to libstdc++

2013-10-29 Thread fr33domlover
Anyone has an advice for me? On ו', 2013-10-11 at 12:36 +0300, fr33domlover wrote: Hello, I'm writing software in C++, and I use Doxygen for API docs. I noticed that mm-common comes with a doxygen file for libstdc++, so all mm-common users (gtkmm, glibmm, etc.) can refer to it. But it seems

Re: Strange initialization problem with Gtk::Main

2013-10-29 Thread Murray Cumming
On Mon, 2013-10-28 at 18:42 +, John Emmas wrote: Forgive me if this isn't the right place for asking questions about glibmm. I couldn't find a specific mailing list for it. I have 2 x gtkmm applications, both written using MSVC. I should add that I have several years experience with

Re: Referring to libstdc++

2013-10-29 Thread Murray Cumming
On Tue, 2013-10-29 at 16:23 +0200, fr33domlover wrote: Is there a reason a doxygen doc package for libstdc++ is not shipped with GNU/Linux distros? Isn't this something that you would ask a distro packager about? -- Murray Cumming murr...@murrayc.com www.murrayc.com www.openismus.com

Re: Referring to libstdc++

2013-10-29 Thread Krzesimir Nowak
2013/10/11 fr33domlover fr33domlo...@mailoo.org Hello, I'm writing software in C++, and I use Doxygen for API docs. I noticed that mm-common comes with a doxygen file for libstdc++, so all mm-common users (gtkmm, glibmm, etc.) can refer to it. But it seems to download its own specific copy

Re: Glibmm: list object property names

2013-10-29 Thread Marcin Kolny
W dniu 25.10.2013 09:55, Dirk Van Haerenborgh pisze: Hi, I'm working on an application that has to generate a user interface based on the properties of a given object (a Gst::Element). Since I cannot know upfront what properties are installed on the object class, I'm looking for an alternative

Re: Strange initialization problem with Gtk::Main

2013-10-29 Thread John Emmas
On 29/10/2013 15:59, Murray Cumming wrote: What is the actual problem that you are seeing? Hi Murray, I built two programs. The small one runs perfectly but the larger one crashes before anything even appears on screen. In 'gtk/gtkmm/main.cc', the function 'init_gtkmm_internals()' fails

Re: Strange initialization problem with Gtk::Main

2013-10-29 Thread Murray Cumming
On Tue, 2013-10-29 at 17:04 +, John Emmas wrote: On 29/10/2013 15:59, Murray Cumming wrote: What is the actual problem that you are seeing? Hi Murray, I built two programs. The small one runs perfectly but the larger one crashes before anything even appears on screen. Do you

Re: Glibmm: list object property names

2013-10-29 Thread Murray Cumming
You may at least use glibmm's .defs-generating code for this as inspiration: https://git.gnome.org/browse/glibmm/tree/tools/extra_defs_gen/generate_extra_defs.cc -- Murray Cumming murr...@murrayc.com www.murrayc.com www.openismus.com ___ gtkmm-list

Re: Strange initialization problem with Gtk::Main

2013-10-29 Thread John Emmas
On 29/10/2013 17:12, Murray Cumming wrote: Are you trying to instantiate a gtkmm type before gtkmm has been initialized? For instance are you using a gtkmm type in a global static object? Not that exactly but essentially I think that's the problem. The program that works is a very simple