this.home = home;
this.application = application;
this.viewFactory = viewFactory;
this.contentManager = contentManager;
HomeView view = (HomeView)getView();
view.setEnabled(HomeView.ActionType.EXIT, false);
view.setEnabled(HomeView.ActionType.NEW_HOME, newHomeEnabled);
view.setEnabled(HomeView.ActionType.OPEN, openEnabled);
view.setEnabled(HomeView.ActionType.SAVE, saveEnabled);
view.setEnabled(HomeView.ActionType.SAVE_AS, saveAsEnabled);
// By default disabled Print to PDF, Export to SVG, Export to OBJ and Create photo actions
view.setEnabled(HomeView.ActionType.PRINT_TO_PDF, false);
view.setEnabled(HomeView.ActionType.EXPORT_TO_SVG, false);
view.setEnabled(HomeView.ActionType.EXPORT_TO_OBJ, false);
view.setEnabled(HomeView.ActionType.CREATE_PHOTO, false);
view.setEnabled(HomeView.ActionType.DETACH_3D_VIEW, false);
}