Home
last modified time | relevance | path

Searched refs:itemsSelected (Results 1 – 25 of 56) sorted by relevance

123

/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/download/home/snackbars/
H A DDeleteUndoCoordinator.java42 public void showSnackbar(Collection<OfflineItem> itemsSelected, Callback<Boolean> callback) { in showSnackbar() argument
43 assert !itemsSelected.isEmpty(); in showSnackbar()
45 Snackbar snackbar = Snackbar.make(UndoUiUtils.getTitleFor(itemsSelected), mController, in showSnackbar()
48 snackbar.setTemplateText(UndoUiUtils.getTemplateTextFor(itemsSelected)); in showSnackbar()
50 UndoUiUtils.getAccessibilityActionAnnouncementTextFor(itemsSelected)); in showSnackbar()
/dports/irc/kvirc/KVIrc-5.0.0-73-gbdeac0429/src/modules/theme/
H A DThemeManagementDialog.cpp307 QList<QListWidgetItem *> itemsSelected = m_pListWidget->selectedItems(); in packTheme() local
308 for(int i = 0; i < itemsSelected.count(); i++) in packTheme()
309 dl.append(((ThemeListWidgetItem *)itemsSelected.at(i))->themeInfo()); in packTheme()
374 QList<QListWidgetItem *> itemsSelected = m_pListWidget->selectedItems(); in deleteTheme() local
375 for(int i = 0; i < itemsSelected.count(); i++) in deleteTheme()
377 ThemeListWidgetItem * pItem = dynamic_cast<ThemeListWidgetItem *>(itemsSelected.at(i)); in deleteTheme()
390 QString szThemePath = ((ThemeListWidgetItem *)itemsSelected.at(i))->themeInfo()->directory(); in deleteTheme()
494 QList<QListWidgetItem *> itemsSelected = m_pListWidget->selectedItems(); in enableDisableButtons() local
495 int iCount = itemsSelected.count(); in enableDisableButtons()
503 ThemeListWidgetItem * pItem = dynamic_cast<ThemeListWidgetItem *>(itemsSelected.at(i)); in enableDisableButtons()
/dports/sysutils/barrier/barrier-2.3.3/src/gui/src/
H A DServerConfigDialog.cpp150 bool itemsSelected = !m_pListHotkeys->selectedItems().isEmpty(); in on_m_pListHotkeys_itemSelectionChanged() local
151 m_pButtonEditHotkey->setEnabled(itemsSelected); in on_m_pListHotkeys_itemSelectionChanged()
152 m_pButtonRemoveHotkey->setEnabled(itemsSelected); in on_m_pListHotkeys_itemSelectionChanged()
153 m_pButtonNewAction->setEnabled(itemsSelected); in on_m_pListHotkeys_itemSelectionChanged()
155 if (itemsSelected && serverConfig().hotkeys().size() > 0) in on_m_pListHotkeys_itemSelectionChanged()
/dports/sysutils/synergy/synergy-core-1.14.0.4-stable/src/gui/src/
H A DServerConfigDialog.cpp183 bool itemsSelected = !m_pListHotkeys->selectedItems().isEmpty(); in on_m_pListHotkeys_itemSelectionChanged() local
184 m_pButtonEditHotkey->setEnabled(itemsSelected); in on_m_pListHotkeys_itemSelectionChanged()
185 m_pButtonRemoveHotkey->setEnabled(itemsSelected); in on_m_pListHotkeys_itemSelectionChanged()
186 m_pButtonNewAction->setEnabled(itemsSelected); in on_m_pListHotkeys_itemSelectionChanged()
188 if (itemsSelected && serverConfig().hotkeys().size() > 0) in on_m_pListHotkeys_itemSelectionChanged()
/dports/audio/soundkonverter/soundkonverter-3.0.1/src/
H A Dfilelist.cpp101 connect( this, SIGNAL(itemSelectionChanged()), this, SLOT(itemsSelected()) ); in FileList()
823 itemsSelected(); in convertNextItem()
920 itemsSelected(); in itemFinished()
1024 itemsSelected(); in rippingFinished()
1130 itemsSelected(); in showOptionsEditorDialog()
1153 itemsSelected(); in selectPreviousItem()
1175 itemsSelected(); in selectNextItem()
1217 itemsSelected(); in removeSelectedItems()
1269 itemsSelected(); in convertSelectedItems()
1307 void FileList::itemsSelected() in itemsSelected() function in FileList
[all …]
H A Doptionseditor.h119 void itemsSelected( QList<FileListItem*> );
H A Dfilelist.h106 void itemsSelected();
/dports/devel/umbrello/umbrello-21.12.3/umbrello/clipboard/
H A Dumlclipboard.cpp112 UMLListViewItemList itemsSelected = listView->selectedItems(); in copy() local
113 if (itemsSelected.count() <= 0) { in copy()
119 setCopyType(itemsSelected); in copy()
143 if (!fillSelectionLists(itemsSelected)) { in copy()
147 if (itemsSelected.count() <= 0) { in copy()
/dports/cad/ktechlab/ktechlab-0.50.0/src/
H A Diteminterface.cpp183 bool itemsSelected = p_itemGroup && p_itemGroup->itemCount(); in updateItemActions() local
185 itemView->actionByName("edit_raise")->setEnabled(itemsSelected); in updateItemActions()
186 itemView->actionByName("edit_lower")->setEnabled(itemsSelected); in updateItemActions()
190 KTechlab::self()->actionByName("edit_cut")->setEnabled(itemsSelected); in updateItemActions()
191 KTechlab::self()->actionByName("edit_copy")->setEnabled(itemsSelected); in updateItemActions()
/dports/audio/cantata/cantata-2.4.2/widgets/
H A Dplayqueueview.cpp194 connect(groupedView, SIGNAL(itemsSelected(bool)), SIGNAL(itemsSelected(bool))); in setMode()
211 connect(treeView, SIGNAL(itemsSelected(bool)), SIGNAL(itemsSelected(bool))); in setMode()
H A Dlistview.h65 bool itemsSelected(bool);
H A Dtreeview.h77 void itemsSelected(bool);
H A Dcategorizedview.h73 bool itemsSelected(bool);
H A Ditemview.cpp742 connect(treeView, SIGNAL(itemsSelected(bool)), this, SIGNAL(itemsSelected(bool))); in ItemView()
746 connect(listView, SIGNAL(itemsSelected(bool)), this, SIGNAL(itemsSelected(bool))); in ItemView()
823 connect(groupedView, SIGNAL(itemsSelected(bool)), this, SIGNAL(itemsSelected(bool))); in allowGroupedView()
843 connect(tableView, SIGNAL(itemsSelected(bool)), this, SIGNAL(itemsSelected(bool))); in allowTableView()
865 connect(categorizedView, SIGNAL(itemsSelected(bool)), this, SIGNAL(itemsSelected(bool))); in allowCategorized()
H A Dplayqueueview.h123 void itemsSelected(bool);
H A Dlistview.cpp67 emit itemsSelected(haveSelection); in selectionChanged() local
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmldesigner/
H A Dshortcutmanager.cpp203 …ew(), &DesignerActionManagerView::selectionChanged, this, [this](bool itemsSelected, bool rootItem… in registerActions() argument
204 m_deleteAction.setEnabled(itemsSelected && !rootItemIsSelected); in registerActions()
205 m_cutAction.setEnabled(itemsSelected && !rootItemIsSelected); in registerActions()
206 m_copyAction.setEnabled(itemsSelected); in registerActions()
/dports/comms/klog/klog-1.8.5/src/
H A Dsearchwidget.cpp809 bool itemsSelected = false; in slotSearchExportButtonClicked() local
824 itemsSelected = true; in slotSearchExportButtonClicked()
827 if (itemsSelected) in slotSearchExportButtonClicked()
/dports/graphics/kimageannotator/kImageAnnotator-0.5.3/src/annotations/modifiers/
H A DAnnotationItemModifier.h57 void itemsSelected(const QList<AbstractAnnotationItem *> &items) const;
H A DAnnotationItemModifier.cpp171 emit itemsSelected(selectedItems); in handleSelection() local
/dports/audio/cantata/cantata-2.4.2/devices/
H A Dsynccollectionwidget.cpp76 connect(tree, SIGNAL(itemsSelected(bool)), checkAction, SLOT(setEnabled(bool))); in SyncCollectionWidget()
77 connect(tree, SIGNAL(itemsSelected(bool)), unCheckAction, SLOT(setEnabled(bool))); in SyncCollectionWidget()
/dports/graphics/kimageannotator/kImageAnnotator-0.5.3/src/annotations/core/
H A DAnnotationArea.cpp53 …connect(mItemModifier, &AnnotationItemModifier::itemsSelected, this, &AnnotationArea::itemsSelecte… in AnnotationArea()
437 void AnnotationArea::itemsSelected(const QList<AbstractAnnotationItem *> &items) const in itemsSelected() function in kImageAnnotator::AnnotationArea
H A DAnnotationArea.h134 void itemsSelected(const QList<AbstractAnnotationItem *> &items) const;
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/src/plugins/qmldesigner/components/componentcore/
H A Ddesigneractionmanagerview.h79 void selectionChanged(bool itemsSelected, bool rootItemIsSelected);
/dports/graphics/qgis-ltr/qgis-3.16.16/python/console/
H A Dconsole_sci.py600 itemsSelected = self.listView.selectionModel().selectedIndexes()
601 if itemsSelected:
602 item = itemsSelected[0].row()

123