+ easier way to change license and url of an existing document

This commit is contained in:
wmayer 2015-09-09 13:53:07 +02:00
parent 3c10cd1af2
commit cff386e210
3 changed files with 137 additions and 66 deletions

View File

@ -32,19 +32,6 @@
<property name="spacing">
<number>6</number>
</property>
<item row="6" column="0">
<widget class="QLabel" name="textLabelLastModDate">
<property name="text">
<string>Last &amp;modification date:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="buddy">
<cstring>lineEditLastModDate</cstring>
</property>
</widget>
</item>
<item row="0" column="0">
<widget class="QLabel" name="textLabelName">
<property name="text">
@ -71,19 +58,6 @@
</property>
</widget>
</item>
<item row="10" column="0">
<widget class="QLabel" name="textLabelComment">
<property name="text">
<string>Commen&amp;t:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="buddy">
<cstring>textEditComment</cstring>
</property>
</widget>
</item>
<item row="1" column="0">
<widget class="QLabel" name="textLabelPath">
<property name="text">
@ -202,6 +176,19 @@
</property>
</widget>
</item>
<item row="6" column="0">
<widget class="QLabel" name="textLabelLastModDate">
<property name="text">
<string>Last &amp;modification date:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="buddy">
<cstring>lineEditLastModDate</cstring>
</property>
</widget>
</item>
<item row="6" column="1">
<widget class="QLineEdit" name="lineEditLastModDate">
<property name="minimumSize">
@ -238,6 +225,56 @@
</property>
</widget>
</item>
<item row="8" column="0">
<widget class="QLabel" name="textLabelLicense">
<property name="text">
<string>License information:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="8" column="1">
<widget class="QComboBox" name="comboLicense"/>
</item>
<item row="9" column="0">
<widget class="QLabel" name="textLabelLicenseURL">
<property name="text">
<string>License URL</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="9" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QLineEdit" name="lineEditLicenseURL"/>
</item>
<item>
<widget class="QPushButton" name="pushButtonOpenURL">
<property name="text">
<string>Open in browser</string>
</property>
</widget>
</item>
</layout>
</item>
<item row="10" column="0">
<widget class="QLabel" name="textLabelComment">
<property name="text">
<string>Commen&amp;t:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
<property name="buddy">
<cstring>textEditComment</cstring>
</property>
</widget>
</item>
<item row="10" column="1" rowspan="2">
<widget class="QTextEdit" name="textEditComment"/>
</item>
@ -257,43 +294,6 @@
</property>
</spacer>
</item>
<item row="8" column="0">
<widget class="QLabel" name="textLabelLicense">
<property name="text">
<string>License information:</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="9" column="0">
<widget class="QLabel" name="textLabelLicenseURL">
<property name="text">
<string>License URL</string>
</property>
<property name="alignment">
<set>Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter</set>
</property>
</widget>
</item>
<item row="8" column="1">
<widget class="QLineEdit" name="lineEditLicense"/>
</item>
<item row="9" column="1">
<layout class="QHBoxLayout" name="horizontalLayout_2">
<item>
<widget class="QLineEdit" name="lineEditLicenseURL"/>
</item>
<item>
<widget class="QPushButton" name="pushButtonOpenURL">
<property name="text">
<string>Open in browser</string>
</property>
</widget>
</item>
</layout>
</item>
</layout>
</widget>
</item>

View File

@ -29,6 +29,9 @@
#include "DlgProjectInformationImp.h"
#include "ui_DlgProjectInformation.h"
#include "Document.h"
#include <QApplication>
#include <QByteArray>
#include <QUrl>
#include <QDesktopServices>
@ -55,7 +58,34 @@ DlgProjectInformationImp::DlgProjectInformationImp(App::Document* doc, QWidget*
ui->lineEditLastMod->setText(QString::fromUtf8(doc->LastModifiedBy.getValue()));
ui->lineEditLastModDate->setText(QString::fromUtf8(doc->LastModifiedDate.getValue()));
ui->lineEditCompany->setText(QString::fromUtf8(doc->Company.getValue()));
ui->lineEditLicense->setText(QString::fromUtf8(doc->License.getValue()));
QList<QByteArray> rawLicenses; rawLicenses
<< "All rights reserved"
<< "CreativeCommons Attribution"
<< "CreativeCommons Attribution-ShareAlike"
<< "CreativeCommons Attribution-NoDerivatives"
<< "CreativeCommons Attribution-NonCommercial"
<< "CreativeCommons Attribution-NonCommercial-ShareAlike"
<< "CreativeCommons Attribution-NonCommercial-NoDerivatives"
<< "Public Domain"
<< "FreeArt"
<< "Other";
for (QList<QByteArray>::iterator it = rawLicenses.begin(); it != rawLicenses.end(); ++it) {
QString text = QApplication::translate("Gui::Dialog::DlgSettingsDocument", it->constData());
ui->comboLicense->addItem(text, *it);
}
int index = ui->comboLicense->findData(QByteArray(doc->License.getValue()));
if (index >= 0) {
ui->comboLicense->setCurrentIndex(index);
}
else {
index = ui->comboLicense->count();
QString text = QString::fromUtf8(doc->License.getValue());
ui->comboLicense->addItem(text);
ui->comboLicense->setCurrentIndex(index);
}
ui->lineEditLicenseURL->setText(QString::fromUtf8(doc->LicenseURL.getValue()));
// When saving the text to XML the newlines get lost. So we store also the newlines as '\n'.
@ -65,6 +95,7 @@ DlgProjectInformationImp::DlgProjectInformationImp(App::Document* doc, QWidget*
QString text = lines.join(QLatin1String("\n"));
ui->textEditComment->setPlainText( text );
connect(ui->pushButtonOpenURL, SIGNAL(clicked()),this, SLOT(open_url()));
connect(ui->comboLicense, SIGNAL(currentIndexChanged(int)), this, SLOT(onLicenseTypeChanged(int)));
}
/**
@ -84,10 +115,13 @@ void DlgProjectInformationImp::accept()
_doc->CreatedBy.setValue(ui->lineEditCreator->text().toUtf8());
_doc->LastModifiedBy.setValue(ui->lineEditCreator->text().toUtf8());
_doc->Company.setValue(ui->lineEditCompany->text().toUtf8());
_doc->License.setValue(ui->lineEditLicense->text().toUtf8());
QByteArray license = ui->comboLicense->itemData(ui->comboLicense->currentIndex()).toByteArray();
if (license.isEmpty())
license = ui->comboLicense->itemText(ui->comboLicense->currentIndex()).toUtf8();
_doc->License.setValue(license);
_doc->LicenseURL.setValue(ui->lineEditLicenseURL->text().toUtf8());
// Replace newline escape sequence trough '\\n' string
// Replace newline escape sequence through '\\n' string
QStringList lines = ui->textEditComment->toPlainText().split
(QLatin1String("\n"), QString::KeepEmptyParts);
QString text = lines.join(QLatin1String("\\n"));
@ -96,6 +130,42 @@ void DlgProjectInformationImp::accept()
QDialog::accept();
}
void DlgProjectInformationImp::onLicenseTypeChanged(int index)
{
switch (index) {
case 0:
ui->lineEditLicenseURL->setText(QString::fromAscii("http://en.wikipedia.org/wiki/All_rights_reserved"));
break;
case 1:
ui->lineEditLicenseURL->setText(QString::fromAscii("http://creativecommons.org/licenses/by/4.0/"));
break;
case 2:
ui->lineEditLicenseURL->setText(QString::fromAscii("http://creativecommons.org/licenses/by-sa/4.0/"));
break;
case 3:
ui->lineEditLicenseURL->setText(QString::fromAscii("http://creativecommons.org/licenses/by-nd/4.0/"));
break;
case 4:
ui->lineEditLicenseURL->setText(QString::fromAscii("http://creativecommons.org/licenses/by-nc/4.0/"));
break;
case 5:
ui->lineEditLicenseURL->setText(QString::fromAscii("http://creativecommons.org/licenses/by-nc-sa/4.0/"));
break;
case 6:
ui->lineEditLicenseURL->setText(QString::fromAscii("http://creativecommons.org/licenses/by-nc-nd/4.0/"));
break;
case 7:
ui->lineEditLicenseURL->setText(QString::fromAscii("http://en.wikipedia.org/wiki/Public_domain"));
break;
case 8:
ui->lineEditLicenseURL->setText(QString::fromAscii("http://artlibre.org/licence/lal"));
break;
default:
ui->lineEditLicenseURL->setText(QString::fromUtf8(_doc->LicenseURL.getValue()));
break;
}
}
/**
* Opens the text in the LicenseURL property in external browser.
*/

View File

@ -46,6 +46,7 @@ public:
private Q_SLOTS:
void open_url();
void onLicenseTypeChanged(int index);
private:
App::Document* _doc;