本文整理汇总了Python中AnyQt.QtWidgets.QGridLayout.setVerticalSpacing方法的典型用法代码示例。如果您正苦于以下问题:Python QGridLayout.setVerticalSpacing方法的具体用法?Python QGridLayout.setVerticalSpacing怎么用?Python QGridLayout.setVerticalSpacing使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AnyQt.QtWidgets.QGridLayout
的用法示例。
在下文中一共展示了QGridLayout.setVerticalSpacing方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: create_gridbox
# 需要导入模块: from AnyQt.QtWidgets import QGridLayout [as 别名]
# 或者: from AnyQt.QtWidgets.QGridLayout import setVerticalSpacing [as 别名]
def create_gridbox(self, widget, box=True):
grid = QGridLayout()
grid.setColumnMinimumWidth(0, 50)
grid.setColumnStretch(1, 1)
box = gui.widgetBox(widget, box=box, orientation=grid)
# This must come after calling widgetBox, since widgetBox overrides it
grid.setVerticalSpacing(8)
return box
示例2: __init__
# 需要导入模块: from AnyQt.QtWidgets import QGridLayout [as 别名]
# 或者: from AnyQt.QtWidgets.QGridLayout import setVerticalSpacing [as 别名]
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.api = None
self.corpus = None
self.api_dlg = self.APICredentialsDialog(self)
self.api_dlg.accept(silent=True)
# Set API key button
gui.button(self.controlArea, self, 'Twitter API Key',
callback=self.open_key_dialog,
tooltip='Set the API key for this widget.',
focusPolicy=Qt.NoFocus)
# Query
query_box = gui.hBox(self.controlArea, 'Query')
layout = QGridLayout()
layout.setVerticalSpacing(5)
layout.setColumnStretch(2, 1) # stretch last columns
layout.setColumnMinimumWidth(1, 15) # add some space for checkbox
ROW = 0
COLUMNS = 3
def add_row(label, items):
nonlocal ROW, COLUMNS
layout.addWidget(QLabel(label), ROW, 0)
if isinstance(items, tuple):
for i, item in enumerate(items):
layout.addWidget(item, ROW, 1+i)
else:
layout.addWidget(items, ROW, 1, 1, COLUMNS-1)
ROW += 1
# Query input
add_row('Query word list:',
ListEdit(self, 'word_list',
'Multiple lines are joined with OR.', 80, self))
# Search mode
add_row('Search by:',
gui.comboBox(self, self, 'mode', items=self.MODES,
callback=self.mode_toggle))
# Language
self.language_combo = ComboBox(self, 'language',
items=(('Any', None),) +
tuple(sorted(lang2code.items())))
add_row('Language:', self.language_combo)
# Max tweets
add_row('Max tweets:',
gui.spin(self, self, 'max_tweets', minv=1, maxv=10000,
checked='limited_search'))
# Retweets
self.retweets_checkbox = gui.checkBox(self, self, 'allow_retweets', '', minimumHeight=30)
add_row('Allow retweets:', self.retweets_checkbox)
# Collect Results
add_row('Collect results:',
gui.checkBox(self, self, 'collecting', ''))
query_box.layout().addLayout(layout)
self.controlArea.layout().addWidget(
CheckListLayout('Text includes', self, 'text_includes',
self.attributes, cols=2,
callback=self.set_text_features))
self.tweets_info_label = gui.label(self.controlArea, self,
self.tweets_info.format(0),
box='Info')
# Buttons
self.button_box = gui.hBox(self.controlArea)
self.button_box.layout().addWidget(self.report_button)
self.search_button = gui.button(self.button_box, self, 'Search',
self.start_stop,
focusPolicy=Qt.NoFocus)
self.mode_toggle()
self.setFocus() # to widget itself to show placeholder for query_edit