viewWindowsManager.addListener(viewWindowsManagerListener);
ActionList<GLViewWindow> viewModelActionList = new ActionList<>();
viewModelCubeAction = new Action<>("Cube");
viewModelCubeAction.setHotKey(new HotKey(0, '1'));
viewModelActionList.addLastItem(viewModelCubeAction);
viewModelMonkeyAction = new Action<>("Monkey simple");
viewModelMonkeyAction.setHotKey(new HotKey(0, '2'));
viewModelActionList.addLastItem(viewModelMonkeyAction);
viewModelMonkeySubdivAction = new Action<>("Monkey subdivided");
viewModelMonkeySubdivAction.setHotKey(new HotKey(0, '3'));
viewModelActionList.addLastItem(viewModelMonkeySubdivAction);
getViewActionCategory().addFirstItem(new Separator<GLViewWindow>());
getViewActionCategory().addFirstItem(viewModelActionList);
}