Home
last modified time | relevance | path

Searched refs:selectionController (Results 1 – 25 of 157) sorted by relevance

1234567

/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebCore/editing/
H A DSetSelectionCommand.cpp42 SelectionController* selectionController = document()->frame()->selection(); in doApply() local
43 ASSERT(selectionController); in doApply()
45 …if (selectionController->shouldChangeSelection(m_selectionToSet) && m_selectionToSet.isNonOrphaned… in doApply()
46 selectionController->setSelection(m_selectionToSet, m_options); in doApply()
53 SelectionController* selectionController = document()->frame()->selection(); in doUnapply() local
54 ASSERT(selectionController); in doUnapply()
56 …if (selectionController->shouldChangeSelection(startingSelection()) && startingSelection().isNonOr… in doUnapply()
57 selectionController->setSelection(startingSelection(), m_options); in doUnapply()
/dports/multimedia/aegisub/aegisub-3.2.2/src/command/
H A Dgrid.cpp56 c->selectionController->NextLine(); in operator ()()
72 AssDialogue *cur = c->selectionController->GetActiveLine(); in CMD_ICON()
73 c->selectionController->NextLine(); in CMD_ICON()
74 if (cur == c->selectionController->GetActiveLine()) { in CMD_ICON()
83 c->selectionController->NextLine(); in CMD_ICON()
95 c->selectionController->PrevLine(); in operator ()()
115 return c->selectionController->GetSelectedSet().size() > 1; in CMD_TYPE()
354 return c->selectionController->GetSelectedSet().size() != 0; in CMD_TYPE()
371 return c->selectionController->GetSelectedSet().size() != 0; in CMD_TYPE()
389 return c->selectionController->GetSelectedSet().size() == 2; in CMD_ICON()
[all …]
H A Dedit.cpp79 return c->selectionController->GetSelectedSet().size() > 0; in CMD_TYPE()
93 return c->selectionController->GetSelectedSet().size() > 1; in CMD_TYPE()
305 auto const& sel = c->selectionController->GetSelectedSet(); in update_lines()
335 auto const& sel = c->selectionController->GetSelectedSet(); in show_color_picker()
552 auto const& sel = c->selectionController->GetSelectedSet(); in delete_lines()
648 auto const& sel = c->selectionController->GetSelectedSet(); in duplicate_lines()
749 auto sel = c->selectionController->GetSortedSelection(); in combine_lines()
886 auto const& sel = c->selectionController->GetSelectedSet(); in operator ()()
964 auto active_line = c->selectionController->GetActiveLine(); in operator ()()
1039 auto sel = c->selectionController->GetSortedSelection(); in operator ()()
[all …]
H A Dsubtitle.cpp64 return !c->selectionController->GetSelectedSet().empty(); in CMD_TYPE()
120 def->Style = c->selectionController->GetActiveLine()->Style; in insert_subtitle_at_video()
122 auto pos = c->ass->iterator_to(*c->selectionController->GetActiveLine()); in insert_subtitle_at_video()
128 c->selectionController->SetSelectionAndActive({ def }, def); in insert_subtitle_at_video()
138 AssDialogue *active_line = c->selectionController->GetActiveLine(); in operator ()()
161 c->selectionController->SetSelectionAndActive({ new_line }, new_line); in operator ()()
183 AssDialogue *active_line = c->selectionController->GetActiveLine(); in operator ()()
203 c->selectionController->SetSelectionAndActive({ new_line }, new_line); in operator ()()
368 c->selectionController->SetSelectedSet(std::move(sel)); in operator ()()
391 c->selectionController->SetActiveLine(&diag); in CMD_ICON()
[all …]
H A Dtime.cpp63 auto sel = c->selectionController->GetSortedSelection(); in CMD_TYPE()
75 auto const& sel = c->selectionController->GetSelectedSet(); in adjoin_lines()
132 auto const& sel = c->selectionController->GetSelectedSet(); in CMD_ICON()
133 const auto active_line = c->selectionController->GetActiveLine(); in CMD_ICON()
162 auto const& sel = c->selectionController->GetSelectedSet(); in snap_subs_video()
227 for (auto line : c->selectionController->GetSelectedSet()) { in CMD_ICON()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/contextualsearch/
H A DTapSuppressionHeuristics.java28 TapSuppressionHeuristics(ContextualSearchSelectionController selectionController, in TapSuppressionHeuristics() argument
36 mHeuristics.add(new RecentScrollTapSuppression(selectionController)); in TapSuppressionHeuristics()
38 selectionController, previousTapState, x, y, wasSelectionEmptyBeforeTap)); in TapSuppressionHeuristics()
43 mHeuristics.add(new NearTopTapSuppression(selectionController, y)); in TapSuppressionHeuristics()
44 mHeuristics.add(new BarOverlapTapSuppression(selectionController, y)); in TapSuppressionHeuristics()
48 mHeuristics.add(new SecondTapMlOverride(selectionController, previousTapState, x, y)); in TapSuppressionHeuristics()
H A DBarOverlapTapSuppression.java28 ContextualSearchSelectionController selectionController, int y) { in BarOverlapTapSuppression() argument
32 mPxToDp = selectionController.getPxToDp(); in BarOverlapTapSuppression()
33 mActivity = selectionController.getActivity(); in BarOverlapTapSuppression()
H A DNearTopTapSuppression.java26 NearTopTapSuppression(ContextualSearchSelectionController selectionController, int y) { in NearTopTapSuppression() argument
29 mYDp = (int) (y * selectionController.getPxToDp()); in NearTopTapSuppression()
H A DRecentScrollTapSuppression.java30 RecentScrollTapSuppression(ContextualSearchSelectionController selectionController) { in RecentScrollTapSuppression() argument
31 long recentScrollTimeNs = selectionController.getLastScrollTime(); in RecentScrollTapSuppression()
/dports/lang/spidermonkey78/firefox-78.9.0/toolkit/components/typeaheadfind/
H A DnsTypeAheadFind.cpp258 if (!selectionController) { in SetSelectionModeAndRepaint()
262 selectionController->SetDisplaySelection(aToggle); in SetSelectionModeAndRepaint()
263 selectionController->RepaintSelection( in SetSelectionModeAndRepaint()
273 if (!selectionController) { in CollapseSelection()
368 if (!selectionController) { in FindItNow()
373 selection = selectionController->GetSelection( in FindItNow()
556 if (selectionController) { in FindItNow()
607 if (selectionController) { in FindItNow()
611 selectionController->ScrollSelectionIntoView( in FindItNow()
957 if (!selectionController) { in FindInternal()
[all …]
/dports/www/firefox/firefox-99.0/toolkit/components/typeaheadfind/
H A DnsTypeAheadFind.cpp234 if (!selectionController) { in SetSelectionModeAndRepaint()
238 selectionController->SetDisplaySelection(aToggle); in SetSelectionModeAndRepaint()
239 selectionController->RepaintSelection( in SetSelectionModeAndRepaint()
248 if (!selectionController) { in CollapseSelection()
330 if (!selectionController) { in FindItNow()
335 selection = selectionController->GetSelection( in FindItNow()
520 if (selectionController) { in FindItNow()
572 if (selectionController) { in FindItNow()
576 selectionController->ScrollSelectionIntoView( in FindItNow()
914 if (!selectionController) { in FindInternal()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/toolkit/components/typeaheadfind/
H A DnsTypeAheadFind.cpp259 if (!selectionController) { in SetSelectionModeAndRepaint()
263 selectionController->SetDisplaySelection(aToggle); in SetSelectionModeAndRepaint()
264 selectionController->RepaintSelection( in SetSelectionModeAndRepaint()
273 if (!selectionController) { in CollapseSelection()
358 if (!selectionController) { in FindItNow()
363 selection = selectionController->GetSelection( in FindItNow()
548 if (selectionController) { in FindItNow()
600 if (selectionController) { in FindItNow()
604 selectionController->ScrollSelectionIntoView( in FindItNow()
944 if (!selectionController) { in FindInternal()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/toolkit/components/typeaheadfind/
H A DnsTypeAheadFind.cpp259 if (!selectionController) { in SetSelectionModeAndRepaint()
263 selectionController->SetDisplaySelection(aToggle); in SetSelectionModeAndRepaint()
264 selectionController->RepaintSelection( in SetSelectionModeAndRepaint()
273 if (!selectionController) { in CollapseSelection()
358 if (!selectionController) { in FindItNow()
363 selection = selectionController->GetSelection( in FindItNow()
548 if (selectionController) { in FindItNow()
600 if (selectionController) { in FindItNow()
604 selectionController->ScrollSelectionIntoView( in FindItNow()
944 if (!selectionController) { in FindInternal()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/toolkit/components/typeaheadfind/
H A DnsTypeAheadFind.cpp230 if (!selectionController) { in SetSelectionModeAndRepaint()
234 selectionController->SetDisplaySelection(aToggle); in SetSelectionModeAndRepaint()
245 if (!selectionController) { in CollapseSelection()
351 if (!selectionController) { in FindItNow()
356 selectionController->GetSelection( in FindItNow()
550 getter_AddRefs(selectionController)); in FindItNow()
551 if (selectionController) { in FindItNow()
552 selectionController->GetSelection( in FindItNow()
605 if (selectionController) { in FindItNow()
987 if (!selectionController) { in Find()
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/toolkit/components/typeaheadfind/
H A DnsTypeAheadFind.cpp243 if (!selectionController) { in SetSelectionModeAndRepaint()
247 selectionController->SetDisplaySelection(aToggle); in SetSelectionModeAndRepaint()
248 selectionController->RepaintSelection( in SetSelectionModeAndRepaint()
258 if (!selectionController) { in CollapseSelection()
354 if (!selectionController) { in FindItNow()
406 ? selectionController.get() in FindItNow()
562 if (selectionController) { in FindItNow()
563 selectionController->GetSelection( in FindItNow()
615 if (selectionController) { in FindItNow()
619 selectionController->ScrollSelectionIntoView( in FindItNow()
[all …]
/dports/biology/ugene/ugene-40.1/src/corelibs/U2View/src/ov_msa/
H A DMaEditorContext.cpp36 selectionController(maEditor->getSelectionController()), in MaEditorContext()
40 SAFE_POINT(selectionController != nullptr, "selectionController is null", ); in MaEditorContext()
45 return selectionController->getSelection(); in getSelection()
/dports/multimedia/aegisub/aegisub-3.2.2/src/
H A Dbase_grid.cpp231 context->selectionController->SetSelectedSet(Selection{line}); in SelectRow()
237 auto selection = context->selectionController->GetSelectedSet(); in SelectRow()
242 context->selectionController->SetSelectedSet(std::move(selection)); in SelectRow()
343 const auto active_line = context->selectionController->GetActiveLine(); in OnPaint()
344 auto const& selection = context->selectionController->GetSelectedSet(); in OnPaint()
479 context->selectionController->SetActiveLine(dlg); in OnMouseEvent()
483 auto const& selection = context->selectionController->GetSelectedSet(); in OnMouseEvent()
521 context->selectionController->SetSelectedSet(std::move(newsel)); in OnMouseEvent()
674 auto active_line = context->selectionController->GetActiveLine(); in OnKeyDown()
677 context->selectionController->SetActiveLine(GetDialogue(next)); in OnKeyDown()
[all …]
H A Dvisual_tool.cpp57 …connections.push_back(c->selectionController->AddActiveLineListener(&VisualToolBase::OnActiveLineC… in VisualToolBase()
129 AssDialogue *diag = c->selectionController->GetActiveLine(); in GetActiveDialogueLine()
243 c->selectionController->SetActiveLine(active_feature->line); in OnMouseEvent()
255 c->selectionController->SetSelectedSet({ c->selectionController->GetActiveLine() }); in OnMouseEvent()
296 sel = c->selectionController->GetSelectedSet(); in SetSelection()
298 c->selectionController->SetSelectedSet(std::move(sel)); in SetSelection()
308 auto sel = c->selectionController->GetSelectedSet(); in RemoveSelection()
317 AssDialogue *new_active = c->selectionController->GetActiveLine(); in RemoveSelection()
321 c->selectionController->SetSelectionAndActive(std::move(sel), new_active); in RemoveSelection()
518 for (auto line : c->selectionController->GetSelectedSet()) in SetSelectedOverride()
H A Ddialog_translation.cpp67 , active_line_connection(c->selectionController->AddActiveLineListener(&DialogTranslation::OnActive… in DialogTranslation()
68 , active_line(c->selectionController->GetActiveLine()) in DialogTranslation()
197 c->selectionController->NextLine(); in NextBlock()
198 AssDialogue *new_line = c->selectionController->GetActiveLine(); in NextBlock()
218 c->selectionController->PrevLine(); in PrevBlock()
219 AssDialogue *new_line = c->selectionController->GetActiveLine(); in PrevBlock()
H A Dinitial_line_state.cpp22 : active_line_connection(c->selectionController->AddActiveLineListener(&InitialLineState::OnActiveL… in InitialLineState()
24 OnActiveLineChanged(c->selectionController->GetActiveLine()); in InitialLineState()
H A Dcontext.cpp40 , selectionController(make_unique<SelectionController>(this)) in Context()
47 subsController->SetSelectionController(selectionController.get()); in Context()
H A Daudio_timing_dialogue.cpp423 , active_line_connection(c->selectionController->AddActiveLineListener(&AudioTimingControllerDialog… in AudioTimingControllerDialogue()
424 , selection_connection(c->selectionController->AddSelectionListener(&AudioTimingControllerDialogue:… in AudioTimingControllerDialogue()
476 context->selectionController->NextLine(); in Next()
498 context->selectionController->PrevLine(); in Prev()
530 if (AssDialogue *line = context->selectionController->GetActiveLine()) in Revert()
714 auto const& sel = context->selectionController->GetSelectedSet(); in RegenerateInactiveLines()
720 if (AssDialogue *line = context->selectionController->GetActiveLine()) in RegenerateInactiveLines()
744 AssDialogue *active_line = context->selectionController->GetActiveLine(); in RegenerateInactiveLines()
778 AssDialogue *active = context->selectionController->GetActiveLine(); in RegenerateSelectedLines()
779 for (auto line : context->selectionController->GetSelectedSet()) in RegenerateSelectedLines()
H A Dvideo_controller.cpp54 context->selectionController->AddActiveLineListener(&VideoController::OnActiveLineChanged, this), in VideoController()
154 AssDialogue *curline = context->selectionController->GetActiveLine(); in PlayLine()
160 …int startFrame = FrameAtTime(context->selectionController->GetActiveLine()->Start, agi::vfr::START… in PlayLine()
162 end_frame = FrameAtTime(context->selectionController->GetActiveLine()->End, agi::vfr::END) + 1; in PlayLine()
/dports/devel/kdevelop/kdevelop-21.12.3/kdevplatform/shell/
H A Dcore.cpp160 if( !selectionController ) in initialize()
162 selectionController = new SelectionController(m_core); in initialize()
248 selectionController->initialize(); in initialize()
263 delete selectionController.data(); in ~CorePrivate()
357 d->selectionController->cleanup(); in cleanup()
499 ISelectionController* Core::selectionController() in selectionController() function in KDevelop::Core
501 return d->selectionController.data(); in selectionController()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/javatests/src/org/chromium/chrome/browser/contextualsearch/
H A DMockContextualSearchPolicy.java12 public MockContextualSearchPolicy(ContextualSearchSelectionController selectionController) { in MockContextualSearchPolicy() argument
13 super(selectionController, null); in MockContextualSearchPolicy()

1234567