Searched refs:frame (Results 251 - 275 of 954) sorted by relevance

<<11121314151617181920>>

/haiku/src/kits/interface/
H A DTabView.cpp240 BTab::DrawFocusMark(BView* owner, BRect frame) argument
249 owner->StrokeLine(BPoint((frame.left + frame.right - width) / 2.0,
250 frame.bottom - offset),
251 BPoint((frame.left + frame.right + width) / 2.0,
252 frame.bottom - offset));
255 owner->StrokeLine(BPoint((frame.left + frame.right - width) / 2.0,
256 frame
277 DrawLabel(BView* owner, BRect frame) argument
319 DrawTab(BView* owner, BRect frame, tab_position, bool) argument
349 _Borders(BView* owner, BRect frame) argument
413 BTabView(BRect frame, const char* name, button_width width, uint32 resizeMask, uint32 flags) argument
1431 BRect frame = TabFrame(i); local
[all...]
/haiku/src/apps/diskusage/
H A DControlsView.cpp43 virtual void DrawLabel(BView* owner, BRect frame);
44 virtual void DrawFocusMark(BView* owner, BRect frame);
77 VolumeTab::DrawLabel(BView* owner, BRect frame) argument
81 owner->MovePenTo(frame.left + kSmallHMargin,
82 (frame.top + frame.bottom - fIcon->Bounds().Height()) / 2.0);
91 frame.Width() - IconWidth() - kSmallHMargin);
95 BPoint(frame.left + IconWidth() + kSmallHMargin,
96 (frame.top + frame
102 DrawFocusMark(BView* owner, BRect frame) argument
[all...]
/haiku/src/apps/bootmanager/
H A DDrivesPage.cpp47 virtual void DrawItem(BView* owner, BRect frame,
122 DriveItem::DrawItem(BView* owner, BRect frame, bool complete) argument
134 owner->FillRect(frame);
157 owner->MovePenTo(frame.left + 4, frame.top + 1);
161 owner->MovePenTo(frame.left + 8 + fIcon->Bounds().Width(),
162 frame.top + fSecondBaselineOffset);
173 BPoint namePosition(frame.left + 8 + fIcon->Bounds().Width(),
174 frame.top + fBaselineOffset);
180 float messageWidth = frame
[all...]
H A DDefaultPartitionPage.h26 BRect frame, const char* name);
/haiku/src/apps/switcher/
H A DPanelWindow.cpp152 // Hide the window once the mouse left its frame
159 BRect frame = Frame(); local
163 frame.top = screenFrame.top;
164 frame.bottom = screenFrame.bottom;
168 frame.left = screenFrame.left;
169 frame.right = screenFrame.right;
172 hide.AddRect("frame", frame);
/haiku/src/tests/servers/app/following/
H A Dmain.cpp23 TestView(BRect frame, const char* name, argument
25 : BView(frame, name, resizeFlags, flags),
124 show_window(BRect frame, const char* name) argument
126 BWindow* window = new BWindow(frame, name,
157 BRect frame(50.0, 50.0, 300.0, 250.0);
158 show_window(frame, "Following Test");
/haiku/src/kits/screensaver/
H A DScreenSaverRunner.cpp182 int32 frame = 0; local
217 if (fSaver->LoopOnCount() && frame >= fSaver->LoopOnCount()) {
219 frame = 0;
224 // and then Draw() for the same frame
226 fSaver->DirectDraw(frame);
227 fSaver->Draw(fView, frame);
229 frame++;
/haiku/src/add-ons/media/media-add-ons/usb_webcam/
H A DCamFilterInterface.cpp141 CamFilterInterface::SetVideoFrame(BRect frame) argument
144 return fNextOfKin->SetVideoFrame(frame);
145 fVideoFrame = frame;
/haiku/src/preferences/locale/
H A DLanguageListView.h30 virtual void DrawItem(BView* owner, BRect frame,
35 BRect frame, bool complete,
55 virtual void DrawItem(BView* owner, BRect frame,
/haiku/src/tests/kits/interface/
H A DSetDiskModeTest.cpp13 PictureView(BRect frame);
70 PictureView::PictureView(BRect frame) argument
71 : BBox(frame, "pict_view", B_FOLLOW_ALL_SIDES, B_WILL_DRAW),
/haiku/src/tests/servers/app/stacktile/
H A Dmain.cpp35 TestWindow(BRect frame);
77 TestWindow::TestWindow(BRect frame) argument
79 BWindow(frame, "Test", B_TITLED_WINDOW, B_ASYNCHRONOUS_CONTROLS)
/haiku/src/add-ons/screen_savers/debugnow/
H A DDebugNow.cpp90 DebugNow::Draw(BView* view, int32 frame) argument
92 // on first frame set the low color to make the text rendering correct
93 if (frame == 0)
96 // draw the background color every frame
100 // draw the text every other frame to make the it blink
101 if (frame % 2 == 1) {
/haiku/src/apps/powerstatus/
H A DExtendedInfoWindow.h51 BRect frame, int32 resizingMode,
81 virtual void DrawFocusMark(BView* owner, BRect frame);
82 virtual void DrawLabel(BView* owner, BRect frame);
/haiku/src/apps/tv/
H A DVideoNode.cpp269 BRect frame(0, 0, format.u.raw_video.display.line_width - 1,
274 err = CreateBuffers(frame, colorspace, fOverlayEnabled);
317 BRect frame(0, 0, format.u.raw_video.display.line_width - 1,
324 err = CreateBuffers(frame, colorspace, true); // try overlay
328 err = CreateBuffers(frame, colorspace, false); // no overlay
331 err = CreateBuffers(frame, colorspace, false); // no overlay
423 VideoNode::CreateBuffers(BRect frame, color_space cspace, bool overlay) argument
425 printf("VideoNode::CreateBuffers: frame %d,%d,%d,%d colorspace 0x%08x, "
426 "overlay %d\n", int(frame.left), int(frame
[all...]
H A DVideoView.h36 VideoView(BRect frame, const char *name, uint32 resizeMask,
/haiku/headers/private/interface/
H A DZombieReplicantView.h41 _BZombieReplicantView_(BRect frame,
/haiku/headers/private/kernel/arch/m68k/
H A Darch_thread.h19 void m68k_push_iframe(struct iframe_stack *stack, struct iframe *frame);
/haiku/src/add-ons/media/media-add-ons/videowindow/
H A DVideoView.h20 VideoView(BRect frame, const char *name, uint32 resizeMask, uint32 flags, VideoNode *node);
/haiku/src/add-ons/screen_savers/butterfly/
H A DButterfly.h21 virtual void Draw(BView* view, int32 frame);
/haiku/src/apps/cortex/addons/LoggingConsumer/
H A DNodeHarnessWin.h58 NodeHarnessWin(BRect frame, const char* title);
/haiku/src/apps/cortex/support/
H A DTextControlFloater.h63 BRect frame,
/haiku/src/apps/debuganalyzer/gui/chart/
H A DChartRenderer.h33 virtual void SetFrame(const BRect& frame) = 0;
/haiku/src/apps/drivesetup/
H A DDiskView.h18 DiskView(const BRect& frame,
/haiku/src/apps/icon-o-matic/gui/
H A DIconView.h28 IconView(BRect frame, const char* name);
/haiku/src/apps/mediaplayer/media_node_framework/
H A DPlaybackLOAdapter.h38 virtual void CurrentFrameChanged(double frame);

Completed in 169 milliseconds

<<11121314151617181920>>