Searched refs:frame (Results 51 - 75 of 954) sorted by relevance

1234567891011>>

/haiku/src/apps/processcontroller/
H A DUtilities.cpp147 BRect frame = window->Frame(); local
152 float width = frame.Width();
153 float height = frame.Height();
158 if (width != frame.Width() || height != frame.Height()) {
160 frame.right = frame.left + width;
161 frame.bottom = frame.top + height;
164 if (frame
176 bar_rect(BRect& frame, BFont* font) argument
[all...]
/haiku/src/add-ons/translators/pcx/
H A DConfigView.h14 ConfigView(const BRect &frame, uint32 resize = B_FOLLOW_ALL,
/haiku/src/add-ons/translators/rtf/
H A DConfigView.h14 ConfigView(const BRect &frame, uint32 resize = B_FOLLOW_ALL,
/haiku/src/bin/network/ppp_up/
H A DConnectionWindow.h15 ConnectionWindow(BRect frame, const BString& interfaceName);
H A DConnectionWindow.cpp12 ConnectionWindow::ConnectionWindow(BRect frame, const BString& interfaceName) argument
13 : BWindow(frame, "", B_TITLED_WINDOW, B_NOT_RESIZABLE | B_NOT_ZOOMABLE,
/haiku/src/tests/kits/interface/bprintjob/
H A DPrintTestView.hpp12 PrintTestView(BRect frame);
H A DPrintTestView.cpp3 PrintTestView::PrintTestView(BRect frame) argument
4 : Inherited(frame, "", B_FOLLOW_ALL, B_WILL_DRAW | B_FULL_UPDATE_ON_RESIZE)
/haiku/src/tests/kits/translation/multitest/
H A DWorkView.h10 WorkView(BRect frame);
/haiku/src/tests/servers/app/benchmark/
H A DTestWindow.cpp10 TestView::TestView(BRect frame, Test* test, drawing_mode mode, argument
13 BView(frame, "test view", B_FOLLOW_ALL, B_WILL_DRAW),
43 TestWindow::TestWindow(BRect frame, Test* test, drawing_mode mode, argument
45 : BWindow(frame, "Test Window", B_TITLED_WINDOW_LOOK,
/haiku/src/add-ons/screen_savers/gravity/
H A DRainbowItem.h19 virtual void DrawItem(BView* owner, BRect frame, bool complete);
/haiku/src/tests/servers/app/window_creation/
H A Dmain.cpp40 TestWindow(BRect frame, bool createView);
77 BRect frame(0, 0, 50, 50);
79 / (frame.IntegerWidth() + 1);
81 / (frame.IntegerHeight() + 1);
85 sFrames[i] = frame;
86 frame.OffsetBy(50, 0);
87 if (!fScreenFrame.Contains(frame))
88 frame.OffsetTo(0, frame.bottom + 1);
124 TestWindow::TestWindow(BRect frame, boo argument
[all...]
/haiku/src/add-ons/kernel/file_systems/netfs/authentication_server/
H A DPanel.h10 Panel(BRect frame,
15 Panel(BRect frame,
/haiku/src/apps/icon-o-matic/generic/gui/panel/
H A DPanel.h16 Panel(BRect frame,
21 Panel(BRect frame,
/haiku/src/apps/launchbox/
H A DPanel.h16 Panel(BRect frame,
21 Panel(BRect frame,
/haiku/src/apps/login/
H A DLoginWindow.cpp18 LoginWindow::LoginWindow(BRect frame) argument
19 : BWindow(frame, B_TRANSLATE("Welcome to Haiku"), B_TITLED_WINDOW_LOOK,
/haiku/src/apps/resedit/
H A DResListView.cpp10 ResListView::ResListView(const BRect &frame, const char *name, int32 resize, int32 flags, argument
12 : BColumnListView(frame,name,resize,flags,border)
/haiku/src/preferences/joysticks/
H A DPortItem.cpp20 PortItem::DrawItem(BView *owner, BRect frame, bool complete) argument
22 BStringItem::DrawItem(owner, frame, complete);
/haiku/src/apps/deskcalc/
H A DCalcWindow.h21 CalcWindow(BRect frame, BMessage* settings);
30 void SetFrame(BRect frame,
/haiku/src/apps/packageinstaller/
H A DPackageImageViewer.cpp60 BRect frame = screen.Frame(); local
63 if (image.Width() > (frame.Width() - 100.0f))
64 image.right = frame.Width() - 100.0f;
65 if (image.Height() > (frame.Height() - 100.0f))
66 image.bottom = frame.Height() - 100.f;
107 BRect frame = screen.Frame(); local
108 MoveTo((frame.Width() - Bounds().Width()) / 2.0f,
109 (frame.Height() - Bounds().Height()) / 2.0f);
/haiku/src/add-ons/media/plugins/ffmpeg/
H A Dgfx_util.h49 void dump_ffframe_audio(AVFrame *frame, const char *name);
50 void dump_ffframe_video(AVFrame *frame, const char *name);
/haiku/src/apps/deskbar/
H A DInlineScrollView.cpp29 ScrollArrow(BRect frame);
42 UpScrollArrow(BRect frame);
52 DownScrollArrow(BRect frame);
62 LeftScrollArrow(BRect frame);
72 RightScrollArrow(BRect frame);
83 ScrollArrow::ScrollArrow(BRect frame) argument
85 BView(frame, "menu scroll arrow", B_FOLLOW_NONE, B_WILL_DRAW),
108 UpScrollArrow::UpScrollArrow(BRect frame) argument
110 ScrollArrow(frame)
172 DownScrollArrow::DownScrollArrow(BRect frame) argument
197 BRect frame = Bounds(); local
238 LeftScrollArrow(BRect frame) argument
301 RightScrollArrow(BRect frame) argument
325 BRect frame = Bounds(); local
429 BRect frame = Bounds(); local
[all...]
H A DBarMenuBar.cpp81 BRect frame(Frame());
82 frame.right = frame.left + kSepItemWidth;
88 frame.top--;
89 // need to expand the frame for some reason
92 menu->StrokeLine(frame.LeftTop(), frame.LeftBottom());
93 frame.left++;
96 be_control_look->DrawButtonBackground(menu, frame, frame, bas
105 TBarMenuBar(BRect frame, const char* name, TBarView* barView) argument
151 BRect frame = Frame(); local
[all...]
/haiku/src/tests/kits/interface/menu/menuworld/
H A DViewLayoutFactory.cpp94 BRect frame = view.Frame(); local
102 topLeft.y = pos.y - frame.Height();
105 topLeft.x = pos.x - frame.Width();
109 topLeft.x = pos.x - frame.Width();
110 topLeft.y = pos.y - frame.Height();
140 BRect frame = pView->Frame(); local
144 viewLoc.Set(frame.left, frame.top);
147 viewLoc.Set(frame.right, frame
217 BRect frame = pView->Frame(); local
234 BRect frame = pView->Frame(); local
[all...]
/haiku/src/add-ons/screen_savers/spider/
H A DSpiderView.cpp37 SpiderView::SpiderView(BRect frame, SpiderSaver* saver, uint32 queueNumber, argument
40 BView(frame, "spider view", B_FOLLOW_NONE, B_WILL_DRAW | B_PULSE_NEEDED),
45 frame.OffsetTo(0.0, 0.0);
46 frame.InsetBy(10.0, 5.0);
48 float viewHeight = floorf(frame.Height() / 5.0);
54 frame.bottom = frame.top + fontHeight;
55 BStringView* title = new BStringView(frame, B_EMPTY_STRING,
62 frame.top = frame
[all...]
/haiku/src/system/kernel/arch/ppc/
H A Darch_int.cpp81 print_iframe(struct iframe *frame) argument
83 dprintf("iframe at %p:\n", frame);
84 dprintf("r0-r3: 0x%08lx 0x%08lx 0x%08lx 0x%08lx\n", frame->r0, frame->r1, frame->r2, frame->r3);
85 dprintf("r4-r7: 0x%08lx 0x%08lx 0x%08lx 0x%08lx\n", frame->r4, frame->r5, frame->r6, frame
[all...]

Completed in 89 milliseconds

1234567891011>>