addMenuItem(compilerMenu, Icons.editorIcons.ItemList(), "Project Resources", new SystemShowDialogCommand(DynamicResourcesDialog.class));
compilerMenu.addSeparator();
addMenuItem(compilerMenu, Icons.editorIcons.Blank(), "Settings...", new SystemShowDialogCommand(DynamicCompilerSettingsDialog.class));
this.menu.addItem("Compiler", compilerMenu);
MenuBarExt helpMenu = new MenuBarExt(true);
addMenuItem(helpMenu, Icons.editorIcons.Blank(), "Using LaTeX Lab", new SystemNotImplementedCommand());
addMenuItem(helpMenu, Icons.editorIcons.Blank(), "Using a custom CLSI server", new SystemNotImplementedCommand());
helpMenu.addSeparator();
addMenuItem(helpMenu, Icons.editorIcons.Blank(), "About", new SystemShowDialogCommand(DynamicAboutDialog.class));
this.menu.addItem("Help", helpMenu);
return menu;
}