Some more tweaks to the new About dialog.
This commit is contained in:
parent
cc703bc11a
commit
1d41938715
@ -30,7 +30,7 @@
|
|||||||
#define VER_LAMEXP_MINOR_LO 5
|
#define VER_LAMEXP_MINOR_LO 5
|
||||||
#define VER_LAMEXP_TYPE Final
|
#define VER_LAMEXP_TYPE Final
|
||||||
#define VER_LAMEXP_PATCH 2
|
#define VER_LAMEXP_PATCH 2
|
||||||
#define VER_LAMEXP_BUILD 1111
|
#define VER_LAMEXP_BUILD 1113
|
||||||
|
|
||||||
///////////////////////////////////////////////////////////////////////////////
|
///////////////////////////////////////////////////////////////////////////////
|
||||||
// Tool versions (minimum expected versions!)
|
// Tool versions (minimum expected versions!)
|
||||||
|
@ -39,6 +39,7 @@
|
|||||||
#include <QMessageBox>
|
#include <QMessageBox>
|
||||||
#include <QTextStream>
|
#include <QTextStream>
|
||||||
#include <QScrollBar>
|
#include <QScrollBar>
|
||||||
|
#include <QCloseEvent>
|
||||||
|
|
||||||
#include <ShellAPI.h>
|
#include <ShellAPI.h>
|
||||||
#include <MMSystem.h>
|
#include <MMSystem.h>
|
||||||
@ -46,6 +47,7 @@
|
|||||||
|
|
||||||
//Helper macros
|
//Helper macros
|
||||||
#define LINK(URL) QString("<a href=\"%1\">%2</a>").arg(URL).arg(QString(URL).replace("-", "−"))
|
#define LINK(URL) QString("<a href=\"%1\">%2</a>").arg(URL).arg(QString(URL).replace("-", "−"))
|
||||||
|
#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)
|
||||||
|
|
||||||
//Constants
|
//Constants
|
||||||
const char *AboutDialog::neroAacUrl = "http://www.nero.com/eng/technologies-aac-codec.html";
|
const char *AboutDialog::neroAacUrl = "http://www.nero.com/eng/technologies-aac-codec.html";
|
||||||
@ -99,11 +101,15 @@ AboutDialog::AboutDialog(SettingsModel *settings, QWidget *parent, bool firstSta
|
|||||||
tabWidget->setCurrentIndex(tabWidget->indexOf(infoTab));
|
tabWidget->setCurrentIndex(tabWidget->indexOf(infoTab));
|
||||||
|
|
||||||
//Disable "X" button
|
//Disable "X" button
|
||||||
|
if(firstStart)
|
||||||
|
{
|
||||||
if(HMENU hMenu = GetSystemMenu((HWND) winId(), FALSE))
|
if(HMENU hMenu = GetSystemMenu((HWND) winId(), FALSE))
|
||||||
{
|
{
|
||||||
EnableMenuItem(hMenu, SC_CLOSE, MF_BYCOMMAND | MF_GRAYED);
|
EnableMenuItem(hMenu, SC_CLOSE, MF_BYCOMMAND | MF_GRAYED);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
//Init images
|
||||||
for(int i = 0; i < 4; i++)
|
for(int i = 0; i < 4; i++)
|
||||||
{
|
{
|
||||||
m_cartoon[i] = NULL;
|
m_cartoon[i] = NULL;
|
||||||
@ -242,6 +248,8 @@ void AboutDialog::tabChanged(int index)
|
|||||||
}
|
}
|
||||||
|
|
||||||
m_initFlags->insert(tabWidget->widget(index), true);
|
m_initFlags->insert(tabWidget->widget(index), true);
|
||||||
|
|
||||||
|
tabWidget->widget(index)->update();
|
||||||
qApp->processEvents();
|
qApp->processEvents();
|
||||||
qApp->restoreOverrideCursor();
|
qApp->restoreOverrideCursor();
|
||||||
}
|
}
|
||||||
@ -388,6 +396,11 @@ void AboutDialog::showEvent(QShowEvent *e)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void AboutDialog::closeEvent(QCloseEvent *e)
|
||||||
|
{
|
||||||
|
if(m_firstShow) e->ignore();
|
||||||
|
}
|
||||||
|
|
||||||
bool AboutDialog::eventFilter(QObject *obj, QEvent *event)
|
bool AboutDialog::eventFilter(QObject *obj, QEvent *event)
|
||||||
{
|
{
|
||||||
if((obj == m_disque) && (event->type() == QEvent::MouseButtonPress))
|
if((obj == m_disque) && (event->type() == QEvent::MouseButtonPress))
|
||||||
@ -695,7 +708,7 @@ void AboutDialog::initSoftwareTab(void)
|
|||||||
tr("By Mark James, released under the Creative Commons 'by' License."),
|
tr("By Mark James, released under the Creative Commons 'by' License."),
|
||||||
"http://www.famfamfam.com/lab/icons/silk/"
|
"http://www.famfamfam.com/lab/icons/silk/"
|
||||||
);
|
);
|
||||||
moreAboutText += QString("</ul></td><td> </td></tr></table></div><i>%1</i><br>").arg
|
moreAboutText += QString("</ul></td><td> </td></tr></table></div><br><i>%1</i><br>").arg
|
||||||
(
|
(
|
||||||
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.")
|
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.")
|
||||||
);
|
);
|
||||||
@ -717,25 +730,31 @@ void AboutDialog::initLicenseTab(void)
|
|||||||
unsigned int counter = 0;
|
unsigned int counter = 0;
|
||||||
while((!stream.atEnd()) && (stream.status() == QTextStream::Ok))
|
while((!stream.atEnd()) && (stream.status() == QTextStream::Ok))
|
||||||
{
|
{
|
||||||
QString line = stream.readLine().replace('<', "<").replace('>', ">");
|
QString line = stream.readLine();
|
||||||
|
const bool bIsBlank = line.trimmed().isEmpty();
|
||||||
|
line.replace('<', "<").replace('>', ">");
|
||||||
|
|
||||||
switch(counter)
|
switch(counter)
|
||||||
{
|
{
|
||||||
case 0:
|
case 0:
|
||||||
if(!line.isEmpty()) licenseText += QString("<font size=\"+2\">%1</font><br>").arg(line.simplified());
|
if(!bIsBlank) licenseText += QString("<font size=\"+2\">%1</font><br>").arg(line.simplified());
|
||||||
break;
|
break;
|
||||||
case 1:
|
case 1:
|
||||||
if(!line.isEmpty()) licenseText += QString("<font size=\"+1\">%1</font><br>").arg(line.simplified());
|
if(!bIsBlank) licenseText += QString("<font size=\"+1\">%1</font><br>").arg(line.simplified());
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
|
TRIM_RIGHT(line);
|
||||||
licenseText += QString("<nobr>%1</nobr><br>").arg(line.replace(' ', " "));
|
licenseText += QString("<nobr>%1</nobr><br>").arg(line.replace(' ', " "));
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
if(!line.isEmpty()) counter++;
|
|
||||||
|
if(!bIsBlank) counter++;
|
||||||
}
|
}
|
||||||
stream.device()->close();
|
stream.device()->close();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
licenseText += QString("<font color=\"darkred\">Oups, failed to load license text. Please refer to:</font><br>");
|
||||||
licenseText += LINK("http://www.gnu.org/licenses/gpl-2.0.html");
|
licenseText += LINK("http://www.gnu.org/licenses/gpl-2.0.html");
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -743,6 +762,7 @@ void AboutDialog::initLicenseTab(void)
|
|||||||
|
|
||||||
licenseLabel->setText(licenseText);
|
licenseLabel->setText(licenseText);
|
||||||
licenseIcon->setPixmap(QIcon(":/images/Logo_GNU.png").pixmap(QSize(72,65)));
|
licenseIcon->setPixmap(QIcon(":/images/Logo_GNU.png").pixmap(QSize(72,65)));
|
||||||
|
connect(licenseLabel, SIGNAL(linkActivated(QString)), this, SLOT(openURL(QString)));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -759,7 +779,7 @@ QString AboutDialog::makeToolText(const QString &toolName, const QString &toolBi
|
|||||||
toolText += QString("%1<br>").arg(NOBR(toolLicense));
|
toolText += QString("%1<br>").arg(NOBR(toolLicense));
|
||||||
if(!extraInfo.isEmpty()) toolText += QString("<i>%1</i><br>").arg(NOBR(extraInfo));
|
if(!extraInfo.isEmpty()) toolText += QString("<i>%1</i><br>").arg(NOBR(extraInfo));
|
||||||
toolText += QString("<nobr>%1</nobr>").arg(LINK(toolWebsite));
|
toolText += QString("<nobr>%1</nobr>").arg(LINK(toolWebsite));
|
||||||
toolText += QString("<div style=\"font-size:1pt\"><br></div>");
|
toolText += QString("<font style=\"font-size:9px\"><br> </font>");
|
||||||
|
|
||||||
return toolText;
|
return toolText;
|
||||||
}
|
}
|
||||||
|
@ -45,7 +45,8 @@ public slots:
|
|||||||
void tabChanged(int index);
|
void tabChanged(int index);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void showEvent(QShowEvent *e);
|
virtual void showEvent(QShowEvent *e);
|
||||||
|
virtual void closeEvent(QCloseEvent *e);
|
||||||
bool eventFilter(QObject *obj, QEvent *event);
|
bool eventFilter(QObject *obj, QEvent *event);
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
Loading…
Reference in New Issue
Block a user