2001-04-02 20:08:43 +00:00
|
|
|
/**
|
|
|
|
* \file FormCredits.C
|
|
|
|
* Copyright 2001 The LyX Team.
|
|
|
|
* See the file COPYING.
|
|
|
|
*
|
|
|
|
* \author Edwin Leuven, leuven@fee.uva.nl
|
|
|
|
* \author Angus Leeming, a.leeming@.ac.uk
|
|
|
|
* \author Kalle Dalheimer, kalle@klaralvdalens-datakonsult.se
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma implementation
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2001-05-17 08:59:04 +00:00
|
|
|
#include "gettext.h"
|
2001-04-02 20:08:43 +00:00
|
|
|
#include "FormCreditsDialogImpl.h"
|
|
|
|
#include <qtextview.h>
|
|
|
|
#include <qpushbutton.h>
|
|
|
|
#undef emit
|
|
|
|
|
|
|
|
#include "qt2BC.h"
|
|
|
|
#include "ControlCredits.h"
|
|
|
|
#include "FormCredits.h"
|
|
|
|
#include "Lsstream.h"
|
|
|
|
|
|
|
|
using std::getline;
|
|
|
|
|
|
|
|
typedef Qt2CB<ControlCredits, Qt2DB<FormCreditsDialogImpl> > base_class;
|
|
|
|
|
|
|
|
FormCredits::FormCredits(ControlCredits & c)
|
|
|
|
: base_class(c, _("Credits"))
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
|
|
void FormCredits::build()
|
|
|
|
{
|
2001-06-05 17:05:51 +00:00
|
|
|
// PENDING(kalle) Parent?
|
|
|
|
dialog_.reset(new FormCreditsDialogImpl( this ));
|
|
|
|
|
|
|
|
// Manage the cancel/close button
|
|
|
|
bc().setCancel(dialog_->okPB);
|
|
|
|
bc().refresh();
|
|
|
|
|
|
|
|
std::stringstream ss;
|
|
|
|
QString xformscredits = controller().getCredits( ss ).str().c_str();
|
|
|
|
QStringList xformslist = QStringList::split( '\n', controller().getCredits( ss ).str().c_str(), true );
|
|
|
|
for( QStringList::Iterator it = xformslist.begin(); it != xformslist.end(); ++it ) {
|
|
|
|
QString line = *it;
|
|
|
|
if( line.left( 2 ) == "@b" )
|
|
|
|
dialog_->creditsTV->append( "<b>" + line.mid( 2 ) + "</b>" );
|
|
|
|
else if( line.left( 2 ) == "@i" )
|
|
|
|
dialog_->creditsTV->append( "<i>" + line.mid( 2 ) + "</i>" );
|
|
|
|
else
|
|
|
|
dialog_->creditsTV->append( line );
|
|
|
|
}
|
2001-04-02 20:08:43 +00:00
|
|
|
}
|