views:

25

answers:

1

Hi. Somebody knows if it is posible to make a GtkCombo which allows multiple entries selection?In affirmative case how can i make this?

A: 

No a GtkCombo doesn't allow it. Btw, it's been deprecated and you should use GtkComboBox instead. The widget is meant to display only one selected item at a time.

What you want to look into is using a GtkTreeView to show the items in your list and allow for multiple selection. A simple tutorial is available here. You'll need to get the GtkTreeSelection and set the selection mode accordingly.

SB
Yep, i know GtkCombo is deprecated, but i'm working in a project that expicitly requires a GtkCombo for this parameter.
panda
I see. That's too bad. GtkCombo isn't meant for multi mode select.
SB
Thank you!I think i'm going to try other posibilities.
panda