Searched refs:label (Results 276 - 300 of 351) sorted by relevance

<<1112131415

/haiku/src/kits/tracker/
H A DContainerWindow.h170 BMenuItem* NewAttributeMenuItem(const char* label, const char* name,
173 BMenuItem* NewAttributeMenuItem(const char* label, const char* name,
H A DDeskWindow.cpp462 BString label; local
463 label.SetToFormat(B_TRANSLATE_COMMENT("%" B_PRId32" �� %" B_PRId32,
466 item = new BMenuItem(label, message);
/haiku/src/apps/deskcalc/
H A DExpressionTextView.cpp92 // Pass on to CalcView if this was a label on a key
179 ExpressionTextView::AddKeypadLabel(const char* label) argument
181 fKeypadLabels << label; local
/haiku/src/apps/haikudepot/ui/
H A DPackageInfoView.cpp169 TransitReportingButton(const char* name, const char* label, argument
172 BButton(name, label, message),
513 fStatusLabel = new BStringView("progress label",
895 BString label; local
896 label.SetToFormat("%" B_PRId32, 5 - i);
897 fLabelViews[i] = new BStringView("", label);
919 BString label; local
920 label.SetToFormat("%" B_PRId32, count);
921 fCountViews[i]->SetText(label);
/haiku/src/kits/interface/
H A DChannelSlider.cpp77 BChannelSlider::BChannelSlider(BRect area, const char* name, const char* label, argument
79 : BChannelControl(area, name, label, model, channels, resizeMode, flags)
85 BChannelSlider::BChannelSlider(BRect area, const char* name, const char* label, argument
88 : BChannelControl(area, name, label, model, channels, resizeMode, flags)
96 BChannelSlider::BChannelSlider(const char* name, const char* label, argument
99 : BChannelControl(name, label, model, channels, flags)
H A DMenuItem.cpp63 BMenuItem::BMenuItem(const char* label, BMessage* message, char shortcut, argument
67 if (label != NULL)
68 fLabel = strdup(label);
425 // truncate label to fit
H A DMenu.cpp152 { B_DIRECT_SPECIFIER, 0 }, "Returns the string label of the menu or "
158 { B_DIRECT_SPECIFIER, 0 }, "Sets the string label of the menu or menu "
177 "Adds a new menu item at the specified index with the text label "
203 "Adds a new menu item at the specified index with the text label "
990 BMenu::FindItem(const char* label) const
997 if (item->Label() && strcmp(item->Label(), label) == 0)
1001 item = item->Submenu()->FindItem(label);
1726 const char *label; local
1730 err = message->FindString("data", &label);
1741 item.SetTo(new BMenuItem(new BMenu(label),
1789 const char *label; local
1914 const char *label; local
[all...]
/haiku/src/preferences/mail/
H A DConfigWindow.cpp83 AccountItem::AccountItem(const char* label, BMailAccountSettings* account, argument
86 BStringItem(label),
776 BString label; local
777 label << account->Name();
780 item = new AccountItem(label, account, ACCOUNT_ITEM);
H A DFilterConfigView.cpp184 FilterSettingsView(const BString& label, BMailSettingsView* settingsView) argument
189 SetLabel(label);
/haiku/docs/develop/kits/storage/resources/
H A DResourcesFormat.tex38 \label{introduction}
59 \label{file-formats}
162 \label{resources-format}
209 \label{fig:resources-layout}
231 \label{resources-header}
280 \label{resources-index}
387 \label{resources-unknown}
418 \label{resources-infotable}
554 \label{implementations}
587 \label{statu
[all...]
/haiku/src/tests/kits/storage/
H A DMimeSnifferTest.cpp1095 void dumpStr(const std::string &string, const char *label = NULL) {
1096 if (label)
1097 printf("%s: ", label);
/haiku/src/apps/mail/
H A DAddressTextControl.cpp90 void _AddGroup(const char* label, const char* group,
510 AddressPopUpMenu::_AddGroup(const char* label, const char* group, argument
513 BMenu* menu = new BMenu(label);
570 BString label;
576 label = email;
580 label << name << " (" << email << ")";
/haiku/src/apps/launchbox/
H A DPadView.cpp384 BString label; local
385 label.SetToFormat(B_TRANSLATE_COMMENT("%" B_PRId32" �� %" B_PRId32,
388 item = new BMenuItem(label, message);
H A DLaunchButton.cpp42 LaunchButton::LaunchButton(const char* name, const char* label, argument
45 BIconButton(name, label, message, target),
/haiku/src/apps/activitymonitor/
H A DActivityView.cpp1498 // show current value and label
1505 BString label = source->Label(); local
1507 if (ceilf(StringWidth(label.String())) > possibleLabelWidth)
1508 label = source->ShortLabel();
1509 TruncateString(&label, B_TRUNCATE_MIDDLE, possibleLabelWidth);
1512 DrawString(label.String(), BPoint(6 + colorBox.right, y));
1515 be_control_look->DrawLabel(this, label.String(),
/haiku/src/add-ons/kernel/file_systems/fat/
H A Ddosfs.cpp65 kprintf("label entry %" B_PRIu32 ", label %s\n", vol->vol_entry,
143 dosfs_trim_spaces(char *label) argument
147 if (label[index] == ' ')
148 label[index] = 0;
156 dosfs_read_label(bool fat32, uint8 *buffer, char *label) argument
163 memcpy(label, buffer + offset, 11);
164 dosfs_trim_spaces(label);
408 // find volume label (supercedes any label i
[all...]
/haiku/src/add-ons/kernel/file_systems/ntfs/
H A Dkernel_interface.cpp45 extern "C" int mkntfs_main(const char* devpath, const char* label);
302 ntfschar* label = NULL; local
303 int label_len = ntfs_mbstoucs(info->volume_name, &label);
304 if (label_len <= 0 || label == NULL)
306 MemoryDeleter nameDeleter(label);
308 if (ntfs_volume_rename(volume->ntfs, label, label_len) != 0)
/haiku/src/apps/icon-o-matic/
H A DMainWindow.cpp402 BString label(B_TRANSLATE("Undo: %action%"));
405 label.ReplaceFirst("%action%", temp);
407 fUndoMI->SetLabel(label.String());
414 label.SetTo(B_TRANSLATE("Redo: %action%"));
417 label.ReplaceFirst("%action%", temp);
419 fRedoMI->SetLabel(label.String());
/haiku/src/preferences/keymap/
H A DKeyboardLayoutView.cpp815 // draw the button label
833 const char* label = NULL; local
835 label = "caps";
837 label = "num";
839 label = "scroll";
840 if (label != NULL) {
850 BString text(label);
H A DModifierKeysWindow.cpp85 BStringView* keyLabel = new BStringView("key label",
284 const char* label)
306 BMenuField* menuField = new StatusMenuField(label, menu);
283 _CreateMenuField(BPopUpMenu** _menu, BMenuField** _menuField, uint32 key, const char* label) argument
/haiku/src/add-ons/kernel/file_systems/btrfs/
H A Dkernel_interface.cpp104 partition->content_name = strdup(cookie->super_block.label);
200 strncpy(superBlock.label, info->volume_name,
201 sizeof(superBlock.label) - 1);
202 superBlock.label[sizeof(superBlock.label) - 1] = '\0';
1105 INFORM("\tlabel: \"%s\"\n", super.label);
/haiku/src/apps/firstbootprompt/
H A DBootPromptWindow.cpp83 LanguageItem(const char* label, const char* language) argument
85 BStringItem(label),
/haiku/src/apps/terminal/
H A DAppearPrefView.cpp390 AppearancePrefView::_MakeFontSizeMenu(const char* label, uint32 command, argument
393 BMenu* menu = new BMenu(label);
448 message->AddString("label", *items);
/haiku/src/apps/people/
H A DPersonWindow.cpp348 PersonWindow::AddAttribute(const char* label, const char* attribute) argument
350 fView->AddAttribute(label, attribute);
/haiku/src/apps/softwareupdater/
H A DSoftwareUpdaterWindow.h40 SuperItem(const char* label);

Completed in 174 milliseconds

<<1112131415