Added support for Opus Audio Codec, based on Opus-Tools v0.1.3 (2012-07-10) by Xiph...
[LameXP.git] / src / Dialog_LogView.cpp
blob102b61b3672c92c20d0a2f58013ec2fe7786c911
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2012 LoRd_MuldeR <MuldeR2@GMX.de>
4 //
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2 of the License, or
8 // (at your option) any later version.
9 //
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 // GNU General Public License for more details.
15 // You should have received a copy of the GNU General Public License along
16 // with this program; if not, write to the Free Software Foundation, Inc.,
17 // 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 // http://www.gnu.org/licenses/gpl-2.0.txt
20 ///////////////////////////////////////////////////////////////////////////////
22 #include "Dialog_LogView.h"
24 #include "Global.h"
26 #include <QClipboard>
27 #include <QFileDialog>
28 #include <QMimeData>
30 LogViewDialog::LogViewDialog(QWidget *parent)
32 QDialog(parent)
34 //Init the dialog, from the .ui file
35 setupUi(this);
36 setWindowFlags(windowFlags() ^ Qt::WindowContextHelpButtonHint);
38 //Translate
39 headerText->setText(QString("<b>%1</b><br>%2").arg(tr("Log File"), tr("The log file shows detailed information about the selected job.")));
41 //Clear
42 textEdit->clear();
44 //Enable buttons
45 connect(buttonCopy, SIGNAL(clicked()), this, SLOT(copyButtonClicked()));
46 connect(buttonSave, SIGNAL(clicked()), this, SLOT(saveButtonClicked()));
48 //Init flags
49 m_clipboardUsed = false;
52 LogViewDialog::~LogViewDialog(void)
54 if(m_clipboardUsed)
56 QApplication::clipboard()->clear();
60 int LogViewDialog::exec(const QStringList &logData)
62 textEdit->setPlainText(logData.join("\n"));
63 return QDialog::exec();
66 void LogViewDialog::copyButtonClicked(void)
68 QMimeData *mime = new QMimeData();
69 mime->setData("text/plain", textEdit->toPlainText().toUtf8().constData());
70 QApplication::clipboard()->setMimeData(mime);
71 m_clipboardUsed = true;
72 MessageBeep(MB_ICONINFORMATION);
75 void LogViewDialog::saveButtonClicked(void)
77 QString fileName = QFileDialog::getSaveFileName(this, "Save Log File", QDir::homePath(), "Log Files (*.txt)");
79 if(!fileName.isEmpty())
81 QFile file(fileName);
82 if(file.open(QIODevice::WriteOnly))
84 QByteArray data = textEdit->toPlainText().toUtf8();
85 data.replace("\n", "\r\n");
86 file.write(data.constData(), data.size());
87 file.close();