mirror of https://github.com/subgraph/fw-daemon
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
107 lines
2.5 KiB
107 lines
2.5 KiB
8 years ago
|
package gtk
|
||
|
|
||
|
// #include <gtk/gtk.h>
|
||
|
// #include "gtk.go.h"
|
||
|
import "C"
|
||
|
import (
|
||
|
"unsafe"
|
||
|
|
||
|
"github.com/gotk3/gotk3/glib"
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
tm := []glib.TypeMarshaler{
|
||
|
{glib.Type(C.gtk_info_bar_get_type()), marshalInfoBar},
|
||
|
}
|
||
|
|
||
|
glib.RegisterGValueMarshalers(tm)
|
||
|
|
||
|
WrapMap["GtkInfoBar"] = wrapInfoBar
|
||
|
}
|
||
|
|
||
|
type InfoBar struct {
|
||
|
Box
|
||
|
}
|
||
|
|
||
|
func (v *InfoBar) native() *C.GtkInfoBar {
|
||
|
if v == nil || v.GObject == nil {
|
||
|
return nil
|
||
|
}
|
||
|
|
||
|
p := unsafe.Pointer(v.GObject)
|
||
|
return C.toGtkInfoBar(p)
|
||
|
}
|
||
|
|
||
|
func marshalInfoBar(p uintptr) (interface{}, error) {
|
||
|
c := C.g_value_get_object((*C.GValue)(unsafe.Pointer(p)))
|
||
|
return wrapInfoBar(wrapObject(unsafe.Pointer(c))), nil
|
||
|
}
|
||
|
|
||
|
func wrapInfoBar(obj *glib.Object) *InfoBar {
|
||
|
return &InfoBar{Box{Container{Widget{glib.InitiallyUnowned{obj}}}}}
|
||
|
}
|
||
|
|
||
|
func InfoBarNew() (*InfoBar, error) {
|
||
|
c := C.gtk_info_bar_new()
|
||
|
if c == nil {
|
||
|
return nil, nilPtrErr
|
||
|
}
|
||
|
|
||
|
return wrapInfoBar(wrapObject(unsafe.Pointer(c))), nil
|
||
|
}
|
||
|
|
||
|
func (v *InfoBar) AddActionWidget(w IWidget, responseId ResponseType) {
|
||
|
C.gtk_info_bar_add_action_widget(v.native(), w.toWidget(), C.gint(responseId))
|
||
|
}
|
||
|
|
||
|
func (v *InfoBar) AddButton(buttonText string, responseId ResponseType) {
|
||
|
cstr := C.CString(buttonText)
|
||
|
defer C.free(unsafe.Pointer(cstr))
|
||
|
|
||
|
C.gtk_info_bar_add_button(v.native(), (*C.gchar)(cstr), C.gint(responseId))
|
||
|
}
|
||
|
|
||
|
func (v *InfoBar) SetResponseSensitive(responseId ResponseType, setting bool) {
|
||
|
C.gtk_info_bar_set_response_sensitive(v.native(), C.gint(responseId), gbool(setting))
|
||
|
}
|
||
|
|
||
|
func (v *InfoBar) SetDefaultResponse(responseId ResponseType) {
|
||
|
C.gtk_info_bar_set_default_response(v.native(), C.gint(responseId))
|
||
|
}
|
||
|
|
||
|
func (v *InfoBar) SetMessageType(messageType MessageType) {
|
||
|
C.gtk_info_bar_set_message_type(v.native(), C.GtkMessageType(messageType))
|
||
|
}
|
||
|
|
||
|
func (v *InfoBar) GetMessageType() MessageType {
|
||
|
messageType := C.gtk_info_bar_get_message_type(v.native())
|
||
|
return MessageType(messageType)
|
||
|
}
|
||
|
|
||
|
func (v *InfoBar) GetActionArea() (*Widget, error) {
|
||
|
c := C.gtk_info_bar_get_action_area(v.native())
|
||
|
if c == nil {
|
||
|
return nil, nilPtrErr
|
||
|
}
|
||
|
|
||
|
return wrapWidget(wrapObject(unsafe.Pointer(c))), nil
|
||
|
}
|
||
|
|
||
|
func (v *InfoBar) GetContentArea() (*Box, error) {
|
||
|
c := C.gtk_info_bar_get_content_area(v.native())
|
||
|
if c == nil {
|
||
|
return nil, nilPtrErr
|
||
|
}
|
||
|
|
||
|
return wrapBox(wrapObject(unsafe.Pointer(c))), nil
|
||
|
}
|
||
|
|
||
|
func (v *InfoBar) GetShowCloseButton() bool {
|
||
|
b := C.gtk_info_bar_get_show_close_button(v.native())
|
||
|
return gobool(b)
|
||
|
}
|
||
|
|
||
|
func (v *InfoBar) SetShowCloseButton(setting bool) {
|
||
|
C.gtk_info_bar_set_show_close_button(v.native(), gbool(setting))
|
||
|
}
|