Re: Beginners guide

2018-04-27 Thread Stefan Salewski
On Fri, 2018-04-27 at 14:54 +0100, Emmanuele Bassi wrote: > There are various wiki pages that you may be interested in; see the > "How Do I" section: https://wiki.gnome.org/HowDoI/ I wonder that you do not recommend the page https://developer.gnome.org/gtk3/stable/ch01s04.html#id-1.2.3.12.5 Is

Re: gtk-list-requ...@gnome.org

2018-04-27 Thread Patrick
On 18-04-27 02:48 PM, john beritz wrote: gtk-list-requ...@gnome.org Please unsubscribe me. ___ gtk-list mailing list gtk-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-list please follow this link:

gtk-list-requ...@gnome.org

2018-04-27 Thread john beritz
gtk-list-requ...@gnome.org Please unsubscribe me. ___ gtk-list mailing list gtk-list@gnome.org https://mail.gnome.org/mailman/listinfo/gtk-list

Re: Beginners guide

2018-04-27 Thread Paul Davis
On Fri, Apr 27, 2018 at 2:27 PM, Timothy Ward wrote: > Hi Emmanuele, > > I do agree with you but, From a beginners concept,The concept of > Gtk-application and the handling of applications arguments is confusing > coming from someone who is still learning from say - standard

Re: Beginners guide

2018-04-27 Thread Timothy Ward
Hi Emmanuele, I do agree with you but, From a beginners concept,The concept of Gtk- application and the handling of applications arguments is confusing coming from someone who is still learning from say - standard "C" as they are handled the same way in just about any example on a google search,

How to get Giomm::DBus::Connection file descriptor?

2018-04-27 Thread raju thiyam
Hello All, I am implementing a plugin for an application which has a custom main loop. Application do poll after plugins provide the FD and timeout to it. My plugin uses giomm dbus for IPC. I run the glib main loop, register the object and then quit the loop using SignalTimeout. In order to

Re: Freeze rows and columns of GtkGrid

2018-04-27 Thread Stu Whitman
- On Apr 19, 2018, at 4:10 PM, Stu Whitman wrote: > - On Apr 17, 2018, at 7:31 PM, Stu Whitman wrote: >> Hello, >> Is there a way to freeze the first row and column of a GtkGrid when it is >> scrolled using a GtkScrolledWindow? In some cases

Re: Beginners guide

2018-04-27 Thread Emmanuele Bassi
On 27 April 2018 at 14:06, Patrick wrote: > > I have been using 2.0 and dreading the switch. Your guide is helpful, > thanks for taking the time to do this-Pat > > Porting applications from 2.x to 3.x already has a whole section on the API reference — including

Re: Beginners guide

2018-04-27 Thread Emmanuele Bassi
Hi; thanks for your contributions: documentation is always welcome. On 24 April 2018 at 19:39, Jim Reilly wrote: > I have put together a guide to help beginners to get started using gtk+3.0 > in the hope that it might be useful. I do not have a web site through

Re: Using Gtk.Builder to create a menubar.

2018-04-27 Thread Luca Bacci
Yes, actions get a prefix depending on where you put them. Every "action container" has a prefix. In your case you add_action() to GtkApplicationWindow and its prefix is "win" I used your code to create an answer to my StackOverflow question > https://stackoverflow.com/a/50051155/4865723 >

Re: Using Gtk.Builder to create a menubar.

2018-04-27 Thread Marius Gedminas
On Thu, Apr 26, 2018 at 09:46:57PM +0200, c.bu...@posteo.jp wrote: > Thank you very much. Your example works for me but I don't understand > why. ;) > > > win.bar > > > action_bar = Gio.SimpleAction.new('bar', None) > > The name of the action in the XML and the code is