本文整理匯總了Python中quodlibet.qltk.entry.ValidatingEntry.set_size_request方法的典型用法代碼示例。如果您正苦於以下問題:Python ValidatingEntry.set_size_request方法的具體用法?Python ValidatingEntry.set_size_request怎麽用?Python ValidatingEntry.set_size_request使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類quodlibet.qltk.entry.ValidatingEntry
的用法示例。
在下文中一共展示了ValidatingEntry.set_size_request方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: PluginPreferences
# 需要導入模塊: from quodlibet.qltk.entry import ValidatingEntry [as 別名]
# 或者: from quodlibet.qltk.entry.ValidatingEntry import set_size_request [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