Python qtpy.QtWidgets.QHBoxLayout() Examples
The following are 30
code examples of qtpy.QtWidgets.QHBoxLayout().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
qtpy.QtWidgets
, or try the search function
.
Example #1
Source File: OpenedFilesWindow.py From P4VFX with MIT License | 6 votes |
def create_layout(self): ''' Create the layouts and add widgets ''' check_box_layout = QtWidgets.QHBoxLayout() check_box_layout.setContentsMargins(2, 2, 2, 2) main_layout = QtWidgets.QVBoxLayout() main_layout.setContentsMargins(6, 6, 6, 6) main_layout.addWidget(self.tableWidget) bottomLayout = QtWidgets.QHBoxLayout() bottomLayout.addWidget(self.revertFileBtn) bottomLayout.addWidget(self.refreshBtn) bottomLayout.addSpacerItem(QtWidgets.QSpacerItem(400, 16)) bottomLayout.addWidget(self.openSelectedBtn) main_layout.addLayout(bottomLayout) self.setLayout(main_layout)
Example #2
Source File: helperwidgets.py From conda-manager with MIT License | 6 votes |
def __init__(self, *args, **kwargs): super(LineEditSearch, self).__init__(*args, **kwargs) self._empty = True self._show_icons = False self.button_icon = ButtonSearch() self.button_icon.setDefault(True) self.button_icon.setFocusPolicy(Qt.NoFocus) # layout = QHBoxLayout() # layout.addWidget(self.button_icon, 0, Qt.AlignRight) # layout.setSpacing(0) # layout.addSpacing(2) # layout.setContentsMargins(0, 0, 0, 0) # self.setLayout(layout) # Signals self.textEdited.connect(self.update_box) self.button_icon.clicked.connect(self.clear_text) self.button_icon.setVisible(False) self.update_box(None) # self.set_icon_size(16, 16) self.setTabOrder(self, self.button_icon)
Example #3
Source File: lockbox_widget.py From pyrpl with GNU General Public License v3.0 | 6 votes |
def __init__(self, parent): super(PostFiltering, self).__init__(parent) self.parent = parent aws = self.parent.attribute_widgets self.layout = QtWidgets.QVBoxLayout(self) aws = self.parent.attribute_widgets self.layout.addWidget(aws["additional_filter"]) self.mod_layout = QtWidgets.QHBoxLayout() self.mod_layout.addWidget(aws["extra_module"]) self.mod_layout.addWidget(aws["extra_module_state"]) self.layout.addLayout(self.mod_layout) self.layout.setSpacing(12) self.setTitle("Pre-filtering before PID")
Example #4
Source File: attribute_widgets.py From pyrpl with GNU General Public License v3.0 | 6 votes |
def __init__(self, number, name, options, decimals=3): super(ListComboBox, self).__init__() self.setToolTip("First order filter frequencies \n" "negative values are for high-pass \n" "positive for low pass") self.lay = QtWidgets.QHBoxLayout() self.lay.setContentsMargins(0, 0, 0, 0) self.combos = [] self.options = options self.decimals = decimals for i in range(number): combo = QtWidgets.QComboBox() self.combos.append(combo) combo.addItems(self.options) combo.currentIndexChanged.connect(self.value_changed) self.lay.addWidget(combo) self.setLayout(self.lay)
Example #5
Source File: spinbox.py From pyrpl with GNU General Public License v3.0 | 6 votes |
def make_layout(self): self.lay = QtWidgets.QHBoxLayout() self.lay.setContentsMargins(0, 0, 0, 0) self.real = FloatSpinBox(label=self.labeltext, min=self.minimum, max=self.maximum, increment=self.singleStep, log_increment=self.log_increment, halflife_seconds=self.halflife_seconds, decimals=self.decimals) self.imag = FloatSpinBox(label=self.labeltext, min=self.minimum, max=self.maximum, increment=self.singleStep, log_increment=self.log_increment, halflife_seconds=self.halflife_seconds, decimals=self.decimals) self.real.value_changed.connect(self.value_changed) self.lay.addWidget(self.real) self.label = QtWidgets.QLabel(" + j") self.lay.addWidget(self.label) self.imag.value_changed.connect(self.value_changed) self.lay.addWidget(self.imag) self.setLayout(self.lay) self.setFocusPolicy(QtCore.Qt.ClickFocus)
Example #6
Source File: FileRevisionWindow.py From P4VFX with MIT License | 6 votes |
def create_layout(self): ''' Create the layouts and add widgets ''' check_box_layout = QtWidgets.QHBoxLayout() check_box_layout.setContentsMargins(2, 2, 2, 2) main_layout = QtWidgets.QVBoxLayout() main_layout.setContentsMargins(6, 6, 6, 6) main_layout.addWidget(self.tabwidget) # main_layout.addLayout(bottomLayout) # main_layout.addWidget(self.horizontalLine) # main_layout.addWidget(self.statusBar) self.setLayout(main_layout)
Example #7
Source File: FileRevisionWindow.py From P4VFX with MIT License | 6 votes |
def create_layout(self): ''' Create the layouts and add widgets ''' check_box_layout = QtWidgets.QHBoxLayout() check_box_layout.setContentsMargins(2, 2, 2, 2) main_layout = QtWidgets.QVBoxLayout() main_layout.setContentsMargins(6, 6, 6, 6) main_layout.addWidget(self.fileTree) main_layout.addWidget(self.tableWidget) bottomLayout = QtWidgets.QHBoxLayout() bottomLayout.addWidget(self.getRevisionBtn) bottomLayout.addSpacerItem(QtWidgets.QSpacerItem(20, 16)) bottomLayout.addWidget(self.getPreviewBtn) bottomLayout.addSpacerItem(QtWidgets.QSpacerItem(20, 16)) bottomLayout.addWidget(self.getLatestBtn) main_layout.addLayout(bottomLayout) main_layout.addWidget(self.horizontalLine) main_layout.addWidget(self.statusBar) self.setLayout(main_layout)
Example #8
Source File: OpenedFilesWindow.py From P4VFX with MIT License | 6 votes |
def create_layout(self): ''' Create the layouts and add widgets ''' check_box_layout = QtWidgets.QHBoxLayout() check_box_layout.setContentsMargins(2, 2, 2, 2) main_layout = QtWidgets.QVBoxLayout() main_layout.setContentsMargins(6, 6, 6, 6) main_layout.addWidget(self.tableWidget) bottomLayout = QtWidgets.QHBoxLayout() bottomLayout.addWidget(self.revertFileBtn) bottomLayout.addWidget(self.refreshBtn) bottomLayout.addSpacerItem(QtWidgets.QSpacerItem(400, 16)) bottomLayout.addWidget(self.openSelectedBtn) main_layout.addLayout(bottomLayout) self.setLayout(main_layout)
Example #9
Source File: FileRevisionWindow.py From P4VFX with MIT License | 6 votes |
def create_layout(self): ''' Create the layouts and add widgets ''' check_box_layout = QtWidgets.QHBoxLayout() check_box_layout.setContentsMargins(2, 2, 2, 2) main_layout = QtWidgets.QVBoxLayout() main_layout.setContentsMargins(6, 6, 6, 6) main_layout.addWidget(self.tabwidget) # main_layout.addLayout(bottomLayout) # main_layout.addWidget(self.horizontalLine) # main_layout.addWidget(self.statusBar) self.setLayout(main_layout)
Example #10
Source File: FileRevisionWindow.py From P4VFX with MIT License | 6 votes |
def create_layout(self): ''' Create the layouts and add widgets ''' check_box_layout = QtWidgets.QHBoxLayout() check_box_layout.setContentsMargins(2, 2, 2, 2) main_layout = QtWidgets.QVBoxLayout() main_layout.setContentsMargins(6, 6, 6, 6) main_layout.addWidget(self.fileTree) main_layout.addWidget(self.tableWidget) bottomLayout = QtWidgets.QHBoxLayout() bottomLayout.addWidget(self.getRevisionBtn) bottomLayout.addSpacerItem(QtWidgets.QSpacerItem(20, 16)) bottomLayout.addWidget(self.getPreviewBtn) bottomLayout.addSpacerItem(QtWidgets.QSpacerItem(20, 16)) bottomLayout.addWidget(self.getLatestBtn) main_layout.addLayout(bottomLayout) main_layout.addWidget(self.horizontalLine) main_layout.addWidget(self.statusBar) self.setLayout(main_layout)
Example #11
Source File: SubmitChangeWindow.py From P4VFX with MIT License | 6 votes |
def create_layout(self): ''' Create the layouts and add widgets ''' check_box_layout = QtWidgets.QHBoxLayout() check_box_layout.setContentsMargins(2, 2, 2, 2) main_layout = QtWidgets.QVBoxLayout() main_layout.setContentsMargins(6, 6, 6, 6) main_layout.addWidget(self.descriptionLabel) main_layout.addWidget(self.descriptionWidget) main_layout.addWidget(self.tableWidget) main_layout.addWidget(self.chkboxLockedWidget) main_layout.addWidget(self.submitBtn) # main_layout.addStretch() self.setLayout(main_layout)
Example #12
Source File: test_qt_dock_widget.py From napari with BSD 3-Clause "New" or "Revised" License | 6 votes |
def test_add_dock_widget_from_list(make_test_viewer): """Test that we can add a list of widgets and they will be combined""" viewer = make_test_viewer() widg = QPushButton('button') widg2 = QPushButton('button') dwidg = viewer.window.add_dock_widget( [widg, widg2], name='test', area='right' ) assert viewer.window._qt_window.findChild(QDockWidget, 'test') assert isinstance(dwidg.widget.layout, QVBoxLayout) dwidg = viewer.window.add_dock_widget( [widg, widg2], name='test2', area='bottom' ) assert viewer.window._qt_window.findChild(QDockWidget, 'test2') assert isinstance(dwidg.widget.layout, QHBoxLayout)
Example #13
Source File: qt_surface_layer.py From napari with BSD 3-Clause "New" or "Revised" License | 6 votes |
def __init__(self, layer): super().__init__(layer) colormap_layout = QHBoxLayout() colormap_layout.addWidget(self.colorbarLabel) colormap_layout.addWidget(self.colormapComboBox) colormap_layout.addStretch(1) # grid_layout created in QtLayerControls # addWidget(widget, row, column, [row_span, column_span]) self.grid_layout.addWidget(QLabel('opacity:'), 0, 0) self.grid_layout.addWidget(self.opacitySlider, 0, 1) self.grid_layout.addWidget(QLabel('contrast limits:'), 1, 0) self.grid_layout.addWidget(self.contrastLimitsSlider, 1, 1) self.grid_layout.addWidget(QLabel('gamma:'), 2, 0) self.grid_layout.addWidget(self.gammaSlider, 2, 1) self.grid_layout.addWidget(QLabel('colormap:'), 3, 0) self.grid_layout.addLayout(colormap_layout, 3, 1) self.grid_layout.addWidget(QLabel('blending:'), 4, 0) self.grid_layout.addWidget(self.blendComboBox, 4, 1) self.grid_layout.setRowStretch(5, 1) self.grid_layout.setColumnStretch(1, 1) self.grid_layout.setSpacing(4)
Example #14
Source File: QLinkableWidgets.py From pylustrator with GNU General Public License v3.0 | 6 votes |
def __init__(self, layout: QtWidgets.QLayout, texts: Sequence[str]): """ a group of radio buttons Args: layout: the layout to which to add the widget texts: the text label """ QtWidgets.QWidget.__init__(self) layout.addWidget(self) self.layout = QtWidgets.QHBoxLayout(self) self.layout.setContentsMargins(0, 0, 0, 0) self.radio_buttons = [] self.texts = texts for name in texts: radio = QtWidgets.QRadioButton(name) radio.toggled.connect(self.onToggled) self.layout.addWidget(radio) self.radio_buttons.append(radio) self.radio_buttons[0].setChecked(True)
Example #15
Source File: QLinkableWidgets.py From pylustrator with GNU General Public License v3.0 | 6 votes |
def __init__(self, layout: QtWidgets.QLabel, text: str): """ a widget that contains a checkbox with a label Args: layout: the layout to which to add the widget text: the label text """ QtWidgets.QWidget.__init__(self) layout.addWidget(self) self.layout = QtWidgets.QHBoxLayout(self) self.label = QtWidgets.QLabel(text) self.layout.addWidget(self.label) self.layout.setContentsMargins(0, 0, 0, 0) self.input1 = QtWidgets.QCheckBox() self.input1.setTristate(False) self.input1.stateChanged.connect(self.onStateChanged) self.layout.addWidget(self.input1)
Example #16
Source File: QLinkableWidgets.py From pylustrator with GNU General Public License v3.0 | 6 votes |
def __init__(self, layout: QtWidgets.QLayout, text: str, values: Sequence): """ A combo box widget with a label Args: layout: the layout to which to add the widget text: the label text values: the possible values of the combo box """ QtWidgets.QWidget.__init__(self) layout.addWidget(self) self.layout = QtWidgets.QHBoxLayout(self) self.label = QtWidgets.QLabel(text) self.layout.addWidget(self.label) self.layout.setContentsMargins(0, 0, 0, 0) self.values = values self.input1 = QtWidgets.QComboBox() self.input1.addItems(values) self.layout.addWidget(self.input1) self.input1.currentIndexChanged.connect(self.valueChangeEvent) self.layout.addWidget(self.input1)
Example #17
Source File: QLinkableWidgets.py From pylustrator with GNU General Public License v3.0 | 6 votes |
def __init__(self, layout: QtWidgets.QLayout, text: str, min: float = None, use_float: bool = True): """ A spin box with a label next to it. Args: layout: the layout to which to add the widget text: the label text min: the minimum value of the spin box use_float: whether to use a float spin box or an int spin box. """ QtWidgets.QWidget.__init__(self) layout.addWidget(self) self.layout = QtWidgets.QHBoxLayout(self) self.label = QtWidgets.QLabel(text) self.layout.addWidget(self.label) self.layout.setContentsMargins(0, 0, 0, 0) self.type = float if use_float else int if use_float is False: self.input1 = QtWidgets.QSpinBox() else: self.input1 = QtWidgets.QDoubleSpinBox() if min is not None: self.input1.setMinimum(min) self.input1.valueChanged.connect(self.valueChangeEvent) self.layout.addWidget(self.input1)
Example #18
Source File: base_module_widget.py From pyrpl with GNU General Public License v3.0 | 5 votes |
def init_attribute_layout(self): """ Automatically creates the gui properties for the register_widgets in register_names. :return: """ if '\n' in self.module._gui_attributes: self.attributes_layout = QtWidgets.QVBoxLayout() self.main_layout.addLayout(self.attributes_layout) self.attribute_layout = QtWidgets.QHBoxLayout() self.attributes_layout.addLayout(self.attribute_layout) else: self.attribute_layout = QtWidgets.QHBoxLayout() self.main_layout.addLayout(self.attribute_layout) for attr_name in self.module._gui_attributes: if attr_name == '\n': self.attribute_layout = QtWidgets.QHBoxLayout() self.attributes_layout.addLayout(self.attribute_layout) else: attribute_value = getattr(self.module, attr_name) # needed for # passing the instance to the descriptor attribute = getattr(self.module.__class__, attr_name) if callable(attribute): # assume that attribute is a function widget = QtWidgets.QPushButton(attr_name) widget.clicked.connect(getattr(self.module, attr_name)) else: # standard case: make attribute widget widget = attribute._create_widget(self.module) if widget is None: continue widget.value_changed.connect(self.attribute_changed) self.attribute_widgets[attr_name] = widget self.attribute_layout.addWidget(widget) self.attribute_layout.addStretch(1)
Example #19
Source File: lockbox_widget.py From pyrpl with GNU General Public License v3.0 | 5 votes |
def __init__(self, parent): super(MainOutputProperties, self).__init__(parent) self.parent = parent self.module = self.parent.module aws = self.parent.attribute_widgets self.layout = QtWidgets.QHBoxLayout(self) self.leftlayout = QtWidgets.QVBoxLayout() self.rightlayout = QtWidgets.QVBoxLayout() self.layout.addLayout(self.leftlayout) self.layout.addLayout(self.rightlayout) self.v1 = QtWidgets.QHBoxLayout() self.v2 = QtWidgets.QHBoxLayout() self.leftlayout.addLayout(self.v2) self.leftlayout.addLayout(self.v1) self.dcgain = aws['dc_gain'] self.v1.addWidget(self.dcgain) self.dcgain.label.setText('analog DC-gain') self.v1.addWidget(aws["unit"]) aws['dc_gain'].set_log_increment() self.v2.addWidget(aws["output_channel"]) # self.v2.addWidget(aws["tf_type"]) self.button_tf = AnalogTfSpec(self) self.v2.addWidget(self.button_tf) # aws['tf_curve'].hide() self.setTitle('Main settings') for v in self.v1, self.v2: v.setSpacing(9) self.rightlayout.addWidget(aws["max_voltage"]) self.rightlayout.addWidget(aws["min_voltage"])
Example #20
Source File: lockbox_widget.py From pyrpl with GNU General Public License v3.0 | 5 votes |
def __init__(self, parent): super(SweepOutputProperties, self).__init__(parent) self.parent = parent aws = self.parent.attribute_widgets self.layout = QtWidgets.QHBoxLayout(self) self.v1 = QtWidgets.QVBoxLayout() self.layout.addLayout(self.v1) self.v2 = QtWidgets.QVBoxLayout() self.layout.addLayout(self.v2) self.v1.addWidget(aws["sweep_frequency"]) self.v1.addWidget(aws['sweep_amplitude']) self.v2.addWidget(aws["sweep_offset"]) self.v2.addWidget(aws["sweep_waveform"]) self.setTitle("Sweep parameters")
Example #21
Source File: lockbox_widget.py From pyrpl with GNU General Public License v3.0 | 5 votes |
def __init__(self, parent): super(PidProperties, self).__init__(parent) self.parent = parent self.module = self.parent.module aws = self.parent.attribute_widgets self.layout = QtWidgets.QHBoxLayout(self) self.v2 = QtWidgets.QVBoxLayout() self.layout.addLayout(self.v2) self.v1 = QtWidgets.QVBoxLayout() self.layout.addLayout(self.v1) self.radio_group = QtWidgets.QButtonGroup() self.manual = QtWidgets.QRadioButton('manual design') self.assisted = QtWidgets.QRadioButton('assisted design') self.radio_group.addButton(self.manual) self.radio_group.addButton(self.assisted) self.assisted.toggled.connect(self.toggle_mode) # only one button of the group must be connected # self.manual.toggled.connect(self.toggle_mode) self.manual_widget = WidgetManual(self) self.v1.addWidget(self.manual) self.v1.addWidget(self.manual_widget) # self.col3.addWidget(aws["tf_filter"]) self.assisted_widget = WidgetAssisted(self) self.v2.insertWidget(0, self.assisted) self.v2.addWidget(self.assisted_widget) self.v2.addStretch(5) self.setTitle("Pid control") for v in (self.v1, self.v2, self.layout): v.setSpacing(0) v.setContentsMargins(5, 1, 0, 0)
Example #22
Source File: QComplexWidgets.py From pylustrator with GNU General Public License v3.0 | 5 votes |
def __init__(self, axis: str, signal_target_changed: QtCore.Signal): """ A widget to change the tick properties Args: axis: whether to use the "x" or "y" axis signal_target_changed: a signal to emit when the target changed """ QtWidgets.QWidget.__init__(self) self.setWindowTitle("Figure - " + axis + "-Axis - Ticks - Pylustrator") self.setWindowIcon(QtGui.QIcon(os.path.join(os.path.dirname(__file__), "icons", "ticks.ico"))) self.layout = QtWidgets.QVBoxLayout(self) self.axis = axis self.label = QtWidgets.QLabel( "Ticks can be specified, one tick pre line.\nOptionally a label can be provided, e.g. 1 \"First\",") self.layout.addWidget(self.label) self.layout2 = QtWidgets.QHBoxLayout() self.layout.addLayout(self.layout2) self.input_ticks = TextWidget(self.layout2, axis + "-Ticks:", multiline=True, horizontal=False) self.input_ticks.editingFinished.connect(self.ticksChanged) self.input_ticks2 = TextWidget(self.layout2, axis + "-Ticks (minor):", multiline=True, horizontal=False) self.input_ticks2.editingFinished.connect(self.ticksChanged2) self.input_scale = ComboWidget(self.layout, axis + "-Scale", ["linear", "log", "symlog", "logit"]) self.input_scale.link(axis + "scale", signal_target_changed) self.input_font = TextPropertiesWidget(self.layout) self.input_labelpad = NumberWidget(self.layout, axis + "-Labelpad", min=-999) self.input_labelpad.link(axis + "axis.labelpad", signal_target_changed, direct=True) self.button_ok = QtWidgets.QPushButton("Ok") self.layout.addWidget(self.button_ok) self.button_ok.clicked.connect(self.hide)
Example #23
Source File: lockbox_widget.py From pyrpl with GNU General Public License v3.0 | 5 votes |
def __init__(self, all_sig_widget): self.all_sig_widget = all_sig_widget self.lb_widget = self.all_sig_widget.lb_widget super(InputsWidget, self).__init__(all_sig_widget) self.layout = QtWidgets.QHBoxLayout(self) self.input_widgets = dict() #self.layout.addStretch(1) for signal in self.lb_widget.module.inputs: self.add_input(signal) #self.layout.addStretch(1)
Example #24
Source File: lockbox_widget.py From pyrpl with GNU General Public License v3.0 | 5 votes |
def init_gui(self): #self.main_layout = QtWidgets.QVBoxLayout(self) self.init_main_layout(orientation="vertical") self.init_attribute_layout() for name, attr in self.attribute_widgets.items(): self.attribute_layout.removeWidget(attr) self.lay_h1 = QtWidgets.QHBoxLayout() self.main_layout.addLayout(self.lay_h1) self.lay_v1 = QtWidgets.QVBoxLayout() self.lay_h1.addLayout(self.lay_v1) self.lay_v2 = QtWidgets.QVBoxLayout() self.lay_h1.addLayout(self.lay_v2) aws = self.attribute_widgets #self.lay_v1.addWidget(aws['name']) self.lay_v1.addWidget(aws['input']) self.lay_v2.addWidget(aws['setpoint']) self.lay_v1.addWidget(aws['duration']) self.lay_v2.addWidget(aws['gain_factor']) self.lay_h2 = QtWidgets.QVBoxLayout() self.main_layout.addLayout(self.lay_h2) self.output_widgets = [] for output in self.module.lockbox.outputs: self.output_widgets.append(self.module.outputs[output.name]._create_widget()) self.lay_h2.addWidget(self.output_widgets[-1]) #self.lay_h3 = QtWidgets.QHBoxLayout() #self.main_layout.addLayout(self.lay_h3) aws['function_call'].set_horizontal() #self.lay_h3.addWidget(aws['function_call']) self.main_layout.addWidget(aws['function_call']) self.button_goto = QtWidgets.QPushButton('Go to this stage') self.button_goto.clicked.connect(self.module.enable) self.main_layout.addWidget(self.button_goto)
Example #25
Source File: curve_viewer_widget.py From pyrpl with GNU General Public License v3.0 | 5 votes |
def init_gui(self): """ To be overwritten in derived class :return: """ self.top_level_layout = QtWidgets.QVBoxLayout() self.setLayout(self.top_level_layout) self.main_layout = QtWidgets.QHBoxLayout() self.top_level_layout.addLayout(self.main_layout) self.bottom_layout = QtWidgets.QHBoxLayout() self.top_level_layout.addLayout(self.bottom_layout) self.init_attribute_layout()
Example #26
Source File: curve_viewer_widget.py From pyrpl with GNU General Public License v3.0 | 5 votes |
def init_attribute_layout(self): super(CurveViewerWidget, self).init_attribute_layout() self.textbox = QtWidgets.QHBoxLayout() self.bottom_layout.addLayout(self.textbox) curve = self.attribute_widgets["curve"] for name in ["pk", "curve", "params"]: widget = self.attribute_widgets[name] self.main_layout.removeWidget(widget) self.textbox.addWidget(widget) #widget.children()[2].setFixedHeight(500) widget.children()[2].setMinimumHeight(500) widths = {'pk': 100, 'params': 200} if name in widths: #widget.children()[2].setFixedWidth(widths[name]) widget.children()[2].setMinimumWidth(widths[name])
Example #27
Source File: base_module_widget.py From pyrpl with GNU General Public License v3.0 | 5 votes |
def init_main_layout(self, orientation='horizontal'): self.root_layout = QtWidgets.QHBoxLayout() self.main_widget = QtWidgets.QWidget() self.root_layout.addWidget(self.main_widget) if orientation == "vertical": self.main_layout = QtWidgets.QVBoxLayout() else: self.main_layout = QtWidgets.QHBoxLayout() self.main_widget.setLayout(self.main_layout) self.setLayout(self.root_layout)
Example #28
Source File: qt_viewer_buttons.py From napari with BSD 3-Clause "New" or "Revised" License | 5 votes |
def __init__(self, viewer): super().__init__() self.viewer = viewer self.deleteButton = QtDeleteButton(self.viewer) self.newPointsButton = QtViewerPushButton( self.viewer, 'new_points', 'New points layer', lambda: self.viewer.add_points(data=None), ) self.newShapesButton = QtViewerPushButton( self.viewer, 'new_shapes', 'New shapes layer', lambda: self.viewer.add_shapes(data=None), ) self.newLabelsButton = QtViewerPushButton( self.viewer, 'new_labels', 'New labels layer', lambda: self.viewer._new_labels(), ) layout = QHBoxLayout() layout.setContentsMargins(0, 0, 0, 0) layout.addWidget(self.newPointsButton) layout.addWidget(self.newShapesButton) layout.addWidget(self.newLabelsButton) layout.addStretch(0) layout.addWidget(self.deleteButton) self.setLayout(layout)
Example #29
Source File: iir_widget.py From pyrpl with GNU General Public License v3.0 | 5 votes |
def init_gui(self): # setup filter in its present state self.module.setup() # moved at the beginning of the function, # otherwise, values altered in setup (such as iir.loops) are # not updated in the gui (gui already creted but not yet connected # to the signal launcher) self.init_main_layout(orientation="vertical") #self.main_layout = QtWidgets.QVBoxLayout() #self.setLayout(self.main_layout) # add all attribute widgets and remove them right away self.init_attribute_layout() for widget in self.attribute_widgets.values(): self.main_layout.removeWidget(widget) # divide into top and bottom layout self.top_layout = QtWidgets.QHBoxLayout() self.main_layout.addLayout(self.top_layout) # add graph widget self.graph_widget = IirGraphWidget(self) self.top_layout.addWidget(self.graph_widget) # buttons to the right of graph self.button_widget = IirButtonWidget(self) self.top_layout.addWidget(self.button_widget) # poles and zeros at the bottom of the graph self.bottom_widget = IirBottomWidget(self) self.main_layout.addWidget(self.bottom_widget) # set colors of labels to the one of the corresponding traces self.attribute_widgets['data_curve'].setStyleSheet("color: green") self.update_plot()
Example #30
Source File: spec_an_widget.py From pyrpl with GNU General Public License v3.0 | 5 votes |
def __init__(self, specan_widget): super(BasebandAttributesWidget, self).__init__() self.h_layout = QtWidgets.QHBoxLayout() self.setLayout(self.h_layout) aws = specan_widget.attribute_widgets self.v_layout1 = QtWidgets.QVBoxLayout() self.h_layout.addLayout(self.v_layout1) for name in ["display_input1_baseband", "display_input2_baseband"]: widget = aws[name] specan_widget.attribute_layout.removeWidget(widget) self.v_layout1.addWidget(widget) self.v_layout2 = QtWidgets.QVBoxLayout() self.h_layout.addLayout(self.v_layout2) for name in ["input1_baseband", "input2_baseband"]: widget = aws[name] specan_widget.attribute_layout.removeWidget(widget) self.v_layout2.addWidget(widget) self.v_layout3 = QtWidgets.QVBoxLayout() self.h_layout.addLayout(self.v_layout3) for name in ["display_cross_amplitude"]:#, "display_cross_phase"]: widget = aws[name] specan_widget.attribute_layout.removeWidget(widget) self.v_layout3.addWidget(widget)