Searched refs:fIcon (Results 26 - 50 of 67) sorted by last modified time

123

/haiku/src/servers/bluetooth/
H A DDeskbarReplicant.cpp68 fIcon = NULL;
90 fIcon = icon;
136 if (!fIcon) {
144 DrawBitmap(fIcon);
H A DDeskbarReplicant.h41 BBitmap* fIcon; member in class:DeskbarReplicant
/haiku/src/kits/bluetooth/UI/
H A DPincodeWindow.cpp84 fIcon = new BluetoothIconView();
112 .Add(fIcon)
H A DConnectionView.cpp22 fIcon = new BluetoothIconView();
43 .Add(fIcon)
/haiku/headers/private/bluetooth/
H A DPincodeWindow.h50 BluetoothIconView* fIcon; member in class:Bluetooth::PincodeWindow
H A DConnectionView.h34 BluetoothIconView* fIcon; member in class:Bluetooth::ConnectionView
/haiku/src/servers/input/
H A DInputServer.h107 uchar fIcon[16*16*1]; member in class:_BMethodAddOn_
H A DInputServerMethod.cpp167 memcpy(fIcon, icon, 16*16*1);
169 memset(fIcon, 0x1d, 16*16*1);
205 memcpy(fIcon, icon, 16*16*1);
207 memset(fIcon, 0x1d, 16*16*1);
264 msg.AddData("icon", B_RAW_TYPE, fIcon, 16*16*1);
H A DMethodMenuItem.cpp22 fIcon(BRect(0, 0, MENUITEM_ICON_SIZE - 1, MENUITEM_ICON_SIZE - 1), B_CMAP8),
26 fIcon.SetBits(icon, MENUITEM_ICON_SIZE * MENUITEM_ICON_SIZE, 0, B_CMAP8);
33 fIcon(BRect(0, 0, MENUITEM_ICON_SIZE - 1, MENUITEM_ICON_SIZE - 1), B_CMAP8),
36 fIcon.SetBits(icon, MENUITEM_ICON_SIZE * MENUITEM_ICON_SIZE, 0, B_CMAP8);
54 fIcon.SetBits(icon, MENUITEM_ICON_SIZE * MENUITEM_ICON_SIZE, 0, B_CMAP8);
80 menu->DrawBitmapAsync(&fIcon);
H A DMethodMenuItem.h39 const uchar *Icon() { return(uchar *)fIcon.Bits(); };
43 BBitmap fIcon; member in class:MethodMenuItem
/haiku/src/apps/deskbar/
H A DBarMenuTitle.cpp56 fIcon(icon),
61 if (fIcon == NULL || fMenu == NULL || fBarView == NULL)
132 BRect iconRect(fIcon->Bounds().OffsetToCopy(frame.LeftTop()));
152 menu->DrawBitmapAsync(fIcon, iconRect);
H A DBarMenuTitle.h67 const BBitmap* fIcon; member in class:TBarMenuTitle
/haiku/src/apps/diskusage/
H A DControlsView.cpp47 BBitmap* fIcon; member in class:VolumeTab
55 fIcon(new BBitmap(BRect(0, 0, 15, 15), B_RGBA32)),
58 if (fVolume->GetIcon(fIcon, B_MINI_ICON) < B_OK) {
59 delete fIcon;
60 fIcon = NULL;
68 if (fIcon != NULL)
70 return fIcon->Bounds().Width() + kSmallHMargin;
80 if (fIcon != NULL) {
82 (frame.top + frame.bottom - fIcon->Bounds().Height()) / 2.0);
83 owner->DrawBitmap(fIcon);
[all...]
H A DPieView.cpp66 BBitmap* fIcon; member in class:AppMenuItem
76 fIcon(NULL),
80 fIcon = new BBitmap(BRect(0.0, 0.0, 15.0, 15.0), B_RGBA32);
81 if (BNodeInfo::GetTrackerIcon(&fAppRef, fIcon, B_MINI_ICON) == B_OK) {
96 delete fIcon;
105 *_width += fIcon->Bounds().Width();
107 *_height = max_c(*_height, fIcon->Bounds().Height());
116 yOffset = (height - fIcon->Bounds().Height()) / 2;
119 Menu()->DrawBitmap(fIcon);
120 Menu()->MovePenBy(fIcon
[all...]
H A DInfoWindow.cpp39 fIcon(icon)
47 delete fIcon;
58 DrawBitmap(fIcon, iconRect);
/haiku/src/apps/installer/
H A DPackageViews.cpp41 fIcon(NULL)
49 delete fIcon;
H A DPackageViews.h47 { delete fIcon; fIcon = icon; }
63 { return fIcon; }
76 BBitmap* fIcon; member in class:Package
/haiku/src/kits/shared/
H A DStripeView.cpp24 fIcon(icon),
31 if (fIcon.IsValid()) {
32 fIconSize = fIcon.Bounds().Width();
35 fPreferredWidth = 18 * scale + fIcon.Bounds().Width();
36 fPreferredHeight = 6 * scale + fIcon.Bounds().Height();
58 DrawBitmapAsync(&fIcon, BPoint(18 * iconLayoutScale,
/haiku/src/kits/tracker/infowindow/
H A DHeaderView.h96 BBitmap* fIcon; member in class:HeaderView
/haiku/headers/private/shared/
H A DStripeView.h32 BBitmap fIcon; member in class:BPrivate::BStripeView
/haiku/src/preferences/network/
H A DInterfaceListItem.h57 BBitmap* fIcon; member in class:InterfaceListItem
/haiku/src/preferences/printers/
H A DJobListView.cpp157 fIcon(NULL)
167 delete fIcon;
184 if (fIcon == NULL && be_roster->FindApp(mimeType.String(), &ref) == B_OK) {
191 fIcon = new BBitmap(rect, B_RGBA32);
194 fIcon = new BBitmap(rect, B_CMAP8);
197 if (type.GetIcon(fIcon, B_MINI_ICON) != B_OK) {
198 delete fIcon;
199 fIcon = NULL;
296 if (fIcon)
297 iconHeight = fIcon
[all...]
/haiku/src/kits/interface/
H A DControl.cpp79 delete fIcon;
537 status_t error = BIcon::UpdateIcon(bitmap, flags, fIcon);
551 status_t error = BIcon::SetIconBitmap(bitmap, which, flags, fIcon);
565 return fIcon != NULL ? fIcon->Bitmap(which) : NULL;
627 fIcon = NULL;
/haiku/src/preferences/bluetooth/
H A DBluetoothDeviceView.cpp61 fIcon = new BView(BRect(0, 0, 32 - 1, 32 - 1), "Icon", B_FOLLOW_ALL,
63 fIcon->SetViewUIColor(B_PANEL_BACKGROUND_COLOR);
69 .Add(fIcon)
112 bDevice->GetDeviceClass().Draw(fIcon, BPoint(Bounds().left, Bounds().top));
H A DBluetoothDeviceView.h48 BView* fIcon; member in class:BluetoothDeviceView

Completed in 152 milliseconds

123