Re: Using GTK in proprietary software

2019-02-07 Thread Fontana Nicola
Il giorno mer, 06/02/2019 alle 16.25 +, asrs via gtk-app-devel-list ha scritto: > Dear GTK developers, > > I want to redistrbute GTK (and its LGPL) unabridged with proprietary software, > to make a graphical application. Ciao, if you use shared linking (AFAIK the only way officially supporte

Re: Using GTK in proprietary software

2019-02-11 Thread Fontana Nicola
Il giorno ven, 08/02/2019 alle 18.45 +, asrs ha scritto: > Dear Nicola, > > Thankyou for your informative response, > I would like to know if I may use "GTK" as a suffix in the name of my > commercial product. There already are plenty of applications with GTK in their names, see e.g.: https:

Re: Using GTK in proprietary software

2019-02-15 Thread Fontana Nicola
Il giorno ven, 15/02/2019 alle 10.26 +0100, Jean-Dominique Frattini ha scritto: > And what if the final program is statically linked with Gtk+ (ie on Windows > with mingw32) ? Citing https://www.gnu.org/licenses/gpl-faq.html#LGPLStaticVsDynamic: "If you statically link against an LGPLed libra

Re: how to free GList

2006-09-12 Thread Fontana Nicola
On Tuesday 12 September 2006 09:11, shibu Alampatta wrote: > Hi all, > > Pls see the below code structure. how to free the glist at the indicated > place? > > GList * glist=NULL; > > for(i=0;i Furthermore, the above code is wrong: g_list_append returns the new list head. for(i=0;i > // some

Catching the row deleted from a GtkTreeModel implementation

2007-02-09 Thread Fontana Nicola
I'm keeping some summary fields of a GtkListStore and I need to update them on every model change. The problem is while catching the "row-deleted" signal the row is yet deleted, so I can't access the row content to update my summary fields. How can I do it? Thanks, -- Nicola _

Re: Catching the row deleted from a GtkTreeModel implementation

2007-02-09 Thread Fontana Nicola
On Friday 09 February 2007 11:39, Suma H.S wrote: > how r u deleting the row? > It should be either through some key-press or mouse-click, in either case u > must select the row before selecting. > So...If it is through a key-press, catch the key-press signal and if it is > through a mouse-click, >

Re: Catching the row deleted from a GtkTreeModel implementation

2007-02-09 Thread Fontana Nicola
On Friday 09 February 2007 11:55, Vivien Malerba wrote: > I would suggest a different approach: add your own column to the > GtkListStore which stores your information summary as a GObject (so > you know when that object is destroyed). This approach seems quite complex but yes, it makes the job. M

Re: serial ports

2007-05-15 Thread Fontana Nicola
On Monday 14 May 2007 20:49, Pavel A. da Mek wrote: > When I want to use serial ports, shall I write separate code for Windows > and for Linux, or is there some library function which would allow to do it > in the platform independent way? I hit the same problem in 2004, and I wrote an abstractio