當前位置: 首頁>>代碼示例>>Python>>正文


Python ic.ICLogon類代碼示例

本文整理匯總了Python中pychess.ic.ICLogon的典型用法代碼示例。如果您正苦於以下問題:Python ICLogon類的具體用法?Python ICLogon怎麽用?Python ICLogon使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。


在下文中一共展示了ICLogon類的9個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: connectClicked

    def connectClicked(self, button):
        asGuest = self.widgets["asGuestCheck"].get_active()
        username = self.widgets["usernameEntry"].get_text()
        password = self.widgets["passwordEntry"].get_text()

        ICLogon.run()
        if not ICLogon.dialog.connection:
            ICLogon.dialog.widgets["logOnAsGuest"].set_active(asGuest)
            ICLogon.dialog.widgets["nameEntry"].set_text(username)
            ICLogon.dialog.widgets["passEntry"].set_text(password)
            ICLogon.dialog.widgets["connectButton"].clicked()
開發者ID:vaj25,項目名稱:pychess,代碼行數:11,代碼來源:TaskerManager.py

示例2: user_name_get_value

 def user_name_get_value(entry):
     names = ICLogon.get_user_names()
     if as_guest.get_active():
         text = "%s|%s" % (names[0], entry.get_text())
     else:
         text = "%s|%s" % (entry.get_text(), names[1])
     return text
開發者ID:vaj25,項目名稱:pychess,代碼行數:7,代碼來源:TaskerManager.py

示例3: on_quit1_activate

 def on_quit1_activate(self, widget, *args):
     perspective = perspective_manager.get_perspective("games")
     if isinstance(widget, Gdk.Event):
         if len(perspective.gamewidgets) == 1 and conf.get("hideTabs"):
             gmwidg = perspective.cur_gmwidg()
             perspective.closeGame(gmwidg, gmwidg.gamemodel)
             return True
         elif len(perspective.gamewidgets) >= 1 and conf.get("closeAll"):
             perspective.closeAllGames(perspective.gamewidgets)
             return True
     if perspective.closeAllGames(perspective.gamewidgets) in (
             Gtk.ResponseType.OK, Gtk.ResponseType.YES):
         ICLogon.stop()
         self.app.loop.stop()
         self.app.quit()
     else:
         return True
開發者ID:leogregianin,項目名稱:pychess,代碼行數:17,代碼來源:Main.py

示例4: on_play_internet_chess_activate

 def on_play_internet_chess_activate(self, widget):
     ICLogon.run()
開發者ID:prvn16,項目名稱:pychess,代碼行數:2,代碼來源:Main.py

示例5: openDialogClicked

 def openDialogClicked(self, button):
     ICLogon.run()
開發者ID:vaj25,項目名稱:pychess,代碼行數:2,代碼來源:TaskerManager.py

示例6: user_name_set_value

 def user_name_set_value(entry, value):
     names = ICLogon.get_user_names(value=value)
     if as_guest.get_active():
         entry.set_text(names[1])
     else:
         entry.set_text(names[0])
開發者ID:vaj25,項目名稱:pychess,代碼行數:6,代碼來源:TaskerManager.py

示例7: asGuestCallback

 def asGuestCallback(check):
     names = ICLogon.get_user_names()
     self.widgets["usernameEntry"].set_text(names[1] \
                                            if check.get_active() else names[0])
     self.widgets["passwordLabel"].set_sensitive(not check.get_active())
     self.widgets["passwordEntry"].set_sensitive(not check.get_active())
開發者ID:vaj25,項目名稱:pychess,代碼行數:6,代碼來源:TaskerManager.py

示例8: cleanup

 def cleanup():
     ICLogon.stop()
     SubProcess.finishAllSubprocesses()
開發者ID:TPNguyen,項目名稱:pychess,代碼行數:3,代碼來源:Main.py

示例9: connectClicked

 def connectClicked(self, button):
     ICLogon.run()
     if not ICLogon.dialog.connection:
         ICLogon.dialog.widgets["connectButton"].clicked()
開發者ID:leogregianin,項目名稱:pychess,代碼行數:4,代碼來源:TaskerManager.py


注:本文中的pychess.ic.ICLogon類示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。