func presenceSubscriptionDialog(accounts []*account, sendSubscription func(accountID, peer string) error) *gtk.Dialog { builder := builderForDefinition("AddContact") //TODO: move model to XML builder model, _ := gtk.ListStoreNew( glib.TYPE_STRING, // account name glib.TYPE_STRING, // account_id ) for _, acc := range accounts { model.Set(model.Append(), []int{0, 1}, []interface{}{acc.session.GetConfig().Account, acc.session.GetConfig().ID()}) } accountsObj, _ := builder.GetObject("accounts") accountInput := accountsObj.(*gtk.ComboBox) accountInput.SetModel(&model.TreeModel) accountObj, _ := builder.GetObject("address") contactInput := accountObj.(*gtk.Entry) if len(accounts) > 0 { accountInput.SetActive(0) } renderer, _ := gtk.CellRendererTextNew() accountInput.PackStart(renderer, true) accountInput.AddAttribute(renderer, "text", 0) dialogObj, _ := builder.GetObject("AddContact") dialog := dialogObj.(*gtk.Dialog) builder.ConnectSignals(map[string]interface{}{ "on_save_signal": func() { defer dialog.Destroy() //TODO: validate contact contact, _ := contactInput.GetText() //TODO error iter, _ := accountInput.GetActiveIter() val, _ := model.GetValue(iter, 1) accountID, _ := val.GetString() //TODO error sendSubscription(accountID, contact) }, }) return dialog }
// Creates a tree view and the list store that holds its data func setupTreeView() (*gtk.TreeView, *gtk.ListStore) { treeView, err := gtk.TreeViewNew() if err != nil { log.Fatal("Unable to create tree view:", err) } treeView.AppendColumn(createColumn("Version", COLUMN_VERSION)) treeView.AppendColumn(createColumn("Feature", COLUMN_FEATURE)) // Creating a list store. This is what holds the data that will be shown on our tree view. listStore, err := gtk.ListStoreNew(glib.TYPE_STRING, glib.TYPE_STRING) if err != nil { log.Fatal("Unable to create list store:", err) } treeView.SetModel(listStore) return treeView, listStore }
func main() { gtk.Init(&os.Args) // Declarations Window, _ = gtk.WindowNew(gtk.WINDOW_TOPLEVEL) RootBox, _ = gtk.BoxNew(gtk.ORIENTATION_VERTICAL, 6) TreeView, _ = gtk.TreeViewNew() Entry, _ = gtk.EntryNew() ListStore, _ = gtk.ListStoreNew(glib.TYPE_STRING) // Window properties Window.SetTitle("Products written in Go") Window.Connect("destroy", gtk.MainQuit) // TreeView properties { renderer, _ := gtk.CellRendererTextNew() column, _ := gtk.TreeViewColumnNewWithAttribute("Value", renderer, "text", 0) TreeView.AppendColumn(column) } TreeView.SetModel(ListStore) // TreeView selection properties sel, _ := TreeView.GetSelection() sel.SetMode(gtk.SELECTION_MULTIPLE) sel.Connect("changed", SelectionChanged) // Packing RootBox.PackStart(TreeView, true, true, 0) RootBox.PackStart(Entry, false, false, 0) Window.Add(RootBox) // Populating list // TODO: Add more values to the list AppendMultipleToList("Go", "Docker", "CockroachDB") Window.ShowAll() gtk.Main() }
// ListStore creates a *gtk.ListStore. func ListStore(types ...glib.Type) *gtk.ListStore { w, _ := gtk.ListStoreNew(types...) return w }
func presenceSubscriptionDialog(accounts []*account, sendSubscription func(accountID, peer string) error) *gtk.Dialog { builder := builderForDefinition("AddContact") //TODO: move model to XML builder model, _ := gtk.ListStoreNew( glib.TYPE_STRING, // account name glib.TYPE_STRING, // account_id ) for _, acc := range accounts { model.Set(model.Append(), []int{0, 1}, []interface{}{acc.session.GetConfig().Account, acc.session.GetConfig().ID()}) } accountsObj, _ := builder.GetObject("accounts") accountInput := accountsObj.(*gtk.ComboBox) accountInput.SetModel(&model.TreeModel) accountObj, _ := builder.GetObject("address") contactInput := accountObj.(*gtk.Entry) if len(accounts) > 0 { accountInput.SetActive(0) } renderer, _ := gtk.CellRendererTextNew() accountInput.PackStart(renderer, true) accountInput.AddAttribute(renderer, "text", 0) dialogObj, _ := builder.GetObject("AddContact") dialog := dialogObj.(*gtk.Dialog) obj, _ := builder.GetObject("notification-area") notificationArea := obj.(*gtk.Box) failures := 0 var notification *gtk.InfoBar builder.ConnectSignals(map[string]interface{}{ "on_save_signal": func() { contact, _ := contactInput.GetText() isJid, errmsg := verifyXmppAddress(contact) if !isJid && failures > 0 { notificationArea.Remove(notification) notification = buildBadUsernameNotification(errmsg) notificationArea.Add(notification) notification.ShowAll() failures++ log.Printf(errmsg) return } if !isJid { notification = buildBadUsernameNotification(errmsg) notificationArea.Add(notification) notification.ShowAll() failures++ log.Printf(errmsg) return } iter, err := accountInput.GetActiveIter() if err != nil { log.Printf("Error encountered when getting account: %v", err) return } val, err := model.GetValue(iter, 1) if err != nil { log.Printf("Error encountered when getting account: %v", err) return } accountID, err := val.GetString() if err != nil { log.Printf("Error encountered when getting account: %v", err) return } err = sendSubscription(accountID, contact) if err != nil { log.Printf("Error encountered when sending subscription: %v", err) return } dialog.Destroy() }, }) return dialog }
func (*RealGtk) ListStoreNew(types ...glibi.Type) (gtki.ListStore, error) { return wrapListStore(gtk.ListStoreNew(unwrapTypes(types)...)) }