Home
last modified time | relevance | path

Searched refs:vSelection (Results 1 – 13 of 13) sorted by relevance

/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/examples/org.eclipse.swt.snippets/src/org/eclipse/swt/snippets/
H A DSnippet48.java65 int vSelection = vBar.getSelection (); in main()
66 int destY = -vSelection - origin.y; in main()
69 origin.y = -vSelection; in main()
81 int vSelection = vBar.getSelection (); in main()
86 if (vSelection >= vPage) { in main()
87 if (vPage <= 0) vSelection = 0; in main()
88 origin.y = -vSelection; in main()
H A DSnippet9.java61 int vSelection = vBar.getSelection (); in main()
67 if (vSelection >= vPage) { in main()
68 if (vPage <= 0) vSelection = 0; in main()
69 location.y = -vSelection; in main()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/
H A DScrolledCompositeLayout.java110 int vSelection = vBar.getSelection (); in layout() local
111 if (vSelection >= vPage) { in layout()
113 vSelection = 0; in layout()
116 contentRect.y = -vSelection; in layout()
H A DScrolledComposite.java709 int vSelection = vBar.getSelection (); in vScroll() local
710 content.setLocation (location.x, -vSelection); in vScroll()
/dports/x11-toolkits/swt/swt-4.20/org/eclipse/swt/custom/
H A DScrolledCompositeLayout.java110 int vSelection = vBar.getSelection (); in layout() local
111 if (vSelection >= vPage) { in layout()
113 vSelection = 0; in layout()
116 contentRect.y = -vSelection; in layout()
H A DScrolledComposite.java709 int vSelection = vBar.getSelection (); in vScroll() local
710 content.setLocation (location.x, -vSelection); in vScroll()
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.debug/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/viewers/model/
H A DVirtualCopyToClipboardActionDelegate.java223 Set<VirtualItem> vSelection = new HashSet<>(selection.length * 4 / 3); in initVirtualViewer() local
238 vSelection.add( parentVItem.getItem(new Index(index)) ); in initVirtualViewer()
241 validator.setItemsToCopy(vSelection); in initVirtualViewer()
242 listener.fItemsToUpdate = new HashSet<>(vSelection); in initVirtualViewer()
/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar/src/org/herac/tuxguitar/gui/editors/chord/
H A DChordList.java101 int vSelection = vBar.getSelection();
102 int destY = -vSelection - origin.y;
105 origin.y = -vSelection;
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.platform.swt/examples/org.eclipse.swt.examples/src/org/eclipse/swt/examples/clipboard/
H A DClipboardExample.java423 int vSelection = copyVBar.getSelection(); in createImageTransfer()
424 int destY = -vSelection - copyOrigin.y; in createImageTransfer()
427 copyOrigin.y = -vSelection; in createImageTransfer()
510 int vSelection = pasteVBar.getSelection(); in createImageTransfer()
511 int destY = -vSelection - pasteOrigin.y; in createImageTransfer()
514 pasteOrigin.y = -vSelection; in createImageTransfer()
/dports/editors/libreoffice/libreoffice-7.2.6.2/sw/source/uibase/app/
H A Dapphdl.cxx772 … uno::Sequence<uno::Any> vSelection({ uno::makeAny(xConfigItem->GetResultSetPosition()) }); in ExecOther() local
774 {"Selection", uno::makeAny(vSelection)}, in ExecOther()
/dports/editors/libreoffice6/libreoffice-6.4.7.2/sw/source/uibase/app/
H A Dapphdl.cxx755 … uno::Sequence<uno::Any> vSelection({ uno::makeAny(xConfigItem->GetResultSetPosition()) }); in ExecOther() local
757 {"Selection", uno::makeAny(vSelection)}, in ExecOther()
/dports/graphics/ospray-studio/ospray_studio-0.9.1/external/imguiFileDialog/
H A DImGuiFileDialog.cpp4506 IMGUIFILEDIALOG_API void IGFD_Selection_DestroyContent(IGFD_Selection* vSelection) in IGFD_Selection_DestroyContent() argument
4508 if (vSelection) in IGFD_Selection_DestroyContent()
4510 if (vSelection->table) in IGFD_Selection_DestroyContent()
4512 for (size_t i = 0U; i < vSelection->count; i++) in IGFD_Selection_DestroyContent()
4514 IGFD_Selection_Pair_DestroyContent(&vSelection->table[i]); in IGFD_Selection_DestroyContent()
4516 delete[] vSelection->table; in IGFD_Selection_DestroyContent()
4518 vSelection->count = 0U; in IGFD_Selection_DestroyContent()
H A DImGuiFileDialog.h1379 IMGUIFILEDIALOG_API void IGFD_Selection_DestroyContent(IGFD_Selection* vSelection); // destroy …