over time, a specific Lumiera code writing style has emerged. The GUI, as it stood, used somewhat different conventions, which now have been aligned to the common standard. Basically we use GNU style, with some adjustments for OO-programming, we prefer CamelCase, and write TypeNames uppercase, variableNames lowercase
129 lines
3.2 KiB
C++
129 lines
3.2 KiB
C++
/*
|
|
WorkspaceWindow - the main workspace window of the GUI
|
|
|
|
Copyright (C) Lumiera.org
|
|
2008, Joel Holdsworth <joel@airwebreathe.org.uk>
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License as
|
|
published by the Free Software Foundation; either version 2 of
|
|
the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
|
|
|
|
* *****************************************************/
|
|
|
|
#include "gui/gtk-lumiera.hpp"
|
|
#include "workspace-window.hpp"
|
|
#include "include/logging.h"
|
|
|
|
#include <gtkmm/stock.h>
|
|
|
|
#ifdef ENABLE_NLS
|
|
# include <libintl.h>
|
|
#endif
|
|
|
|
|
|
|
|
using namespace Gtk;
|
|
using namespace Glib;
|
|
using namespace gui::model;
|
|
using namespace gui::controller;
|
|
|
|
namespace gui {
|
|
namespace workspace {
|
|
|
|
WorkspaceWindow::WorkspaceWindow (Project& source_project
|
|
,gui::controller::Controller& source_controller)
|
|
: project_(source_project)
|
|
, controller_(source_controller)
|
|
, panelManager_(*this)
|
|
, actions_(*this)
|
|
{
|
|
createUI();
|
|
}
|
|
|
|
|
|
WorkspaceWindow::~WorkspaceWindow()
|
|
{
|
|
INFO (gui_dbg, "Closing workspace window...");
|
|
}
|
|
|
|
|
|
|
|
Project&
|
|
WorkspaceWindow::getProject()
|
|
{
|
|
return project_;
|
|
}
|
|
|
|
|
|
Controller&
|
|
WorkspaceWindow::getController()
|
|
{
|
|
return controller_;
|
|
}
|
|
|
|
|
|
PanelManager&
|
|
WorkspaceWindow::getPanelManager()
|
|
{
|
|
return panelManager_;
|
|
}
|
|
|
|
|
|
void
|
|
WorkspaceWindow::createUI()
|
|
{
|
|
// RTL Test Code
|
|
//set_default_direction (TEXT_DIR_RTL);
|
|
|
|
//----- Configure the Window -----//
|
|
set_title(GtkLumiera::getAppTitle());
|
|
set_default_size(1024, 768);
|
|
|
|
//----- Set up the UI Manager -----//
|
|
// The UI will be nested within a VBox
|
|
add(baseContainer_);
|
|
|
|
uiManager_ = Gtk::UIManager::create();
|
|
actions_.populateMainActions(uiManager_);
|
|
add_accel_group(uiManager_->get_accel_group());
|
|
|
|
//----- Set up the Menu Bar -----//
|
|
Gtk::Widget* menu_bar = uiManager_->get_widget("/MenuBar");
|
|
REQUIRE(menu_bar != NULL);
|
|
baseContainer_.pack_start(*menu_bar, Gtk::PACK_SHRINK);
|
|
|
|
//----- Create the Docks -----//
|
|
panelManager_.setupDock();
|
|
dockContainer_.pack_start(panelManager_.getDockBar(),false,false,0);
|
|
dockContainer_.pack_start(panelManager_.getDock(),true,true,0);
|
|
baseContainer_.pack_start(dockContainer_, PACK_EXPAND_WIDGET);
|
|
|
|
//----- Create the status bar -----//
|
|
//statusBar.set_has_resize_grip();
|
|
statusBar_.set_resize_mode(Gtk::RESIZE_PARENT);
|
|
baseContainer_.pack_start(statusBar_, PACK_SHRINK);
|
|
|
|
show_all_children();
|
|
}
|
|
|
|
|
|
void
|
|
WorkspaceWindow::set_close_window_sensitive (bool enable)
|
|
{
|
|
uiManager_->get_action("/MenuBar/WindowMenu/WindowCloseWindow")
|
|
->set_sensitive(enable);
|
|
}
|
|
|
|
|
|
|
|
}}// namespace gui::workspace
|