Hi All,
I have a TBrowser embeded in a TGCompositeFrame,
compositeframe->SetEditable(kTRUE);
fBrowser = new TBrowser("", "", 390, 600);
compositeframe->SetEditable(kFALSE);
I have two questions:
-
how do I make it resise properly when the composite frame is resised?
-
is there a way to disable some of the TBrowser’s menu enteries, inparticular File>Close Browser?
thanks,
-Aram.
Hi Aram,
- you can overload TGFrame::ConfigureNotify method for
"compositeframe" like:
if ((event->fWidth != fWidth) || (event->fHeight != fHeight)) {
fWidth = event->fWidth;
fHeight = event->fHeight;
TRootBrowser *b = (TRootBrowser*)fBrowser->GetBrowserImp();
b->Resize(fWidth, fHeight);
Layout();
}
return kTRUE;
If you do not want to overload this method (for example in interpreted code), you can “catch” configure/resize events by TGFrame::ProcessedEvent(Event_t *event) signal
and connect it to appropriate handler function.
- you can do it as:
b = (TRootBrowser*)fBrowser->GetBrowserImp();
bar = b->GetMenuBar();
popup = bar->GetPopup("File");
entry = popup->GetEntry("Close Browser");
popup->HideEntry(entry->GetEntryId());
Regards. Valeriy