1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294
|
// K-3D
// Copyright (c) 1995-2008, Timothy M. Shead
//
// Contact: tshead@k-3d.com
//
// 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#include <k3d-i18n-config.h>
#include <k3dsdk/application_plugin_factory.h>
#include <k3dsdk/fstream.h>
#include <k3dsdk/gzstream.h>
#include <k3dsdk/mime_types.h>
#include <k3dsdk/module.h>
#include <k3dsdk/ngui/application_window.h>
#include <k3dsdk/ngui/button.h>
#include <k3dsdk/ngui/document.h>
#include <k3dsdk/ngui/messages.h>
#include <k3dsdk/ngui/options.h>
#include <k3dsdk/ngui/scripting.h>
#include <k3dsdk/ngui/utility.h>
#include <k3dsdk/ngui/widget_manip.h>
#include <k3dsdk/options.h>
#include <k3dsdk/plugin.h>
#include <k3dsdk/share.h>
#include <k3dsdk/xml.h>
#include <gtkmm/box.h>
#include <gtkmm/buttonbox.h>
#include <gtkmm/checkbutton.h>
#include <gtkmm/label.h>
#include <gtkmm/liststore.h>
#include <gtkmm/messagedialog.h>
#include <gtkmm/scrolledwindow.h>
#include <gtkmm/stock.h>
#include <gtkmm/treeview.h>
#include <boost/scoped_ptr.hpp>
#include <boost/assign/list_of.hpp>
using namespace k3d::ngui;
namespace module
{
namespace ngui
{
namespace learning
{
/////////////////////////////////////////////////////////////////////////////
// dialog
/// Provides a menu of demonstration documents
class dialog :
public k3d::ngui::application_window,
public k3d::iunknown
{
typedef k3d::ngui::application_window base;
public:
dialog() :
m_show_at_startup(_("Show examples at startup"))
{
load_examples();
set_title(_("K-3D Tutorials and Examples"));
set_role("learning_menu");
set_border_width(10);
resize(300, 470);
set_position(Gtk::WIN_POS_CENTER);
Gtk::HButtonBox* const box2 = Gtk::manage(new Gtk::HButtonBox(Gtk::BUTTONBOX_END));
box2->pack_start(*Gtk::manage(
new Gtk::Button(Gtk::Stock::CLOSE) <<
connect_button(sigc::mem_fun(*this, &dialog::close))));
Gtk::TreeView* const example_list = Gtk::manage(new Gtk::TreeView(m_example_store));
example_list->set_headers_visible(false);
example_list->append_column("Example Documents", m_columns.label);
example_list->signal_row_activated().connect(sigc::mem_fun(*this, &dialog::on_open_example));
Gtk::ScrolledWindow* const example_window = Gtk::manage(new Gtk::ScrolledWindow());
example_window->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC);
example_window->add(*example_list);
m_show_at_startup.set_active(options::nag("show_learning_menu"));
m_show_at_startup.signal_toggled().connect(sigc::mem_fun(*this, &dialog::on_show_at_startup));
Gtk::VBox* const box1 = Gtk::manage(new Gtk::VBox(false, 10));
box1->pack_start(*Gtk::manage(new Gtk::Label() << set_markup(_("<big><b>Welcome to K-3D!</b></big>"))), Gtk::PACK_SHRINK);
box1->pack_start(*Gtk::manage(new Gtk::Label(_("Below are example documents you can\nuse to become familiar with K-3D."))), Gtk::PACK_SHRINK);
box1->pack_start(*Gtk::manage(new Gtk::Label(_("Double-click to open an example document:"))), Gtk::PACK_SHRINK);
box1->pack_start(*example_window, Gtk::PACK_EXPAND_WIDGET);
box1->pack_start(m_show_at_startup, Gtk::PACK_SHRINK);
box1->pack_start(*box2, Gtk::PACK_SHRINK);
add(*box1);
show_all();
}
template<class PredicateT>
void load_resources(Glib::RefPtr<Gtk::ListStore>& ResourceModel, const k3d::filesystem::path& ResourcePath, const k3d::string_t& ContainerTag, const k3d::string_t& ResourceTag, PredicateT Predicate)
{
ResourceModel = Gtk::ListStore::create(m_columns);
const k3d::filesystem::path index_path = ResourcePath / k3d::filesystem::generic_path("index.k3d");
if(!k3d::filesystem::exists(index_path))
{
k3d::log() << error << "Learning resource index file [" << index_path.native_console_string() << "] does not exist" << std::endl;
return;
}
// Load the index file as XML ...
k3d::xml::element index("k3dml");
k3d::filesystem::ifstream stream(index_path);
stream >> index;
// Get the set of indexed resources ...
k3d::xml::element* const xml_application = k3d::xml::find_element(index, "application");
if(!xml_application)
return;
k3d::xml::element* const xml_resources = k3d::xml::find_element(*xml_application, ContainerTag);
if(!xml_resources)
return;
unsigned long resource_number = 0;
for(k3d::xml::element::elements_t::const_iterator xml_resource = xml_resources->children.begin(); xml_resource != xml_resources->children.end(); ++xml_resource)
{
if(xml_resource->name != ResourceTag)
continue;
const k3d::string_t xml_title = k3d::xml::attribute_text(*xml_resource, "title");
if(xml_title.empty())
{
k3d::log() << error << "Learning resource without title attribute will be ignored" << std::endl;
continue;
}
const k3d::string_t xml_path = k3d::xml::attribute_text(*xml_resource, "path");
if(xml_path.empty())
{
k3d::log() << error << "Learning resource without path attribute will be ignored" << std::endl;
continue;
}
const k3d::xml::element* const xml_description = k3d::xml::find_element(*xml_resource, "description");
const k3d::filesystem::path resource_path = ResourcePath / k3d::filesystem::native_path(k3d::ustring::from_utf8(xml_path));
if(!k3d::filesystem::exists(resource_path))
{
k3d::log() << error << "Learning resource [" << resource_path.native_console_string() << "] does not exist" << std::endl;
continue;
}
if(!Predicate(resource_path))
continue;
const k3d::string_t label = k3d::string_cast(++resource_number) + ". " + xml_title;
Gtk::TreeRow row = *ResourceModel->append();
row[m_columns.title] = xml_title;
row[m_columns.description] = xml_description ? xml_description->text : k3d::string_t();
row[m_columns.path] = resource_path;
row[m_columns.label] = label;
}
}
class test_examples
{
public:
const bool operator()(const k3d::filesystem::path& Path) const
{
const k3d::mime::type mime_type = k3d::mime::type::lookup(Path);
if(mime_type.empty())
{
k3d::log() << error << "Example [" << Path.native_console_string() << "] does not match a known MIME type" << std::endl;
return false;
}
const k3d::plugin::factory::collection_t factories = k3d::plugin::factory::lookup(mime_type);
if(factories.empty())
{
k3d::log() << error << "No plugins available to process example [" << Path.native_console_string() << "] with MIME type [" << mime_type.str() << "]" << std::endl;
return false;
}
return true;
}
};
void load_examples()
{
load_resources(m_example_store, k3d::share_path() / k3d::filesystem::generic_path("documents"), "examples", "example", test_examples());
}
void on_open_example(const Gtk::TreePath& Path, Gtk::TreeViewColumn* Column)
{
// Get the row that was activated ...
Gtk::TreeRow row = *m_example_store->get_iter(Path);
// Look-up the path to the actual example document ...
const Glib::ustring title = row[m_columns.title];
const Glib::ustring description = row[m_columns.description];
const k3d::filesystem::path path = row[m_columns.path];
// (Optionally) display a description of the document ...
if(!description.empty())
{
const k3d::string_t message = k3d::string_cast(boost::format(_("Open example document \"%1%\"?")) % title);
Gtk::MessageDialog dialog(*this, "", false, Gtk::MESSAGE_QUESTION, Gtk::BUTTONS_YES_NO);
dialog.set_message(message);
dialog.set_secondary_text(description);
dialog.set_default_response(Gtk::RESPONSE_YES);
if(dialog.run() != Gtk::RESPONSE_YES)
return;
}
hide();
close();
handle_pending_events();
open_document(path);
}
void on_show_at_startup()
{
options::enable_nag("show_learning_menu", m_show_at_startup.get_active());
k3d::options::commit();
}
class resource_columns :
public Gtk::TreeModelColumnRecord
{
public:
resource_columns()
{
add(title);
add(description);
add(path);
add(label);
}
Gtk::TreeModelColumn<Glib::ustring> title;
Gtk::TreeModelColumn<Glib::ustring> description;
Gtk::TreeModelColumn<k3d::filesystem::path> path;
Gtk::TreeModelColumn<Glib::ustring> label;
};
resource_columns m_columns;
Glib::RefPtr<Gtk::ListStore> m_example_store;
Gtk::CheckButton m_show_at_startup;
static k3d::iplugin_factory& get_factory()
{
static k3d::application_plugin_factory<dialog> factory(
k3d::uuid(0xd7d79750, 0x344aa731, 0xbeb2a198, 0x739e0cfe),
"NGUILearningDialog",
_("Displays a menu containing sample documents"),
"NGUI Dialog",
k3d::iplugin_factory::STABLE,
boost::assign::map_list_of("ngui:component-type", "dialog"));
return factory;
}
};
} // namespace learning
} // namespace ngui
} // namespace module
K3D_MODULE_START(Registry)
Registry.register_factory(module::ngui::learning::dialog::get_factory());
K3D_MODULE_END
|