/dports/audio/geonkick-lv2/geonkick-2.8.0/src/ |
H A D | percussion_view.cpp | 105 , copyButton{nullptr} 163 copyButton = new RkButton(this); in createView() 164 copyButton->setType(RkButton::ButtonType::ButtonPush); in createView() 165 copyButton->setSize(16, 16); in createView() 166 copyButton->setImage(RkImage(copyButton->size(), RK_IMAGE_RC(copy_per_button)), in createView() 168 copyButton->setImage(RkImage(copyButton->size(), RK_IMAGE_RC(copy_per_button_hover)), in createView() 170 copyButton->setImage(RkImage(copyButton->size(), RK_IMAGE_RC(copy_per_button_on)), in createView() 172 copyButton->setImage(RkImage(copyButton->size(), RK_IMAGE_RC(copy_per_button_hover)), in createView() 174 copyButton->show(); in createView() 175 percussionContainer->addWidget(copyButton); in createView() [all …]
|
/dports/misc/qt5-examples/qt-everywhere-src-5.15.2/qtbase/examples/widgets/draganddrop/dropsite/ |
H A D | dropsitewindow.cpp | 85 copyButton = new QPushButton(tr("Copy")); in DropSiteWindow() 90 buttonBox->addButton(copyButton, QDialogButtonBox::ActionRole); in DropSiteWindow() 92 copyButton->setVisible(false); in DropSiteWindow() 99 connect(copyButton, &QAbstractButton::clicked, this, &DropSiteWindow::copy); in DropSiteWindow() 118 copyButton->setEnabled(false); in updateFormatsTable() 157 copyButton->setEnabled(formatsTable->rowCount() > 0); in updateFormatsTable()
|
/dports/multimedia/obs-studio/obs-studio-27.1.3/UI/ |
H A D | crash-report.cpp | 14 QPushButton *copyButton = new QPushButton; in OBSCrashReport() local 15 copyButton->setText("Copy crash log"); in OBSCrashReport() 26 buttonLayout->addWidget(copyButton); in OBSCrashReport() 35 QWidget::connect(copyButton, SIGNAL(clicked()), this, in OBSCrashReport()
|
/dports/sysutils/k3b/k3b-21.12.3/src/ |
H A D | k3bdebuggingoutputdialog.cpp | 49 QPushButton* copyButton = new QPushButton( this ); in DebuggingOutputDialog() local 50 …KGuiItem::assign( copyButton, KGuiItem( i18n("Copy"), QString::fromLatin1( "edit-copy" ), i18n("Co… in DebuggingOutputDialog() 51 connect( copyButton, SIGNAL(clicked()), this, SLOT(slotCopyClicked()) ); in DebuggingOutputDialog() 56 buttonBox->addButton( copyButton, QDialogButtonBox::NoRole ); in DebuggingOutputDialog()
|
/dports/sysutils/vector/vector-0.10.0/website/src/theme/CodeBlock/ |
H A D | styles.module.css | 27 .copyButton { 46 .copyButton:hover { 57 .codeBlockTitle:hover + .codeBlockContent .copyButton, 58 .codeBlockContent:hover > .copyButton {
|
/dports/math/jts/jts-jts-1.18.1/modules/app/src/main/java/org/locationtech/jtstest/testbuilder/ |
H A D | JTSTestBuilderToolBar.java | 42 JButton copyButton = new JButton(); field in JTSTestBuilderToolBar 170 copyButton.setMargin(new Insets(0, 0, 0, 0)); in getToolBar() 171 copyButton.setVerticalTextPosition(SwingConstants.BOTTOM); in getToolBar() 172 copyButton.setFont(new java.awt.Font("SansSerif", 0, 10)); in getToolBar() 173 copyButton.setMaximumSize(new Dimension(30, 30)); in getToolBar() 174 copyButton.setMinimumSize(new Dimension(30, 30)); in getToolBar() 175 copyButton.setPreferredSize(new Dimension(30, 30)); in getToolBar() 176 copyButton.setToolTipText(AppStrings.TIP_CASE_DUP); in getToolBar() 178 copyButton.setIcon(copyCaseIcon); in getToolBar() 179 copyButton.addActionListener( in getToolBar() [all …]
|
/dports/graphics/pinta/pinta-1.7.1/Pinta/Dialogs/ |
H A D | VersionInformationTabPage.cs | 72 var copyButton = new Button (Catalog.GetString ("Copy Version Info")); in VersionInformationTabPage() 73 copyButton.Clicked += CopyButton_Clicked; in VersionInformationTabPage() 76 toplayout.Add (copyButton); in VersionInformationTabPage() 79 toplayout.SetChildPacking (copyButton, false, false, 0, PackType.Start); in VersionInformationTabPage()
|
/dports/x11-toolkits/gtk-sharp30/gtk-sharp-2.99.3/sample/GtkDemo/ |
H A D | DemoClipboard.cs | 40 Button copyButton = new Button (Stock.Copy); in CreateCopyBox() 41 copyButton.Clicked += new EventHandler (CopyClicked); in CreateCopyBox() 43 hbox.PackStart (copyButton, false, false, 0); in CreateCopyBox()
|
/dports/x11-toolkits/gtk-sharp20/gtk-sharp-2.12.45/sample/GtkDemo/ |
H A D | DemoClipboard.cs | 40 Button copyButton = new Button (Stock.Copy); in CreateCopyBox() 41 copyButton.Clicked += new EventHandler (CopyClicked); in CreateCopyBox() 43 hbox.PackStart (copyButton, false, false, 0); in CreateCopyBox()
|
/dports/x11-fm/krusader2/krusader-2.7.2/krusader/ActionMan/ |
H A D | useractionpage.cpp | 81 copyButton = new QToolButton(this); in UserActionPage() 82 copyButton->setIcon(Icon("edit-copy")); in UserActionPage() 83 copyButton->setAutoRaise(true); in UserActionPage() 84 copyButton->setToolTip(i18n("Copy useractions to clipboard")); in UserActionPage() 99 toolbarLayout->addWidget(copyButton); in UserActionPage() 130 connect(copyButton, SIGNAL(clicked()), SLOT(slotToClip())); in UserActionPage()
|
/dports/biology/ugene/ugene-40.1/src/corelibs/U2Designer/src/dashboard/ |
H A D | ExternalToolsDashboardWidget.cpp | 319 if (badgeLabel->copyButton && kind == NODE_KIND_RUN) { in ExternalToolsTreeNode() 320 connect(badgeLabel->copyButton, SIGNAL(clicked()), SLOT(sl_copyRunCommand())); in ExternalToolsTreeNode() 454 : kind(kind), titleLabel(nullptr), copyButton(nullptr), logView(nullptr) { in BadgeLabel() 480 …copyButton = new HoverQLabel("", "QLabel {" + copyButtonStyle + "}", "QLabel {" + copyButtonStyle … in BadgeLabel() 481 copyButton->setPixmap(QPixmap(":U2Designer/images/copy.png")); in BadgeLabel() 482 copyButton->setObjectName("copyButton"); in BadgeLabel() 483 copyButton->setToolTip(tr("Copy command line")); in BadgeLabel() 484 layout->addWidget(copyButton); in BadgeLabel() 496 …copyButton->setStyleSheet(copyButton->styleSheet().replace(RUN_NODE_NORMAL_COLOR, RUN_NODE_IMPORTA… in switchToImportantStyle()
|
/dports/editors/calligra/calligra-3.2.1/sheets/dialogs/ |
H A D | ListDialog.cpp | 51 QPushButton* copyButton; member in ListDialog::Private 101 d->copyButton = new QPushButton(i18n("Copy"), page); in ListDialog() 102 grid1->addWidget(d->copyButton, 6, 2); in ListDialog() 109 connect(d->copyButton, SIGNAL(clicked()), this, SLOT(slotCopy())); in ListDialog() 132 d->copyButton->setEnabled(row >= 0); in slotCurrentRowChanged() 248 d->copyButton->setEnabled(false); in slotNew()
|
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/password_check/android/internal/java/src/org/chromium/chrome/browser/password_check/ |
H A D | PasswordCheckViewDialogFragment.java | 50 ImageButton copyButton = dialogContent.findViewById(R.id.view_dialog_copy_button); in onCreateDialog() local 51 copyButton.setClickable(true); in onCreateDialog() 52 copyButton.setOnClickListener(unusedView -> { in onCreateDialog()
|
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.ui/bundles/org.eclipse.ui.ide/src/org/eclipse/ui/ide/dialogs/ |
H A D | ImportTypeDialog.java | 84 private Button copyButton = null; field in ImportTypeDialog 207 if (copyButton != null) in refreshSelection() 208 copyButton.setSelection(currentSelection == IMPORT_COPY); in refreshSelection() 305 copyButton = new Button(composite, SWT.RADIO); in createDialogArea() 306 …copyButton.setText(hasFlag(IMPORT_FILES_ONLY) ? IDEWorkbenchMessages.ImportTypeDialog_copyFiles: I… in createDialogArea() 308 copyButton.setLayoutData(gridData); in createDialogArea() 309 copyButton.setData(IMPORT_COPY); in createDialogArea() 310 copyButton.addSelectionListener(listener); in createDialogArea() 311 copyButton.setFont(parent.getFont()); in createDialogArea()
|
/dports/devel/juce/JUCE-f37e9a1/extras/Projucer/Source/Application/Windows/ |
H A D | jucer_SVGPathDataWindowComponent.h | 55 addAndMakeVisible (copyButton); in SVGPathDataComponent() 56 … copyButton.onClick = [this] { SystemClipboard::copyTextToClipboard (resultText.getText()); }; in SVGPathDataComponent() 105 copyButton.setBounds (bottomSection.removeFromLeft (50)); in resized() 203 TextButton copyButton { "Copy" };
|
/dports/biology/ugene/ugene-40.1/src/corelibs/U2View/src/ov_msa/general/ |
H A D | MSAGeneralTab.cpp | 90 connect(copyButton, SIGNAL(clicked()), sequenceArea, SLOT(sl_copySelectionFormatted())); in connectSignals() 100 … connect(sequenceArea, SIGNAL(si_copyFormattedChanging(bool)), copyButton, SLOT(setEnabled(bool))); in connectSignals() 113 copyButton->setToolTip(msaEditor->getUI()->copyFormattedSelectionAction->toolTip()); in initializeParameters() 140 copyButton->setEnabled(msaEditor->getUI()->copyFormattedSelectionAction->isEnabled()); in updateState()
|
/dports/devel/eric6/eric6-21.11/eric/eric6/E5Gui/ |
H A D | E5PlainTextDialog.py | 35 self.copyButton = self.buttonBox.addButton( 38 self.copyButton.clicked.connect(self.on_copyButton_clicked)
|
/dports/cad/openscad/openscad-41f58fe57c03457a3a8b4dc541ef5654ec3e8c78/src/ |
H A D | FontListDialog.cc | 62 copyButton->setEnabled(false); in selection_changed() 71 copyButton->setEnabled(true); in selection_changed() 77 copyButton->setEnabled(false); in update_font_list()
|
/dports/cad/openscad-devel/openscad-63a7c77740030c63d646eb0684ba6947eecb0db7/src/ |
H A D | FontListDialog.cc | 62 copyButton->setEnabled(false); in selection_changed() 71 copyButton->setEnabled(true); in selection_changed() 77 copyButton->setEnabled(false); in update_font_list()
|
/dports/lang/kturtle/kturtle-21.12.3/src/ |
H A D | colorpicker.cpp | 106 …QPushButton* copyButton = new QPushButton(QIcon::fromTheme(QStringLiteral("edit-copy")), i18n("&Co… in ColorPicker() local 107 mainLayout->addWidget(copyButton); in ColorPicker() 108 resultLayout->addWidget(copyButton); in ColorPicker() 109 connect(copyButton, &QPushButton::clicked, this, &ColorPicker::copyProxy); in ColorPicker()
|
/dports/devel/pyside2/pyside-setup-opensource-src-5.15.2/examples/multimedia/ |
H A D | camera.py | 70 copyButton = QPushButton("Copy") 71 copyButton.setToolTip("Copy file name to clipboard") 72 topLayout.addWidget(copyButton) 73 copyButton.clicked.connect(self.copy)
|
/dports/devel/pyside2-tools/pyside-setup-opensource-src-5.15.2/examples/multimedia/ |
H A D | camera.py | 70 copyButton = QPushButton("Copy") 71 copyButton.setToolTip("Copy file name to clipboard") 72 topLayout.addWidget(copyButton) 73 copyButton.clicked.connect(self.copy)
|
/dports/devel/shiboken2/pyside-setup-opensource-src-5.15.2/examples/multimedia/ |
H A D | camera.py | 70 copyButton = QPushButton("Copy") 71 copyButton.setToolTip("Copy file name to clipboard") 72 topLayout.addWidget(copyButton) 73 copyButton.clicked.connect(self.copy)
|
/dports/www/kf5-khtml/khtml-5.89.0/src/java/org/kde/kjas/server/ |
H A D | KJASSwingConsole.java | 51 private JButton copyButton; field in KJASSwingConsole 71 copyButton = new JButton(); in initComponents() 103 copyButton.setText("copy"); in initComponents() 104 copyButton.addActionListener(new ActionListener() { in initComponents() 110 jPanel1.add(copyButton, BorderLayout.CENTER); in initComponents()
|
/dports/science/devisor/devisor2.1/devisor2/grid/GUI/framework/ |
H A D | ToolBar.java | 48 private JButton copyButton; field in ToolBar 206 …copyButton = new JButton(new ImageIcon((cc.op.get(Options.general_devisorhome))+"/images/Copy.gif"… in initButtons() 207 copyButton.setActionCommand (MainActionListener.COPY); in initButtons() 208 copyButton.setToolTipText ((String)cc.rb.getObject("GUI_framework_ToolBar_copytooltip")); in initButtons() 209 copyButton.addActionListener (mal); in initButtons() 210 copyButton.setMaximumSize (new Dimension (31,31)); in initButtons() 211 copyButton.setMinimumSize (new Dimension (31,31)); in initButtons() 212 copyButton.setPreferredSize (new Dimension (31,31)); in initButtons() 213 add(copyButton); in initButtons()
|