Searched refs:where (Results 26 - 50 of 465) sorted by relevance

1234567891011>>

/haiku/src/apps/icon-o-matic/generic/gui/panel/color_picker/
H A DColorPreview.cpp114 BPoint where; local
117 GetMouse(&where, &buttons);
119 _DragColor(where);
139 BPoint where; local
141 if (message->FindPoint("_drop_point_", &where) == B_OK) {
142 ConvertFromScreen(&where);
143 if (where.y > Bounds().top + (Bounds().IntegerHeight() >> 1))
157 ColorPreview::MouseDown(BPoint where) argument
172 if (rect.Contains( where ) ) {
182 ColorPreview::MouseUp(BPoint where) argument
193 MouseMoved(BPoint where, uint32 transit, const BMessage* message) argument
243 _DragColor(BPoint where) argument
[all...]
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DViewContainer.cpp57 ViewContainer::MouseDown(BPoint where) argument
66 fMouseFocus = AncestorAt(where);
73 fMouseFocus->MouseDown(fMouseFocus->ConvertFromContainer(where),
80 ViewContainer::MouseUp(BPoint where) argument
92 fMouseFocus->MouseUp(fMouseFocus->ConvertFromContainer(where),
103 ViewContainer::MouseMoved(BPoint where, uint32 code, const BMessage* message) argument
115 fMouseFocus->MouseMoved(fMouseFocus->ConvertFromContainer(where),
148 ViewContainer::MouseDown(BPoint where, uint32 buttons, int32 modifiers) argument
154 ViewContainer::MouseUp(BPoint where, uint32 buttons, int32 modifiers) argument
160 ViewContainer::MouseMoved(BPoint where, uint3 argument
[all...]
H A DTwoDimensionalSliderView.h29 virtual void MouseDown(BPoint where, uint32 buttons,
31 virtual void MouseUp(BPoint where, uint32 buttons,
33 virtual void MouseMoved(BPoint where, uint32 buttons,
H A DAbstractButton.cpp84 AbstractButton::MouseDown(BPoint where, uint32 buttons, int32 modifiers) argument
90 _PressedUpdate(where);
95 AbstractButton::MouseUp(BPoint where, uint32 buttons, int32 modifiers) argument
100 _PressedUpdate(where);
126 AbstractButton::MouseMoved(BPoint where, uint32 buttons, int32 modifiers) argument
131 _PressedUpdate(where);
159 AbstractButton::_PressedUpdate(BPoint where) argument
161 bool pressedInBounds = Bounds().Contains(where);
/haiku/src/add-ons/kernel/debugger/disasm/x86/
H A Ddisasm_arch.cpp62 setup_disassembler(addr_t where) argument
65 sCurrentReadAddress = where;
71 ud_set_pc(&sUDState, (uint64_t)where);
86 disasm_arch_dump_insns(addr_t where, int count, addr_t baseAddress, argument
97 while (address < where && (len = ud_disassemble(&sUDState)) >= 1) {
102 if (address == where) {
107 baseAddress = where;
109 baseAddress = where;
125 if (address == where)
132 if (address == where)
[all...]
/haiku/src/tests/servers/app/playground/
H A DStates.cpp38 State::MouseDown(BPoint where) argument
40 where.x = floorf(where.x + 0.5);
41 where.y = floorf(where.y + 0.5);
43 if (_HitTest(where, fStartPoint)) {
45 fClickOffset = fStartPoint - where;
46 } else if (_HitTest(where, fEndPoint)) {
48 fClickOffset = fEndPoint - where;
51 fStartPoint = fEndPoint = where;
65 MouseMoved(BPoint where) argument
178 _HitTest(BPoint where, BPoint point) const argument
[all...]
/haiku/src/apps/terminal/
H A DTermViewStates.h37 virtual void MouseDown(BPoint where, int32 buttons,
39 virtual void MouseMoved(BPoint where, uint32 transit,
41 virtual void MouseUp(BPoint where, int32 buttons);
57 bool _StandardMouseMoved(BPoint where,
71 virtual void MouseDown(BPoint where, int32 buttons,
73 virtual void MouseMoved(BPoint where, uint32 transit,
75 virtual void MouseUp(BPoint where, int32 buttons);
88 void Prepare(BPoint where, int32 modifiers);
92 virtual void MouseMoved(BPoint where, uint32 transit,
94 virtual void MouseUp(BPoint where, int3
[all...]
/haiku/src/add-ons/input_server/methods/pen/
H A DPenInputInkWindow.cpp82 BPoint where; local
98 if (message->FindPoint("where", &where) == B_OK) {
99 fStrokes.LineTo(where);
106 if (message->FindPoint("where", &where) == B_OK) {
107 fStrokes.LineTo(where);
114 if (message->FindPoint("where", &where) == B_OK) {
115 fStrokes.MoveTo(where);
[all...]
/haiku/src/tests/servers/app/lagging_get_mouse/
H A Dmain.cpp16 virtual void MouseDown(BPoint where);
48 TestView::MouseDown(BPoint where) argument
59 GetMouse(&where, &buttons);
60 MovePenTo(where);
63 StrokeLine(where);
64 fMouseSamples.AddItem(new BPoint(where));
67 GetMouse(&where, &buttons);
/haiku/headers/os/interface/
H A DPopUpMenu.h25 BMenuItem* Go(BPoint where, bool autoInvoke = false,
27 BMenuItem* Go(BPoint where, bool autoInvoke,
32 virtual void MouseDown(BPoint where);
33 virtual void MouseUp(BPoint where);
34 virtual void MouseMoved(BPoint where, uint32 transit,
68 BMenuItem* _Go(BPoint where, bool autoInvoke,
71 BMenuItem* _StartTrack(BPoint where, bool autoInvoke,
/haiku/src/tests/servers/app/scrolling/
H A Dmain.cpp32 virtual void MouseDown(BPoint where);
33 virtual void MouseUp(BPoint where);
34 virtual void MouseMoved(BPoint where, uint32 transit,
80 TestView::MouseDown(BPoint where) argument
83 fLastMousePos = where;
89 TestView::MouseUp(BPoint where) argument
96 TestView::MouseMoved(BPoint where, uint32 transit, argument
100 BPoint offset = fLastMousePos - where;
102 fLastMousePos = where + offset;
/haiku/src/apps/icon-o-matic/generic/gui/stateview/
H A DManipulator.cpp39 Manipulator::MouseDown(BPoint where) argument
46 Manipulator::MouseMoved(BPoint where) argument
59 Manipulator::MouseOver(BPoint where) argument
66 Manipulator::DoubleClicked(BPoint where) argument
73 Manipulator::ShowContextMenu(BPoint where) argument
H A DManipulator.h30 virtual bool MouseDown(BPoint where);
31 virtual void MouseMoved(BPoint where);
33 virtual bool MouseOver(BPoint where);
34 virtual bool DoubleClicked(BPoint where);
36 virtual bool ShowContextMenu(BPoint where);
/haiku/src/apps/deskcalc/
H A DInputTextView.cpp34 InputTextView::MouseDown(BPoint where) argument
41 BTextView::MouseDown(where);
45 view->MouseDown(ConvertToParent(where));
52 InputTextView::MouseUp(BPoint where) argument
58 BTextView::MouseUp(where);
/haiku/src/apps/icon-o-matic/generic/gui/
H A DInputTextView.cpp32 InputTextView::MouseDown(BPoint where) argument
39 BTextView::MouseDown(where);
43 view->MouseDown(ConvertToParent(where));
50 InputTextView::MouseUp(BPoint where) argument
56 BTextView::MouseUp(where);
/haiku/src/apps/icon-o-matic/gui/
H A DGradientControl.h43 virtual void MouseDown(BPoint where);
44 virtual void MouseUp(BPoint where);
45 virtual void MouseMoved(BPoint where, uint32 transit,
73 int32 _StepIndexFor(BPoint where) const;
74 float _OffsetFor(BPoint where) const;
/haiku/src/apps/icon-o-matic/
H A DCanvasView.cpp110 CanvasView::MouseDown(BPoint where) argument
124 where.x = roundf(where.x);
125 where.y = roundf(where.y);
127 fScrollTrackingStart = where - fScrollOffsetStart;
132 StateView::MouseDown(where);
138 CanvasView::MouseUp(BPoint where) argument
145 uint32 transit = Bounds().Contains(where) ?
147 StateView::MouseMoved(where, transi
155 MouseMoved(BPoint where, uint32 transit, const BMessage* dragMessage) argument
219 MouseWheelChanged(BPoint where, float x, float y) argument
[all...]
/haiku/src/apps/aboutsystem/
H A DHyperTextView.cpp30 HyperTextAction::MouseOver(HyperTextView* view, BPoint where, int32 startOffset, argument
44 HyperTextAction::MouseAway(HyperTextView* view, BPoint where, int32 startOffset, argument
58 HyperTextAction::Clicked(HyperTextView* view, BPoint where, BMessage* message) argument
136 HyperTextView::MouseDown(BPoint where) argument
140 BTextView::MouseDown(where);
145 HyperTextView::MouseUp(BPoint where) argument
149 HyperTextAction* action = _ActionAt(where);
151 action->Clicked(this, where, message);
153 BTextView::MouseUp(where);
158 HyperTextView::MouseMoved(BPoint where, uint3 argument
[all...]
H A DHyperTextActions.h18 virtual void Clicked(HyperTextView* view, BPoint where,
30 virtual void Clicked(HyperTextView* view, BPoint where,
/haiku/src/apps/icon-o-matic/generic/property/view/
H A DPropertyEditorView.h25 virtual void MouseDown(BPoint where);
26 virtual void MouseUp(BPoint where);
27 virtual void MouseMoved(BPoint where, uint32 transit,
H A DPropertyItemView.h28 virtual void MouseDown(BPoint where);
29 virtual void MouseUp(BPoint where);
30 virtual void MouseMoved(BPoint where, uint32 transit,
/haiku/src/apps/icon-o-matic/generic/property/view/specific_properties/
H A DSwatchValueView.cpp56 SwatchValueView::MouseDown(BPoint where) argument
60 parent->MouseDown(ConvertToParent(where));
62 SwatchView::MouseDown(where);
/haiku/src/servers/app/decorator/
H A DWindowBehaviour.h27 virtual bool MouseDown(BMessage* message, BPoint where,
30 virtual void MouseUp(BMessage* message, BPoint where) = 0;
31 virtual void MouseMoved(BMessage *message, BPoint where,
/haiku/src/tests/servers/app/painter/
H A DBitmapView.cpp43 BitmapView::MouseDown(BPoint where) argument
49 BitmapView::MouseUp(BPoint where) argument
55 BitmapView::MouseMoved(BPoint where, uint32 transit, argument
/haiku/src/tests/servers/app/find_view/
H A DFindView.cpp34 virtual void MouseMoved(BPoint where, uint32 transit, argument
37 ConvertToScreen(&where);
38 where -= Window()->Frame().LeftTop();
39 BView* view = Window()->FindView(where);
40 printf("View at (%.1f, %.1f): %s\n", where.x, where.y,

Completed in 124 milliseconds

1234567891011>>