Searched refs:label (Results 51 - 75 of 351) sorted by relevance

1234567891011>>

/haiku/src/kits/interface/
H A DControl.cpp52 BControl::BControl(BRect frame, const char* name, const char* label, argument
59 SetLabel(label);
64 BControl::BControl(const char* name, const char* label, BMessage* message, argument
71 SetLabel(label);
94 const char* label; local
95 if (data->FindString("_label", &label) == B_OK)
96 SetLabel(label);
218 const char* label; local
219 if (message->FindString("data", &label) == B_OK) {
220 SetLabel(label);
317 SetLabel(const char* label) argument
[all...]
H A DOptionControl.cpp20 \param label The label displayed by the control.
25 BOptionControl::BOptionControl(BRect frame, const char *name, const char *label, argument
28 BControl(frame, name, label, message, resize, flags)
33 BOptionControl::BOptionControl(const char *name, const char *label, argument
36 BControl(name, label, message, flags)
H A DSeparatorView.cpp36 BSeparatorView::BSeparatorView(const char* name, const char* label, argument
41 _Init(label, NULL, orientation, alignment, border);
54 BSeparatorView::BSeparatorView(const char* label, argument
59 _Init(label, NULL, orientation, alignment, border);
84 const char* label; local
85 if (archive->FindString("_labelview", &label) == B_OK) {
86 fLabelView = FindView(label);
87 } else if (archive->FindString("_label", &label) == B_OK) {
88 fLabel.SetTo(label);
386 BSeparatorView::SetLabel(const char* label) argument
448 _Init(const char* label, BView* labelView, orientation orientation, BAlignment alignment, border_style border) argument
[all...]
/haiku/src/apps/fontdemo/
H A DControlView.cpp73 BString label; local
75 label.SetToFormat(B_TRANSLATE("Size: %d"), 50);
76 fFontsizeSlider = new BSlider("Fontsize", label, NULL, 4, 360,
82 label.SetToFormat(B_TRANSLATE("Shear: %d"), 90);
83 fShearSlider = new BSlider("Shear", label, NULL, 45, 135, B_HORIZONTAL);
88 label.SetToFormat(B_TRANSLATE("Rotation: %d"), 0);
89 fRotationSlider = new BSlider("Rotation", label, NULL, 0, 360,
95 label.SetToFormat(B_TRANSLATE("Spacing: %d"), 0);
96 fSpacingSlider = new BSlider("Spacing", label, NULL, -5, 50, B_HORIZONTAL);
101 label
174 BString label; local
187 BString label; local
200 BString label; local
213 BString label; local
252 BString label; local
[all...]
/haiku/src/system/libroot/posix/glibc/include/arch/m68k/
H A Dasm-syntax.h32 #define L(label) .##label
35 #define L(label) ./**/label
44 #define L(label) label
/haiku/src/tests/kits/interface/
H A DToolTipTest.cpp164 ImmediateView(const char* name, const char* label) argument
166 BStringView(name, label)
183 PulseStringView(const char* name, const char* label) argument
185 BStringView(name, label, B_WILL_DRAW | B_PULSE_NEEDED)
201 PulseToolTipView(const char* name, const char* label) argument
203 BStringView(name, label, B_WILL_DRAW | B_PULSE_NEEDED),
/haiku/src/kits/shared/
H A DToolBar.cpp21 ToolBarButton(const char* name, const char* label,
28 ToolBarButton::ToolBarButton(const char* name, const char* label, argument
31 BButton(name, label, message)
50 LockableButton(const char* name, const char* label,
57 LockableButton::LockableButton(const char* name, const char* label, argument
60 ToolBarButton(name, label, message)
/haiku/src/apps/packageinstaller/
H A DPackageStatus.cpp49 PackageStatus::PackageStatus(const char *title, const char *label, argument
99 PackageStatus::Reset(uint32 stages, const char *label, const char *trailing) argument
104 fStatus->Reset(label, trailing);
/haiku/headers/os/interface/
H A DOptionPopUp.h18 const char* label, BMessage* message,
22 const char* label, BMessage* message,
27 const char* label, BMessage* message,
H A DSeparatorView.h19 const char* label,
32 BSeparatorView(const char* label = NULL,
64 void SetLabel(const char* label);
86 void _Init(const char* label, BView* labelView,
/haiku/src/tests/kits/interface/layout/widget_layout_test/tests/
H A DSliderTest.cpp56 OrientationRadioButton(const char* label, enum orientation orientation) argument
57 : LabeledRadioButton(label),
68 ThumbStyleRadioButton(const char* label, enum thumb_style style) argument
69 : LabeledRadioButton(label),
80 HashMarkLocationRadioButton(const char* label, enum hash_mark_location argument
82 : LabeledRadioButton(label),
94 ThicknessRadioButton(const char* label, float thickness) argument
95 : LabeledRadioButton(label),
107 LabelRadioButton(const char* label, const char* sliderLabel) argument
108 : LabeledRadioButton(label),
120 LimitLabelsRadioButton(const char* label, const char* minLabel, const char* maxLabel) argument
[all...]
/haiku/headers/private/tracker/
H A DIconMenuItem.h54 IconMenuItem(const char* label, BMessage* message, BBitmap* icon,
56 IconMenuItem(const char* label, BMessage* message,
58 IconMenuItem(const char* label, BMessage* message,
/haiku/src/add-ons/translators/hvif/
H A DHVIFView.cpp53 BString label = B_TRANSLATE("Render size:"); local
54 label << " " << renderSize;
56 fRenderSize = new BSlider("renderSize", label.String(),
/haiku/src/apps/bootmanager/
H A DDefaultPartitionPage.h37 void _GetTimeoutLabel(int32 timeout, BString& label);
/haiku/src/apps/deskbar/
H A DCalendarMenuWindow.h33 BButton* _SetupButton(const char* label, uint32 what,
/haiku/src/apps/icon-o-matic/generic/gui/popup_control/
H A DInputSlider.h20 const char* label = NULL,
/haiku/src/tests/kits/interface/layout/widget_layout_test/
H A DCheckBox.h31 LabeledCheckBox(const char* label,
/haiku/headers/private/shared/
H A DPromptWindow.h22 const char* label, const char* info,
/haiku/src/add-ons/translators/psd/
H A DConfigView.h30 void _AddItemToMenu(BMenu* menu, const char* label,
/haiku/src/apps/expander/
H A DDirectoryFilePanel.cpp107 // Resize button so that the label fits
119 char* label; local
122 if (asprintf(&label, B_TRANSLATE("Select '%s'" B_UTF8_ELLIPSIS),
124 fCurrentButton->SetLabel(label);
125 free(label);
/haiku/src/preferences/time/
H A DTZDisplay.cpp20 TTZDisplay::TTZDisplay(const char* name, const char* label) argument
23 fLabel(label),
83 TTZDisplay::SetLabel(const char* label) argument
85 fLabel.SetTo(label);
/haiku/src/kits/mail/
H A DFileConfigView.cpp36 FileControl::FileControl(const char* name, const char* label, argument
44 fText = new BTextControl("file_path", label, pathOfFile, NULL);
131 MailFileConfigView::MailFileConfigView(const char* label, const char* name, argument
134 FileControl(name, label, defaultPath, flavors),
/haiku/src/apps/people/
H A DAttributeTextControl.cpp30 AttributeTextControl::AttributeTextControl(const char* label, argument
37 if (label != NULL && label[0] != 0) {
39 .ReplaceFirst("%attribute_label", label));
173 // TODO: Could actually check current alignment of the label.
H A DAttributeTextControl.h20 AttributeTextControl(const char* label,
/haiku/src/add-ons/print/drivers/preview/
H A DPageSetupWindow.cpp62 const char * label; member in struct:__anon1581
85 const char * label; member in struct:__anon1582
122 BString label; local
123 if (fSetupMsg->FindString("preview:paper_size", &label) != B_OK)
124 label = "Letter";
152 for (int32 i = 0; pageFormat[i].label != NULL; i++) {
156 BMenuItem* item = new BMenuItem(pageFormat[i].label, message);
159 if (label.Compare(pageFormat[i].label) == 0)
170 for (int32 i = 0; orientation[i].label !
[all...]

Completed in 209 milliseconds

1234567891011>>