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


Python ValidatingEntry.set_max_length方法代碼示例

本文整理匯總了Python中quodlibet.qltk.entry.ValidatingEntry.set_max_length方法的典型用法代碼示例。如果您正苦於以下問題:Python ValidatingEntry.set_max_length方法的具體用法?Python ValidatingEntry.set_max_length怎麽用?Python ValidatingEntry.set_max_length使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在quodlibet.qltk.entry.ValidatingEntry的用法示例。


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

示例1: PluginPreferences

# 需要導入模塊: from quodlibet.qltk.entry import ValidatingEntry [as 別名]
# 或者: from quodlibet.qltk.entry.ValidatingEntry import set_max_length [as 別名]
 def PluginPreferences(self, parent):
     t = Gtk.Table(n_rows=2, n_columns=7)
     t.set_col_spacings(6)
     entries = []
     for i in range(7):
         e = ValidatingEntry(Alarm.is_valid_time)
         e.set_size_request(100, -1)
         e.set_text(self._times[i])
         e.set_max_length(5)
         e.set_width_chars(6)
         day = Gtk.Label(
             label=time.strftime("_%A:", (2000, 1, 1, 0, 0, 0, i, 1, 0)))
         day.set_mnemonic_widget(e)
         day.set_use_underline(True)
         day.set_alignment(0.0, 0.5)
         t.attach(day, 0, 1, i, i + 1, xoptions=Gtk.AttachOptions.FILL)
         t.attach(e, 1, 2, i, i + 1, xoptions=Gtk.AttachOptions.FILL)
         entries.append(e)
     for e in entries:
         connect_obj(e, 'changed', self._entry_changed, entries)
     return t
開發者ID:Konzertheld,項目名稱:quodlibet,代碼行數:23,代碼來源:clock.py


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