Searched refs:icon (Results 1 - 25 of 181) sorted by relevance

12345678

/haiku/src/apps/icon-o-matic/import_export/
H A DImporter.cpp27 Importer::Init(Icon* icon) argument
32 if (!icon || icon->InitCheck() < B_OK)
35 fStyleIndexOffset = icon->Styles()->CountItems();
36 fPathIndexOffset = icon->Paths()->CountItems();
H A DImporter.h27 \note Some importers are in the icon library.
34 status_t Init(Icon* icon);
H A DExporter.h41 virtual status_t Export(const Icon* icon,
58 status_t _Export(const Icon* icon,
/haiku/src/apps/icon-o-matic/import_export/styled_text/
H A DStyledTextImporter.h39 status_t Import(Icon* icon,
41 status_t Import(Icon* icon,
45 status_t _Import(Icon* icon, const char *text,
48 status_t _AddStyle(Icon *icon, text_run *run);
49 status_t _AddPaths(Icon *icon, BShape *shape);
50 status_t _AddShape(Icon *icon, BShape *shape, text_run *run);
/haiku/src/apps/icon-o-matic/import_export/svg/
H A DSVGImporter.h20 status_t Import(Icon* icon,
H A DDocumentBuilder.h41 status_t GetIcon(Icon* icon,
48 Icon* icon);
/haiku/src/servers/input/
H A DMethodMenuItem.cpp20 MethodMenuItem::MethodMenuItem(int32 cookie, const char* name, const uchar* icon, BMenu* subMenu, BMessenger& messenger) argument
26 fIcon.SetBits(icon, MENUITEM_ICON_SIZE * MENUITEM_ICON_SIZE, 0, B_CMAP8);
31 MethodMenuItem::MethodMenuItem(int32 cookie, const char* name, const uchar* icon) argument
36 fIcon.SetBits(icon, MENUITEM_ICON_SIZE * MENUITEM_ICON_SIZE, 0, B_CMAP8);
52 MethodMenuItem::SetIcon(const uchar *icon) argument
54 fIcon.SetBits(icon, MENUITEM_ICON_SIZE * MENUITEM_ICON_SIZE, 0, B_CMAP8);
H A DMethodMenuItem.h27 MethodMenuItem(int32 cookie, const char *label, const uchar *icon, BMenu *subMenu, BMessenger &messenger);
28 MethodMenuItem(int32 cookie, const char *label, const uchar *icon);
38 void SetIcon(const uchar *icon);
H A DInputServerMethod.cpp42 const uchar *icon)
45 fOwner = new _BMethodAddOn_(this, name, icon);
98 BInputServerMethod::SetIcon(const uchar *icon) argument
100 return fOwner->SetIcon(icon);
160 const uchar *icon)
166 if (icon != NULL)
167 memcpy(fIcon, icon, 16*16*1);
200 _BMethodAddOn_::SetIcon(const uchar* icon) argument
204 if (icon != NULL)
205 memcpy(fIcon, icon, 1
41 BInputServerMethod(const char *name, const uchar *icon) argument
159 _BMethodAddOn_(BInputServerMethod *method, const char *name, const uchar *icon) argument
[all...]
/haiku/headers/os/storage/
H A DMime.h39 status_t get_device_icon(const char* device, void* icon, int32 size);
48 status_t get_device_icon(const char* device, BBitmap* icon, icon_size which);
52 status_t get_named_icon(const char* name, BBitmap* icon, icon_size which);
/haiku/src/apps/processcontroller/
H A DIconMenuItem.cpp12 IconMenuItem::IconMenuItem(BBitmap* icon, const char* title, argument
16 fIcon(icon),
23 IconMenuItem::IconMenuItem(BBitmap* icon, BMenu* menu, bool drawText, bool purge) argument
26 fIcon(icon),
41 IconMenuItem::Reset(BBitmap* icon, bool purge) argument
47 fIcon = icon;
H A DTeamBarMenuItem.h15 BBitmap* icon, bool deleteIcon);
24 void Reset(char* name, team_id team, BBitmap* icon, bool deleteIcon);
H A DMemoryBarMenuItem.h15 BBitmap* icon, bool deleteIcon, BMessage* message);
25 void Reset(char* name, team_id team, BBitmap* icon, bool deleteIcon);
/haiku/headers/build/os/storage/
H A DMime.h32 status_t get_device_icon(const char *dev, void *icon, int32 size);
56 status_t get_device_icon(const char *dev, BBitmap *icon, icon_size which);
H A DNodeInfo.h32 Like it's mime type, the files icon and the application which will load
55 virtual status_t GetIcon(BBitmap *icon, icon_size k = B_LARGE_ICON) const;
56 virtual status_t SetIcon(const BBitmap *icon, icon_size k = B_LARGE_ICON);
65 status_t GetTrackerIcon(BBitmap *icon,
68 BBitmap *icon,
/haiku/src/kits/tracker/
H A DMountMenu.cpp128 // get icon
129 BBitmap* icon = new BBitmap(BRect(BPoint(0, 0), be_control_look->ComposeIconSize(B_MINI_ICON)), local
131 if (partition->GetIcon(icon, B_MINI_ICON) != B_OK) {
132 delete icon;
133 icon = NULL;
142 if (icon != NULL)
143 item = new IconMenuItem(name.String(), message, icon);
198 BBitmap* icon = new BBitmap(BRect(0, 0, 15, 15), B_CMAP8); local
201 PRINT(("Cannot get mount menu item icon; bad device ID\n"));
202 delete icon;
[all...]
H A DThumbnails.h23 status_t GetThumbnailFromAttr(Model* model, BBitmap* icon, BSize size);
/haiku/src/bin/rc/tests/
H A Dbuiltin.rdef77 /* Large (32x32, 8-bit) application icon. */
80 array icon[1024]
83 /* Small (16x16, 8-bit) application icon. */
86 array icon[256]
/haiku/src/apps/icon-o-matic/import_export/flat_icon/
H A DSourceExporter.h21 virtual status_t Export(const Icon* icon,
H A DRDefExporter.h21 virtual status_t Export(const Icon* icon,
/haiku/src/apps/icon-o-matic/import_export/bitmap/
H A DBitmapExporter.h24 virtual status_t Export(const Icon* icon,
/haiku/src/apps/deskbar/
H A DBarMenuBar.cpp120 BBitmap* icon = NULL; local
128 icon = new BBitmap(BRect(0, 0, width - 1, height - 1), B_RGBA32);
129 if (icon->InitCheck() != B_OK
130 || BIconUtils::GetVectorIcon((const uint8*)data, dataSize, icon)
132 delete icon;
133 icon = NULL;
137 fDeskbarMenuItem = new TBarMenuTitle(0.0f, 0.0f, icon, beMenu, fBarView);
339 // we haven't fetched vector icon data yet, fetch it
350 // grow icon by 1px so that it renders nicely at 12pt font size
351 BBitmap* icon local
[all...]
/haiku/src/apps/pairs/
H A DPairs.cpp113 // didn't find an icon
127 vector_icon* icon = (vector_icon*)malloc(sizeof(vector_icon)); local
128 if (icon == NULL) {
130 free(icon);
134 icon->data = data;
135 icon->size = size;
137 // found a vector icon, add it to the list
138 fIconMap[hash] = icon;
/haiku/headers/os/add-ons/input_server/
H A DInputServerMethod.h21 const uchar* icon);
29 status_t SetIcon(const uchar* icon);
/haiku/src/kits/storage/mime/
H A Ddatabase_support.cpp163 get_icon_data(const BBitmap *icon, icon_size which, void **data, argument
166 if (icon == NULL || data == NULL || dataSize == 0
167 || icon->InitCheck() != B_OK)
187 // Check the icon
188 status_t err = icon->Bounds() == bounds ? B_OK : B_BAD_VALUE;
192 otherColorSpace = (icon->ColorSpace() != B_CMAP8);
199 err = icon8->ImportBits(icon);
205 srcData = icon->Bits();
206 *dataSize = icon->BitsLength();

Completed in 193 milliseconds

12345678