Home
last modified time | relevance | path

Searched refs:GSelection (Results 1 – 22 of 22) sorted by relevance

/dports/biology/ugene/ugene-40.1/src/corelibs/U2Core/src/selection/
H A DSelectionModel.h33 class U2CORE_EXPORT GSelection : public QObject {
36 GSelection(GSelectionType _type, QObject *p = nullptr)
52 void si_onSelectionChanged(GSelection *);
58 typedef QList<GSelection *> GSelections;
66 void addSelection(const GSelection *s);
68 void removeSelection(const GSelection *s);
74 const GSelection *findSelectionByType(GSelectionType t) const;
76 const QList<const GSelection *> &getSelections() const { in getSelections()
81 QList<const GSelection *> selections;
H A DSelectionModel.cpp26 void MultiGSelection::addSelection(const GSelection *s) { in addSelection()
31 void MultiGSelection::removeSelection(const GSelection *s) { in removeSelection()
36 const GSelection *MultiGSelection::findSelectionByType(GSelectionType t) const { in findSelectionByType()
37 foreach (const GSelection *s, selections) { in findSelectionByType()
45 void GSelection::sl_selectionChanged() { in sl_selectionChanged()
H A DSelectionUtils.cpp51 foreach (const GSelection *s, ms->getSelections()) { in findObjects()
62 foreach (const GSelection *s, ms->getSelections()) { in findObjectsKeepOrder()
73 QList<GObject *> SelectionUtils::findObjects(GObjectType t, const GSelection *s, UnloadedObjectFilt… in findObjects()
78 QList<GObject *> SelectionUtils::findObjectsKeepOrder(GObjectType t, const GSelection *s, UnloadedO… in findObjectsKeepOrder()
98 foreach (const GSelection *s, ms->getSelections()) { in findDocumentsWithObjects()
104 QSet<Document *> SelectionUtils::findDocumentsWithObjects(GObjectType t, const GSelection *s, Unloa… in findDocumentsWithObjects()
135 foreach (const GSelection *s, ms.getSelections()) { in isDocumentInSelection()
157 foreach (const GSelection *s, ms.getSelections()) { in getSelectedDocs()
168 foreach (const GSelection *s, ms.getSelections()) { in getSelectedObjects()
H A DSelectionUtils.h34 class GSelection; variable
42 static QList<GObject *> findObjects(GObjectType t, const GSelection *s, UnloadedObjectFilter f);
44 …static QList<GObject *> findObjectsKeepOrder(GObjectType t, const GSelection *s, UnloadedObjectFil…
48 …static QSet<Document *> findDocumentsWithObjects(GObjectType t, const GSelection *s, UnloadedObjec…
H A DAnnotationSelection.h37 class U2CORE_EXPORT AnnotationSelection : public GSelection {
77 class U2CORE_EXPORT AnnotationGroupSelection : public GSelection {
H A DAnnotationSelection.cpp38 : GSelection(GSelectionTypes::ANNOTATIONS, p) { in AnnotationSelection()
129 : GSelection(GSelectionTypes::ANNOTATION_GROUPS, p) { in AnnotationGroupSelection()
H A DFolderSelection.h30 class U2CORE_EXPORT FolderSelection : public GSelection {
H A DFolderSelection.cpp29 : GSelection(GSelectionTypes::FOLDERS, p) { in FolderSelection()
H A DDocumentSelection.h33 class U2CORE_EXPORT DocumentSelection : public GSelection {
H A DLRegionsSelection.h31 class U2CORE_EXPORT LRegionsSelection : public GSelection {
H A DGObjectSelection.h33 class U2CORE_EXPORT GObjectSelection : public GSelection {
H A DLRegionsSelection.cpp27 : GSelection(type, p) { in LRegionsSelection()
H A DDocumentSelection.cpp31 : GSelection(GSelectionTypes::DOCUMENTS, p) { in DocumentSelection()
H A DGObjectSelection.cpp28 : GSelection(GSelectionTypes::GOBJECTS, p) { in GObjectSelection()
/dports/biology/ugene/ugene-40.1/src/corelibs/U2Gui/src/util/
H A DRegionSelectorController.h34 class GSelection; variable
118 void sl_onSelectionChanged(GSelection *selection);
H A DRegionSelectorController.cpp250 void RegionSelectorController::sl_onSelectionChanged(GSelection *selection) { in sl_onSelectionChanged()
335 …(settings.selection, SIGNAL(si_onSelectionChanged(GSelection *)), SLOT(sl_onSelectionChanged(GSele… in connectSlots()
/dports/cad/tkgate/tkgate-2.1/src/tkgate/
H A Dselection.c37 GSelection *new_GSelection() in new_GSelection()
39 GSelection *S = (GSelection*) ob_malloc(sizeof(GSelection),"GSelection"); in new_GSelection()
50 void delete_GSelection(GSelection *S) in delete_GSelection()
207 GSelection *S = TkGate.circuit->mg_selection; in sel_num()
216 GSelection *S = TkGate.circuit->mg_selection; in sel_addGate()
247 GSelection *S = TkGate.circuit->mg_selection; in sel_finish()
392 GSelection *S = TkGate.circuit->mg_selection; in sel_unselectGate()
444 GSelection *S = TkGate.circuit->mg_selection; in sel_rotate()
H A Dcircuit.h139 GSelection *mg_selection; /* The current multi-gate selection */
H A Deditstate.h67 } GSelection; typedef
H A Dtclfuncs.c3506 GSelection *gs = TkGate.circuit->mg_selection; in gat_getSelected()
/dports/biology/ugene/ugene-40.1/src/corelibs/U2View/src/ov_sequence/
H A DSequenceObjectContext.cpp108 …connect(selection, SIGNAL(si_onSelectionChanged(GSelection *)), &commonStatisticsCache, SLOT(sl_in… in SequenceObjectContext()
109 …connect(selection, SIGNAL(si_onSelectionChanged(GSelection *)), &charactersOccurrenceCache, SLOT(s… in SequenceObjectContext()
110 …connect(selection, SIGNAL(si_onSelectionChanged(GSelection *)), &dinucleotidesOccurrenceCache, SLO… in SequenceObjectContext()
/dports/biology/ugene/ugene-40.1/src/plugins/dna_export/src/
H A DExportProjectViewItems.cpp208 const GSelection *s = ms.findSelectionByType(GSelectionTypes::GOBJECTS); in addExportImportMenu()