2011-02-18 20:14:45 +01:00
///////////////////////////////////////////////////////////////////////////////
2010-11-11 19:37:16 +01:00
// LameXP - Audio Encoder Front-End
2012-01-02 00:52:27 +01:00
// Copyright (C) 2004-2012 LoRd_MuldeR <MuldeR2@GMX.de>
2010-11-11 19:37:16 +01:00
//
// 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.,
// 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
//
// http://www.gnu.org/licenses/gpl-2.0.txt
///////////////////////////////////////////////////////////////////////////////
# include "Dialog_About.h"
# include "Global.h"
# include "Resource.h"
2010-11-29 20:36:27 +01:00
# include "Model_Settings.h"
2010-11-11 19:37:16 +01:00
# include <QDate>
# include <QApplication>
# include <QIcon>
# include <QPushButton>
2010-11-12 15:58:53 +01:00
# include <QDesktopServices>
# include <QUrl>
2010-11-12 19:02:01 +01:00
# include <QTimer>
2010-12-18 16:49:04 +01:00
# include <QFileInfo>
# include <QDir>
2011-04-24 23:18:39 +02:00
# include <QDesktopWidget>
# include <QLabel>
2012-09-15 20:46:26 +02:00
# include <QMessageBox>
# include <QTextStream>
2012-09-16 14:15:32 +02:00
# include <QScrollBar>
2012-09-16 18:13:53 +02:00
# include <QCloseEvent>
2012-09-18 01:41:00 +02:00
# include <QWindowsVistaStyle>
# include <QWindowsXPStyle>
2010-11-11 19:37:16 +01:00
2012-09-15 20:46:26 +02:00
# include <ShellAPI.h>
2011-04-11 21:55:34 +02:00
# include <MMSystem.h>
2011-06-21 22:07:22 +02:00
# include <math.h>
2010-11-11 19:37:16 +01:00
//Helper macros
2011-10-16 16:38:01 +02:00
# define LINK(URL) QString("<a href=\"%1\">%2< / a>").arg(URL).arg(QString(URL).replace("-", "−"))
2012-09-16 18:13:53 +02:00
# define TRIM_RIGHT(STR) do { while(STR.endsWith(QChar(' ')) || STR.endsWith(QChar('\t')) || STR.endsWith(QChar('\r')) || STR.endsWith(QChar('\n'))) STR.chop(1); } while(0)
2012-09-18 01:41:00 +02:00
# define MAKE_TRANSPARENT(WIDGET) do { QPalette _p = (WIDGET)->palette(); _p.setColor(QPalette::Background, Qt::transparent); (WIDGET)->setPalette(_p); } while(0)
2010-11-11 19:37:16 +01:00
2010-11-11 22:58:02 +01:00
//Constants
const char * AboutDialog : : neroAacUrl = " http://www.nero.com/eng/technologies-aac-codec.html " ;
2011-10-15 15:53:07 +02:00
const char * AboutDialog : : disqueUrl = " http://mulder.brhack.net/?player_url=38X-MXOB014 " ; //http://mulder.brhack.net/?player_url=yF6W-w0iAMM; http://www.youtube.com/watch_popup?v=yF6W-w0iAMM&vq=large
2010-11-11 22:58:02 +01:00
2011-01-20 22:54:10 +01:00
//Contributors
static const struct
2011-01-07 23:00:32 +01:00
{
char * pcFlag ;
2011-02-18 20:14:45 +01:00
wchar_t * pcLanguage ;
wchar_t * pcName ;
2011-01-07 23:00:32 +01:00
char * pcMail ;
2011-01-20 22:54:10 +01:00
}
2012-09-15 20:46:26 +02:00
g_lamexp_translators [ ] =
2011-01-07 23:00:32 +01:00
{
2011-10-03 01:33:12 +02:00
{ " en " , L " Englisch " , L " LoRd_MuldeR " , " MuldeR2@GMX.de " } ,
{ " de " , L " Deutsch " , L " LoRd_MuldeR " , " MuldeR2@GMX.de " } ,
{ " " , L " " , L " Bodo Thevissen " , " Bodo@thevissen.de " } ,
{ " es " , L " Español " , L " Rub3nCT " , " Rub3nCT@gmail.com " } ,
{ " fr " , L " Française " , L " Dodich Informatique " , " Dodich@live.fr " } ,
{ " it " , L " Italiano " , L " Roberto " , " Gulliver_69@libero.it " } ,
{ " kr " , L " 한국어 " , L " JaeHyung Lee " , " Kolanp@gmail.com " } ,
{ " pl " , L " Polski " , L " Sir Daniel K " , " Sir.Daniel.K@gmail.com " } ,
{ " ru " , L " Русский " , L " Neonailol " , " Neonailol@gmail.com " } ,
2011-10-11 13:57:40 +02:00
{ " " , L " " , L " Иван Митин " , " bardak@inbox.ru " } ,
2012-04-29 17:35:14 +02:00
{ " sv " , L " Svenska " , L " Åke Engelbrektson " , " eson57@gmail.com " } ,
2011-12-19 15:48:50 +01:00
{ " tw " , L " 繁体中文 " , L " 456Vv " , " 123@456vv.com " } ,
2011-10-03 01:33:12 +02:00
{ " uk " , L " Українська " , L " Arestarh " , " Arestarh@ukr.net " } ,
2011-12-19 15:48:50 +01:00
{ " zh " , L " 简体中文 " , L " 456Vv " , " 123@456vv.com " } ,
2011-01-07 23:00:32 +01:00
{ NULL , NULL , NULL , NULL }
} ;
2010-11-11 22:58:02 +01:00
////////////////////////////////////////////////////////////
// Constructor
////////////////////////////////////////////////////////////
2010-11-29 20:36:27 +01:00
AboutDialog : : AboutDialog ( SettingsModel * settings , QWidget * parent , bool firstStart )
:
2012-09-15 20:46:26 +02:00
QDialog ( parent ) ,
2011-04-24 23:34:52 +02:00
m_settings ( settings ) ,
2012-09-16 14:15:32 +02:00
m_initFlags ( new QMap < QWidget * , bool > ) ,
2011-04-24 23:34:52 +02:00
m_disque ( NULL ) ,
2011-04-25 21:13:52 +02:00
m_disqueTimer ( NULL ) ,
m_rotateNext ( false ) ,
2012-09-18 01:41:00 +02:00
m_disqueDelay ( _I64_MAX ) ,
m_lastTab ( 0 )
2010-11-11 19:37:16 +01:00
{
2012-09-15 20:46:26 +02:00
//Init the dialog, from the .ui file
setupUi ( this ) ;
setWindowFlags ( windowFlags ( ) & ( ~ Qt : : WindowContextHelpButtonHint ) ) ;
resize ( this - > minimumSize ( ) ) ;
2012-09-18 01:41:00 +02:00
2012-09-15 20:46:26 +02:00
//Disable "X" button
2012-09-16 18:13:53 +02:00
if ( firstStart )
2011-04-25 21:13:52 +02:00
{
2012-09-16 18:13:53 +02:00
if ( HMENU hMenu = GetSystemMenu ( ( HWND ) winId ( ) , FALSE ) )
{
EnableMenuItem ( hMenu , SC_CLOSE , MF_BYCOMMAND | MF_GRAYED ) ;
}
2011-04-25 21:13:52 +02:00
}
2012-09-16 18:13:53 +02:00
//Init images
2012-09-15 20:46:26 +02:00
for ( int i = 0 ; i < 4 ; i + + )
2012-04-11 00:44:40 +02:00
{
2012-09-15 20:46:26 +02:00
m_cartoon [ i ] = NULL ;
2012-04-11 00:44:40 +02:00
}
2012-09-16 14:15:32 +02:00
//Init tab widget
connect ( tabWidget , SIGNAL ( currentChanged ( int ) ) , this , SLOT ( tabChanged ( int ) ) ) ;
2010-11-12 15:58:53 +01:00
2012-09-18 01:41:00 +02:00
//Make transparent
QStyle * style = qApp - > style ( ) ;
if ( ( dynamic_cast < QWindowsVistaStyle * > ( style ) ) | | ( dynamic_cast < QWindowsXPStyle * > ( style ) ) )
{
MAKE_TRANSPARENT ( infoScrollArea ) ;
MAKE_TRANSPARENT ( contributorsScrollArea ) ;
MAKE_TRANSPARENT ( softwareScrollArea ) ;
MAKE_TRANSPARENT ( licenseScrollArea ) ;
}
2012-09-16 14:15:32 +02:00
//Show about dialog for the first time?
2012-09-15 20:46:26 +02:00
if ( ! firstStart )
{
2012-10-13 12:36:41 +02:00
lamexp_seed_rand ( ) ;
2012-09-15 20:46:26 +02:00
acceptButton - > hide ( ) ;
declineButton - > hide ( ) ;
aboutQtButton - > show ( ) ;
closeButton - > show ( ) ;
2012-10-13 12:36:41 +02:00
2011-04-24 23:18:39 +02:00
QPixmap disque ( " :/images/Disque.png " ) ;
2011-05-01 00:42:34 +02:00
QRect screenGeometry = QApplication : : desktop ( ) - > availableGeometry ( ) ;
2011-04-24 23:18:39 +02:00
m_disque = new QLabel ( this , Qt : : Window | Qt : : FramelessWindowHint | Qt : : WindowStaysOnTopHint ) ;
m_disque - > installEventFilter ( this ) ;
m_disque - > setStyleSheet ( " background:transparent; " ) ;
m_disque - > setAttribute ( Qt : : WA_TranslucentBackground ) ;
2012-10-13 12:36:41 +02:00
m_disque - > setGeometry ( static_cast < int > ( lamexp_rand ( ) % static_cast < unsigned int > ( screenGeometry . width ( ) - disque . width ( ) ) ) , static_cast < int > ( lamexp_rand ( ) % static_cast < unsigned int > ( screenGeometry . height ( ) - disque . height ( ) ) ) , disque . width ( ) , disque . height ( ) ) ;
2011-04-24 23:18:39 +02:00
m_disque - > setPixmap ( disque ) ;
m_disque - > setWindowOpacity ( 0.01 ) ;
m_disque - > show ( ) ;
2012-10-13 12:36:41 +02:00
m_disqueFlags [ 0 ] = ( lamexp_rand ( ) > ( UINT_MAX / 2 ) ) ;
m_disqueFlags [ 1 ] = ( lamexp_rand ( ) > ( UINT_MAX / 2 ) ) ;
2011-04-24 23:18:39 +02:00
m_disqueTimer = new QTimer ;
connect ( m_disqueTimer , SIGNAL ( timeout ( ) ) , this , SLOT ( moveDisque ( ) ) ) ;
m_disqueTimer - > setInterval ( 10 ) ;
m_disqueTimer - > start ( ) ;
2012-09-15 20:46:26 +02:00
connect ( aboutQtButton , SIGNAL ( clicked ( ) ) , this , SLOT ( showAboutQt ( ) ) ) ;
2011-04-24 23:18:39 +02:00
}
2012-09-15 20:46:26 +02:00
else
{
acceptButton - > show ( ) ;
declineButton - > show ( ) ;
aboutQtButton - > hide ( ) ;
closeButton - > hide ( ) ;
}
2012-09-16 14:15:32 +02:00
//Activate "show license" button
showLicenseButton - > show ( ) ;
connect ( showLicenseButton , SIGNAL ( clicked ( ) ) , this , SLOT ( gotoLicenseTab ( ) ) ) ;
2010-11-12 15:58:53 +01:00
m_firstShow = firstStart ;
2010-11-11 19:37:16 +01:00
}
AboutDialog : : ~ AboutDialog ( void )
{
2011-04-24 23:18:39 +02:00
if ( m_disque )
{
m_disque - > close ( ) ;
LAMEXP_DELETE ( m_disque ) ;
}
if ( m_disqueTimer )
{
m_disqueTimer - > stop ( ) ;
LAMEXP_DELETE ( m_disqueTimer ) ;
}
2011-04-25 21:13:52 +02:00
for ( int i = 0 ; i < 4 ; i + + )
{
LAMEXP_DELETE ( m_cartoon [ i ] ) ;
}
2012-09-16 14:15:32 +02:00
LAMEXP_DELETE ( m_initFlags ) ;
2010-11-11 19:37:16 +01:00
}
2010-11-11 22:58:02 +01:00
////////////////////////////////////////////////////////////
// Public Functions
////////////////////////////////////////////////////////////
2010-11-11 19:37:16 +01:00
int AboutDialog : : exec ( )
{
2010-11-29 20:36:27 +01:00
if ( m_settings - > soundsEnabled ( ) )
{
2011-01-29 21:57:53 +01:00
if ( m_firstShow )
{
if ( ! playResoureSound ( " imageres.dll " , 5080 , true ) )
{
PlaySound ( TEXT ( " SystemStart " ) , NULL , SND_ALIAS | SND_ASYNC ) ;
}
}
else
2010-12-18 16:49:04 +01:00
{
PlaySound ( MAKEINTRESOURCE ( IDR_WAVE_ABOUT ) , GetModuleHandle ( NULL ) , SND_RESOURCE | SND_ASYNC ) ;
}
2010-11-29 20:36:27 +01:00
}
2010-11-11 19:37:16 +01:00
2012-09-15 20:46:26 +02:00
switch ( QDialog : : exec ( ) )
2010-11-12 15:58:53 +01:00
{
2010-11-12 19:02:01 +01:00
case 1 :
return 1 ;
break ;
case 2 :
return - 1 ;
break ;
default :
return 0 ;
break ;
2010-11-12 15:58:53 +01:00
}
2010-11-12 19:02:01 +01:00
}
////////////////////////////////////////////////////////////
// Slots
////////////////////////////////////////////////////////////
2011-08-29 15:57:17 +02:00
# define TEMP_HIDE_DISQUE(CMD) \
if ( m_disque ) { bool _tmp = m_disque - > isVisible ( ) ; if ( _tmp ) m_disque - > hide ( ) ; { CMD } ; if ( _tmp ) { m_disque - > show ( ) ; m_disque - > setWindowOpacity ( 0.01 ) ; } } else { CMD }
2012-09-16 14:15:32 +02:00
void AboutDialog : : tabChanged ( int index )
{
bool bInitialized = m_initFlags - > value ( tabWidget - > widget ( index ) , false ) ;
if ( ! bInitialized )
{
qApp - > setOverrideCursor ( QCursor ( Qt : : WaitCursor ) ) ;
2012-09-18 01:41:00 +02:00
if ( QWidget * tab = tabWidget - > widget ( index ) )
2012-09-16 14:15:32 +02:00
{
2012-09-18 01:41:00 +02:00
bool ok = false ;
2012-09-16 14:15:32 +02:00
2012-09-18 01:41:00 +02:00
if ( tab = = infoTab ) { initInformationTab ( ) ; ok = true ; }
if ( tab = = contributorsTab ) { initContributorsTab ( ) ; ok = true ; }
if ( tab = = softwareTab ) { initSoftwareTab ( ) ; ok = true ; }
if ( tab = = licenseTab ) { initLicenseTab ( ) ; ok = true ; }
if ( ok )
{
m_initFlags - > insert ( tab , true ) ;
}
else
{
qWarning ( " Unknown tab %p encountered, cannot initialize !!! " , tab ) ;
}
}
2012-09-16 18:13:53 +02:00
tabWidget - > widget ( index ) - > update ( ) ;
2012-09-16 14:15:32 +02:00
qApp - > processEvents ( ) ;
qApp - > restoreOverrideCursor ( ) ;
}
//Scroll to the top
2012-09-18 01:41:00 +02:00
if ( QWidget * tab = tabWidget - > widget ( index ) )
2012-09-16 14:15:32 +02:00
{
2012-09-18 01:41:00 +02:00
if ( tab = = infoTab ) infoScrollArea - > verticalScrollBar ( ) - > setSliderPosition ( 0 ) ;
if ( tab = = contributorsTab ) contributorsScrollArea - > verticalScrollBar ( ) - > setSliderPosition ( 0 ) ;
if ( tab = = softwareTab ) softwareScrollArea - > verticalScrollBar ( ) - > setSliderPosition ( 0 ) ;
if ( tab = = licenseTab ) licenseScrollArea - > verticalScrollBar ( ) - > setSliderPosition ( 0 ) ;
2012-09-16 14:15:32 +02:00
}
2012-09-18 01:41:00 +02:00
//Update license button
2012-09-16 14:15:32 +02:00
showLicenseButton - > setChecked ( tabWidget - > widget ( index ) = = licenseTab ) ;
2012-09-18 01:41:00 +02:00
if ( tabWidget - > widget ( index ) ! = licenseTab ) m_lastTab = index ;
2012-09-16 14:15:32 +02:00
}
2010-11-12 19:02:01 +01:00
void AboutDialog : : enableButtons ( void )
{
2012-09-15 20:46:26 +02:00
acceptButton - > setEnabled ( true ) ;
declineButton - > setEnabled ( true ) ;
2010-11-12 19:02:01 +01:00
setCursor ( QCursor ( Qt : : ArrowCursor ) ) ;
2010-11-11 19:37:16 +01:00
}
2012-09-15 20:46:26 +02:00
void AboutDialog : : openURL ( const QString & url )
2010-11-12 19:02:01 +01:00
{
2012-09-15 20:46:26 +02:00
if ( ! QDesktopServices : : openUrl ( QUrl ( url ) ) )
{
ShellExecuteW ( this - > winId ( ) , L " open " , QWCHAR ( url ) , NULL , NULL , SW_SHOW ) ;
}
2010-11-12 19:02:01 +01:00
}
void AboutDialog : : showAboutQt ( void )
{
2011-08-29 15:57:17 +02:00
TEMP_HIDE_DISQUE
(
QMessageBox : : aboutQt ( this ) ;
) ;
2010-11-12 19:02:01 +01:00
}
2010-11-11 22:58:02 +01:00
2012-09-16 14:15:32 +02:00
void AboutDialog : : gotoLicenseTab ( void )
{
2012-09-18 01:41:00 +02:00
tabWidget - > setCurrentIndex ( tabWidget - > indexOf ( showLicenseButton - > isChecked ( ) ? licenseTab : tabWidget - > widget ( m_lastTab ) ) ) ;
2012-09-16 14:15:32 +02:00
}
2011-04-24 23:18:39 +02:00
void AboutDialog : : moveDisque ( void )
{
2011-04-25 21:13:52 +02:00
int delta = 2 ;
LARGE_INTEGER perfCount , perfFrequ ;
if ( QueryPerformanceFrequency ( & perfFrequ ) & & QueryPerformanceCounter ( & perfCount ) )
{
if ( m_disqueDelay ! = _I64_MAX )
{
2011-05-01 00:42:34 +02:00
const double delay = static_cast < double > ( perfCount . QuadPart ) - static_cast < double > ( m_disqueDelay ) ;
2011-11-08 15:12:31 +01:00
delta = qMax ( 1 , qMin ( 128 , static_cast < int > ( ceil ( delay / static_cast < double > ( perfFrequ . QuadPart ) / 0.00512 ) ) ) ) ;
2011-04-25 21:13:52 +02:00
}
m_disqueDelay = perfCount . QuadPart ;
}
2011-04-24 23:34:52 +02:00
if ( m_disque )
2011-04-24 23:18:39 +02:00
{
2011-05-01 00:42:34 +02:00
QRect screenGeometry = QApplication : : desktop ( ) - > availableGeometry ( ) ;
const int minX = screenGeometry . left ( ) ;
const int maxX = screenGeometry . width ( ) - m_disque - > width ( ) + screenGeometry . left ( ) ;
const int minY = screenGeometry . top ( ) ;
const int maxY = screenGeometry . height ( ) - m_disque - > height ( ) + screenGeometry . top ( ) ;
2011-04-24 23:34:52 +02:00
QPoint pos = m_disque - > pos ( ) ;
pos . setX ( m_disqueFlags [ 0 ] ? pos . x ( ) + delta : pos . x ( ) - delta ) ;
pos . setY ( m_disqueFlags [ 1 ] ? pos . y ( ) + delta : pos . y ( ) - delta ) ;
2011-04-24 23:18:39 +02:00
2011-05-01 00:42:34 +02:00
if ( pos . x ( ) < = minX )
2011-04-24 23:34:52 +02:00
{
m_disqueFlags [ 0 ] = true ;
2011-05-01 00:42:34 +02:00
pos . setX ( minX ) ;
2011-04-25 21:13:52 +02:00
m_rotateNext = true ;
2011-04-24 23:34:52 +02:00
}
2011-05-01 00:42:34 +02:00
else if ( pos . x ( ) > = maxX )
2011-04-24 23:34:52 +02:00
{
m_disqueFlags [ 0 ] = false ;
2011-05-01 00:42:34 +02:00
pos . setX ( maxX ) ;
2011-04-25 21:13:52 +02:00
m_rotateNext = true ;
2011-04-24 23:34:52 +02:00
}
2011-05-01 00:42:34 +02:00
if ( pos . y ( ) < = minY )
2011-04-24 23:34:52 +02:00
{
m_disqueFlags [ 1 ] = true ;
2011-05-01 00:42:34 +02:00
pos . setY ( minY ) ;
2011-04-25 21:13:52 +02:00
m_rotateNext = true ;
2011-04-24 23:34:52 +02:00
}
2011-05-01 00:42:34 +02:00
else if ( pos . y ( ) > = maxY )
2011-04-24 23:34:52 +02:00
{
m_disqueFlags [ 1 ] = false ;
2011-05-01 00:42:34 +02:00
pos . setY ( maxY ) ;
2011-04-25 21:13:52 +02:00
m_rotateNext = true ;
}
m_disque - > move ( pos ) ;
if ( m_rotateNext )
{
QPixmap * cartoon = NULL ;
if ( m_disqueFlags [ 0 ] = = true & & m_disqueFlags [ 1 ] ! = true ) cartoon = m_cartoon [ 0 ] ;
if ( m_disqueFlags [ 0 ] = = true & & m_disqueFlags [ 1 ] = = true ) cartoon = m_cartoon [ 1 ] ;
if ( m_disqueFlags [ 0 ] ! = true & & m_disqueFlags [ 1 ] = = true ) cartoon = m_cartoon [ 2 ] ;
if ( m_disqueFlags [ 0 ] ! = true & & m_disqueFlags [ 1 ] ! = true ) cartoon = m_cartoon [ 3 ] ;
if ( cartoon )
{
m_disque - > setPixmap ( * cartoon ) ;
m_disque - > resize ( cartoon - > size ( ) ) ;
}
m_rotateNext = false ;
2011-04-24 23:34:52 +02:00
}
if ( m_disque - > windowOpacity ( ) < 0.9 )
{
m_disque - > setWindowOpacity ( m_disque - > windowOpacity ( ) + 0.01 ) ;
}
2011-04-24 23:18:39 +02:00
}
}
2012-09-20 22:52:52 +02:00
void AboutDialog : : adjustSize ( void )
{
int maximumHeight = QApplication : : desktop ( ) - > availableGeometry ( ) . height ( ) ;
int delta = infoScrollArea - > widget ( ) - > height ( ) - infoScrollArea - > viewport ( ) - > height ( ) ;
if ( delta > 0 )
{
this - > resize ( this - > width ( ) , qMin ( this - > height ( ) + delta , maximumHeight ) ) ;
this - > move ( this - > x ( ) , this - > y ( ) - ( delta / 2 ) ) ;
this - > setMinimumHeight ( qMax ( this - > minimumHeight ( ) , this - > height ( ) ) ) ;
}
}
2010-11-12 19:02:01 +01:00
////////////////////////////////////////////////////////////
// Protected Functions
////////////////////////////////////////////////////////////
void AboutDialog : : showEvent ( QShowEvent * e )
{
QDialog : : showEvent ( e ) ;
2012-09-18 01:41:00 +02:00
tabWidget - > setCurrentIndex ( tabWidget - > indexOf ( infoTab ) ) ;
tabChanged ( m_lastTab = tabWidget - > currentIndex ( ) ) ;
2010-11-12 19:02:01 +01:00
if ( m_firstShow )
{
2012-09-15 20:46:26 +02:00
acceptButton - > setEnabled ( false ) ;
declineButton - > setEnabled ( false ) ;
2010-11-12 19:02:01 +01:00
QTimer : : singleShot ( 5000 , this , SLOT ( enableButtons ( ) ) ) ;
setCursor ( QCursor ( Qt : : WaitCursor ) ) ;
}
2012-09-20 22:52:52 +02:00
QTimer : : singleShot ( 0 , this , SLOT ( adjustSize ( ) ) ) ;
2010-11-12 19:02:01 +01:00
}
2012-09-16 18:13:53 +02:00
void AboutDialog : : closeEvent ( QCloseEvent * e )
{
if ( m_firstShow ) e - > ignore ( ) ;
}
2011-04-24 23:18:39 +02:00
bool AboutDialog : : eventFilter ( QObject * obj , QEvent * event )
{
if ( ( obj = = m_disque ) & & ( event - > type ( ) = = QEvent : : MouseButtonPress ) )
{
2011-04-25 21:13:52 +02:00
QPixmap cartoon ( " :/images/Cartoon.png " ) ;
for ( int i = 0 ; i < 4 ; i + + )
{
if ( ! m_cartoon [ i ] )
{
m_cartoon [ i ] = new QPixmap ( cartoon . transformed ( QMatrix ( ) . rotate ( static_cast < double > ( i * 90 ) + 45.0 ) , Qt : : SmoothTransformation ) ) ;
m_rotateNext = true ;
}
}
2011-04-24 23:18:39 +02:00
QDesktopServices : : openUrl ( QUrl ( disqueUrl ) ) ;
}
return false ;
}
2010-11-12 19:02:01 +01:00
////////////////////////////////////////////////////////////
// Private Functions
////////////////////////////////////////////////////////////
2010-12-18 16:49:04 +01:00
2012-09-15 20:46:26 +02:00
void AboutDialog : : initInformationTab ( void )
{
const QString versionStr = QString ( ) . sprintf
(
" Version %d.%02d %s, Build %d [%s], %s %s, Qt v%s " ,
lamexp_version_major ( ) ,
lamexp_version_minor ( ) ,
lamexp_version_release ( ) ,
lamexp_version_build ( ) ,
lamexp_version_date ( ) . toString ( Qt : : ISODate ) . toLatin1 ( ) . constData ( ) ,
lamexp_version_compiler ( ) ,
lamexp_version_arch ( ) ,
qVersion ( )
) ;
const QString copyrightStr = QString ( ) . sprintf
(
" Copyright (C) 2004-%04d LoRd_MuldeR <MuldeR2@GMX.de>. Some rights reserved. " ,
qMax ( lamexp_version_date ( ) . year ( ) , QDate : : currentDate ( ) . year ( ) )
) ;
QString aboutText ;
aboutText + = QString ( " <h2>%1</h2> " ) . arg ( NOBR ( tr ( " LameXP - Audio Encoder Front-end " ) ) ) ;
aboutText + = QString ( " <b>%1</b><br> " ) . arg ( NOBR ( copyrightStr ) ) ;
aboutText + = QString ( " <b>%1</b><br><br> " ) . arg ( NOBR ( versionStr ) ) ;
aboutText + = QString ( " %1<br> " ) . arg ( NOBR ( tr ( " Please visit %1 for news and updates! " ) . arg ( LINK ( lamexp_website_url ( ) ) ) ) ) ;
# if QT_VERSION < QT_VERSION_CHECK(5,0,0)
if ( LAMEXP_DEBUG )
{
int daysLeft = qMax ( QDate : : currentDate ( ) . daysTo ( lamexp_version_expires ( ) ) , 0 ) ;
aboutText + = QString ( " <hr><font color= \" crimson \" >%1</font> " ) . arg ( NOBR ( QString ( " !!! --- DEBUG BUILD --- Expires at: %1 · Days left: %2 --- DEBUG BUILD --- !!! " ) . arg ( lamexp_version_expires ( ) . toString ( Qt : : ISODate ) , QString : : number ( daysLeft ) ) ) ) ;
}
else if ( lamexp_version_demo ( ) )
{
int daysLeft = qMax ( QDate : : currentDate ( ) . daysTo ( lamexp_version_expires ( ) ) , 0 ) ;
aboutText + = QString ( " <hr><font color= \" crimson \" >%1</font> " ) . arg ( NOBR ( tr ( " Note: This demo (pre-release) version of LameXP will expire at %1. Still %2 days left. " ) . arg ( lamexp_version_expires ( ) . toString ( Qt : : ISODate ) , QString : : number ( daysLeft ) ) ) ) ;
}
# else
if ( LAMEXP_DEBUG )
{
int daysLeft = qMax ( QDate : : currentDate ( ) . daysTo ( lamexp_version_expires ( ) ) , 0 i64 ) ;
aboutText + = QString ( " <hr><font color= \" crimson \" >%1</font> " ) . arg ( NOBR ( QString ( " !!! --- DEBUG BUILD --- Expires at: %1 · Days left: %2 --- DEBUG BUILD --- !!! " ) . arg ( lamexp_version_expires ( ) . toString ( Qt : : ISODate ) , QString : : number ( daysLeft ) ) ) ) ;
}
else if ( lamexp_version_demo ( ) )
{
int daysLeft = qMax ( QDate : : currentDate ( ) . daysTo ( lamexp_version_expires ( ) ) , 0 i64 ) ;
aboutText + = QString ( " <hr><font color= \" crimson \" >%1</font> " ) . arg ( NOBR ( tr ( " Note: This demo (pre-release) version of LameXP will expire at %1. Still %2 days left. " ) . arg ( lamexp_version_expires ( ) . toString ( Qt : : ISODate ) , QString : : number ( daysLeft ) ) ) ) ;
}
# endif
aboutText + = " <hr><br> " ;
aboutText + = " <nobr><tt>This program is free software; you can redistribute it and/or<br> " ;
aboutText + = " modify it under the terms of the GNU General Public License<br> " ;
aboutText + = " as published by the Free Software Foundation; either version 2<br> " ;
aboutText + = " of the License, or (at your option) any later version.<br><br> " ;
aboutText + = " This program is distributed in the hope that it will be useful,<br> " ;
aboutText + = " but WITHOUT ANY WARRANTY; without even the implied warranty of<br> " ;
aboutText + = " MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the<br> " ;
aboutText + = " GNU General Public License for more details.<br><br> " ;
aboutText + = " You should have received a copy of the GNU General Public License<br> " ;
aboutText + = " along with this program; if not, write to the Free Software<br> " ;
aboutText + = " Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110−1301, USA.</tt></nobr><br> " ;
2012-09-16 14:15:32 +02:00
aboutText + = " <hr><table style= \" margin-top:4px \" ><tr> " ;
2012-09-15 20:46:26 +02:00
aboutText + = " <td valign= \" middle \" ><img src= \" :/icons/error_big.png \" </td><td> </td> " ;
aboutText + = QString ( " <td><font color= \" darkred \" >%1</font></td> " ) . arg ( tr ( " Note: LameXP is free software. Do <b>not</b> pay money to obtain or use LameXP! If some third-party website tries to make you pay for downloading LameXP, you should <b>not</b> respond to the offer !!! " ) ) ;
2012-09-16 14:15:32 +02:00
aboutText + = " </tr></table> " ;
//aboutText += QString("%1<br>").arg(NOBR(tr("Special thanks go out to \"John33\" from %1 for his continuous support.")).arg(LINK("http://www.rarewares.org/")));
2012-09-15 20:46:26 +02:00
infoLabel - > setText ( aboutText ) ;
infoIcon - > setPixmap ( lamexp_app_icon ( ) . pixmap ( QSize ( 72 , 72 ) ) ) ;
connect ( infoLabel , SIGNAL ( linkActivated ( QString ) ) , this , SLOT ( openURL ( QString ) ) ) ;
}
void AboutDialog : : initContributorsTab ( void )
{
2012-09-16 14:15:32 +02:00
const QString spaces ( " " ) ;
const QString extraVSpace ( " <font style= \" font-size:7px \" ><br> </font> " ) ;
2012-09-15 20:46:26 +02:00
QString contributorsAboutText ;
contributorsAboutText + = QString ( " <h3>%1</h3> " ) . arg ( NOBR ( tr ( " The following people have contributed to LameXP: " ) ) ) ;
2012-09-18 01:41:00 +02:00
contributorsAboutText + = " <table style= \" margin-top:12px;white-space:nowrap \" > " ;
2012-09-15 20:46:26 +02:00
2012-09-16 14:15:32 +02:00
contributorsAboutText + = QString ( " <tr><td colspan= \" 7 \" ><b>%1</b>%2</td></tr> " ) . arg ( tr ( " Programmers: " ) , extraVSpace ) ;
QString icon = QString ( " <img src= \" :/icons/%1.png \" > " ) . arg ( " user_gray " ) ;
contributorsAboutText + = QString ( " <tr><td valign= \" middle \" >%1</td><td>%2</td> " ) . arg ( icon , spaces ) ;
contributorsAboutText + = QString ( " <td valign= \" middle \" >%1</td><td>%2</td> " ) . arg ( tr ( " Project Leader " ) , spaces ) ;
contributorsAboutText + = QString ( " <td valign= \" middle \" >%1</td><td>%2</td><td><a href= \" mailto:%2 \" ><%3></a></td></tr> " ) . arg ( " LoRd_MuldeR " , spaces , " MuldeR2@GMX.de " ) ;
2012-09-15 20:46:26 +02:00
contributorsAboutText + = QString ( " <tr><td colspan= \" 7 \" ><b> </b></td></tr> " ) ;
2012-09-16 14:15:32 +02:00
contributorsAboutText + = QString ( " <tr><td colspan= \" 7 \" ><b>%1</b>%2</td></tr> " ) . arg ( tr ( " Translators: " ) , extraVSpace ) ;
2012-09-15 20:46:26 +02:00
for ( int i = 0 ; g_lamexp_translators [ i ] . pcName ; i + + )
{
QString flagIcon = ( strlen ( g_lamexp_translators [ i ] . pcFlag ) > 0 ) ? QString ( " <img src= \" :/flags/%1.png \" > " ) . arg ( g_lamexp_translators [ i ] . pcFlag ) : QString ( ) ;
2012-09-16 14:15:32 +02:00
contributorsAboutText + = QString ( " <tr><td valign= \" middle \" >%1</td><td>%2</td> " ) . arg ( flagIcon , spaces ) ;
contributorsAboutText + = QString ( " <td valign= \" middle \" >%1</td><td>%2</td> " ) . arg ( WCHAR2QSTR ( g_lamexp_translators [ i ] . pcLanguage ) , spaces ) ;
contributorsAboutText + = QString ( " <td valign= \" middle \" >%1</td><td>%2</td><td><a href= \" mailto:%2 \" ><%3></a></td></tr> " ) . arg ( WCHAR2QSTR ( g_lamexp_translators [ i ] . pcName ) , spaces , g_lamexp_translators [ i ] . pcMail ) ;
2012-09-15 20:46:26 +02:00
}
2012-09-18 01:41:00 +02:00
contributorsAboutText + = QString ( " <tr><td colspan= \" 7 \" ><b> </b></td></tr> " ) ;
contributorsAboutText + = QString ( " <tr><td colspan= \" 7 \" ><b>%1</b>%2</td></tr> " ) . arg ( tr ( " Special thanks to: " ) , extraVSpace ) ;
QString webIcon = QString ( " <img src= \" :/icons/%1.png \" > " ) . arg ( " world " ) ;
contributorsAboutText + = QString ( " <tr><td valign= \" middle \" >%1</td><td>%2</td> " ) . arg ( webIcon , spaces ) ;
contributorsAboutText + = QString ( " <td valign= \" middle \" >%1</td><td>%2</td><td valign= \" middle \" colspan= \" 3 \" ><a href= \" %3 \" >%3</td></tr> " ) . arg ( tr ( " Doom9's Forum " ) , spaces , " http://forum.doom9.org/ " ) ;
contributorsAboutText + = QString ( " <tr><td valign= \" middle \" >%1</td><td>%2</td> " ) . arg ( webIcon , spaces ) ;
contributorsAboutText + = QString ( " <td valign= \" middle \" >%1</td><td>%2</td><td valign= \" middle \" colspan= \" 3 \" ><a href= \" %3 \" >%3</td></tr> " ) . arg ( tr ( " Gleitz | German Doom9 " ) , spaces , " http://forum.gleitz.info/ " ) ;
contributorsAboutText + = QString ( " <tr><td valign= \" middle \" >%1</td><td>%2</td> " ) . arg ( webIcon , spaces ) ;
contributorsAboutText + = QString ( " <td valign= \" middle \" >%1</td><td>%2</td><td valign= \" middle \" colspan= \" 3 \" ><a href= \" %3 \" >%3</td></tr> " ) . arg ( tr ( " Hydrogenaudio Forums " ) , spaces , " http://www.hydrogenaudio.org/ " ) ;
contributorsAboutText + = QString ( " <tr><td valign= \" middle \" >%1</td><td>%2</td> " ) . arg ( webIcon , spaces ) ;
contributorsAboutText + = QString ( " <td valign= \" middle \" >%1</td><td>%2</td><td valign= \" middle \" colspan= \" 3 \" ><a href= \" %3 \" >%3</td></tr> " ) . arg ( tr ( " RareWares " ) , spaces , " http://www.rarewares.org/ " ) ;
contributorsAboutText + = QString ( " <tr><td valign= \" middle \" >%1</td><td>%2</td> " ) . arg ( webIcon , spaces ) ;
contributorsAboutText + = QString ( " <td valign= \" middle \" >%1</td><td>%2</td><td valign= \" middle \" colspan= \" 3 \" ><a href= \" %3 \" >%3</td></tr> " ) . arg ( tr ( " GitHub " ) , spaces , " http://github.com/ " ) ;
contributorsAboutText + = QString ( " <tr><td valign= \" middle \" >%1</td><td>%2</td> " ) . arg ( webIcon , spaces ) ;
contributorsAboutText + = QString ( " <td valign= \" middle \" >%1</td><td>%2</td><td valign= \" middle \" colspan= \" 3 \" ><a href= \" %3 \" >%3</td></tr> " ) . arg ( tr ( " SourceForge " ) , spaces , " http://sourceforge.net/ " ) ;
contributorsAboutText + = QString ( " <tr><td valign= \" middle \" >%1</td><td>%2</td> " ) . arg ( webIcon , spaces ) ;
contributorsAboutText + = QString ( " <td valign= \" middle \" >%1</td><td>%2</td><td valign= \" middle \" colspan= \" 3 \" ><a href= \" %3 \" >%3</td></tr> " ) . arg ( tr ( " Qt Developer Network " ) , spaces , " http://qt-project.org/ " ) ;
contributorsAboutText + = QString ( " <tr><td valign= \" middle \" >%1</td><td>%2</td> " ) . arg ( webIcon , spaces ) ;
contributorsAboutText + = QString ( " <td valign= \" middle \" >%1</td><td>%2</td><td valign= \" middle \" colspan= \" 3 \" ><a href= \" %3 \" >%3</td></tr> " ) . arg ( tr ( " Marius Hudea " ) , spaces , " http://savedonthe.net/ " ) ;
contributorsAboutText + = " </table><br><br><br> " ;
contributorsAboutText + = QString ( " <i>%1</i><br> " ) . arg ( NOBR ( tr ( " If you are willing to contribute a LameXP translation, feel free to contact us! " ) ) ) ;
2012-09-15 20:46:26 +02:00
contributorsLabel - > setText ( contributorsAboutText ) ;
contributorsIcon - > setPixmap ( QIcon ( " :/images/Logo_Contributors.png " ) . pixmap ( QSize ( 72 , 84 ) ) ) ;
connect ( contributorsLabel , SIGNAL ( linkActivated ( QString ) ) , this , SLOT ( openURL ( QString ) ) ) ;
}
void AboutDialog : : initSoftwareTab ( void )
{
QString moreAboutText ;
moreAboutText + = QString ( " <h3>%1</h3> " ) . arg ( tr ( " The following third-party software is used in LameXP: " ) ) ;
moreAboutText + = " <div style= \" margin-left:-25px;white-space:nowrap \" ><table><tr><td><ul> " ; //;font-size:7pt
moreAboutText + = makeToolText
(
tr ( " LAME - OpenSource mp3 Encoder " ) ,
" lame.exe " , " v?.??, Final-? " ,
tr ( " Released under the terms of the GNU Lesser General Public License. " ) ,
" http://lame.sourceforge.net/ "
) ;
moreAboutText + = makeToolText
(
tr ( " OggEnc - Ogg Vorbis Encoder " ) ,
" oggenc2.exe " , " v?.??, aoTuV Beta-?.?? " ,
tr ( " Completely open and patent-free audio encoding technology. " ) ,
" http://www.vorbis.com/ "
) ;
moreAboutText + = makeToolText
(
tr ( " Nero AAC Reference MPEG-4 Encoder " ) ,
" neroAacEnc.exe " , " v?.?.?.? " ,
tr ( " Freeware state-of-the-art HE-AAC encoder with 2-Pass support. " ) ,
neroAacUrl ,
tr ( " Available from vendor web-site as free download: " )
) ;
moreAboutText + = makeToolText
(
tr ( " Aften - A/52 audio encoder " ) ,
" aften.exe " , " v?.?.? " ,
tr ( " Released under the terms of the GNU Lesser General Public License. " ) ,
" http://aften.sourceforge.net/ "
) ;
moreAboutText + = makeToolText
(
tr ( " FLAC - Free Lossless Audio Codec " ) ,
" flac.exe " , " v?.?.? " ,
tr ( " Open and patent-free lossless audio compression technology. " ) ,
" http://flac.sourceforge.net/ "
) ;
moreAboutText + = makeToolText
(
tr ( " Opus Audio Codec " ) ,
" opusenc_std.exe " , " ????-??-?? " ,
tr ( " Totally open, royalty-free, highly versatile audio codec. " ) ,
" http://www.opus-codec.org/ "
) ;
moreAboutText + = makeToolText
(
tr ( " mpg123 - Fast Console MPEG Audio Player/Decoder " ) ,
" mpg123.exe " , " v?.??.? " ,
tr ( " Released under the terms of the GNU Lesser General Public License. " ) ,
" http://www.mpg123.de/ "
) ;
moreAboutText + = makeToolText
(
tr ( " FAAD - OpenSource MPEG-4 and MPEG-2 AAC Decoder " ) ,
" faad.exe " , " v?.? " ,
tr ( " Released under the terms of the GNU General Public License. " ) ,
" http://www.audiocoding.com/ "
) ;
moreAboutText + = makeToolText
(
tr ( " AC3Filter Tools - AC3/DTS Decoder " ) ,
" valdec.exe " , " v?.?? " ,
tr ( " Released under the terms of the GNU Lesser General Public License. " ) ,
" http://www.ac3filter.net/projects/tools "
) ;
moreAboutText + = makeToolText
(
tr ( " WavPack - Hybrid Lossless Compression " ) ,
" wvunpack.exe " , " v?.??.? " ,
tr ( " Completely open audio compression format. " ) ,
" http://www.wavpack.com/ "
) ;
moreAboutText + = makeToolText
(
tr ( " Musepack - Living Audio Compression " ) ,
" mpcdec.exe " , " r??? " ,
tr ( " Released under the terms of the GNU Lesser General Public License. " ) ,
" http://www.musepack.net/ "
) ;
moreAboutText + = makeToolText
(
tr ( " Monkey's Audio - Lossless Audio Compressor " ) ,
" mac.exe " , " v?.?? " ,
tr ( " Freely available source code, simple SDK and non-restrictive licensing. " ) ,
" http://www.monkeysaudio.com/ "
) ;
moreAboutText + = makeToolText
(
tr ( " Shorten - Lossless Audio Compressor " ) ,
" shorten.exe " , " v?.?.? " ,
tr ( " Released under the terms of the GNU Lesser General Public License. " ) ,
" http://etree.org/shnutils/shorten/ "
) ;
moreAboutText + = makeToolText
(
tr ( " Speex - Free Codec For Free Speech " ) ,
" speexdec.exe " , " v?.? " ,
tr ( " Open Source patent-free audio format designed for speech. " ) ,
" http://www.speex.org/ "
) ;
moreAboutText + = makeToolText
(
tr ( " The True Audio - Lossless Audio Codec " ) ,
" tta.exe " , " v?.? " ,
tr ( " Released under the terms of the GNU Lesser General Public License. " ) ,
" http://tta.sourceforge.net/ "
) ;
2012-10-29 20:47:49 +01:00
//moreAboutText += makeToolText
//(
// tr("ALAC Decoder"),
// "alac.exe", "v?.?.?",
// tr("Copyright (c) 2004 David Hammerton. Contributions by Cody Brocious."),
// "http://craz.net/programs/itunes/alac.html"
//);
2012-09-15 20:46:26 +02:00
moreAboutText + = makeToolText
(
2012-10-29 20:47:49 +01:00
tr ( " refalac - Win32 command line ALAC encoder/decoder " ) ,
" refalac.exe " , " v?.?? " ,
tr ( " The ALAC reference implementation by Apple is available under the Apache license. " ) ,
" http://alac.macosforge.org/ "
2012-09-15 20:46:26 +02:00
) ;
moreAboutText + = makeToolText
(
tr ( " wma2wav - Dump WMA files to Wave Audio " ) ,
" wma2wav.exe " , " ????-??-?? " ,
tr ( " Copyright (c) 2011 LoRd_MuldeR <mulder2@gmx.de>. Some rights reserved. " ) ,
" http://forum.doom9.org/showthread.php?t=140273 "
) ;
moreAboutText + = makeToolText
(
tr ( " avs2wav - Avisynth to Wave Audio converter " ) ,
" avs2wav.exe " , " v?.? " ,
tr ( " By Jory Stone <jcsston@toughguy.net> and LoRd_MuldeR <mulder2@gmx.de>. " ) ,
" http://forum.doom9.org/showthread.php?t=70882 "
) ;
moreAboutText + = makeToolText
(
tr ( " dcaenc " ) ,
" dcaenc.exe " , " ????-??-?? " ,
tr ( " Copyright (c) 2008-2011 Alexander E. Patrakov. Distributed under the LGPL. " ) ,
" http://gitorious.org/dtsenc/dtsenc/trees/master "
) ;
moreAboutText + = makeToolText
(
tr ( " MediaInfo - Media File Analysis Tool " ) ,
" mediainfo.exe " , " v?.?.?? " ,
tr ( " Released under the terms of the GNU Lesser General Public License. " ) ,
" http://mediainfo.sourceforge.net/ "
) ;
moreAboutText + = makeToolText
(
tr ( " SoX - Sound eXchange " ) ,
" sox.exe " , " v??.?.? " ,
tr ( " Released under the terms of the GNU Lesser General Public License. " ) ,
" http://sox.sourceforge.net/ "
) ;
moreAboutText + = makeToolText
(
tr ( " GnuPG - The GNU Privacy Guard " ) ,
" gpgv.exe " , " v?.?.?? " ,
tr ( " Released under the terms of the GNU Lesser General Public License. " ) ,
" http://www.gnupg.org/ "
) ;
moreAboutText + = makeToolText
(
tr ( " GNU Wget - Software for retrieving files using HTTP " ) ,
" wget.exe " , " v?.??.? " ,
tr ( " Released under the terms of the GNU Lesser General Public License. " ) ,
" http://www.gnu.org/software/wget/ "
) ;
moreAboutText + = makeToolText
2012-09-20 01:27:56 +02:00
(
tr ( " UPX - The Ultimate Packer for eXecutables " ) ,
QString ( ) , " v3.08 " ,
tr ( " Released under the terms of the GNU Lesser General Public License. " ) ,
" http://upx.sourceforge.net/ "
) ;
moreAboutText + = makeToolText
2012-09-15 20:46:26 +02:00
(
tr ( " Silk Icons - Over 700 icons in PNG format " ) ,
QString ( ) , " v1.3 " ,
tr ( " By Mark James, released under the Creative Commons 'by' License. " ) ,
" http://www.famfamfam.com/lab/icons/silk/ "
) ;
2012-09-16 18:13:53 +02:00
moreAboutText + = QString ( " </ul></td><td> </td></tr></table></div><br><i>%1</i><br> " ) . arg
2012-09-15 20:46:26 +02:00
(
2012-09-16 14:15:32 +02:00
tr ( " The copyright of LameXP as a whole belongs to LoRd_MuldeR. The copyright of third-party software used in LameXP belongs to the individual authors. " )
2012-09-15 20:46:26 +02:00
) ;
softwareLabel - > setText ( moreAboutText ) ;
softwareIcon - > setPixmap ( QIcon ( " :/images/Logo_Software.png " ) . pixmap ( QSize ( 72 , 65 ) ) ) ;
connect ( softwareLabel , SIGNAL ( linkActivated ( QString ) ) , this , SLOT ( openURL ( QString ) ) ) ;
}
void AboutDialog : : initLicenseTab ( void )
{
QString licenseText ;
licenseText + = ( " <tt> " ) ;
QFile file ( " :/License.txt " ) ;
if ( file . open ( QIODevice : : ReadOnly ) )
{
QTextStream stream ( & file ) ;
unsigned int counter = 0 ;
while ( ( ! stream . atEnd ( ) ) & & ( stream . status ( ) = = QTextStream : : Ok ) )
{
2012-09-16 18:13:53 +02:00
QString line = stream . readLine ( ) ;
const bool bIsBlank = line . trimmed ( ) . isEmpty ( ) ;
line . replace ( ' < ' , " < " ) . replace ( ' > ' , " > " ) ;
2012-09-15 20:46:26 +02:00
switch ( counter )
{
case 0 :
2012-09-16 18:13:53 +02:00
if ( ! bIsBlank ) licenseText + = QString ( " <font size= \" +2 \" >%1</font><br> " ) . arg ( line . simplified ( ) ) ;
2012-09-15 20:46:26 +02:00
break ;
case 1 :
2012-09-20 22:52:52 +02:00
if ( ! bIsBlank ) licenseText + = QString ( " <font size= \" +1 \" >%1 − %2</font><br> " ) . arg ( line . simplified ( ) , LINK ( " http://www.gnu.org/licenses/gpl-2.0.html " ) ) ;
2012-09-15 20:46:26 +02:00
break ;
default :
2012-09-16 18:13:53 +02:00
TRIM_RIGHT ( line ) ;
2012-09-15 20:46:26 +02:00
licenseText + = QString ( " <nobr>%1</nobr><br> " ) . arg ( line . replace ( ' ' , " " ) ) ;
break ;
}
2012-09-16 18:13:53 +02:00
if ( ! bIsBlank ) counter + + ;
2012-09-15 20:46:26 +02:00
}
2012-09-20 22:52:52 +02:00
licenseText + = QString ( " <br> " ) ;
2012-09-15 20:46:26 +02:00
stream . device ( ) - > close ( ) ;
}
else
{
2012-09-16 18:13:53 +02:00
licenseText + = QString ( " <font color= \" darkred \" >Oups, failed to load license text. Please refer to:</font><br> " ) ;
2012-09-15 20:46:26 +02:00
licenseText + = LINK ( " http://www.gnu.org/licenses/gpl-2.0.html " ) ;
}
licenseText + = ( " </tt> " ) ;
licenseLabel - > setText ( licenseText ) ;
licenseIcon - > setPixmap ( QIcon ( " :/images/Logo_GNU.png " ) . pixmap ( QSize ( 72 , 65 ) ) ) ;
2012-09-16 18:13:53 +02:00
connect ( licenseLabel , SIGNAL ( linkActivated ( QString ) ) , this , SLOT ( openURL ( QString ) ) ) ;
2012-09-15 20:46:26 +02:00
}
2011-01-07 23:00:32 +01:00
QString AboutDialog : : makeToolText ( const QString & toolName , const QString & toolBin , const QString & toolVerFmt , const QString & toolLicense , const QString & toolWebsite , const QString & extraInfo )
{
QString toolText , verStr ( toolVerFmt ) ;
if ( ! toolBin . isEmpty ( ) )
{
2011-01-14 23:34:31 +01:00
verStr = lamexp_version2string ( toolVerFmt , lamexp_tool_version ( toolBin ) , tr ( " n/a " ) ) ;
2011-01-07 23:00:32 +01:00
}
2011-10-16 16:38:01 +02:00
toolText + = QString ( " <li>%1<br> " ) . arg ( NOBR ( QString ( " <b>%1 (%2)</b> " ) . arg ( toolName , verStr ) ) ) ;
toolText + = QString ( " %1<br> " ) . arg ( NOBR ( toolLicense ) ) ;
if ( ! extraInfo . isEmpty ( ) ) toolText + = QString ( " <i>%1</i><br> " ) . arg ( NOBR ( extraInfo ) ) ;
toolText + = QString ( " <nobr>%1</nobr> " ) . arg ( LINK ( toolWebsite ) ) ;
2012-09-16 18:13:53 +02:00
toolText + = QString ( " <font style= \" font-size:9px \" ><br> </font> " ) ;
2011-01-07 23:00:32 +01:00
return toolText ;
}
2010-12-18 16:49:04 +01:00
bool AboutDialog : : playResoureSound ( const QString & library , const unsigned long soundId , const bool async )
{
HMODULE module = 0 ;
DWORD flags = SND_RESOURCE ;
bool result = false ;
QFileInfo libraryFile ( library ) ;
if ( ! libraryFile . isAbsolute ( ) )
{
unsigned int buffSize = GetSystemDirectoryW ( NULL , NULL ) + 1 ;
wchar_t * buffer = ( wchar_t * ) _malloca ( buffSize * sizeof ( wchar_t ) ) ;
unsigned int result = GetSystemDirectory ( buffer , buffSize ) ;
if ( result > 0 & & result < buffSize )
{
libraryFile . setFile ( QString ( " %1/%2 " ) . arg ( QDir : : fromNativeSeparators ( QString : : fromUtf16 ( reinterpret_cast < const unsigned short * > ( buffer ) ) ) , library ) ) ;
}
_freea ( buffer ) ;
}
if ( async )
{
flags | = SND_ASYNC ;
}
else
{
flags | = SND_SYNC ;
}
module = LoadLibraryW ( reinterpret_cast < const wchar_t * > ( QDir : : toNativeSeparators ( libraryFile . absoluteFilePath ( ) ) . utf16 ( ) ) ) ;
if ( module )
{
result = PlaySound ( ( LPCTSTR ) soundId , module , flags ) ;
FreeLibrary ( module ) ;
}
return result ;
}