/* This file is part of KOrganizer. Copyright (c) 2002 Cornelius Schumacher This library is free software; you can redistribute it and/or modify it under the terms of the GNU Library General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This library 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 Library General Public License for more details. You should have received a copy of the GNU Library General Public License along with this library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include "engine.h" #include "entry.h" #include "uploaddialog.h" #include "uploaddialog.moc" using namespace KNS; UploadDialog::UploadDialog( Engine *engine, QWidget *parent ) : KDialogBase( Plain, i18n("Share Hot New Stuff"), Ok | Cancel, Cancel, parent, 0, false, true ), mEngine( engine ) { mEntryList.setAutoDelete( true ); QFrame *topPage = plainPage(); QGridLayout *topLayout = new QGridLayout( topPage ); topLayout->setSpacing( spacingHint() ); QLabel *nameLabel = new QLabel( i18n("Name:"), topPage ); topLayout->addWidget( nameLabel, 0, 0 ); mNameEdit = new QLineEdit( topPage ); topLayout->addWidget( mNameEdit, 0, 1 ); QLabel *authorLabel = new QLabel( i18n("Author:"), topPage ); topLayout->addWidget( authorLabel, 1, 0 ); mAuthorEdit = new QLineEdit( topPage ); topLayout->addWidget( mAuthorEdit, 1, 1 ); QLabel *emailLabel = new QLabel( i18n("Email:"), topPage ); topLayout->addWidget( emailLabel, 2, 0 ); mEmailEdit = new QLineEdit( topPage ); topLayout->addWidget( mEmailEdit, 2, 1 ); QLabel *versionLabel = new QLabel( i18n("Version:"), topPage ); topLayout->addWidget( versionLabel, 3, 0 ); mVersionEdit = new QLineEdit( topPage ); topLayout->addWidget( mVersionEdit, 3, 1 ); QLabel *releaseLabel = new QLabel( i18n("Release:"), topPage ); topLayout->addWidget( releaseLabel, 4, 0 ); mReleaseSpin = new QSpinBox( topPage ); mReleaseSpin->setMinValue( 1 ); topLayout->addWidget( mReleaseSpin, 4, 1 ); QLabel *licenceLabel = new QLabel( i18n("License:"), topPage ); topLayout->addWidget( licenceLabel, 5, 0 ); mLicenceCombo = new QComboBox( topPage ); mLicenceCombo->setEditable( true ); mLicenceCombo->insertItem( i18n("GPL") ); mLicenceCombo->insertItem( i18n("LGPL") ); mLicenceCombo->insertItem( i18n("BSD") ); topLayout->addWidget( mLicenceCombo, 5, 1 ); QLabel *languageLabel = new QLabel( i18n("Language:"), topPage ); topLayout->addWidget( languageLabel, 6, 0 ); mLanguageCombo = new QComboBox( topPage ); topLayout->addWidget( mLanguageCombo, 6, 1 ); mLanguageCombo->insertStringList( KGlobal::locale()->languageList() ); QLabel *previewLabel = new QLabel( i18n("Preview URL:"), topPage ); topLayout->addWidget( previewLabel, 7, 0 ); mPreviewUrl = new KURLRequester( topPage ); topLayout->addWidget( mPreviewUrl, 7, 1 ); QLabel *summaryLabel = new QLabel( i18n("Summary:"), topPage ); topLayout->addMultiCellWidget( summaryLabel, 8, 8, 0, 1 ); mSummaryEdit = new KTextEdit( topPage ); topLayout->addMultiCellWidget( mSummaryEdit, 9, 9, 0, 1 ); KUser user; mAuthorEdit->setText(user.fullName()); } UploadDialog::~UploadDialog() { mEntryList.clear(); } void UploadDialog::slotOk() { if ( mNameEdit->text().isEmpty() ) { KMessageBox::error( this, i18n("Please put in a name.") ); return; } Entry *entry = new Entry; mEntryList.append( entry ); entry->setName( mNameEdit->text() ); entry->setAuthor( mAuthorEdit->text() ); entry->setAuthorEmail( mEmailEdit->text() ); entry->setVersion( mVersionEdit->text() ); entry->setRelease( mReleaseSpin->value() ); entry->setLicence( mLicenceCombo->currentText() ); entry->setPreview( KURL( mPreviewUrl->url().section("/", -1) ), mLanguageCombo->currentText() ); entry->setSummary( mSummaryEdit->text(), mLanguageCombo->currentText() ); if ( mPayloadUrl.isValid() ) { KConfig *conf = kapp->config(); conf->setGroup( QString("KNewStuffUpload:%1").arg(mPayloadUrl.fileName()) ); conf->writeEntry("name", mNameEdit->text()); conf->writeEntry("author", mAuthorEdit->text()); conf->writeEntry("email", mEmailEdit->text()); conf->writeEntry("version", mVersionEdit->text()); conf->writeEntry("release", mReleaseSpin->value()); conf->writeEntry("licence", mLicenceCombo->currentText()); conf->writeEntry("preview", mPreviewUrl->url()); conf->writeEntry("summary", mSummaryEdit->text()); conf->writeEntry("language", mLanguageCombo->currentText()); conf->sync(); } mEngine->upload( entry ); accept(); } void UploadDialog::setPreviewFile( const QString &previewFile ) { mPreviewUrl->setURL( previewFile ); } void UploadDialog::setPayloadFile( const QString &payloadFile ) { mPayloadUrl = payloadFile; KConfig *conf = kapp->config(); conf->setGroup( QString("KNewStuffUpload:%1").arg(mPayloadUrl.fileName()) ); QString name = conf->readEntry("name"); QString author = conf->readEntry("author"); QString email = conf->readEntry("email"); QString version = conf->readEntry("version"); QString release = conf->readEntry("release"); QString preview = conf->readEntry("preview"); QString summary = conf->readEntry("summary"); QString lang = conf->readEntry("language"); QString licence = conf->readEntry("licence"); mNameEdit->clear(); mAuthorEdit->clear(); mEmailEdit->clear(); mVersionEdit->clear(); mReleaseSpin->setValue(1); mPreviewUrl->clear(); mSummaryEdit->clear(); mLanguageCombo->setCurrentItem(0); mLicenceCombo->setCurrentItem(0); if(!name.isNull()) { int prefill = KMessageBox::questionYesNo(this, i18n("Old upload information found, fill out fields?"),QString::null,i18n("Fill Out"),i18n("Do Not Fill Out")); if(prefill == KMessageBox::Yes) { mNameEdit->setText(name); mAuthorEdit->setText(author); mEmailEdit->setText(email); mVersionEdit->setText(version); mReleaseSpin->setValue(release.toInt()); mPreviewUrl->setURL(preview); mSummaryEdit->setText(summary); if(!lang.isEmpty()) mLanguageCombo->setCurrentText(lang); if(!licence.isEmpty()) mLicenceCombo->setCurrentText(licence); } } }