本文整理汇总了Golang中github.com/twstrike/coyim/config.Account.Account方法的典型用法代码示例。如果您正苦于以下问题:Golang Account.Account方法的具体用法?Golang Account.Account怎么用?Golang Account.Account使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类github.com/twstrike/coyim/config.Account
的用法示例。
在下文中一共展示了Account.Account方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Golang代码示例。
示例1: accountDialog
func (u *gtkUI) accountDialog(s access.Session, account *config.Account, saveFunction func()) {
data := getBuilderAndAccountDialogDetails()
data.otherSettings.SetActive(u.config.AdvancedOptions)
data.acc.SetText(account.Account)
data.server.SetText(account.Server)
if account.Port == 0 {
account.Port = 5222
}
data.port.SetText(strconv.Itoa(account.Port))
for _, px := range account.Proxies {
iter := data.proxies.Append()
data.proxies.SetValue(iter, 0, net.ParseProxy(px).ForPresentation())
data.proxies.SetValue(iter, 1, px)
}
data.fingerprintsMessage.SetSelectable(true)
m := i18n.Local("Your fingerprints for %s:\n%s")
message := fmt.Sprintf(m, account.Account, formattedFingerprintsFor(s))
data.fingerprintsMessage.SetText(message)
p2, _ := data.notebook.GetNthPage(1)
p3, _ := data.notebook.GetNthPage(2)
p4, _ := data.notebook.GetNthPage(3)
failures := 0
editProxy := func(iter *gtk.TreeIter, onCancel func()) {
val, _ := data.proxies.GetValue(iter, 1)
realProxyData, _ := val.GetString()
u.editProxy(realProxyData, data.dialog,
func(p net.Proxy) {
data.proxies.SetValue(iter, 0, p.ForPresentation())
data.proxies.SetValue(iter, 1, p.ForProcessing())
}, onCancel)
}
data.builder.ConnectSignals(map[string]interface{}{
"on_toggle_other_settings": func() {
otherSettings := data.otherSettings.GetActive()
u.setShowAdvancedSettings(otherSettings)
data.notebook.SetShowTabs(otherSettings)
if otherSettings {
p2.Show()
p3.Show()
p4.Show()
} else {
p2.Hide()
p3.Hide()
p4.Hide()
}
},
"on_save_signal": func() {
accTxt, _ := data.acc.GetText()
passTxt, _ := data.pass.GetText()
servTxt, _ := data.server.GetText()
portTxt, _ := data.port.GetText()
isJid, err := verifyXmppAddress(accTxt)
if !isJid && failures > 0 {
failures++
return
}
if !isJid {
notification := buildBadUsernameNotification(err)
data.notificationArea.Add(notification)
notification.ShowAll()
failures++
log.Printf(err)
return
}
account.Account = accTxt
account.Server = servTxt
if passTxt != "" {
account.Password = passTxt
}
convertedPort, e := strconv.Atoi(portTxt)
if len(strings.TrimSpace(portTxt)) == 0 || e != nil {
convertedPort = 5222
}
account.Port = convertedPort
newProxies := []string{}
iter, ok := data.proxies.GetIterFirst()
for ok {
vv, _ := data.proxies.GetValue(iter, 1)
newProxy, _ := vv.GetString()
newProxies = append(newProxies, newProxy)
ok = data.proxies.IterNext(iter)
}
account.Proxies = newProxies
go saveFunction()
//.........这里部分代码省略.........
示例2: accountDialog
func (u *gtkUI) accountDialog(account *config.Account, saveFunction func()) {
dialogID := "AccountDetails"
builder := builderForDefinition(dialogID)
obj, _ := builder.GetObject(dialogID)
dialog := obj.(*gtk.Dialog)
obj, _ = builder.GetObject("notebook1")
notebook := obj.(*gtk.Notebook)
obj, _ = builder.GetObject("otherSettings")
otherSettingsToggle := obj.(*gtk.CheckButton)
obj, _ = builder.GetObject("account")
accEntry := obj.(*gtk.Entry)
accEntry.SetText(account.Account)
obj, _ = builder.GetObject("password")
passEntry := obj.(*gtk.Entry)
obj, _ = builder.GetObject("server")
serverEntry := obj.(*gtk.Entry)
serverEntry.SetText(account.Server)
obj, _ = builder.GetObject("port")
portEntry := obj.(*gtk.Entry)
if account.Port == 0 {
account.Port = 5222
}
portEntry.SetText(strconv.Itoa(account.Port))
obj, _ = builder.GetObject("notification-area")
notificationArea := obj.(*gtk.Box)
p2, _ := notebook.GetNthPage(1)
p3, _ := notebook.GetNthPage(2)
failures := 0
builder.ConnectSignals(map[string]interface{}{
"on_toggle_other_settings": func() {
otherSettings := otherSettingsToggle.GetActive()
if otherSettings {
p2.Show()
p3.Show()
} else {
p2.Hide()
p3.Hide()
}
},
"on_save_signal": func() {
accTxt, _ := accEntry.GetText()
passTxt, _ := passEntry.GetText()
servTxt, _ := serverEntry.GetText()
portTxt, _ := portEntry.GetText()
isJid, err := verifyXmppAddress(accTxt)
if !isJid && failures > 0 {
failures++
return
}
if !isJid {
notification := buildBadUsernameNotification(err)
notificationArea.Add(notification)
notification.ShowAll()
failures++
log.Printf(err)
return
}
account.Account = accTxt
account.Server = servTxt
if passTxt != "" {
account.Password = passTxt
}
convertedPort, e := strconv.Atoi(portTxt)
if len(strings.TrimSpace(portTxt)) == 0 || e != nil {
convertedPort = 5222
}
account.Port = convertedPort
go saveFunction()
dialog.Destroy()
},
"on_cancel_signal": func() {
u.buildAccountsMenu()
dialog.Destroy()
},
})
dialog.SetTransientFor(u.window)
dialog.ShowAll()
notebook.SetCurrentPage(0)
p2.Hide()
p3.Hide()
//.........这里部分代码省略.........