/********************************************************************** * * FreeDoko a Doppelkopf-Game * * Copyright (C) 2001-2007 by Diether Knof and Borg Enders * * 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 can find this license in the file 'gpl.txt'. * * 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 * * Contact: * Diether Knof dknof@gmx.de * Borg Enders borg@borgsoft.de * *********************************************************************/ #include "constants.h" #ifdef USE_UI_GTKMM #include "program_updated.h" #include "ui.h" #include "translations.h" #include "../../party/party.h" #include "../../player/player.h" #include "../../player/aiconfig.h" #include "widgets/stock_button.h" #include #include #include #include #include #include namespace UI_GTKMM_NS { /** ** constructor ** ** @param parent the parent object ** @param old_version last version ** ** @return - ** ** @author Diether Knof ** ** @version 0.7.0 **/ ProgramUpdated::ProgramUpdated(Base* const parent, DK::Utils::Version const& old_version) : Base(parent), Dialog("ProgramUpdated"), old_version(old_version), text_buffer(NULL) { this->ui->add_window(*this); this->ui->translations->add(*this, ::translation("FreeDoko program updated")); this->set_icon(this->ui->icon); this->set_default_size(static_cast(this->ui->logo->get_width() * 1.5), static_cast(this->ui->logo->get_height() * 2.5)); #ifdef POSTPHONED this->get_window()->set_decorations(Gdk::DECOR_BORDER | Gdk::DECOR_RESIZEH | Gdk::DECOR_TITLE | Gdk::DECOR_MENU); #endif { // action area { // reset ais button Gtk::StockButton* reset_ais_button = Gtk::manage(new Gtk::StockButton(Gtk::Stock::CLOSE, "reset ais")); this->ui->translations->add(*reset_ais_button, ::translation("reset ais")); this->add_action_widget(*reset_ais_button, Gtk::RESPONSE_NONE); // signals reset_ais_button->signal_clicked().connect(sigc::mem_fun(*this, &ProgramUpdated::reset_ais)); } // reset ais button { // close button Gtk::StockButton* close_button = Gtk::manage(new Gtk::StockButton(Gtk::Stock::CLOSE, "close")); this->ui->translations->add(*close_button, ::translation("close")); this->add_action_widget(*close_button, Gtk::RESPONSE_CLOSE); close_button->grab_default(); // signals close_button->signal_clicked().connect(sigc::mem_fun(*this, &Gtk::Widget::hide)); } // close button } // action area { // the image Gtk::Alignment* alignment = Gtk::manage(new Gtk::Alignment(Gtk::ALIGN_CENTER, Gtk::ALIGN_CENTER, 0, 0)); alignment->set_border_width(parent->ui->logo->get_width() / 20); Gtk::Image* image = Gtk::manage(new Gtk::Image(parent->ui->logo)); alignment->add(*image); this->get_vbox()->pack_start(*alignment, Gtk::PACK_SHRINK); } // the image { // the text Gtk::TextView* const text = Gtk::manage(new Gtk::TextView()); this->text_buffer = text->get_buffer(); { Glib::RefPtr tag_title = this->text_buffer->create_tag("title"); //tag_title->property_weight().set_value(Pango::WEIGHT_BOLD); tag_title->property_scale().set_value(Pango::SCALE_X_LARGE); tag_title->property_justification().set_value(Gtk::JUSTIFY_CENTER); Glib::RefPtr tag_subtitle = this->text_buffer->create_tag("subtitle"); tag_subtitle->property_weight().set_value(Pango::WEIGHT_BOLD); } Gtk::ScrolledWindow* text_window = Gtk::manage(new Gtk::ScrolledWindow()); text_window->add(*text); text_window->set_policy(Gtk::POLICY_AUTOMATIC, Gtk::POLICY_AUTOMATIC); text->set_editable(false); text->set_wrap_mode(Gtk::WRAP_WORD); text->set_cursor_visible(false); this->get_vbox()->add(*text_window); } // the text this->language_update(); this->signal_show().connect(sigc::mem_fun(*this, &ProgramUpdated::language_update)); this->show_all_children(); return ; } // ProgramUpdated::ProgramUpdated(Base* parent, DK::Utils::Version old_version) /** ** destruktor ** ** @param - ** ** @return - ** ** @author Diether Knof ** ** @version 0.7.0 **/ ProgramUpdated::~ProgramUpdated() { return ; } // ProgramUpdated::~ProgramUpdated() /** ** update the language ** ** @param - ** ** @return - ** ** @author Diether Knof ** ** @version 0.7.0 **/ void ProgramUpdated::language_update() { if (!this->is_realized()) return ; this->text_buffer->erase(this->text_buffer->begin(), this->text_buffer->end()); { // title this->text_buffer->insert_with_tag(this->text_buffer->begin(), "\n" + ::translation("Greeting::%sversion%", version.number_to_string()).translation(), "title"); } // title for (vector::reverse_iterator v = ::all_versions.rbegin(); ( (v != ::all_versions.rend()) && (this->old_version < **v) ); ++v) { this->text_buffer->insert_with_tag(this->text_buffer->end(), "\n\n" + ::translation("ChangeLog::for %sversion%", (*v)->number_to_string()).translation(), "subtitle"); this->text_buffer->insert(this->text_buffer->end(), "\n" + ::translation("ChangeLog::" + (*v)->number_to_string()).translation()); } // for (v \in ::all_versions) return ; } // void ProgramUpdated::language_update() /** ** reset the ais ** ** @param - ** ** @return - ** ** @author Diether Knof ** ** @version 0.7.0 **/ void ProgramUpdated::reset_ais() { for (vector::iterator p = this->ui->party().players().begin(); p != this->ui->party().players().end(); ++p) if (dynamic_cast(*p)) dynamic_cast(*p)->reset_to_hardcoded((*p)->no()); this->hide(); return ; } // void ProgramUpdated::reset_ais() } // namespace UI_GTKMM_NS #endif // #ifdef USE_UI_GTKMM