summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPietro Gagliardi <[email protected]>2014-04-06 13:25:23 -0400
committerPietro Gagliardi <[email protected]>2014-04-06 13:25:23 -0400
commit0524a179204a707239350c4090cf68a27012becd (patch)
tree5065fd1ad05137c7dea4171693cfaffb36bf5267
parentf12bae7d3eeaa2ce890d8f5dc9e996ccebebe23f (diff)
Added borders to GTK+ Listboxes (thanks to jlindgren in irc.gimp.net/#gtk+); ends that TODO.
-rw-r--r--listbox_unix.go1
-rw-r--r--todo.md1
2 files changed, 1 insertions, 1 deletions
diff --git a/listbox_unix.go b/listbox_unix.go
index 240270d..a0be9db 100644
--- a/listbox_unix.go
+++ b/listbox_unix.go
@@ -83,6 +83,7 @@ func gListboxNew(multisel bool) *C.GtkWidget {
}
C.gtk_tree_selection_set_mode(C.gtk_tree_view_get_selection(tv), C.GtkSelectionMode(sel))
scrollarea := C.gtk_scrolled_window_new((*C.GtkAdjustment)(nil), (*C.GtkAdjustment)(nil))
+ C.gtk_scrolled_window_set_shadow_type((*C.GtkScrolledWindow)(unsafe.Pointer(scrollarea)), C.GTK_SHADOW_IN)
C.gtk_container_add((*C.GtkContainer)(unsafe.Pointer(scrollarea)), widget)
return scrollarea
}
diff --git a/todo.md b/todo.md
index 157efa8..bb2e3ba 100644
--- a/todo.md
+++ b/todo.md
@@ -1,5 +1,4 @@
so I don't forget:
-- [GTK+] Listbox should have a border style
- should Labels be selectable?
- Message boxes should not show secondary text if none is specified. [TODO figure out what I meant by this]
- note that you can change event channels before opening the window; this allows unifying menus/toolbars/etc.