Luc Secouard
Luc Secouard
Yes and as I have kept a reference to the ListStore in my application object, I don’t even need to create a getListStore procedure. Being able to call the TreeModel...
If it may be of some help, here is the code I have written to emit a signal with "emitv". I accept here only "int" parameters for the signal. ```Nim...
Here is an example, but I’m not sure it will help a lot for two reasons: 1) It seems that it is not possible to emit predefined signals, so I...
I agree. The wrapping is not easy, in general, and especially for signals. I think that a great work has already been done to provide a nice interface which hides...
Yes, I’m aware of this new version and, in fact, I have already installed it. There’s no urgency for the issue as I have found a way to solve it....
I have installed the version 0.7.6 and my program compiles (and works). I didn’t know that the extra data parameter was optional. In most cases, I have no use of...
Yes, this is what I have done (except that it was for a dialog, not a menu). I didn't considerer this to be a real problem, but it may cause...
So, changing the parameter to an enum is not an option. And changing the enum values to be constants would just be a small improvement, avoiding to use "ord" to...
Thanks for your answer. I’m not a git expert, but I have already installed some development versions. I will find a way to retrieve HEAD.
Oups! I have apparently made a confusion. As my window inherits from *gtk.Window*, this is indeed the *gtk* proc I have used, not the *gdk* one. And I’m inexcusable as...