1gtk-icon-sizes = "gtk-menu=13,13:gtk-small-toolbar=16,16:gtk-large-toolbar=24,24:gtk-dnd=32,32"
2gtk-toolbar-icon-size = small-toolbar
3gtk-toolbar-style = GTK_TOOLBAR_ICONS
4
5# disable images in buttons. i've only seen ugly delphi apps use this feature.
6gtk-button-images = 0
7
8# enable/disable images in menus. most "stock" microsoft apps don't use these, except sparingly.
9# the office apps use them heavily, though.
10gtk-menu-images = 0
11
12# use the win32 button ordering instead of the GNOME HIG one, where applicable
13gtk-alternative-button-order = 1
14
15# use the win32 sort indicators direction, as in Explorer
16gtk-alternative-sort-arrows = 1
17
18# Windows users don't expect the PC Speaker beeping at them when they backspace in an empty textview and stuff like that
19gtk-error-bell = 0
20
21style "msw-default"
22{
23  GtkWidget::interior-focus = 1
24  GtkOptionMenu::indicator-size = { 9, 5 }
25  GtkOptionMenu::indicator-spacing = { 7, 5, 2, 2 }
26  GtkSpinButton::shadow-type = in
27
28  # Owen and I disagree that these should be themable
29  #GtkUIManager::add-tearoffs = 0
30  #GtkComboBox::add-tearoffs = 0
31
32  GtkComboBox::appears-as-list = 1
33  GtkComboBox::focus-on-click = 0
34
35  GOComboBox::add_tearoffs = 0
36
37  GtkTreeView::allow-rules = 0
38  GtkTreeView::expander-size = 12
39
40  GtkExpander::expander-size = 12
41
42  GtkScrolledWindow::scrollbar_spacing = 1
43
44  GtkSeparatorMenuItem::horizontal-padding = 2
45
46  engine "wimp"
47  {
48  }
49}
50class "*" style "msw-default"
51
52binding "ms-windows-tree-view"
53{
54  bind "Right" { "expand-collapse-cursor-row" (1,1,0) }
55  bind "Left" { "expand-collapse-cursor-row" (1,0,0) }
56}
57
58class "GtkTreeView" binding "ms-windows-tree-view"
59
60style "msw-combobox-thickness" = "msw-default"
61{
62  xthickness = 0
63  ythickness = 0
64}
65
66widget_class "*TreeView*ComboBox*" style "msw-combobox-thickness"
67widget_class "*ComboBox*GtkFrame*" style "msw-combobox-thickness"
68
69# work around issue with "list-style" cellrenderercombos not emitting
70# the "edited" signal - GNOME bug #317387
71style "menu-style-combo"
72{
73  GtkComboBox::appears-as-list = 0
74}
75widget_class "*.GtkTreeView.GtkComboBox" style "menu-style-combo"
76