From 77bf566ebbcb62acd4d08d905d9542d6ff9b6b80 Mon Sep 17 00:00:00 2001 From: Pietro Gagliardi Date: Sat, 30 Aug 2014 23:02:02 -0400 Subject: ...in with the new. --- group_unix.go | 87 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 87 insertions(+) create mode 100644 group_unix.go (limited to 'group_unix.go') diff --git a/group_unix.go b/group_unix.go new file mode 100644 index 0000000..ceaa59c --- /dev/null +++ b/group_unix.go @@ -0,0 +1,87 @@ +// +build !windows,!darwin + +// 15 august 2014 + +package ui + +import ( + "unsafe" +) + +// #include "gtk_unix.h" +import "C" + +type group struct { + _widget *C.GtkWidget + gcontainer *C.GtkContainer + frame *C.GtkFrame + + *container +} + +func newGroup(text string, control Control) Group { + ctext := togstr(text) + defer freegstr(ctext) + widget := C.gtk_frame_new(ctext) + g := &group{ + _widget: widget, + gcontainer: (*C.GtkContainer)(unsafe.Pointer(widget)), + frame: (*C.GtkFrame)(unsafe.Pointer(widget)), + } + + // with GTK+, groupboxes by default have frames and slightly x-offset regular text + // they should have no frame and fully left-justified, bold text + var yalign C.gfloat + + // preserve default y-alignment + C.gtk_frame_get_label_align(g.frame, nil, &yalign) + C.gtk_frame_set_label_align(g.frame, 0, yalign) + C.gtk_frame_set_shadow_type(g.frame, C.GTK_SHADOW_NONE) + label := (*C.GtkLabel)(unsafe.Pointer(C.gtk_frame_get_label_widget(g.frame))) + // this is the boldness level used by GtkPrintUnixDialog + // (it technically uses "bold" but see pango's pango-enum-types.c for the name conversion; GType is weird) + bold := C.pango_attr_weight_new(C.PANGO_WEIGHT_BOLD) + boldlist := C.pango_attr_list_new() + C.pango_attr_list_insert(boldlist, bold) + C.gtk_label_set_attributes(label, boldlist) + C.pango_attr_list_unref(boldlist) // thanks baedert in irc.gimp.net/#gtk+ + + g.container = newContainer(control) + g.container.setParent(&controlParent{g.gcontainer}) + + return g +} + +func (g *group) Text() string { + return fromgstr(C.gtk_frame_get_label(g.frame)) +} + +func (g *group) SetText(text string) { + ctext := togstr(text) + defer freegstr(ctext) + C.gtk_frame_set_label(g.frame, ctext) +} + +func (g *group) widget() *C.GtkWidget { + return g._widget +} + +func (g *group) setParent(p *controlParent) { + basesetParent(g, p) +} + +func (g *group) allocate(x int, y int, width int, height int, d *sizing) []*allocation { + return baseallocate(g, x, y, width, height, d) +} + +func (g *group) preferredSize(d *sizing) (width, height int) { + return basepreferredSize(g, d) +} + +func (g *group) commitResize(a *allocation, d *sizing) { + basecommitResize(g, a, d) +} + +func (g *group) getAuxResizeInfo(d *sizing) { + basegetAuxResizeInfo(g, d) +} -- cgit v1.2.3