Re: gtk_entry_set is a bit late.

2016-07-04 Thread Paul Davis
On Mon, Jul 4, 2016 at 9:46 PM, Ian Chapman wrote: > extern "C" > void on_Signal_activate(){ > /*Phase 1 */ > gtk_entry_set_text(Status, "Starting phase 1"); //just > show activity. > std::cout << "Starting phase 1" << std::endl; >

gtk_entry_set is a bit late.

2016-07-04 Thread Ian Chapman
extern "C" void on_Signal_activate(){ /*Phase 1 */ gtk_entry_set_text(Status, "Starting phase 1"); //just show activity. std::cout << "Starting phase 1" << std::endl; /*Phase 2 */ gtk_entry_set_text(Status, "Starting phase 2");

Re: Changing the GtkTreeView Bar Color....

2016-07-04 Thread infirit
Op 07/04/2016 om 08:04 PM schreef Emmanuele Bassi: > The "row" region exposed by older versions of GTK+ is gone, like the > rest of the CSS regions. > > The documentation for GtkTreeView styling is available at: > > https://developer.gnome.org/gtk3/stable/GtkTreeView.html#id-1.3.12.6.11.10 This

Re: Changing the GtkTreeView Bar Color....

2016-07-04 Thread Emmanuele Bassi
Hi; On 4 July 2016 at 18:43, Glus Xof wrote: > Hi again, > > > This > > treeview row:selected {background-color: #cc;} > > doesn't work for me; but this > > treeview *:selected {background-color: #cc;} > > works... but I guess that this should not be the same as

Re: Changing the GtkTreeView Bar Color....

2016-07-04 Thread Glus Xof
Hi again, This treeview row:selected {background-color: #cc;} doesn't work for me; but this treeview *:selected {background-color: #cc;} works... but I guess that this should not be the same as before... Then, this treeview row:nth-child(odd) {background-color: #ff;} treeview

Re: Changing the GtkTreeView Bar Color....

2016-07-04 Thread Glus Xof
2016-07-04 10:25 GMT+02:00 Emmanuele Bassi : > Hi; > > On 2 July 2016 at 10:23, Glus Xof wrote: > > > After, I changed the contents of my ~/.config/gtk-3.0/gtk.css, with > > > > > > treeview row:selected { > > background-color: #000; > > } > > > >

Re: Changing the GtkTreeView Bar Color....

2016-07-04 Thread Emmanuele Bassi
Hi; On 2 July 2016 at 10:23, Glus Xof wrote: > After, I changed the contents of my ~/.config/gtk-3.0/gtk.css, with > > > treeview row:selected { > background-color: #000; > } > > treeview row:nth-child(even) { > background-color: #bd0814; > } > - > >