initial commit, lordsawar source, slightly modified
[lordsawar] / src / editor / temple-editor-dialog.cpp
diff --git a/src/editor/temple-editor-dialog.cpp b/src/editor/temple-editor-dialog.cpp
new file mode 100644 (file)
index 0000000..762f08b
--- /dev/null
@@ -0,0 +1,98 @@
+//  Copyright (C) 2007 Ole Laursen
+//  Copyright (C) 2007, 2008, 2009 Ben Asselstine
+//
+//  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 3 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 Library 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., 51 Franklin Street, Fifth Floor, Boston, MA 
+//  02110-1301, USA.
+
+#include <config.h>
+
+#include <gtkmm.h>
+#include <sigc++/functors/mem_fun.h>
+
+#include "temple-editor-dialog.h"
+
+#include "glade-helpers.h"
+#include "ucompose.hpp"
+#include "CreateScenarioRandomize.h"
+#include "defs.h"
+#include "temple.h"
+#include "RenamableLocation.h"
+
+TempleEditorDialog::TempleEditorDialog(Temple *t, CreateScenarioRandomize *randomizer)
+{
+    d_randomizer = randomizer;
+    temple = t;
+    
+    Glib::RefPtr<Gtk::Builder> xml
+       = Gtk::Builder::create_from_file(get_glade_path()
+                                   + "/temple-editor-dialog.ui");
+
+    xml->get_widget("dialog", dialog);
+
+    xml->get_widget("name_entry", name_entry);
+    name_entry->set_text(temple->getName());
+
+    xml->get_widget("description_entry", description_entry);
+    description_entry->set_text(temple->getDescription());
+
+    xml->get_widget("type_entry", type_entry);
+    type_entry->set_value(temple->getType());
+    xml->get_widget("randomize_name_button", randomize_name_button);
+    randomize_name_button->signal_clicked().connect(
+       sigc::mem_fun(this, &TempleEditorDialog::on_randomize_name_clicked));
+}
+
+TempleEditorDialog::~TempleEditorDialog()
+{
+  delete dialog;
+}
+void TempleEditorDialog::set_parent_window(Gtk::Window &parent)
+{
+    dialog->set_transient_for(parent);
+    //dialog->set_position(Gtk::WIN_POS_CENTER_ON_PARENT);
+}
+
+int TempleEditorDialog::run()
+{
+    dialog->show_all();
+    int response = dialog->run();
+
+    if (response == Gtk::RESPONSE_ACCEPT)      // accepted
+    {
+      Location *l = temple;
+      RenamableLocation *renamable_temple = static_cast<RenamableLocation*>(l);
+      renamable_temple->setName(name_entry->get_text());
+      temple->setType(type_entry->get_value_as_int());
+      renamable_temple->setDescription(description_entry->get_text());
+    }
+    else
+      {
+       if (name_entry->get_text() != Temple::getDefaultName())
+         d_randomizer->pushRandomTempleName(name_entry->get_text());
+      }
+    return response;
+}
+
+void TempleEditorDialog::on_randomize_name_clicked()
+{
+  std::string existing_name = name_entry->get_text();
+  if (existing_name == Temple::getDefaultName())
+    name_entry->set_text(d_randomizer->popRandomTempleName());
+  else
+    {
+      name_entry->set_text(d_randomizer->popRandomTempleName());
+      d_randomizer->pushRandomTempleName(existing_name);
+    }
+}