Searched refs:where (Results 251 - 275 of 465) sorted by relevance

<<111213141516171819

/haiku/src/add-ons/print/drivers/gutenprint/
H A DGPBinding.h51 status_t AddBitmapToPage(BBitmap* bitmap, BRect validRect, BPoint where);
/haiku/src/kits/interface/
H A DTextInput.h33 virtual void MouseDown(BPoint where);
H A DCheckBox.cpp205 BCheckBox::MouseDown(BPoint where) argument
226 GetMouse(&where, &buttons, true);
228 bool inside = bounds.Contains(where);
249 BCheckBox::MouseUp(BPoint where) argument
254 bool inside = Bounds().Contains(where);
274 BCheckBox::MouseMoved(BPoint where, uint32 code, argument
280 bool inside = Bounds().Contains(where);
H A DRadioButton.cpp119 BRadioButton::MouseDown(BPoint where) argument
138 GetMouse(&where, &buttons, true);
139 bool inside = bounds.Contains(where);
308 BRadioButton::MouseUp(BPoint where) argument
313 fOutlined = Bounds().Contains(where);
328 BRadioButton::MouseMoved(BPoint where, uint32 code, argument
334 bool inside = Bounds().Contains(where);
H A DChannelSlider.cpp287 BChannelSlider::MouseDown(BPoint where) argument
290 BControl::MouseDown(where);
312 if (frame.Contains(where)) {
354 _MouseMovedCommon(where, B_ORIGIN);
360 GetMouse(&where, &buttons);
361 _MouseMovedCommon(where, B_ORIGIN);
372 BChannelSlider::MouseUp(BPoint where) argument
381 BChannelControl::MouseUp(where);
387 BChannelSlider::MouseMoved(BPoint where, uint32 code, const BMessage* message) argument
390 _MouseMovedCommon(where, B_ORIGI
593 DrawThumb(BView* into, int32 channel, BPoint where, bool pressed) argument
[all...]
H A DControl.cpp296 BControl::MouseDown(BPoint where) argument
298 BView::MouseDown(where);
303 BControl::MouseUp(BPoint where) argument
305 BView::MouseUp(where);
310 BControl::MouseMoved(BPoint where, uint32 code, const BMessage* dragMessage) argument
312 BView::MouseMoved(where, code, dragMessage);
/haiku/src/apps/processcontroller/
H A DProcessController.h28 virtual void MouseDown(BPoint where);
/haiku/src/apps/autoraise/
H A DAutoRaiseIcon.h64 virtual void MouseDown(BPoint where);
/haiku/src/servers/app/
H A DEventStream.cpp42 EventStream::GetNextCursorPosition(BPoint& where, bigtime_t timeout) argument
164 InputServerStream::GetNextCursorPosition(BPoint &where, bigtime_t timeout) argument
188 where.x = pos >> 16UL;
189 where.y = pos & 0xffff;
H A DWindow.h138 View* ViewAt(const BPoint& where);
190 void MouseDown(BMessage* message, BPoint where,
194 void MouseUp(BMessage* message, BPoint where,
196 void MouseMoved(BMessage* message, BPoint where,
311 Window* StackedWindowAt(const BPoint& where);
H A DEventDispatcher.cpp491 EventDispatcher::GetMouse(BPoint& where, int32& buttons) argument
495 where = fLastCursorPosition;
771 BPoint where; local
772 if (event->FindPoint("where", &where) == B_OK)
773 fLastCursorPosition = where;
838 // The "where" field will be filled in by the receiver
840 event->RemoveName("where");
994 BPoint where; local
1002 status = fStream->GetNextCursorPosition(where, timeou
[all...]
/haiku/src/apps/deskcalc/
H A DExpressionTextView.h30 virtual void MouseDown(BPoint where);
H A DExpressionTextView.cpp103 // If changes where not applied the value has become a new expression
114 ExpressionTextView::MouseDown(BPoint where) argument
119 InputTextView::MouseDown(where);
122 where = ConvertToParent(where);
123 fCalcView->MouseDown(where);
/haiku/src/apps/deskbar/
H A DTeamMenuItem.h66 bool HandleMouseDown(BPoint where);
/haiku/src/apps/serialconnect/
H A DTermView.h27 void MouseDown(BPoint where);
/haiku/src/servers/app/drawing/
H A DAlphaMask.cpp351 BPoint where, bool inverse)
354 fWhere(where)
447 ServerPicture* picture, const DrawState& drawState, BPoint where,
450 VectorAlphaMask<PictureAlphaMask>(previousMask, where, inverse),
510 const shape_data& shape, BPoint where, bool inverse)
512 VectorAlphaMask<ShapeAlphaMask>(previousMask, where, inverse),
539 BPoint where, bool inverse)
350 VectorAlphaMask(AlphaMask* previousMask, BPoint where, bool inverse) argument
446 PictureAlphaMask(AlphaMask* previousMask, ServerPicture* picture, const DrawState& drawState, BPoint where, bool inverse) argument
509 ShapeAlphaMask(AlphaMask* previousMask, const shape_data& shape, BPoint where, bool inverse) argument
538 Create(AlphaMask* previousMask, const shape_data& shape, BPoint where, bool inverse) argument
/haiku/src/add-ons/kernel/drivers/audio/cmedia/
H A Dcm.c317 physical_entry where; local
344 if (get_memory_map(addr, trysize, &where, 1) < B_OK) {
348 if ((where.address & ~(phys_addr_t)0xffffff) != 0) {
352 if (ainfo.lock < B_FULL_LOCK || where.size < low_size) {
357 where.address, ainfo.address);
375 if (get_memory_map(addr, low_size, &where, 1) < 0) {
380 ddprintf(("cmedia_pci: physical %p\n", where.address));
381 if ((where.address & ~(phys_addr_t)0xffffff) != 0) {
386 if (((where.address + low_size) & ~(phys_addr_t)0xffffff) != 0) {
405 card->low_phys = where
[all...]
/haiku/src/apps/icon-o-matic/generic/gui/popup_control/
H A DPopupSlider.cpp152 PopupSlider::MouseDown(BPoint where) argument
154 if (fEnabled && fSliderButtonRect.Contains(where) &&
160 where.x -= fSliderButtonRect.left + 1.0;
161 fSlider->SetDragOffset(where.x);
164 ShowPopup(&where);
165 // fSlider->SetDragOffset(where.x);
/haiku/src/preferences/input/
H A DMouseView.cpp158 MouseView::MouseDown(BPoint where) argument
182 if (_ButtonRect(offset, i).Contains(where)) {
190 if (clipping.Contains(where)) {
209 ConvertToScreen(&where);
210 menu.Go(where, true);
/haiku/headers/os/interface/
H A DView.h185 virtual void MouseDown(BPoint where);
186 virtual void MouseUp(BPoint where);
187 virtual void MouseMoved(BPoint where, uint32 code,
237 BPoint where = B_ORIGIN, bool sync = true);
239 BPoint where = B_ORIGIN, bool sync = true);
323 void SetOrigin(BPoint where);
477 BPoint where);
488 BPoint where);
547 BPoint where);
549 BPoint where);
[all...]
H A DTextView.h76 virtual void MouseDown(BPoint where);
77 virtual void MouseUp(BPoint where);
78 virtual void MouseMoved(BPoint where, uint32 code,
343 bool _PerformMouseUp(BPoint where);
344 bool _PerformMouseMoved(BPoint where, uint32 code);
346 void _TrackMouse(BPoint where,
350 void _TrackDrag(BPoint where);
353 BPoint where, BPoint offset);
414 void _ShowContextMenu(BPoint where);
/haiku/src/apps/haikudepot/textview/
H A DTextDocumentView.cpp138 TextDocumentView::MouseDown(BPoint where) argument
146 int32 offset = fTextDocumentLayout.TextOffsetAt(where.x, where.y, unused);
167 SetCaret(where, extendSelection);
172 TextDocumentView::MouseUp(BPoint where) argument
179 TextDocumentView::MouseMoved(BPoint where, uint32 transit, argument
186 int32 offset = fTextDocumentLayout.TextOffsetAt(where.x, where.y, unused);
200 SetCaret(where, true);
/haiku/src/apps/workspaces/
H A DWorkspaces.cpp138 virtual void MouseMoved(BPoint where, uint32 transit,
140 virtual void MouseDown(BPoint where);
575 WorkspacesView::MouseMoved(BPoint where, uint32 transit, argument
584 where = ConvertToScreen(where);
591 if (where.x == screenFrame.left || where.x == screenFrame.right
592 || where.y == screenFrame.top || where.y == screenFrame.bottom) {
598 if (windowFrame.Contains(where))
605 MouseDown(BPoint where) argument
[all...]
/haiku/src/kits/network/libnetapi/
H A DSecureSocket.cpp258 static void apps_ssl_info_callback(const SSL *s, int where, int ret) argument
263 w=where& ~SSL_ST_MASK;
272 if (where & SSL_CB_LOOP) {
274 } else if (where & SSL_CB_ALERT) {
275 str = (where & SSL_CB_READ) ? "read" : "write";
280 } else if (where & SSL_CB_EXIT) {
/haiku/src/kits/tracker/infowindow/
H A DGeneralInfoView.cpp78 virtual void MouseMoved(BPoint where, uint32 transit, const BMessage*);
520 GeneralInfoView::MouseDown(BPoint where) argument
523 if (fLinkRect.Contains(where)) {
526 } else if (fPathRect.Contains(where)) {
529 } else if (fSizeRect.Contains(where)) {
544 GeneralInfoView::MouseMoved(BPoint where, uint32, const BMessage* dragMessage) argument
551 if (fLinkRect.Contains(where) != fMouseDown) {
558 if (fPathRect.Contains(where) != fMouseDown) {
565 if (fSizeRect.Contains(where) != fMouseDown) {
682 GeneralInfoView::MouseUp(BPoint where) argument
[all...]

Completed in 127 milliseconds

<<111213141516171819