Home
last modified time | relevance | path

Searched refs:fillButton (Results 1 – 7 of 7) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/graphics/
H A DPathTab.java36 Button colorButton, fillButton, drawButton, closeButton; field in PathTab
85 fillButton = new Button(comp, SWT.TOGGLE); in createControlPanel()
86 fillButton.setText(GraphicsExample.getResourceString("FillPath")); //$NON-NLS-1$ in createControlPanel()
87 fillButton.addListener(SWT.Selection, event -> example.redraw()); in createControlPanel()
146 if (fillButton.getSelection()) gc.fillPath(path); in paint()
158 if (fillButton.getSelection()) gc.fillPath(path); in paint()
171 if (fillButton.getSelection()) gc.fillPath(path); in paint()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/examples/org.eclipse.swt.opengl.examples/src/org/eclipse/swt/opengl/examples/
H A DNurbTab.java203 final Button fillButton = new Button(composite, SWT.CHECK); in createControls() local
204 fillButton.setText("Fill"); in createControls()
205 fillButton.setSelection(true); in createControls()
206 fillButton.addListener(SWT.Selection, new Listener() { in createControls()
208 if (fillButton.getSelection()) { in createControls()
/dports/sysutils/cdrdao/cdrdao-1.2.4/gcdmaster/
H A DCdTextDialog.cc113 Gtk::Button *fillButton = new Gtk::Button(_(" Fill Performer ")); in CdTextDialog() local
114 bbox->pack_start(*fillButton); in CdTextDialog()
115 fillButton->signal_clicked().connect(mem_fun(*this, &CdTextDialog::fillPerformerAction)); in CdTextDialog()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/controlexample/
H A DCTabFolderTab.java49 Button rightButton, fillButton, wrapButton; field in CTabFolderTab
326 fillButton = new Button (topRightGroup, SWT.RADIO); in createStyleGroup()
327 fillButton.setText ("SWT.FILL"); in createStyleGroup()
506 if (fillButton.getSelection ()) topRightStyle |= SWT.FILL; in setTopRight()
/dports/comms/gqrx/gqrx-2.15/src/qtgui/
H A Ddockfft.cpp54 ui->fillButton->setMinimumSize(48, 24); in DockFft()
230 if (ui->fillButton->isChecked()) in saveSettings()
322 ui->fillButton->setChecked(bool_val); in readSettings()
/dports/graphics/luminance-qt5/luminance-hdr-2.6.1.1/src/HdrWizard/
H A DEditingTools.cpp72 m_Ui->fillButton->setIcon(QIcon(":/program-icons/zoom")); in EditingTools()
164 m_Ui->fillButton->setToolButtonStyle(style); in EditingTools()
226 connect(m_Ui->fillButton, &QAbstractButton::clicked, this, in setupConnections()
/dports/cad/meshlab/meshlab-Meshlab-2020.05/src/meshlabplugins/edit_hole/
H A Dedit_hole.cpp115 connect(dialogFiller->ui.fillButton, SIGNAL(clicked()), this,SLOT(fill())); in StartEdit()