use of org.rstudio.core.client.theme.PrimaryWindowFrame in project rstudio by rstudio.
the class PaneManager method createConsole.
private LogicalWindow createConsole() {
PrimaryWindowFrame frame = new PrimaryWindowFrame("Console", null);
ToolbarButton goToWorkingDirButton = commands_.goToWorkingDir().createToolbarButton();
goToWorkingDirButton.addStyleName(ThemeResources.INSTANCE.themeStyles().windowFrameToolbarButton());
LogicalWindow logicalWindow = new LogicalWindow(frame, new MinimizedWindowFrame("Console"));
consoleTabPanel_ = new ConsoleTabPanel(frame, logicalWindow, consolePane_, compilePdfTab_, findOutputTab_, sourceCppTab_, renderRmdTab_, deployContentTab_, markersTab_, terminalTab_, eventBus_, goToWorkingDirButton);
return logicalWindow;
}
Aggregations