mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-11 13:46:43 +00:00
b30963b60e
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@2563 a592a061-630c-0410-9148-cb99ea01b6c8
70 lines
1.5 KiB
C
70 lines
1.5 KiB
C
/**
|
|
* \file QAbout.C
|
|
* Copyright 2001 the LyX Team
|
|
* Read the file COPYING
|
|
*
|
|
* \author Kalle Dalheimer <kalle@klaralvdalens-datakonsult.se>
|
|
*/
|
|
|
|
#include <config.h>
|
|
|
|
#include "support/lstrings.h"
|
|
#include "Lsstream.h"
|
|
#include "debug.h"
|
|
#include "gettext.h"
|
|
#include "QAboutDialog.h"
|
|
|
|
#include <qlabel.h>
|
|
#include <qpushbutton.h>
|
|
#include <qtextview.h>
|
|
#include "QtLyXView.h"
|
|
|
|
#include "ButtonControllerBase.h"
|
|
#include "qt2BC.h"
|
|
#include "ControlAboutlyx.h"
|
|
#include "QAbout.h"
|
|
|
|
typedef Qt2CB<ControlAboutlyx, Qt2DB<QAboutDialog> > base_class;
|
|
|
|
QAbout::QAbout(ControlAboutlyx & c)
|
|
: base_class(c, _("About LyX"))
|
|
{
|
|
}
|
|
|
|
|
|
void QAbout::build()
|
|
{
|
|
dialog_.reset(new QAboutDialog());
|
|
connect(dialog_.get()->closePB, SIGNAL(clicked()),
|
|
this, SLOT(slotCancel()));
|
|
|
|
dialog_->copyrightLA->setText(controller().getCopyright().c_str());
|
|
dialog_->licenseLA->setText(controller().getLicense().c_str());
|
|
dialog_->disclaimerLA->setText(controller().getDisclaimer().c_str());
|
|
dialog_->versionLA->setText(controller().getVersion().c_str());
|
|
|
|
stringstream in;
|
|
controller().getCredits(in);
|
|
|
|
istringstream ss(in.str().c_str());
|
|
|
|
string s;
|
|
string out;
|
|
|
|
while (getline(ss, s)) {
|
|
if (prefixIs(s, "@b"))
|
|
out += "<b>" + s.substr(2) + "</b>";
|
|
else if (prefixIs(s, "@i"))
|
|
out += "<i>" + s.substr(2) + "</i>";
|
|
else
|
|
out += s;
|
|
out += "<br>";
|
|
}
|
|
|
|
dialog_->creditsTV->setText(out.c_str());
|
|
|
|
// Manage the cancel/close button
|
|
bc().setCancel(dialog_->closePB);
|
|
bc().refresh();
|
|
}
|