Searched refs:view (Results 151 - 175 of 492) sorted by relevance

1234567891011>>

/haiku/src/apps/networkstatus/
H A DRadioView.h29 static void Draw(BView* view, BRect rect, int32 percent,
46 static void _DrawBow(BView* view, int32 index,
49 static void _SetColor(BView* view, int32 percent,
/haiku/src/preferences/screen/
H A DRefreshSlider.cpp59 BView *view = OffscreenView(); local
65 view->SetHighColor(blue);
66 view->StrokeRect(rect);
/haiku/src/tests/kits/interface/layout/widget_layout_test/tests/
H A DControlTest.cpp42 ControlTest::SetView(BView* view) argument
44 Test::SetView(view);
45 fControl = dynamic_cast<BControl*>(view);
/haiku/src/tests/servers/app/playground/
H A DStates.h44 virtual void Draw(BView* view) const;
54 void _RenderDot(BView* view, BPoint where) const;
55 void _AdjustViewState(BView* view) const;
/haiku/headers/os/interface/
H A DGroupLayoutBuilder.h18 BGroupLayoutBuilder(BGroupView* view);
26 BGroupLayoutBuilder& Add(BView* view);
27 BGroupLayoutBuilder& Add(BView* view, float weight);
H A DLayoutUtils.h42 static void AlignInFrame(BView* view, BRect frame);
47 static BString GetLayoutTreeDump(BView* view);
51 static void _GetLayoutTreeDump(BView* view, int level,
H A DShelf.h30 BShelf(BView* view, bool allowDrags = true,
32 BShelf(const entry_ref* ref, BView* view,
35 BShelf(BDataIO* stream, BView* view,
76 BMessage* ReplicantAt(int32 index, BView** view = NULL,
112 BView* view, bool allowDrags);
117 BView* _GetReplicant(BMessage* data, BView* view,
126 BView* view, BView*& replicant,
/haiku/src/add-ons/screen_savers/ifs/
H A DIFSSaver.h22 virtual void StartConfig(BView *view);
23 virtual status_t StartSaver(BView *view, bool preview);
27 virtual void Draw(BView* view, int32 frame);
/haiku/src/kits/tracker/
H A DBackgroundImage.h66 // view and how.
97 void Show(BView* view, int32 workspace);
100 // remove the background from it's current view
102 void WorkspaceActivated(BView* view, int32 workspace, bool state);
112 void Show(BackgroundImageInfo*, BView* view);
H A DTextWidget.h68 // and current drawing view are different
89 void SelectAll(BPoseView* view);
100 const char* Text(const BPoseView* view) const;
185 BPoseView* view, bool selected, uint32 clipboardMode)
187 Draw(widgetRect, widgetTextRect, width, view, (BView*)view, selected,
184 Draw(BRect widgetRect, BRect widgetTextRect, float width, BPoseView* view, bool selected, uint32 clipboardMode) argument
/haiku/src/add-ons/mail_daemon/outbound_filters/fortune/
H A DFortuneFilter.cpp118 ConfigView* view = new ConfigView(); local
119 view->SetTo(settings);
121 return view;
/haiku/src/libs/print/libprint/
H A DHalftoneView.cpp26 BView view(rect, "", B_FOLLOW_ALL, B_WILL_DRAW);
30 testImage.AddChild(&view);
47 view.SetHighColor(255, value, value);
48 view.StrokeLine(from, to);
52 view.SetHighColor(value, 255, value);
53 view.StrokeLine(from, to);
57 view.SetHighColor(value, value, 255);
58 view.StrokeLine(from, to);
62 view.SetHighColor(value, value, value);
63 view
[all...]
/haiku/src/apps/aboutsystem/
H A DHyperTextView.h23 virtual void MouseOver(HyperTextView* view, BPoint where,
26 virtual void MouseAway(HyperTextView* view, BPoint where,
29 virtual void Clicked(HyperTextView* view, BPoint where,
/haiku/src/kits/interface/
H A DControlLook.cpp66 BControlLook::ShouldDraw(BView* view, const BRect& rect, const BRect& updateRect) argument
77 view->TransformTo(B_VIEW_COORDINATES).Apply(points, 4);
98 BControlLook::DrawLabel(BView* view, const char* label, const BBitmap* icon, argument
102 DrawLabel(view, label, icon, rect, updateRect, base, flags,
141 BControlLook* controlLook, BView* view, BRect& rect,
145 controlLook->DrawTabFrame(view, rect, updateRect, base, flags, borders,
153 BControlLook* controlLook, BView* view, BRect rect,
157 controlLook->DrawScrollBarButton(view, rect, updateRect, base, flags,
165 BControlLook* controlLook, BView* view, BRect rect,
169 controlLook->DrawScrollBarThumb(view, rec
[all...]
/haiku/src/add-ons/screen_savers/message/
H A DMessage.cpp89 void Draw(BView *view, int32 frame);
90 void StartConfig(BView *view);
91 status_t StartSaver(BView *view, bool preview);
125 Message::StartConfig(BView *view) argument
127 BPrivate::BuildDefaultSettingsView(view, "Message",
133 Message::StartSaver(BView *view, bool preview) argument
138 fScaleFactor = view->Bounds().Height() / 1024;
164 Message::Draw(BView *view, int32 frame) argument
166 if (view == NULL || view
[all...]
/haiku/src/preferences/backgrounds/
H A DBackgroundImage.h71 // view and how.
104 bool isDesktop, BackgroundsView* view);
109 void Show(BView* view, int32 workspace);
112 // remove the background from it's current view
114 void WorkspaceActivated(BView* view, int32 workspace, bool state);
129 void Show(BackgroundImageInfo*, BView* view);
138 BackgroundImage(const BNode* node, bool isDesktop, BackgroundsView* view);
/haiku/src/tests/add-ons/print/ppd/ui/
H A DPPDConfigView.cpp95 DetailsBuilder adds views to the details view and sets the
98 The group type determines the view to be used for user input:
118 void AddView(BView* view);
132 void DetailsBuilder::AddView(BView* view) argument
134 if (view != NULL) {
135 fDetails->AddChild(view);
136 view->ResizeToPreferred();
138 fBounds.OffsetBy(0, view->Bounds().Height()+1);
140 BControl* control = dynamic_cast<BControl*>(view);
167 BView* view local
260 Push(BView* view) argument
315 PPDBuilder(BView* parent, BView* view, BMessage& settings) argument
[all...]
/haiku/src/tests/servers/app/scrolling/
H A Dmain.cpp74 const char* message = "Click and drag to scroll this view!";
116 BView* view = new TestView(window->Bounds(), "test", B_FOLLOW_ALL, local
119 window->AddChild(view);
121 b.OffsetTo(5.0, view->Bounds().bottom - (b.Height() + 15.0));
123 view->AddChild(control);
124 control->SetTarget(view);
/haiku/src/apps/showimage/
H A DProgressWindow.cpp40 BView* view = new BView(rect, NULL, B_FOLLOW_ALL, B_WILL_DRAW); local
41 view->SetViewUIColor(B_PANEL_BACKGROUND_COLOR);
42 AddChild(view);
44 rect = view->Bounds().InsetByCopy(5, 5);
50 view->AddChild(fStatusBar);
/haiku/src/preferences/appearance/
H A DFontView.cpp30 #define B_TRANSLATION_CONTEXT "Font view"
37 add_font_selection_view(BGridLayout* layout, FontSelectionView* view, argument
40 layout->AddItem(view->CreateFontsLabelLayoutItem(), 0, row);
41 layout->AddItem(view->CreateFontsMenuBarLayoutItem(), 1, row);
45 layout->AddView(view->GetFontSizeSpinner(), 4, row);
50 layout->AddView(view->GetPreviewBox(), 1, row, 4);
/haiku/src/add-ons/accelerants/3dfx/
H A Doverlay.cpp212 constraints->view.h_alignment = 0;
213 constraints->view.v_alignment = 0;
218 constraints->view.width_alignment = 7;
226 constraints->view.height_alignment = 0;
229 constraints->view.width.min = 4;
230 constraints->view.height.min = 4;
231 constraints->view.width.max = buffer->width;
232 constraints->view.height.max = buffer->height;
294 const overlay_window* window, const overlay_view* view)
304 if (window == NULL || view
293 ConfigureOverlay(overlay_token overlayToken, const overlay_buffer* buffer, const overlay_window* window, const overlay_view* view) argument
[all...]
/haiku/src/apps/icon-o-matic/generic/gui/
H A DGroup.cpp123 Group::_LayoutControl(BView* view, BRect frame, argument
128 frame.top = (frame.top + frame.bottom) / 2.0 - view->Bounds().Height() / 2.0;
131 frame.left = (frame.left + frame.right) / 2.0 - view->Bounds().Width() / 2.0;
132 view->MoveTo(frame.LeftTop());
133 float width = resizeWidth ? frame.Width() : view->Bounds().Width();
134 float height = resizeHeight ? frame.Height() : view->Bounds().Height();
136 view->ResizeTo(width, height);
/haiku/src/tests/servers/app/event_mask/
H A DEventMask.cpp170 BView* view = new BView(Bounds(), NULL, B_FOLLOW_ALL, B_WILL_DRAW); local
171 view->SetViewUIColor(B_PANEL_BACKGROUND_COLOR);
172 AddChild(view);
177 view->AddChild(textControl);
182 view->AddChild(textControl);
201 view->AddChild(fViews[i]);
207 view->AddChild(checkBox);
/haiku/src/apps/debugger/user_interface/gui/utility_windows/
H A DConnectionConfigWindow.cpp137 // the actual config view
195 BView* view = fConfigGroupView->ChildAt(0); local
196 fConfigGroupView->RemoveChild(view);
197 delete view;
204 ConnectionConfigView* view = NULL; local
205 status_t error = roster->CreateConfigView(info, this, view);
209 ObjectDeleter<ConnectionConfigView> viewDeleter(view);
210 BLayoutItem* item = fConfigGroupView->GroupLayout()->AddView(view);
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformBoxStates.h33 virtual void UpdateViewCursor(BView* view, BPoint current) const = 0;
38 void _SetViewCursor(BView* view, const uchar* cursorData) const;
58 virtual void UpdateViewCursor(BView* view, BPoint current) const;
88 virtual void UpdateViewCursor(BView* view, BPoint current) const;
112 virtual void UpdateViewCursor(BView* view, BPoint current) const;
128 virtual void UpdateViewCursor(BView* view, BPoint current) const;
145 virtual void UpdateViewCursor(BView* view, BPoint current) const;

Completed in 74 milliseconds

1234567891011>>