use of com.biglybt.ui.swt.mdi.MultipleDocumentInterfaceSWT in project BiglyBT by BiglySoftware.
the class SkinView method skinObjectCreated.
@Override
public Object skinObjectCreated(SWTSkinObject skinObject, Object params) {
SkinViewManager.add(this);
MultipleDocumentInterfaceSWT mdi = UIFunctionsManagerSWT.getUIFunctionsSWT().getMDISWT();
if (mdi != null) {
MdiEntry entry = mdi.getEntryFromSkinObject(skinObject);
if (entry != null && (this instanceof UIPluginViewToolBarListener)) {
entry.addToolbarEnabler((UIPluginViewToolBarListener) this);
}
}
return super.skinObjectCreated(skinObject, params);
}
Aggregations