|
Hi,
I'm trying to set the GtkComboBoxEntry's pop-up menu and menu text. (different from my current desktop theme)
I've tried (in my GTKRC)
widget "*myComboEntry.GtkMenu" style "myMenuStyle"
widget "*myComboEntry.GtkMenu.GtkCellView" style "myMenuCellStyle"
but it doesn't seem to work.
If i try
class "GtkMenu" style "myMenuStyle"
class "GtkCellView" style "myMenuCellStyle"
it works, but then all my menus and all combo box popups get affected.
the following works:
widget "*myComboEntry.GtkToggleButton" style "myMenuToggle"
so I think, the path to GtkMenu is not right? Does anyone know how to find all Gtk types within other types?
so far i know that in a GtkComboBoxEntry there is
GtkComboBoxEntry.GtkEntry
GtkComboBoxEntry.GtkToggleButton
GtkComboBoxEntry.GtkToggleButton.GtkArrow
...
But I can't seem to get the popup (GtkMenu, GtkMenu.GtkCellView, etc.)
|