summary refs log tree commit diff stats
path: root/osx/gtkrc
diff options
context:
space:
mode:
authorTingPing <tingping@fedoraproject.org>2014-01-13 09:28:06 -0500
committerTingPing <tingping@tingping.se>2014-01-14 22:38:44 -0500
commit8af9727937480d26ff39a7eeb96668073f846d9f (patch)
treec8ce4197f3d826cc535b3fad1e7838e0cdd55458 /osx/gtkrc
parent7b0acb2b4440e0254320ca4b18ed565fe73048cb (diff)
Add gtk-mac-bundler files
Diffstat (limited to 'osx/gtkrc')
-rw-r--r--osx/gtkrc97
1 files changed, 97 insertions, 0 deletions
diff --git a/osx/gtkrc b/osx/gtkrc
new file mode 100644
index 00000000..326f9d5a
--- /dev/null
+++ b/osx/gtkrc
@@ -0,0 +1,97 @@
+# Based off example shipped with gtk-quartz-engine
+
+gtk-icon-sizes = "gtk-menu=16,16:gtk-small-toolbar=16,16:gtk-large-toolbar=24,24:gtk-dnd=32,32"
+gtk-toolbar-icon-size = small-toolbar
+
+gtk_color_scheme = "fg_color:#000\nbg_color:ededed\nbase_color:#fff\ntext_color:#1A1A1A\nselected_bg_color:#86ABD9\nselected_fg_color:#fff\ntooltip_bg_color:#F5F5B5\ntooltip_fg_color:#000"
+
+gtk-button-images = 0
+gtk-menu-images = 0
+gtk-enable-mnemonics = 0
+
+style "clearlooks-default"
+{
+  engine "clearlooks"
+  {
+  }
+}
+
+style "quartz-default"
+{
+  xthickness = 0
+  ythickness = 0
+
+  GtkWidget::interior-focus = 1
+  GtkWidget::focus-line-width = 0
+  GtkWidget::focus-padding = 0
+
+  GtkButton::default-border = { 0, 0, 0, 0 }
+  GtkButton::default-outside-border = { 0, 0, 0, 0 }
+  GtkButton::child-displacement-x = 0
+  GtkButton::child-displacement-y = 0
+
+  GtkCheckButton::indicator-spacing = 3
+
+  GtkSpinButton::shadow-type = out
+
+  GtkComboBox::appears-as-list = 0
+  GtkComboBox::focus-on-click = 0
+
+  GtkNotebook::tab-curvature = 4
+  GtkNotebook::tab-overlap = 0
+  
+  GtkTreeView::allow-rules = 1
+  GtkTreeView::expander-size = 14
+  GtkToolbar::internal-padding = 3
+  GtkExpander::expander-size = 14
+
+  GtkScrolledWindow::scrollbar-spacing = 0
+
+  GtkMenuItem::horizontal-padding = 8
+  GtkSeparatorMenuItem::horizontal-padding = 2
+
+  engine "quartz"
+  {
+  }
+}
+
+style "quartz-toolbar"
+{
+  xthickness = 3
+  ythickness = 3
+}
+
+style "quartz-frame"
+{
+  xthickness = 2
+  ythickness = 2
+}
+
+style "quartz-scrolled-window"
+{
+  xthickness = 2
+  ythickness = 2
+}
+
+style "quartz-notebook"
+{
+  xthickness = 2
+  ythickness = 2
+}
+
+style "quartz-menu"
+{
+
+}
+
+class "GtkWidget" style "quartz-default"
+#class "GtkMenu*" style "quartz-menu" # TODO fix buggy menus
+class "GtkNotebook" style "quartz-notebook"
+
+class "GtkEntry" style "clearlooks-default"
+class "SexySpellEntry" style "clearlooks-default"
+# GtkSpinButton now uses clearlooks but its broken anyways
+
+widget_class "*Toolbar*" style "quartz-toolbar"
+widget_class "*.<GtkScrolledWindow>" style "quartz-scrolled-window"
+widget_class "*.<GtkFrame>" style "quartz-frame"