Home
last modified time | relevance | path

Searched refs:fAttributeControl (Results 1 – 3 of 3) sorted by relevance

/haiku/src/add-ons/mail_daemon/inbound_filters/match_header/
H A DConfigView.cpp51 BTextControl* fAttributeControl; member in RuleFilterConfig
73 fAttributeControl = new BTextControl("attr", B_TRANSLATE("If"), NULL, NULL); in RuleFilterConfig()
74 fAttributeControl->SetToolTip( in RuleFilterConfig()
76 fAttributeControl->SetText(settings.Attribute()); in RuleFilterConfig()
150 .Add(fAttributeControl->CreateLabelLayoutItem()) in RuleFilterConfig()
151 .Add(fAttributeControl->CreateTextViewLayoutItem()) in RuleFilterConfig()
169 settings.SetString("attribute", fAttributeControl->Text()); in SaveInto()
/haiku/src/preferences/filetypes/
H A DAttributeWindow.cpp101 fAttributeControl = new BTextControl(B_TRANSLATE("Internal name:"), in AttributeWindow()
103 fAttributeControl->SetModificationMessage( in AttributeWindow()
105 fAttributeControl->SetAlignment(B_ALIGN_RIGHT, B_ALIGN_LEFT); in AttributeWindow()
108 BTextView* textView = fAttributeControl->TextView(); in AttributeWindow()
235 .Add(fAttributeControl->CreateLabelLayoutItem(), 0, 1) in AttributeWindow()
236 .Add(fAttributeControl->CreateTextViewLayoutItem(), 1, 1) in AttributeWindow()
332 bool enabled = fAttributeControl->Text() != NULL in _CheckAcceptable()
333 && fAttributeControl->Text()[0] != '\0' in _CheckAcceptable()
354 const char* newAttribute = fAttributeControl->Text(); in _NewItemFromCurrent()
429 const char* newAttribute = fAttributeControl->Text(); in MessageReceived()
H A DAttributeWindow.h46 BTextControl* fAttributeControl; variable