void PecoApp::NoRenamer() { if (fRenameMode == MODE_NONE) return; fWindow->Lock(); BMenuField *myField = (BMenuField *)fWindow->FindView("selectMode"); BMenu *myMenu = myField->Menu(); myMenu->FindMarked()->SetMarked(false); myField->MenuItem()->SetLabel(STR_PLEASE_SELECT); BView *bottomView = fWindow->FindView("bottomView"); bottomView->RemoveChild((BView *)((PecoApp *)be_app)->fRenamers[fRenameMode]); fRenameMode = MODE_NONE; float deltaHeight = - be_plain_font->Size()*2 - 40; float min_h, max_h, min_v, max_v; fWindow->GetSizeLimits( &min_h, &max_h, &min_v, &max_v ); fWindow->SetSizeLimits( min_h, max_h, min_v + deltaHeight, max_v ); fWindow->FindView("topView")->SetResizingMode(0); fWindow->FindView("bottomView")->SetResizingMode(B_FOLLOW_TOP_BOTTOM); fWindow->ResizeBy(0, deltaHeight); fWindow->FindView("topView")->SetResizingMode(B_FOLLOW_TOP_BOTTOM); fWindow->FindView("bottomView")->SetResizingMode(B_FOLLOW_BOTTOM); fWindow->Unlock(); }
void ConfigView::UpdateNotifyText() { BMenuField *field; if ((field = dynamic_cast<BMenuField *>(FindView("notify"))) == NULL) return; BString label; for (int32 i = field->Menu()->CountItems();i-- > 0;) { BMenuItem *item = field->Menu()->ItemAt(i); if (!item->IsMarked()) continue; if (label != "") label.Prepend(" + "); label.Prepend(item->Label()); } if (label == "") label = "none"; field->MenuItem()->SetLabel(label.String()); }