Re: Atk::ObjectFactory

2009-05-28 Thread Balazs Scheidler
On Wed, 2009-05-27 at 19:55 +0200, Murray Cumming wrote: On Wed, 2009-05-27 at 12:05 +0200, Balazs Scheidler wrote: I don't understand the build system of gtkmm and I couldn't convince it to regenerate files even when I've changed the atk.defs file. Is there a document that details how

Re: Atk::ObjectFactory

2009-05-27 Thread Balazs Scheidler
On Tue, 2009-05-26 at 14:58 +0200, Murray Cumming wrote: On Tue, 2009-05-26 at 13:51 +0200, Balazs Scheidler wrote: Hi, We're trying to use dogtail atk to test our application automatically and while trying to learn the tricks involved, I've learned that I have to create

Atk::ObjectFactory

2009-05-26 Thread Balazs Scheidler
Hi, We're trying to use dogtail atk to test our application automatically and while trying to learn the tricks involved, I've learned that I have to create an accessibility class for each of our custom widgets. The problem is that the AtkObjectFactory class isn't wrapped in gtkmm and neither is

Re: Using gtkmm with Visual C++ and _SECURE_SCL=0

2008-10-18 Thread Balazs Scheidler
On Sat, 2008-10-18 at 16:30 +0200, Maik Beckmann wrote: 2008/10/18 Armin Burgmeier [EMAIL PROTECTED]: On Fri, 2008-10-17 at 16:05 +0200, Thomas Frank wrote: I searched for _SECURE_SCL in the archives but didn't get any results. Has this ever been a topic? I didn't even know this option

Re: Latest Gtkmm Installer?

2008-01-31 Thread Balazs Scheidler
On Thu, 2008-01-31 at 19:41 +0530, Surya Kiran Gullapalli wrote: Hello, I'm trying to get gtkmm-2.12.* version on windows (MSVS 2005 version). But 2.12 version of installer is not out yet. I've tried building gtkmm - 2.12 from source with MSVS2005. I had to tweak the project files, include

Re: ustring compose escaping capability

2008-01-23 Thread Balazs Scheidler
On Tue, 2008-01-22 at 15:43 -0600, Jonathon Jongsma wrote: On 1/22/08, Szilárd Pfeiffer [EMAIL PROTECTED] wrote: Hi, I have a question about the ustring::compose API. Is it purposed implementation of an escaping extension to the compose API? We have a solution for that and we would be

Re: ustring compose escaping capability

2008-01-23 Thread Balazs Scheidler
On Wed, 2008-01-23 at 11:02 -0500, Paul Davis wrote: On Wed, 2008-01-23 at 10:36 +0100, Szilard Pfeiffer wrote: I hope there will be no misunderstanding if I write it step-by-step: 1. in the glibmm there is an ustring::compose API 2. it is not possible to escaping with this API 3.

Re: ustring compose escaping capability

2008-01-23 Thread Balazs Scheidler
On Wed, 2008-01-23 at 16:51 -0500, Paul Davis wrote: On Wed, 2008-01-23 at 17:39 +0100, Balazs Scheidler wrote: In my humble opinion it is totally wrong in the way you describe. Suppose you have 100 different queries, each 2 different arguments (on average), you state that calling

accelerators in a Gtk::Window

2007-09-04 Thread Balazs Scheidler
Hi, I'd like to add some window-wide accelerators but without using a menubar or a UIManager. First I thought I'd need Gtk::AccelGroup, but that object seems to be a read-only class, it is not possible to add further accelerators as AccelGroup::connect() is not wrapped for some reason. Then I

refptr based tree model

2006-12-29 Thread Balazs Scheidler
Hi, I'm trying to create a custom tree model. My data structure contains a tree of reference counted objects. The problem I have is that I'm unable to put a Glib::RefPtrMyObject instance (which represents a node in my tree) to Gtk::TreeIter. I was following the code in examples/treemodelcustom/,

toggletoolbutton label leak?

2006-12-29 Thread Balazs Scheidler
Hi, Sorry If I'm missing something obvious, but I'm a newbie in both Gtkmm and Gtk+. I'm trying to generate toolbar entries dynamically, basically I want a nautilus like history bar, using Gtk::ToggleToolButtons to represent nodes in my tree. Thus whenever a node is selected I'm updating the

Re: refptr based tree model

2006-12-29 Thread Balazs Scheidler
On Fri, 2006-12-29 at 14:14 +0100, Balazs Scheidler wrote: My problem: 1) I cannot extend Gtk::TreeIter to define a Glib::RefPtrMyObject member 2) I cannot get a raw pointer from Glib::RefPtrMyObject which I could put into GtkTreeIter The only solution right now that I can see