On Sat, Jul 10, 2010 at 2:19 AM, Arne Pagel wrote:
> Tadej Borovšak schrieb:
>>
>> Hi.
>>
>>> My other Idea was to make a new column for the GtkCellRendererToggle, and
>>> just show it when needed.
>>> Is it possible to hide a one of the renderer?
>>
>> This is how I would do this. Just add one gb
Tadej Borovšak schrieb:
Hi.
My other Idea was to make a new column for the GtkCellRendererToggle, and
just show it when needed.
Is it possible to hide a one of the renderer?
This is how I would do this. Just add one gboolean column to your data
store and connect it to cell renderer's "visible
Hi.
> My other Idea was to make a new column for the GtkCellRendererToggle, and
> just show it when needed.
> Is it possible to hide a one of the renderer?
This is how I would do this. Just add one gboolean column to your data
store and connect it to cell renderer's "visible" property.
Tadej
--
Hallo,
I have a simple treeview, with three columns, all with GtkCellRendererText.
Now I want, in some special row's, a GtkCellRendererToggle, is this possible?
Do I have to write a custom renderer, in which I call the RendererText or the
RendererToggle?
My other Idea was to make a new column