Searched refs:view (Results 176 - 200 of 492) sorted by relevance

1234567891011>>

/haiku/src/kits/tracker/
H A DBackgroundImage.cpp172 BackgroundImage::Show(BView* view, int32 workspace) argument
174 fView = view;
188 BackgroundImage::Show(BackgroundImageInfo* info, BView* view) argument
190 BPoseView* poseView = dynamic_cast<BPoseView*>(view);
195 view->ClearViewBitmap();
196 view->Invalidate();
200 BRect viewBounds(view->Bounds());
251 view->SetViewBitmap(info->fBitmap, bitmapBounds, destinationBitmapBounds,
253 view->Invalidate();
326 BackgroundImage::WorkspaceActivated(BView* view, int3 argument
[all...]
/haiku/src/preferences/input/
H A DInputTouchpadPrefView.cpp191 BView* view = fOffScreenView != NULL ? fOffScreenView : this; local
197 view->SetHighColor(ui_color(B_PANEL_BACKGROUND_COLOR));
198 view->FillRect(Bounds());
199 view->SetHighColor(100, 100, 100);
200 view->FillRoundRect(fPadRect, 4, 4);
205 view->SetHighColor(145, 100, 100);
208 view->FillRoundRect(rightRect, 4, 4);
212 view->FillRoundRect(bottomRect, 4, 4);
215 view->SetHighColor(100, 100, 100);
216 view
[all...]
H A DInputWindow.cpp188 TouchpadPrefView* view = new TouchpadPrefView(dev); local
189 fCardView->AddChild(view);
198 InputMouse* view = new InputMouse(dev, settings); local
199 fCardView->AddChild(view);
204 InputKeyboard* view = new InputKeyboard(dev); local
205 fCardView->AddChild(view);
/haiku/src/add-ons/accelerants/intel_extreme/
H A Doverlay.cpp460 constraints->view.h_alignment = 0;
461 constraints->view.v_alignment = 0;
466 constraints->view.width_alignment = 7;
469 constraints->view.width_alignment = 7;
472 constraints->view.width_alignment = 3;
475 constraints->view.width_alignment = 7;
478 constraints->view.width_alignment = 7;
483 constraints->view.height_alignment = 0;
486 constraints->view.width.min = 4; // make 4-tap filter happy
487 constraints->view
540 intel_configure_overlay(overlay_token overlayToken, const overlay_buffer* buffer, const overlay_window* window, const overlay_view* view) argument
[all...]
/haiku/src/add-ons/accelerants/ati/
H A Doverlay.cpp207 constraints->view.h_alignment = 0;
208 constraints->view.v_alignment = 0;
211 constraints->view.width_alignment = 7;
218 constraints->view.height_alignment = 0;
221 constraints->view.width.min = 4;
222 constraints->view.height.min = 4;
223 constraints->view.width.max = buffer->width;
224 constraints->view.height.max = buffer->height;
284 const overlay_window* window, const overlay_view* view)
294 if (window == NULL || view
283 ConfigureOverlay(overlay_token overlayToken, const overlay_buffer* buffer, const overlay_window* window, const overlay_view* view) argument
[all...]
/haiku/src/apps/screenshot/
H A DUtility.cpp274 BView view(screenshot->Bounds(), "bitmap", B_FOLLOW_ALL_SIDES, 0);
275 screenshot->AddChild(&view);
276 if (view.Looper() && view.Looper()->Lock()) {
277 view.SetDrawingMode(B_OP_COPY);
278 view.SetHighColor(B_TRANSPARENT_32_BIT);
281 view.FillRect(tabSpace.RectAt(i));
283 view.Sync();
284 view.Looper()->Unlock();
286 screenshot->RemoveChild(&view);
[all...]
/haiku/src/add-ons/accelerants/vesa/
H A Dhooks.cpp95 constraints->view.h_alignment = 0;
96 constraints->view.v_alignment = 0;
99 constraints->view.width_alignment = 7;
100 constraints->view.height_alignment = 0;
103 constraints->view.width.min = 4;
104 constraints->view.height.min = 4;
105 constraints->view.width.max = buffer->width;
106 constraints->view.height.max = buffer->height;
156 const overlay_window* window, const overlay_view* view)
158 debug_printf("configure_overlay: buffer %p, window %p, view
155 vesa_configure_overlay(overlay_token overlayToken, const overlay_buffer* buffer, const overlay_window* window, const overlay_view* view) argument
[all...]
/haiku/src/apps/powerstatus/
H A DExtendedInfoWindow.cpp36 BView("battery info view", B_AUTO_UPDATE_SIZE_LIMITS)
46 BStringView* view = new BStringView("info", ""); local
47 AddChild(view);
48 fStringList.AddItem(view);
202 ExtPowerStatusView* view)
204 fBatteryView(view)
360 ExtPowerStatusView* view = new ExtPowerStatusView(interface, local
362 BatteryTab* tab = new BatteryTab(batteryInfoView, view);
365 view->Hide();
366 AddChild(view);
201 BatteryTab(BatteryInfoView* target, ExtPowerStatusView* view) argument
[all...]
H A DPowerStatusView.cpp170 PowerStatusView::_DrawBattery(BView* view, BRect rect) argument
184 if (view->LowColor().IsLight())
185 view->SetHighColor(0, 0, 0);
187 view->SetHighColor(128, 128, 128);
194 view->FillRect(BRect(rect.left, rect.top, rect.left + gap - 1,
197 view->FillRect(BRect(rect.right - gap + 1, rect.top, rect.right,
200 view->FillRect(BRect(rect.left + gap, rect.top, rect.right - gap,
203 view->FillRect(BRect(rect.left + gap, rect.bottom + 1 - gap,
206 view->StrokeRect(rect);
208 view
313 DrawTo(BView* view, BRect rect) argument
491 BView* view = window->FindView("Status"); local
[all...]
/haiku/src/apps/debuganalyzer/gui/chart/
H A DLegendChartAxis.cpp190 LegendChartAxis::PreferredSize(BView* view, BSize maxSize) argument
194 int32 maxLegends = _EstimateMaxLegendCount(view, maxSize, &hSpacing,
222 BSize size = fLegendRenderer->LegendSize(legend, view);
241 LegendChartAxis::Render(BView* view, BRect updateRect) argument
243 if (!_ValidateLayout(view))
291 view->BeginLineArray(3 + fLegends.CountItems());
301 view->AddLine(first, second, black);
302 view->AddLine(second, third, black);
303 view->AddLine(third, fourth, black);
314 view
346 _ValidateLayout(BView* view) argument
398 _EstimateMaxLegendCount(BView* view, BSize size, float* _hSpacing, float* _vSpacing) argument
[all...]
H A DChartRenderer.h37 virtual void Render(BView* view, BRect updateRect) = 0;
/haiku/src/tests/servers/app/archived_view/
H A Dmain.cpp150 BView* view = NULL; local
158 view = dynamic_cast<BView*>(archivable);
159 if (view)
164 if (!view)
165 view = new TestView(window->Bounds(), "test", B_FOLLOW_ALL, B_WILL_DRAW);
170 window->AddChild(view);
/haiku/src/kits/shared/
H A DToolBar.cpp164 BToolBar::AddView(BView* view) argument
166 GroupLayout()->AddView(view);
204 for (int32 i = 0; BView* view = ChildAt(i); i++) {
205 BButton* button = dynamic_cast<BButton*>(view);
256 for (int32 i = 0; BView* view = ChildAt(i); i++)
257 view->HideToolTip();
/haiku/src/apps/terminal/
H A DTermViewStates.h24 State(TermView* view);
54 StandardBaseState(TermView* view);
64 DefaultState(TermView* view);
86 SelectState(TermView* view);
109 HyperLinkState(TermView* view);
162 HyperLinkMenuState(TermView* view);
/haiku/src/apps/remotedesktop/
H A DRemoteDesktop.cpp207 RemoteView *view = new(std::nothrow) RemoteView(window->Bounds(), host, local
209 if (view == NULL) {
210 printf("no memory to allocate remote view\n");
214 status_t init = view->InitCheck();
216 printf("initialization of remote view failed: %s\n", strerror(init));
217 delete view;
221 window->AddChild(view);
222 view->MakeFocus();
/haiku/src/tests/servers/app/find_view/
H A DFindView.cpp39 BView* view = Window()->FindView(where); local
41 view ? view->Name() : "NULL");
/haiku/src/add-ons/accelerants/radeon/
H A Doverlay_management.c239 oc->view.h_alignment = 0;
240 oc->view.v_alignment = 0;
245 oc->view.width_alignment = 7;
248 oc->view.width_alignment = 7;
251 oc->view.width_alignment = 3;
254 oc->view.width_alignment = 7;
257 oc->view.width_alignment = 7;
261 oc->view.height_alignment = 0;
264 oc->view.width.min = 4; // make 4-tap filter happy
265 oc->view
[all...]
/haiku/src/tests/kits/media/
H A DVideoDecoder.cpp104 BView* view = new VideoView(fMediaTrack, format.Width(), format.Height()); local
105 AddChild(view);
106 view->MakeFocus();
/haiku/src/apps/icon-o-matic/transformable/
H A DTransformGradientBox.cpp25 TransformGradientBox::TransformGradientBox(CanvasView* view, Gradient* gradient, argument
28 TransformBox(view, BRect(0.0, 0.0, 1.0, 1.0)),
30 fCanvasView(view),
/haiku/src/apps/bootmanager/
H A DPartitionsPage.h30 void _FillPartitionsView(BView* view);
/haiku/src/apps/icon-o-matic/generic/gui/
H A DGroup.h33 void _LayoutControl(BView* view,
/haiku/src/apps/launchbox/
H A Dsupport.h25 // looper of view must be locked!
26 void stroke_frame(BView* view, BRect frame,
/haiku/src/libs/alm/
H A DALMGroup.cpp18 ALMGroup::ALMGroup(BView* view) argument
20 _Init(NULL, view);
90 ALMGroup::_Init(BLayoutItem* item, BView* view, enum orientation orien) argument
93 fView = view;
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DWrapperView.h17 WrapperView(BView* view);
/haiku/src/tests/kits/interface/layout/widget_layout_test/tests/
H A DControlTest.h24 virtual void SetView(BView* view);

Completed in 101 milliseconds

1234567891011>>