mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-16 03:36:32 +01:00
107 lines
2.6 KiB
C++
107 lines
2.6 KiB
C++
/*
|
|
Copyright (C) 2014 Waves Audio Ltd.
|
|
|
|
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 "pbd/file_utils.h"
|
|
#include "ardour/filesystem_paths.h"
|
|
#include "ardour/revision.h"
|
|
|
|
#include "i18n.h"
|
|
#include "about_dialog.h"
|
|
#include "license_dialog.h"
|
|
#include "public_editor.h"
|
|
|
|
using namespace Gtk;
|
|
using namespace Gdk;
|
|
using namespace std;
|
|
using namespace ARDOUR;
|
|
using namespace PBD;
|
|
|
|
About::About ()
|
|
: WavesDialog (_("about_dialog.xml"), true, false)
|
|
, _image_home ( get_v_box("image_home") )
|
|
, _about_button ( get_waves_button ("about_button") )
|
|
, _credits ( get_label("credits") )
|
|
{
|
|
set_modal (true);
|
|
set_resizable (false);
|
|
|
|
string image_path;
|
|
|
|
if (find_file (ardour_data_search_path(), "splash.png", image_path)) {
|
|
Gtk::Image* image;
|
|
if ((image = manage (new Gtk::Image (image_path))) != 0) {
|
|
_image_home.pack_start (*image, false, false);
|
|
}
|
|
}
|
|
|
|
init_credits ();
|
|
_about_button.signal_clicked.connect (sigc::mem_fun (*this, &About::about_button_pressed));
|
|
|
|
show_all ();
|
|
}
|
|
|
|
void
|
|
About::init_credits ()
|
|
{
|
|
// Get version
|
|
string revision = ARDOUR::revision;
|
|
int pos = revision.rfind("-");
|
|
revision.erase (pos, revision.size() - pos);
|
|
|
|
// Get current year
|
|
// current date/time based on current system
|
|
time_t now = time(0);
|
|
// convert now to tm struct for UTC
|
|
tm *timeinfo = gmtime(&now);
|
|
|
|
stringstream ss;
|
|
ss << timeinfo->tm_year + 1900;
|
|
string str_year = ss.str();
|
|
|
|
// string text="Version : " + revision + "\nCopyright Waves Audio Ltd. 2013-" + str_year;
|
|
string text="Version : " + revision;
|
|
|
|
_credits.set_text (text);
|
|
}
|
|
|
|
void
|
|
About::on_esc_pressed ()
|
|
{
|
|
hide();
|
|
}
|
|
|
|
void
|
|
About::about_button_pressed (WavesButton*)
|
|
{
|
|
MainMenuDisabler m;
|
|
LicenseDialog license_dialog;
|
|
license_dialog.set_position (WIN_POS_CENTER);
|
|
license_dialog.run ();
|
|
}
|
|
|
|
void
|
|
About::on_realize ()
|
|
{
|
|
WavesDialog::on_realize();
|
|
get_window()->set_decorations (Gdk::WMDecoration (Gdk::DECOR_ALL));
|
|
}
|
|
|
|
About::~About ()
|
|
{
|
|
}
|