mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-12-04 14:20:05 +00:00
0be0fcfd59
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@7598 a592a061-630c-0410-9148-cb99ea01b6c8
91 lines
2.2 KiB
C
91 lines
2.2 KiB
C
/**
|
|
* \file FormAboutlyx.C
|
|
* This file is part of LyX, the document processor.
|
|
* Licence details can be found in the file COPYING.
|
|
*
|
|
* \author Edwin Leuven
|
|
* \author Angus Leeming
|
|
* \author Rob Lahaye
|
|
*
|
|
* Full author contact details are available in file CREDITS.
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
|
|
#include "FormAboutlyx.h"
|
|
#include "xformsBC.h"
|
|
#include "ControlAboutlyx.h"
|
|
#include "forms/form_aboutlyx.h"
|
|
#include "xforms_helpers.h"
|
|
#include "Lsstream.h"
|
|
#include "version.h"
|
|
|
|
#include "lyx_forms.h"
|
|
|
|
namespace {
|
|
|
|
#if FL_VERSION == 0 || (FL_REVISION == 0 && FL_FIXLEVEL < 2)
|
|
bool const scalableTabfolders = false;
|
|
#else
|
|
bool const scalableTabfolders = true;
|
|
#endif
|
|
|
|
} // namespace anon
|
|
|
|
|
|
typedef FormController<ControlAboutlyx, FormView<FD_aboutlyx> > base_class;
|
|
|
|
FormAboutlyx::FormAboutlyx(Dialog & parent)
|
|
: base_class(parent, _("About LyX"), scalableTabfolders)
|
|
{}
|
|
|
|
|
|
void FormAboutlyx::build()
|
|
{
|
|
dialog_.reset(build_aboutlyx(this));
|
|
|
|
// create version tab
|
|
version_.reset(build_aboutlyx_version(this));
|
|
|
|
ostringstream vs;
|
|
vs << controller().getVersion()
|
|
<< '\n' << lyx_version_info;
|
|
|
|
fl_add_browser_line(version_->browser_version, vs.str().c_str());
|
|
|
|
// create credits tab
|
|
credits_.reset(build_aboutlyx_credits(this));
|
|
|
|
ostringstream crs;
|
|
controller().getCredits(crs);
|
|
|
|
fl_add_browser_line(credits_->browser_credits, crs.str().c_str());
|
|
|
|
// create license tab
|
|
license_.reset(build_aboutlyx_license(this));
|
|
int const width = license_->browser_license->w - 10;
|
|
|
|
ostringstream cs;
|
|
cs << controller().getCopyright() << "\n\n"
|
|
<< formatted(controller().getLicense(), width) << "\n\n"
|
|
<< formatted(controller().getDisclaimer(), width);
|
|
|
|
fl_add_browser_line(license_->browser_license, cs.str().c_str());
|
|
|
|
// Enable the tabfolder to be rescaled correctly.
|
|
if (scalableTabfolders)
|
|
fl_set_tabfolder_autofit(dialog_->tabfolder, FL_FIT);
|
|
|
|
// Stack tabs
|
|
fl_addto_tabfolder(dialog_->tabfolder, _("Version").c_str(),
|
|
version_->form);
|
|
fl_addto_tabfolder(dialog_->tabfolder, _("Credits").c_str(),
|
|
credits_->form);
|
|
fl_addto_tabfolder(dialog_->tabfolder, _("License").c_str(),
|
|
license_->form);
|
|
|
|
// Manage the cancel/close button
|
|
bcview().setCancel(dialog_->button_close);
|
|
}
|