Home
last modified time | relevance | path

Searched refs:parentView (Results 1 – 25 of 604) sorted by relevance

12345678910>>...25

/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Design/MessageFilters/
H A DZoomingMessageFilter.cs34 protected override void Initialize(WorkflowView parentView) in Initialize() argument
36 base.Initialize(parentView); in Initialize()
117 WorkflowView parentView = ParentView; in OnMouseUp()
169 WorkflowView parentView = ParentView; in OnZoomRectComplete()
179 WorkflowView parentView = ParentView; in UpdateZoom()
183 …terF = new PointF((float)center.X / (float)parentView.HScrollBar.Maximum, (float)center.Y / (float… in UpdateZoom()
187 …int newCenter = new Point((int)((float)parentView.HScrollBar.Maximum * relativeCenterF.X), (int)((… in UpdateZoom()
188parentView.ScrollPosition = new Point(newCenter.X - parentView.HScrollBar.LargeChange / 2, newCent… in UpdateZoom()
198 WorkflowView parentView = ParentView;
241 WorkflowView parentView = ParentView; in RefreshUIState()
[all …]
H A DDragSelectionMessageFilter.cs56 WorkflowView parentView = ParentView; in OnMouseMove()
64 float dragMultiply = 2.0f / (float)parentView.Zoom * 100.0f; in OnMouseMove()
72 parentView.InvalidateLogicalRectangle(DragRectangle); in OnMouseMove()
87 WorkflowView parentView = ParentView; in OnMouseUp()
149 WorkflowView parentView = ParentView;
153 this.previousCursor = parentView.Cursor;
154 parentView.Cursor = Cursors.Cross;
155 parentView.Capture = true;
159 parentView.Capture = false;
162 parentView.Cursor = this.previousCursor;
[all …]
H A DDragDropManager.cs48 base.Initialize(parentView); in Initialize()
80 WorkflowView parentView = ParentView; in OnMouseDown()
101 WorkflowView parentView = ParentView; in OnMouseMove()
133 parentView.Capture = true; in OnMouseMove()
238 WorkflowView parentView = ParentView; in OnDragEnter()
326 WorkflowView parentView = ParentView; in OnDragOver()
409 WorkflowView parentView = ParentView; in OnDragDrop()
569 WorkflowView parentView = ParentView; in OnDragLeave()
757 WorkflowView parentView = ParentView;
758 return ((float)parentView.Zoom / 100.0f * parentView.ActiveLayout.Scaling);
[all …]
H A DWindowManager.cs31 WorkflowView parentView = ParentView; in OnMouseDown()
39 selectedObject = parentView.RootDesigner.Activity; in OnMouseDown()
348 WorkflowView parentView = ParentView; in OnLayout()
351 if (parentView.RootDesigner != null) in OnLayout()
387 WorkflowView parentView = ParentView; in OnThemeChange()
388 if (parentView.RootDesigner != null) in OnThemeChange()
413 WorkflowView parentView = ParentView; in UpdateViewOnPageUpDown()
416 parentView.ScrollPosition = scrollPosition; in UpdateViewOnPageUpDown()
421 WorkflowView parentView = ParentView; in UpdateViewOnMouseWheel()
427 parentView.Zoom = newZoom; in UpdateViewOnMouseWheel()
[all …]
H A DAutoScrollExpandMessageFilter.cs185 WorkflowView parentView = ParentView; in OnAutoScroll()
186 Point scrollPosition = parentView.ScrollPosition; in OnAutoScroll()
198 parentView.ScrollPosition = scrollPosition; in OnAutoScroll()
207 WorkflowView parentView = ParentView; in DrawScrollIndicators()
208 Size viewPortSize = parentView.ViewPortSize; in DrawScrollIndicators()
209 Point scrollPosition = parentView.ScrollPosition; in DrawScrollIndicators()
216 if (scrollPosition.X < parentView.HScrollBar.Maximum - viewPortSize.Width) in DrawScrollIndicators()
258 WorkflowView parentView = ParentView; in OnDragEnter()
259 …if (parentView.IsClientPointInActiveLayout(parentView.PointToClient(new Point(eventArgs.X, eventAr… in OnDragEnter()
269 WorkflowView parentView = ParentView; in OnDragOver()
[all …]
H A DFreeFormDragDropManager.cs37 WorkflowView parentView = ParentView; in OnDragEnter()
38 Point clientPoint = parentView.PointToClient(new Point(eventArgs.X, eventArgs.Y)); in OnDragEnter()
40 if (parentView.IsClientPointInActiveLayout(clientPoint)) in OnDragEnter()
62 WorkflowView parentView = ParentView; in OnDragOver()
66 if (parentView.IsClientPointInActiveLayout(clientPoint)) in OnDragOver()
128 WorkflowView parentView = ParentView; in OnScroll()
129 Point clientPoint = parentView.PointToClient(Control.MousePosition); in OnScroll()
130 Point logicalPoint = parentView.ScreenPointToLogical(Control.MousePosition); in OnScroll()
132 if (parentView.IsClientPointInActiveLayout(clientPoint)) in OnScroll()
227 WorkflowView parentView = ParentView; in InvalidateDraggedImages()
[all …]
H A DGlyphManager.cs165 protected override void Initialize(WorkflowView parentView) in Initialize() argument
167 base.Initialize(parentView); in Initialize()
279 WorkflowView parentView = ParentView; in RefreshActiveGlyph()
280 if (parentView != null) in RefreshActiveGlyph()
290parentView.InvalidateLogicalRectangle(this.activeGlyph.GetBounds(this.activeDesigner, true)); in RefreshActiveGlyph()
302 parentView.Cursor = Cursors.Hand; in RefreshActiveGlyph()
303 else if (parentView.Cursor == Cursors.Hand) in RefreshActiveGlyph()
304 parentView.Cursor = Cursors.Default; in RefreshActiveGlyph()
333 WorkflowView parentView = ParentView; in GlyphFromPoint()
334 if (parentView != null) in GlyphFromPoint()
[all …]
H A DWorkflowDesignerMessageFilter.cs16 private WorkflowView parentView; field in System.Workflow.ComponentModel.Design.WorkflowDesignerMessageFilter
35 protected virtual void Initialize(WorkflowView parentView) in Initialize() argument
37 this.parentView = parentView; in Initialize()
166 return this.parentView;
187 if (this.parentView != null) in GetService()
188 service = ((IServiceProvider)this.parentView).GetService(serviceType); in GetService()
192 internal void SetParentView(WorkflowView parentView) in SetParentView() argument
194 Initialize(parentView); in SetParentView()
H A DPanningMessageFilter.cs28 protected override void Initialize(WorkflowView parentView) in Initialize() argument
30 base.Initialize(parentView); in Initialize()
75 WorkflowView parentView = ParentView; in OnMouseMove()
76parentView.ScrollPosition = new Point(parentView.ScrollPosition.X - panSize.Width, parentView.Scro… in OnMouseMove()
/dports/cad/sweethome3d/SweetHome3D-6.6.4-src/src/com/eteks/sweethome3d/applet/
H A DAppletContentManager.java110 public String showOpenDialog(final View parentView, in showOpenDialog() argument
121 showError(parentView, errorMessage); in showOpenDialog()
127 JRootPane parent = SwingUtilities.getRootPane((JComponent)parentView); in showOpenDialog()
166 deleteSelectedHome(parentView, availableHomesList); in showOpenDialog()
203 return super.showOpenDialog(parentView, dialogTitle, contentType); in showOpenDialog()
218 if (JOptionPane.showOptionDialog((JComponent)parentView, message, title, in deleteSelectedHome()
245 this.preferences, this.viewFactory).executeTask(parentView); in deleteSelectedHome()
257 public String showSaveDialog(View parentView, in showSaveDialog() argument
274 && !confirmOverwrite(parentView, savedName)) { in showSaveDialog()
284 showError(parentView, errorMessage); in showSaveDialog()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/junit/src/org/chromium/chrome/browser/webapps/addtohomescreen/
H A DAddToHomescreenDialogViewTest.java115 Assert.assertNotNull(parentView); in testLoadingState()
116 Assert.assertNotNull(parentView.findViewById(R.id.spinny)); in testLoadingState()
117 Assert.assertNotNull(parentView.findViewById(R.id.icon)); in testLoadingState()
118 Assert.assertNotNull(parentView.findViewById(R.id.text)); in testLoadingState()
120 Assert.assertNotNull(parentView.findViewById(R.id.name)); in testLoadingState()
121 Assert.assertNotNull(parentView.findViewById(R.id.origin)); in testLoadingState()
152 Assert.assertNotNull(parentView); in testLoadingStatePwa()
153 Assert.assertNotNull(parentView.findViewById(R.id.spinny)); in testLoadingStatePwa()
154 Assert.assertNotNull(parentView.findViewById(R.id.icon)); in testLoadingStatePwa()
155 Assert.assertNotNull(parentView.findViewById(R.id.text)); in testLoadingStatePwa()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/browser/ui/android/appmenu/internal/java/src/org/chromium/chrome/browser/ui/appmenu/
H A DAppMenuAdapterTest.java95 View view1 = adapter.getView(0, null, parentView); in testStandardMenuItem()
124 View view1 = adapter.getView(0, null, parentView); in testStandardMenuItem_WithMenuIcon()
140 View view1 = adapter.getView(0, null, parentView); in testConvertView_Reused_StandardMenuItem()
145 View view2 = adapter.getView(1, view1, parentView); in testConvertView_Reused_StandardMenuItem()
164 View view1 = adapter.getView(0, null, parentView); in testConvertView_Reused_TitleMenuItem()
172 View view2 = adapter.getView(1, view1, parentView); in testConvertView_Reused_TitleMenuItem()
193 View view1 = adapter.getView(0, null, parentView); in testConvertView_Reused_TitleMenuItem_WithMenuIcon()
214 View view1 = adapter.getView(0, null, parentView); in testConvertView_Reused_IconRow()
242 View view1 = adapter.getView(0, null, parentView); in testConvertView_NotReused()
271 View view1 = adapter.getView(0, null, parentView); in testConvertView_NotReused_IconRow()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/tools/gn/examples/ios/app/
H A DViewController.m25 - (void)addCenteredView:(UIView*)view toParentView:(UIView*)parentView {
26 view.center = [parentView convertPoint:parentView.center
27 fromView:parentView.superview];
28 [parentView addSubview:view];
/dports/devel/gn/gn-1962/examples/ios/app/
H A DViewController.m25 - (void)addCenteredView:(UIView*)view toParentView:(UIView*)parentView {
26 view.center = [parentView convertPoint:parentView.center
27 fromView:parentView.superview];
28 [parentView addSubview:view];
/dports/sysutils/hfsexplorer/hfsexplorer-hfsexplorer-0.23.1/src/java/org/catacombae/hfs/
H A DAllocationFile.java30 protected final HFSVolume parentView; field in AllocationFile
33 protected AllocationFile(HFSVolume parentView, in AllocationFile() argument
35 this.parentView = parentView; in AllocationFile()
38 if(this.parentView == null) in AllocationFile()
55 CommonHFSVolumeHeader vh = parentView.getVolumeHeader(); in isAllocationBlockUsed()
113 CommonHFSVolumeHeader vh = parentView.getVolumeHeader(); in countBlocks()
192 CommonHFSVolumeHeader vh = parentView.getVolumeHeader(); in findFreeSpace()
/dports/devel/easyloggingpp/easyloggingpp-9.97.0/samples/Qt/file-splitter-joiner/
H A Daddsplittedfiledialog.cpp13 AddSplittedFileDialog::AddSplittedFileDialog(QTreeWidget* parentView, QWidget *parent) : in AddSplittedFileDialog() argument
16 parentView(parentView), in AddSplittedFileDialog()
27 … filenamePointer = parentView->selectedItems().size() > 0 ? parentView->selectedItems()[0] : NULL; in AddSplittedFileDialog()
77 filenamePointer = new QTreeWidgetItem(parentView); in on_buttonBox_accepted()
83 filenamePointer = new QTreeWidgetItem(parentView); in on_buttonBox_accepted()
/dports/sysutils/fusefs-encfs/encfs-1.9.5/vendor/github.com/muflihun/easyloggingpp/samples/Qt/file-splitter-joiner/
H A Daddsplittedfiledialog.cpp13 AddSplittedFileDialog::AddSplittedFileDialog(QTreeWidget* parentView, QWidget *parent) : in AddSplittedFileDialog() argument
16 parentView(parentView), in AddSplittedFileDialog()
27 … filenamePointer = parentView->selectedItems().size() > 0 ? parentView->selectedItems()[0] : NULL; in AddSplittedFileDialog()
77 filenamePointer = new QTreeWidgetItem(parentView); in on_buttonBox_accepted()
83 filenamePointer = new QTreeWidgetItem(parentView); in on_buttonBox_accepted()
/dports/audio/supercollider/SuperCollider-3.11.0-Source/SCClassLibrary/Common/GUI/Base/
H A DEZgui.sc83 parentView.isNil.if {
97 parentView = w.asView;
102 view = CompositeView.new(parentView, bounds).resize_(2);
107 view = CompositeView.new(parentView,bounds);
114 prMakeMarginGap { |parentView, argMargin, argGap|
116 var decorator = parentView.asView.tryPerform(\decorator);
133 *new { |parentView, bounds, label,items, globalAction, initVal = 0,
136 ^super.new.init(parentView, bounds, label, items, globalAction, initVal,
140 init { |parentView, bounds, label, argItems, argGlobalAction, initVal,
144 this.prMakeMarginGap(parentView, argMargin, argGap);
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Workflow.ComponentModel/AuthoringOM/Design/
H A DWorkflowLayouts.cs21 protected WorkflowView parentView; field in System.Workflow.ComponentModel.Design.WorkflowLayout
32 Debug.Assert(this.parentView != null); in WorkflowLayout()
33 if (this.parentView == null) in WorkflowLayout()
85 …Size rootDesignerSize = (this.parentView.RootDesigner != null) ? this.parentView.RootDesigner.Size…
145 … this.parentView.RootDesigner.Bounds.Width >= 0 && this.parentView.RootDesigner.Bounds.Height >= 0) in OnPaint()
216 …Size rootDesignerSize = (this.parentView.RootDesigner != null) ? this.parentView.RootDesigner.Size…
233 … this.parentView.RootDesigner.Bounds.Width >= 0 && this.parentView.RootDesigner.Bounds.Height >= 0) in OnPaint()
320 Size totalSize = this.parentView.ClientSizeToLogical(this.parentView.ViewPortSize);
385 …Size rootDesignerSize = (this.parentView.RootDesigner != null) ? this.parentView.RootDesigner.Size…
550 … graphicsMatrics.Scale((float)this.parentView.Zoom / 100.0f, (float)this.parentView.Zoom / 100.0f); in OnPaint()
[all …]
H A DActivityDesigner.cs971 if (parentView != null) in EnsureVisible()
1015 if (parentView != null) in Invalidate()
1035 if (parentView != null) in Invalidate()
1821 if (parentView != null) in ShowInfoTip()
1832 if (parentView != null) in ShowInfoTip()
1844 if (parentView != null) in ShowInPlaceTip()
1854 if (parentView != null) in PerformLayout()
1866 if (parentView != null) in PointToScreen()
1880 if (parentView != null) in PointToLogical()
1894 if (parentView != null) in RectangleToScreen()
[all …]
/dports/net/mediastreamer/mediastreamer-2.16.1/src/videofilters/
H A Diosdisplay.m64 @synthesize parentView;
177 if (parentView == aparentView) {
181 if(parentView != nil) {
193 [parentView release];
194 parentView = nil;
197 parentView = aparentView;
199 if(parentView != nil) {
200 [parentView retain];
205 [parentView addSubview:self];
233 self.parentView = nil;
[all …]
/dports/lang/smalltalk/smalltalk-3.2.5/packages/blox/browser/
H A DView.st34 | data parentView childViews |
43 aView parentView: view.
99 parentView [
100 "Return view's parentView. If view is a rootView, nil is returned"
103 ^parentView
106 parentView: aView [
107 "Set parentView to aView"
110 parentView := aView
117 ^parentView isNil ifTrue: [self] ifFalse: [parentView rootView]
131 parentView := childViews := nil
/dports/devel/juce/JUCE-f37e9a1/modules/juce_audio_plugin_client/VST/
H A Djuce_VST_Wrapper.mm108 HIViewRef parentView = 0;
116 HIViewFindByID (root, kHIViewWindowContentID, &parentView);
118 if (parentView == 0)
119 parentView = root;
125 if (parentView == 0)
135 HIViewAddSubview (parentView, dummyView);
171 NSView* parentView = [(NSView*) parentWindowOrView retain];
174 comp->addToDesktop (0, parentView);
180 if ([parentView frame].size.height == 0)
186 [[parentView window] setAcceptsMouseMovedEvents: YES];
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/ios/chrome/browser/ui/content_suggestions/
H A Dntp_home_test_utils.mm39 // Returns the subview of |parentView| corresponding to the
42 UIView* parentView) {
43 if (parentView.accessibilityIdentifier == accessibilityID) {
44 return parentView;
46 if (parentView.subviews.count == 0)
48 for (UIView* view in parentView.subviews) {
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/features/start_surface/internal/java/src/org/chromium/chrome/features/start_surface/
H A DTasksSurfaceViewBinder.java28 public final ViewGroup parentView; field in TasksSurfaceViewBinder.ViewHolder
32 ViewHolder(ViewGroup parentView, View tasksSurfaceView, View topToolbarPlaceholderView) { in ViewHolder() argument
33 this.parentView = parentView; in ViewHolder()
55 viewHolder.parentView.addView(viewHolder.tasksSurfaceView); in updateLayoutAndVisibility()

12345678910>>...25