More code refactoring: Moved most of the Win32 API dependencies into wrapper function...
[LameXP.git] / src / Dialog_MainWindow.cpp
blobeee73d54f68941c2bdf4979c0083978493435080
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2013 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_MainWindow.h"
24 //UIC includes
25 #include "../tmp/UIC_MainWindow.h"
27 //LameXP includes
28 #include "Global.h"
29 #include "Resource.h"
30 #include "Dialog_WorkingBanner.h"
31 #include "Dialog_MetaInfo.h"
32 #include "Dialog_About.h"
33 #include "Dialog_Update.h"
34 #include "Dialog_DropBox.h"
35 #include "Dialog_CueImport.h"
36 #include "Dialog_LogView.h"
37 #include "Thread_FileAnalyzer.h"
38 #include "Thread_FileAnalyzer_ST.h"
39 #include "Thread_MessageHandler.h"
40 #include "Model_MetaInfo.h"
41 #include "Model_Settings.h"
42 #include "Model_FileList.h"
43 #include "Model_FileSystem.h"
44 #include "WinSevenTaskbar.h"
45 #include "Registry_Encoder.h"
46 #include "Registry_Decoder.h"
47 #include "Encoder_Abstract.h"
48 #include "ShellIntegration.h"
49 #include "CustomEventFilter.h"
51 //Qt includes
52 #include <QMessageBox>
53 #include <QTimer>
54 #include <QDesktopWidget>
55 #include <QDate>
56 #include <QFileDialog>
57 #include <QInputDialog>
58 #include <QFileSystemModel>
59 #include <QDesktopServices>
60 #include <QUrl>
61 #include <QPlastiqueStyle>
62 #include <QCleanlooksStyle>
63 #include <QWindowsVistaStyle>
64 #include <QWindowsStyle>
65 #include <QSysInfo>
66 #include <QDragEnterEvent>
67 #include <QMimeData>
68 #include <QProcess>
69 #include <QUuid>
70 #include <QProcessEnvironment>
71 #include <QCryptographicHash>
72 #include <QTranslator>
73 #include <QResource>
74 #include <QScrollBar>
76 ////////////////////////////////////////////////////////////
77 // Helper macros
78 ////////////////////////////////////////////////////////////
80 #define ABORT_IF_BUSY do \
81 { \
82 if(m_banner->isVisible() || m_delayedFileTimer->isActive()) \
83 { \
84 lamexp_beep(lamexp_beep_warning); \
85 return; \
86 } \
87 } \
88 while(0)
90 #define SET_TEXT_COLOR(WIDGET, COLOR) do \
91 { \
92 QPalette _palette = WIDGET->palette(); \
93 _palette.setColor(QPalette::WindowText, (COLOR)); \
94 _palette.setColor(QPalette::Text, (COLOR)); \
95 WIDGET->setPalette(_palette); \
96 } \
97 while(0)
99 #define SET_FONT_BOLD(WIDGET,BOLD) do \
101 QFont _font = WIDGET->font(); \
102 _font.setBold(BOLD); \
103 WIDGET->setFont(_font); \
105 while(0)
107 #define TEMP_HIDE_DROPBOX(CMD) do \
109 bool _dropBoxVisible = m_dropBox->isVisible(); \
110 if(_dropBoxVisible) m_dropBox->hide(); \
111 do { CMD } while(0); \
112 if(_dropBoxVisible) m_dropBox->show(); \
114 while(0)
116 #define SET_MODEL(VIEW, MODEL) do \
118 QItemSelectionModel *_tmp = (VIEW)->selectionModel(); \
119 (VIEW)->setModel(MODEL); \
120 LAMEXP_DELETE(_tmp); \
122 while(0)
124 #define SET_CHECKBOX_STATE(CHCKBX, STATE) do \
126 if((CHCKBX)->isChecked() != (STATE)) \
128 (CHCKBX)->click(); \
130 if((CHCKBX)->isChecked() != (STATE)) \
132 qWarning("Warning: Failed to set checkbox " #CHCKBX " state!"); \
135 while(0)
137 #define TRIM_STRING_RIGHT(STR) do \
139 while((STR.length() > 0) && STR[STR.length()-1].isSpace()) STR.chop(1); \
141 while(0)
143 #define MAKE_TRANSPARENT(WIDGET, FLAG) do \
145 QPalette _p = (WIDGET)->palette(); \
146 _p.setColor(QPalette::Background, Qt::transparent); \
147 (WIDGET)->setPalette(FLAG ? _p : QPalette()); \
149 while(0)
151 #define WITH_BLOCKED_SIGNALS(WIDGET, CMD, ...) do \
153 const bool _flag = (WIDGET)->blockSignals(true); \
154 (WIDGET)->CMD(__VA_ARGS__); \
155 if(!(_flag)) { (WIDGET)->blockSignals(false); } \
157 while(0)
159 #define LINK(URL) QString("<a href=\"%1\">%2</a>").arg(URL).arg(QString(URL).replace("-", "&minus;"))
160 #define FSLINK(PATH) QString("<a href=\"file:///%1\">%2</a>").arg(PATH).arg(QString(PATH).replace("-", "&minus;"))
161 //#define USE_NATIVE_FILE_DIALOG (lamexp_themes_enabled() || ((QSysInfo::windowsVersion() & QSysInfo::WV_NT_based) < QSysInfo::WV_XP))
162 #define CENTER_CURRENT_OUTPUT_FOLDER_DELAYED QTimer::singleShot(125, this, SLOT(centerOutputFolderModel()))
164 static const unsigned int IDM_ABOUTBOX = 0xEFF0;
166 ////////////////////////////////////////////////////////////
167 // Constructor
168 ////////////////////////////////////////////////////////////
170 MainWindow::MainWindow(FileListModel *fileListModel, AudioFileModel *metaInfo, SettingsModel *settingsModel, QWidget *parent)
172 QMainWindow(parent),
173 ui(new Ui::MainWindow),
174 m_fileListModel(fileListModel),
175 m_metaData(metaInfo),
176 m_settings(settingsModel),
177 m_fileSystemModel(NULL),
178 m_accepted(false),
179 m_firstTimeShown(true),
180 m_outputFolderViewCentering(false),
181 m_outputFolderViewInitCounter(0)
183 //Init the dialog, from the .ui file
184 ui->setupUi(this);
185 setWindowFlags(windowFlags() ^ Qt::WindowMaximizeButtonHint);
187 //Register meta types
188 qRegisterMetaType<AudioFileModel>("AudioFileModel");
190 //Enabled main buttons
191 connect(ui->buttonAbout, SIGNAL(clicked()), this, SLOT(aboutButtonClicked()));
192 connect(ui->buttonStart, SIGNAL(clicked()), this, SLOT(encodeButtonClicked()));
193 connect(ui->buttonQuit, SIGNAL(clicked()), this, SLOT(closeButtonClicked()));
195 //Setup tab widget
196 ui->tabWidget->setCurrentIndex(0);
197 connect(ui->tabWidget, SIGNAL(currentChanged(int)), this, SLOT(tabPageChanged(int)));
199 //Add system menu
200 lamexp_append_sysmenu(this, IDM_ABOUTBOX, "About...");
202 //--------------------------------
203 // Setup "Source" tab
204 //--------------------------------
206 ui->sourceFileView->setModel(m_fileListModel);
207 ui->sourceFileView->verticalHeader()->setResizeMode(QHeaderView::ResizeToContents);
208 ui->sourceFileView->horizontalHeader()->setResizeMode(QHeaderView::ResizeToContents);
209 ui->sourceFileView->setContextMenuPolicy(Qt::CustomContextMenu);
210 ui->sourceFileView->viewport()->installEventFilter(this);
211 m_dropNoteLabel = new QLabel(ui->sourceFileView);
212 m_dropNoteLabel->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
213 SET_FONT_BOLD(m_dropNoteLabel, true);
214 SET_TEXT_COLOR(m_dropNoteLabel, Qt::darkGray);
215 m_sourceFilesContextMenu = new QMenu();
216 m_showDetailsContextAction = m_sourceFilesContextMenu->addAction(QIcon(":/icons/zoom.png"), "N/A");
217 m_previewContextAction = m_sourceFilesContextMenu->addAction(QIcon(":/icons/sound.png"), "N/A");
218 m_findFileContextAction = m_sourceFilesContextMenu->addAction(QIcon(":/icons/folder_go.png"), "N/A");
219 m_sourceFilesContextMenu->addSeparator();
220 m_exportCsvContextAction = m_sourceFilesContextMenu->addAction(QIcon(":/icons/table_save.png"), "N/A");
221 m_importCsvContextAction = m_sourceFilesContextMenu->addAction(QIcon(":/icons/folder_table.png"), "N/A");
222 SET_FONT_BOLD(m_showDetailsContextAction, true);
223 connect(ui->buttonAddFiles, SIGNAL(clicked()), this, SLOT(addFilesButtonClicked()));
224 connect(ui->buttonRemoveFile, SIGNAL(clicked()), this, SLOT(removeFileButtonClicked()));
225 connect(ui->buttonClearFiles, SIGNAL(clicked()), this, SLOT(clearFilesButtonClicked()));
226 connect(ui->buttonFileUp, SIGNAL(clicked()), this, SLOT(fileUpButtonClicked()));
227 connect(ui->buttonFileDown, SIGNAL(clicked()), this, SLOT(fileDownButtonClicked()));
228 connect(ui->buttonShowDetails, SIGNAL(clicked()), this, SLOT(showDetailsButtonClicked()));
229 connect(m_fileListModel, SIGNAL(rowsInserted(QModelIndex,int,int)), this, SLOT(sourceModelChanged()));
230 connect(m_fileListModel, SIGNAL(rowsRemoved(QModelIndex,int,int)), this, SLOT(sourceModelChanged()));
231 connect(m_fileListModel, SIGNAL(modelReset()), this, SLOT(sourceModelChanged()));
232 connect(ui->sourceFileView, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(sourceFilesContextMenu(QPoint)));
233 connect(ui->sourceFileView->verticalScrollBar(), SIGNAL(sliderMoved(int)), this, SLOT(sourceFilesScrollbarMoved(int)));
234 connect(ui->sourceFileView->verticalScrollBar(), SIGNAL(valueChanged(int)), this, SLOT(sourceFilesScrollbarMoved(int)));
235 connect(m_showDetailsContextAction, SIGNAL(triggered(bool)), this, SLOT(showDetailsButtonClicked()));
236 connect(m_previewContextAction, SIGNAL(triggered(bool)), this, SLOT(previewContextActionTriggered()));
237 connect(m_findFileContextAction, SIGNAL(triggered(bool)), this, SLOT(findFileContextActionTriggered()));
238 connect(m_exportCsvContextAction, SIGNAL(triggered(bool)), this, SLOT(exportCsvContextActionTriggered()));
239 connect(m_importCsvContextAction, SIGNAL(triggered(bool)), this, SLOT(importCsvContextActionTriggered()));
241 //--------------------------------
242 // Setup "Output" tab
243 //--------------------------------
245 ui->outputFolderView->setHeaderHidden(true);
246 ui->outputFolderView->setAnimated(false);
247 ui->outputFolderView->setMouseTracking(false);
248 ui->outputFolderView->setContextMenuPolicy(Qt::CustomContextMenu);
249 ui->outputFolderView->setVerticalScrollBarPolicy(Qt::ScrollBarAlwaysOn);
251 m_evenFilterOutputFolderMouse = new CustomEventFilter;
252 ui->outputFoldersGoUpLabel->installEventFilter(m_evenFilterOutputFolderMouse);
253 ui->outputFoldersEditorLabel->installEventFilter(m_evenFilterOutputFolderMouse);
254 ui->outputFoldersFovoritesLabel->installEventFilter(m_evenFilterOutputFolderMouse);
255 ui->outputFolderLabel->installEventFilter(m_evenFilterOutputFolderMouse);
257 m_evenFilterOutputFolderView = new CustomEventFilter;
258 ui->outputFolderView->installEventFilter(m_evenFilterOutputFolderView);
260 SET_CHECKBOX_STATE(ui->saveToSourceFolderCheckBox, m_settings->outputToSourceDir());
261 ui->prependRelativePathCheckBox->setChecked(m_settings->prependRelativeSourcePath());
263 connect(ui->outputFolderView, SIGNAL(clicked(QModelIndex)), this, SLOT(outputFolderViewClicked(QModelIndex)));
264 connect(ui->outputFolderView, SIGNAL(activated(QModelIndex)), this, SLOT(outputFolderViewClicked(QModelIndex)));
265 connect(ui->outputFolderView, SIGNAL(pressed(QModelIndex)), this, SLOT(outputFolderViewClicked(QModelIndex)));
266 connect(ui->outputFolderView, SIGNAL(entered(QModelIndex)), this, SLOT(outputFolderViewMoved(QModelIndex)));
267 connect(ui->outputFolderView, SIGNAL(expanded(QModelIndex)), this, SLOT(outputFolderItemExpanded(QModelIndex)));
268 connect(ui->buttonMakeFolder, SIGNAL(clicked()), this, SLOT(makeFolderButtonClicked()));
269 connect(ui->buttonGotoHome, SIGNAL(clicked()), SLOT(gotoHomeFolderButtonClicked()));
270 connect(ui->buttonGotoDesktop, SIGNAL(clicked()), this, SLOT(gotoDesktopButtonClicked()));
271 connect(ui->buttonGotoMusic, SIGNAL(clicked()), this, SLOT(gotoMusicFolderButtonClicked()));
272 connect(ui->saveToSourceFolderCheckBox, SIGNAL(clicked()), this, SLOT(saveToSourceFolderChanged()));
273 connect(ui->prependRelativePathCheckBox, SIGNAL(clicked()), this, SLOT(prependRelativePathChanged()));
274 connect(ui->outputFolderEdit, SIGNAL(editingFinished()), this, SLOT(outputFolderEditFinished()));
275 connect(m_evenFilterOutputFolderMouse, SIGNAL(eventOccurred(QWidget*, QEvent*)), this, SLOT(outputFolderMouseEventOccurred(QWidget*, QEvent*)));
276 connect(m_evenFilterOutputFolderView, SIGNAL(eventOccurred(QWidget*, QEvent*)), this, SLOT(outputFolderViewEventOccurred(QWidget*, QEvent*)));
278 if(m_outputFolderContextMenu = new QMenu())
280 m_showFolderContextAction = m_outputFolderContextMenu->addAction(QIcon(":/icons/zoom.png"), "N/A");
281 m_goUpFolderContextAction = m_outputFolderContextMenu->addAction(QIcon(":/icons/folder_up.png"), "N/A");
282 m_outputFolderContextMenu->addSeparator();
283 m_refreshFolderContextAction = m_outputFolderContextMenu->addAction(QIcon(":/icons/arrow_refresh.png"), "N/A");
284 m_outputFolderContextMenu->setDefaultAction(m_showFolderContextAction);
285 connect(ui->outputFolderView, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(outputFolderContextMenu(QPoint)));
286 connect(m_showFolderContextAction, SIGNAL(triggered(bool)), this, SLOT(showFolderContextActionTriggered()));
287 connect(m_refreshFolderContextAction, SIGNAL(triggered(bool)), this, SLOT(refreshFolderContextActionTriggered()));
288 connect(m_goUpFolderContextAction, SIGNAL(triggered(bool)), this, SLOT(goUpFolderContextActionTriggered()));
291 if(m_outputFolderFavoritesMenu = new QMenu())
293 m_addFavoriteFolderAction = m_outputFolderFavoritesMenu->addAction(QIcon(":/icons/add.png"), "N/A");
294 m_outputFolderFavoritesMenu->insertSeparator(m_addFavoriteFolderAction);
295 connect(m_addFavoriteFolderAction, SIGNAL(triggered(bool)), this, SLOT(addFavoriteFolderActionTriggered()));
298 ui->outputFolderEdit->setVisible(false);
299 if(m_outputFolderNoteBox = new QLabel(ui->outputFolderView))
301 m_outputFolderNoteBox->setAutoFillBackground(true);
302 m_outputFolderNoteBox->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
303 m_outputFolderNoteBox->setFrameShape(QFrame::StyledPanel);
304 SET_FONT_BOLD(m_outputFolderNoteBox, true);
305 m_outputFolderNoteBox->hide();
309 outputFolderViewClicked(QModelIndex());
310 refreshFavorites();
312 //--------------------------------
313 // Setup "Meta Data" tab
314 //--------------------------------
316 m_metaInfoModel = new MetaInfoModel(m_metaData, 6);
317 m_metaInfoModel->clearData();
318 m_metaInfoModel->setData(m_metaInfoModel->index(4, 1), m_settings->metaInfoPosition());
319 ui->metaDataView->setModel(m_metaInfoModel);
320 ui->metaDataView->verticalHeader()->setResizeMode(QHeaderView::ResizeToContents);
321 ui->metaDataView->verticalHeader()->hide();
322 ui->metaDataView->horizontalHeader()->setResizeMode(QHeaderView::ResizeToContents);
323 SET_CHECKBOX_STATE(ui->writeMetaDataCheckBox, m_settings->writeMetaTags());
324 ui->generatePlaylistCheckBox->setChecked(m_settings->createPlaylist());
325 connect(ui->buttonEditMeta, SIGNAL(clicked()), this, SLOT(editMetaButtonClicked()));
326 connect(ui->buttonClearMeta, SIGNAL(clicked()), this, SLOT(clearMetaButtonClicked()));
327 connect(ui->writeMetaDataCheckBox, SIGNAL(clicked()), this, SLOT(metaTagsEnabledChanged()));
328 connect(ui->generatePlaylistCheckBox, SIGNAL(clicked()), this, SLOT(playlistEnabledChanged()));
330 //--------------------------------
331 //Setup "Compression" tab
332 //--------------------------------
334 m_encoderButtonGroup = new QButtonGroup(this);
335 m_encoderButtonGroup->addButton(ui->radioButtonEncoderMP3, SettingsModel::MP3Encoder);
336 m_encoderButtonGroup->addButton(ui->radioButtonEncoderVorbis, SettingsModel::VorbisEncoder);
337 m_encoderButtonGroup->addButton(ui->radioButtonEncoderAAC, SettingsModel::AACEncoder);
338 m_encoderButtonGroup->addButton(ui->radioButtonEncoderAC3, SettingsModel::AC3Encoder);
339 m_encoderButtonGroup->addButton(ui->radioButtonEncoderFLAC, SettingsModel::FLACEncoder);
340 m_encoderButtonGroup->addButton(ui->radioButtonEncoderOpus, SettingsModel::OpusEncoder);
341 m_encoderButtonGroup->addButton(ui->radioButtonEncoderDCA, SettingsModel::DCAEncoder);
342 m_encoderButtonGroup->addButton(ui->radioButtonEncoderPCM, SettingsModel::PCMEncoder);
344 const int aacEncoder = EncoderRegistry::getAacEncoder();
345 ui->radioButtonEncoderAAC->setEnabled(aacEncoder > SettingsModel::AAC_ENCODER_NONE);
347 m_modeButtonGroup = new QButtonGroup(this);
348 m_modeButtonGroup->addButton(ui->radioButtonModeQuality, SettingsModel::VBRMode);
349 m_modeButtonGroup->addButton(ui->radioButtonModeAverageBitrate, SettingsModel::ABRMode);
350 m_modeButtonGroup->addButton(ui->radioButtonConstBitrate, SettingsModel::CBRMode);
352 ui->radioButtonEncoderMP3->setChecked(true);
353 foreach(QAbstractButton *currentButton, m_encoderButtonGroup->buttons())
355 if(currentButton->isEnabled() && (m_encoderButtonGroup->id(currentButton) == m_settings->compressionEncoder()))
357 currentButton->setChecked(true);
358 break;
362 m_evenFilterCompressionTab = new CustomEventFilter();
363 ui->labelCompressionHelp->installEventFilter(m_evenFilterCompressionTab);
364 ui->labelResetEncoders ->installEventFilter(m_evenFilterCompressionTab);
366 connect(m_encoderButtonGroup, SIGNAL(buttonClicked(int)), this, SLOT(updateEncoder(int)));
367 connect(m_modeButtonGroup, SIGNAL(buttonClicked(int)), this, SLOT(updateRCMode(int)));
368 connect(m_evenFilterCompressionTab, SIGNAL(eventOccurred(QWidget*, QEvent*)), this, SLOT(compressionTabEventOccurred(QWidget*, QEvent*)));
369 connect(ui->sliderBitrate, SIGNAL(valueChanged(int)), this, SLOT(updateBitrate(int)));
371 updateEncoder(m_encoderButtonGroup->checkedId());
373 //--------------------------------
374 //Setup "Advanced Options" tab
375 //--------------------------------
377 ui->sliderLameAlgoQuality->setValue(m_settings->lameAlgoQuality());
378 if(m_settings->maximumInstances() > 0) ui->sliderMaxInstances->setValue(m_settings->maximumInstances());
380 ui->spinBoxBitrateManagementMin->setValue(m_settings->bitrateManagementMinRate());
381 ui->spinBoxBitrateManagementMax->setValue(m_settings->bitrateManagementMaxRate());
382 ui->spinBoxNormalizationFilter->setValue(static_cast<double>(m_settings->normalizationFilterMaxVolume()) / 100.0);
383 ui->spinBoxToneAdjustBass->setValue(static_cast<double>(m_settings->toneAdjustBass()) / 100.0);
384 ui->spinBoxToneAdjustTreble->setValue(static_cast<double>(m_settings->toneAdjustTreble()) / 100.0);
385 ui->spinBoxAftenSearchSize->setValue(m_settings->aftenExponentSearchSize());
386 ui->spinBoxOpusComplexity->setValue(m_settings->opusComplexity());
388 ui->comboBoxMP3ChannelMode->setCurrentIndex(m_settings->lameChannelMode());
389 ui->comboBoxSamplingRate->setCurrentIndex(m_settings->samplingRate());
390 ui->comboBoxAACProfile->setCurrentIndex(m_settings->aacEncProfile());
391 ui->comboBoxAftenCodingMode->setCurrentIndex(m_settings->aftenAudioCodingMode());
392 ui->comboBoxAftenDRCMode->setCurrentIndex(m_settings->aftenDynamicRangeCompression());
393 ui->comboBoxNormalizationMode->setCurrentIndex(m_settings->normalizationFilterEQMode());
394 //comboBoxOpusOptimize->setCurrentIndex(m_settings->opusOptimizeFor());
395 ui->comboBoxOpusFramesize->setCurrentIndex(m_settings->opusFramesize());
397 SET_CHECKBOX_STATE(ui->checkBoxBitrateManagement, m_settings->bitrateManagementEnabled());
398 SET_CHECKBOX_STATE(ui->checkBoxNeroAAC2PassMode, m_settings->neroAACEnable2Pass());
399 SET_CHECKBOX_STATE(ui->checkBoxAftenFastAllocation, m_settings->aftenFastBitAllocation());
400 SET_CHECKBOX_STATE(ui->checkBoxNormalizationFilter, m_settings->normalizationFilterEnabled());
401 SET_CHECKBOX_STATE(ui->checkBoxAutoDetectInstances, (m_settings->maximumInstances() < 1));
402 SET_CHECKBOX_STATE(ui->checkBoxUseSystemTempFolder, !m_settings->customTempPathEnabled());
403 SET_CHECKBOX_STATE(ui->checkBoxRenameOutput, m_settings->renameOutputFilesEnabled());
404 SET_CHECKBOX_STATE(ui->checkBoxForceStereoDownmix, m_settings->forceStereoDownmix());
405 SET_CHECKBOX_STATE(ui->checkBoxOpusDisableResample, m_settings->opusDisableResample());
406 ui->checkBoxNeroAAC2PassMode->setEnabled(aacEncoder == SettingsModel::AAC_ENCODER_NERO);
408 ui->lineEditCustomParamLAME ->setText(EncoderRegistry::loadEncoderCustomParams(m_settings, SettingsModel::MP3Encoder));
409 ui->lineEditCustomParamOggEnc ->setText(EncoderRegistry::loadEncoderCustomParams(m_settings, SettingsModel::VorbisEncoder));
410 ui->lineEditCustomParamNeroAAC->setText(EncoderRegistry::loadEncoderCustomParams(m_settings, SettingsModel::AACEncoder));
411 ui->lineEditCustomParamFLAC ->setText(EncoderRegistry::loadEncoderCustomParams(m_settings, SettingsModel::FLACEncoder));
412 ui->lineEditCustomParamAften ->setText(EncoderRegistry::loadEncoderCustomParams(m_settings, SettingsModel::AC3Encoder));
413 ui->lineEditCustomParamOpus ->setText(EncoderRegistry::loadEncoderCustomParams(m_settings, SettingsModel::OpusEncoder));
414 ui->lineEditCustomTempFolder ->setText(QDir::toNativeSeparators(m_settings->customTempPath()));
415 ui->lineEditRenamePattern ->setText(m_settings->renameOutputFilesPattern());
417 m_evenFilterCustumParamsHelp = new CustomEventFilter();
418 ui->helpCustomParamLAME->installEventFilter(m_evenFilterCustumParamsHelp);
419 ui->helpCustomParamOggEnc->installEventFilter(m_evenFilterCustumParamsHelp);
420 ui->helpCustomParamNeroAAC->installEventFilter(m_evenFilterCustumParamsHelp);
421 ui->helpCustomParamFLAC->installEventFilter(m_evenFilterCustumParamsHelp);
422 ui->helpCustomParamAften->installEventFilter(m_evenFilterCustumParamsHelp);
423 ui->helpCustomParamOpus->installEventFilter(m_evenFilterCustumParamsHelp);
425 m_overwriteButtonGroup = new QButtonGroup(this);
426 m_overwriteButtonGroup->addButton(ui->radioButtonOverwriteModeKeepBoth, SettingsModel::Overwrite_KeepBoth);
427 m_overwriteButtonGroup->addButton(ui->radioButtonOverwriteModeSkipFile, SettingsModel::Overwrite_SkipFile);
428 m_overwriteButtonGroup->addButton(ui->radioButtonOverwriteModeReplaces, SettingsModel::Overwrite_Replaces);
430 ui->radioButtonOverwriteModeKeepBoth->setChecked(m_settings->overwriteMode() == SettingsModel::Overwrite_KeepBoth);
431 ui->radioButtonOverwriteModeSkipFile->setChecked(m_settings->overwriteMode() == SettingsModel::Overwrite_SkipFile);
432 ui->radioButtonOverwriteModeReplaces->setChecked(m_settings->overwriteMode() == SettingsModel::Overwrite_Replaces);
434 connect(ui->sliderLameAlgoQuality, SIGNAL(valueChanged(int)), this, SLOT(updateLameAlgoQuality(int)));
435 connect(ui->checkBoxBitrateManagement, SIGNAL(clicked(bool)), this, SLOT(bitrateManagementEnabledChanged(bool)));
436 connect(ui->spinBoxBitrateManagementMin, SIGNAL(valueChanged(int)), this, SLOT(bitrateManagementMinChanged(int)));
437 connect(ui->spinBoxBitrateManagementMax, SIGNAL(valueChanged(int)), this, SLOT(bitrateManagementMaxChanged(int)));
438 connect(ui->comboBoxMP3ChannelMode, SIGNAL(currentIndexChanged(int)), this, SLOT(channelModeChanged(int)));
439 connect(ui->comboBoxSamplingRate, SIGNAL(currentIndexChanged(int)), this, SLOT(samplingRateChanged(int)));
440 connect(ui->checkBoxNeroAAC2PassMode, SIGNAL(clicked(bool)), this, SLOT(neroAAC2PassChanged(bool)));
441 connect(ui->comboBoxAACProfile, SIGNAL(currentIndexChanged(int)), this, SLOT(neroAACProfileChanged(int)));
442 connect(ui->checkBoxNormalizationFilter, SIGNAL(clicked(bool)), this, SLOT(normalizationEnabledChanged(bool)));
443 connect(ui->comboBoxAftenCodingMode, SIGNAL(currentIndexChanged(int)), this, SLOT(aftenCodingModeChanged(int)));
444 connect(ui->comboBoxAftenDRCMode, SIGNAL(currentIndexChanged(int)), this, SLOT(aftenDRCModeChanged(int)));
445 connect(ui->spinBoxAftenSearchSize, SIGNAL(valueChanged(int)), this, SLOT(aftenSearchSizeChanged(int)));
446 connect(ui->checkBoxAftenFastAllocation, SIGNAL(clicked(bool)), this, SLOT(aftenFastAllocationChanged(bool)));
447 connect(ui->spinBoxNormalizationFilter, SIGNAL(valueChanged(double)), this, SLOT(normalizationMaxVolumeChanged(double)));
448 connect(ui->comboBoxNormalizationMode, SIGNAL(currentIndexChanged(int)), this, SLOT(normalizationModeChanged(int)));
449 connect(ui->spinBoxToneAdjustBass, SIGNAL(valueChanged(double)), this, SLOT(toneAdjustBassChanged(double)));
450 connect(ui->spinBoxToneAdjustTreble, SIGNAL(valueChanged(double)), this, SLOT(toneAdjustTrebleChanged(double)));
451 connect(ui->buttonToneAdjustReset, SIGNAL(clicked()), this, SLOT(toneAdjustTrebleReset()));
452 connect(ui->lineEditCustomParamLAME, SIGNAL(editingFinished()), this, SLOT(customParamsChanged()));
453 connect(ui->lineEditCustomParamOggEnc, SIGNAL(editingFinished()), this, SLOT(customParamsChanged()));
454 connect(ui->lineEditCustomParamNeroAAC, SIGNAL(editingFinished()), this, SLOT(customParamsChanged()));
455 connect(ui->lineEditCustomParamFLAC, SIGNAL(editingFinished()), this, SLOT(customParamsChanged()));
456 connect(ui->lineEditCustomParamAften, SIGNAL(editingFinished()), this, SLOT(customParamsChanged()));
457 connect(ui->lineEditCustomParamOpus, SIGNAL(editingFinished()), this, SLOT(customParamsChanged()));
458 connect(ui->sliderMaxInstances, SIGNAL(valueChanged(int)), this, SLOT(updateMaximumInstances(int)));
459 connect(ui->checkBoxAutoDetectInstances, SIGNAL(clicked(bool)), this, SLOT(autoDetectInstancesChanged(bool)));
460 connect(ui->buttonBrowseCustomTempFolder, SIGNAL(clicked()), this, SLOT(browseCustomTempFolderButtonClicked()));
461 connect(ui->lineEditCustomTempFolder, SIGNAL(textChanged(QString)), this, SLOT(customTempFolderChanged(QString)));
462 connect(ui->checkBoxUseSystemTempFolder, SIGNAL(clicked(bool)), this, SLOT(useCustomTempFolderChanged(bool)));
463 connect(ui->buttonResetAdvancedOptions, SIGNAL(clicked()), this, SLOT(resetAdvancedOptionsButtonClicked()));
464 connect(ui->checkBoxRenameOutput, SIGNAL(clicked(bool)), this, SLOT(renameOutputEnabledChanged(bool)));
465 connect(ui->lineEditRenamePattern, SIGNAL(editingFinished()), this, SLOT(renameOutputPatternChanged()));
466 connect(ui->lineEditRenamePattern, SIGNAL(textChanged(QString)), this, SLOT(renameOutputPatternChanged(QString)));
467 connect(ui->labelShowRenameMacros, SIGNAL(linkActivated(QString)), this, SLOT(showRenameMacros(QString)));
468 connect(ui->checkBoxForceStereoDownmix, SIGNAL(clicked(bool)), this, SLOT(forceStereoDownmixEnabledChanged(bool)));
469 connect(ui->comboBoxOpusFramesize, SIGNAL(currentIndexChanged(int)), this, SLOT(opusSettingsChanged()));
470 connect(ui->spinBoxOpusComplexity, SIGNAL(valueChanged(int)), this, SLOT(opusSettingsChanged()));
471 connect(ui->checkBoxOpusDisableResample, SIGNAL(clicked(bool)), SLOT(opusSettingsChanged()));
472 connect(m_overwriteButtonGroup, SIGNAL(buttonClicked(int)), this, SLOT(overwriteModeChanged(int)));
473 connect(m_evenFilterCustumParamsHelp, SIGNAL(eventOccurred(QWidget*, QEvent*)), this, SLOT(customParamsHelpRequested(QWidget*, QEvent*)));
475 //--------------------------------
476 // Force initial GUI update
477 //--------------------------------
479 updateLameAlgoQuality(ui->sliderLameAlgoQuality->value());
480 updateMaximumInstances(ui->sliderMaxInstances->value());
481 toneAdjustTrebleChanged(ui->spinBoxToneAdjustTreble->value());
482 toneAdjustBassChanged(ui->spinBoxToneAdjustBass->value());
483 customParamsChanged();
485 //--------------------------------
486 // Initialize actions
487 //--------------------------------
489 //Activate file menu actions
490 ui->actionOpenFolder->setData(QVariant::fromValue<bool>(false));
491 ui->actionOpenFolderRecursively->setData(QVariant::fromValue<bool>(true));
492 connect(ui->actionOpenFolder, SIGNAL(triggered()), this, SLOT(openFolderActionActivated()));
493 connect(ui->actionOpenFolderRecursively, SIGNAL(triggered()), this, SLOT(openFolderActionActivated()));
495 //Activate view menu actions
496 m_tabActionGroup = new QActionGroup(this);
497 m_tabActionGroup->addAction(ui->actionSourceFiles);
498 m_tabActionGroup->addAction(ui->actionOutputDirectory);
499 m_tabActionGroup->addAction(ui->actionCompression);
500 m_tabActionGroup->addAction(ui->actionMetaData);
501 m_tabActionGroup->addAction(ui->actionAdvancedOptions);
502 ui->actionSourceFiles->setData(0);
503 ui->actionOutputDirectory->setData(1);
504 ui->actionMetaData->setData(2);
505 ui->actionCompression->setData(3);
506 ui->actionAdvancedOptions->setData(4);
507 ui->actionSourceFiles->setChecked(true);
508 connect(m_tabActionGroup, SIGNAL(triggered(QAction*)), this, SLOT(tabActionActivated(QAction*)));
510 //Activate style menu actions
511 m_styleActionGroup = new QActionGroup(this);
512 m_styleActionGroup->addAction(ui->actionStylePlastique);
513 m_styleActionGroup->addAction(ui->actionStyleCleanlooks);
514 m_styleActionGroup->addAction(ui->actionStyleWindowsVista);
515 m_styleActionGroup->addAction(ui->actionStyleWindowsXP);
516 m_styleActionGroup->addAction(ui->actionStyleWindowsClassic);
517 ui->actionStylePlastique->setData(0);
518 ui->actionStyleCleanlooks->setData(1);
519 ui->actionStyleWindowsVista->setData(2);
520 ui->actionStyleWindowsXP->setData(3);
521 ui->actionStyleWindowsClassic->setData(4);
522 ui->actionStylePlastique->setChecked(true);
523 ui->actionStyleWindowsXP->setEnabled((QSysInfo::windowsVersion() & QSysInfo::WV_NT_based) >= QSysInfo::WV_XP && lamexp_themes_enabled());
524 ui->actionStyleWindowsVista->setEnabled((QSysInfo::windowsVersion() & QSysInfo::WV_NT_based) >= QSysInfo::WV_VISTA && lamexp_themes_enabled());
525 connect(m_styleActionGroup, SIGNAL(triggered(QAction*)), this, SLOT(styleActionActivated(QAction*)));
526 styleActionActivated(NULL);
528 //Populate the language menu
529 m_languageActionGroup = new QActionGroup(this);
530 QStringList translations = lamexp_query_translations();
531 while(!translations.isEmpty())
533 QString langId = translations.takeFirst();
534 QAction *currentLanguage = new QAction(this);
535 currentLanguage->setData(langId);
536 currentLanguage->setText(lamexp_translation_name(langId));
537 currentLanguage->setIcon(QIcon(QString(":/flags/%1.png").arg(langId)));
538 currentLanguage->setCheckable(true);
539 currentLanguage->setChecked(false);
540 m_languageActionGroup->addAction(currentLanguage);
541 ui->menuLanguage->insertAction(ui->actionLoadTranslationFromFile, currentLanguage);
543 ui->menuLanguage->insertSeparator(ui->actionLoadTranslationFromFile);
544 connect(ui->actionLoadTranslationFromFile, SIGNAL(triggered(bool)), this, SLOT(languageFromFileActionActivated(bool)));
545 connect(m_languageActionGroup, SIGNAL(triggered(QAction*)), this, SLOT(languageActionActivated(QAction*)));
546 ui->actionLoadTranslationFromFile->setChecked(false);
548 //Activate tools menu actions
549 ui->actionDisableUpdateReminder->setChecked(!m_settings->autoUpdateEnabled());
550 ui->actionDisableSounds->setChecked(!m_settings->soundsEnabled());
551 ui->actionDisableNeroAacNotifications->setChecked(!m_settings->neroAacNotificationsEnabled());
552 ui->actionDisableSlowStartupNotifications->setChecked(!m_settings->antivirNotificationsEnabled());
553 ui->actionDisableShellIntegration->setChecked(!m_settings->shellIntegrationEnabled());
554 ui->actionDisableShellIntegration->setDisabled(lamexp_portable_mode() && ui->actionDisableShellIntegration->isChecked());
555 ui->actionCheckForBetaUpdates->setChecked(m_settings->autoUpdateCheckBeta() || lamexp_version_demo());
556 ui->actionCheckForBetaUpdates->setEnabled(!lamexp_version_demo());
557 ui->actionHibernateComputer->setChecked(m_settings->hibernateComputer());
558 ui->actionHibernateComputer->setEnabled(lamexp_is_hibernation_supported());
559 connect(ui->actionDisableUpdateReminder, SIGNAL(triggered(bool)), this, SLOT(disableUpdateReminderActionTriggered(bool)));
560 connect(ui->actionDisableSounds, SIGNAL(triggered(bool)), this, SLOT(disableSoundsActionTriggered(bool)));
561 connect(ui->actionDisableNeroAacNotifications, SIGNAL(triggered(bool)), this, SLOT(disableNeroAacNotificationsActionTriggered(bool)));
562 connect(ui->actionDisableSlowStartupNotifications, SIGNAL(triggered(bool)), this, SLOT(disableSlowStartupNotificationsActionTriggered(bool)));
563 connect(ui->actionDisableShellIntegration, SIGNAL(triggered(bool)), this, SLOT(disableShellIntegrationActionTriggered(bool)));
564 connect(ui->actionShowDropBoxWidget, SIGNAL(triggered(bool)), this, SLOT(showDropBoxWidgetActionTriggered(bool)));
565 connect(ui->actionHibernateComputer, SIGNAL(triggered(bool)), this, SLOT(hibernateComputerActionTriggered(bool)));
566 connect(ui->actionCheckForBetaUpdates, SIGNAL(triggered(bool)), this, SLOT(checkForBetaUpdatesActionTriggered(bool)));
567 connect(ui->actionImportCueSheet, SIGNAL(triggered(bool)), this, SLOT(importCueSheetActionTriggered(bool)));
569 //Activate help menu actions
570 ui->actionVisitHomepage->setData(QString::fromLatin1(lamexp_website_url()));
571 ui->actionVisitSupport->setData(QString::fromLatin1(lamexp_support_url()));
572 ui->actionVisitMuldersSite->setData(QString::fromLatin1(lamexp_mulders_url()));
573 ui->actionDocumentFAQ->setData(QString("%1/FAQ.html").arg(QApplication::applicationDirPath()));
574 ui->actionDocumentChangelog->setData(QString("%1/Changelog.html").arg(QApplication::applicationDirPath()));
575 ui->actionDocumentTranslate->setData(QString("%1/Translate.html").arg(QApplication::applicationDirPath()));
576 connect(ui->actionCheckUpdates, SIGNAL(triggered()), this, SLOT(checkUpdatesActionActivated()));
577 connect(ui->actionVisitHomepage, SIGNAL(triggered()), this, SLOT(visitHomepageActionActivated()));
578 connect(ui->actionVisitMuldersSite, SIGNAL(triggered()), this, SLOT(visitHomepageActionActivated()));
579 connect(ui->actionVisitSupport, SIGNAL(triggered()), this, SLOT(visitHomepageActionActivated()));
580 connect(ui->actionDocumentFAQ, SIGNAL(triggered()), this, SLOT(documentActionActivated()));
581 connect(ui->actionDocumentChangelog, SIGNAL(triggered()), this, SLOT(documentActionActivated()));
582 connect(ui->actionDocumentTranslate, SIGNAL(triggered()), this, SLOT(documentActionActivated()));
584 //--------------------------------
585 // Prepare to show window
586 //--------------------------------
588 //Center window in screen
589 QRect desktopRect = QApplication::desktop()->screenGeometry();
590 QRect thisRect = this->geometry();
591 move((desktopRect.width() - thisRect.width()) / 2, (desktopRect.height() - thisRect.height()) / 2);
592 setMinimumSize(thisRect.width(), thisRect.height());
594 //Create banner
595 m_banner = new WorkingBanner(this);
597 //Create DropBox widget
598 m_dropBox = new DropBox(this, m_fileListModel, m_settings);
599 connect(m_fileListModel, SIGNAL(modelReset()), m_dropBox, SLOT(modelChanged()));
600 connect(m_fileListModel, SIGNAL(rowsInserted(QModelIndex,int,int)), m_dropBox, SLOT(modelChanged()));
601 connect(m_fileListModel, SIGNAL(rowsRemoved(QModelIndex,int,int)), m_dropBox, SLOT(modelChanged()));
602 connect(m_fileListModel, SIGNAL(rowAppended()), m_dropBox, SLOT(modelChanged()));
604 //Create message handler thread
605 m_messageHandler = new MessageHandlerThread();
606 m_delayedFileList = new QStringList();
607 m_delayedFileTimer = new QTimer();
608 m_delayedFileTimer->setSingleShot(true);
609 m_delayedFileTimer->setInterval(5000);
610 connect(m_messageHandler, SIGNAL(otherInstanceDetected()), this, SLOT(notifyOtherInstance()), Qt::QueuedConnection);
611 connect(m_messageHandler, SIGNAL(fileReceived(QString)), this, SLOT(addFileDelayed(QString)), Qt::QueuedConnection);
612 connect(m_messageHandler, SIGNAL(folderReceived(QString, bool)), this, SLOT(addFolderDelayed(QString, bool)), Qt::QueuedConnection);
613 connect(m_messageHandler, SIGNAL(killSignalReceived()), this, SLOT(close()), Qt::QueuedConnection);
614 connect(m_delayedFileTimer, SIGNAL(timeout()), this, SLOT(handleDelayedFiles()));
615 m_messageHandler->start();
617 //Load translation
618 initializeTranslation();
620 //Re-translate (make sure we translate once)
621 QEvent languageChangeEvent(QEvent::LanguageChange);
622 changeEvent(&languageChangeEvent);
624 //Enable Drag & Drop
625 this->setAcceptDrops(true);
628 ////////////////////////////////////////////////////////////
629 // Destructor
630 ////////////////////////////////////////////////////////////
632 MainWindow::~MainWindow(void)
634 //Stop message handler thread
635 if(m_messageHandler && m_messageHandler->isRunning())
637 m_messageHandler->stop();
638 if(!m_messageHandler->wait(2500))
640 m_messageHandler->terminate();
641 m_messageHandler->wait();
645 //Unset models
646 SET_MODEL(ui->sourceFileView, NULL);
647 SET_MODEL(ui->outputFolderView, NULL);
648 SET_MODEL(ui->metaDataView, NULL);
650 //Free memory
651 LAMEXP_DELETE(m_tabActionGroup);
652 LAMEXP_DELETE(m_styleActionGroup);
653 LAMEXP_DELETE(m_languageActionGroup);
654 LAMEXP_DELETE(m_banner);
655 LAMEXP_DELETE(m_fileSystemModel);
656 LAMEXP_DELETE(m_messageHandler);
657 LAMEXP_DELETE(m_delayedFileList);
658 LAMEXP_DELETE(m_delayedFileTimer);
659 LAMEXP_DELETE(m_metaInfoModel);
660 LAMEXP_DELETE(m_encoderButtonGroup);
661 LAMEXP_DELETE(m_modeButtonGroup);
662 LAMEXP_DELETE(m_overwriteButtonGroup);
663 LAMEXP_DELETE(m_sourceFilesContextMenu);
664 LAMEXP_DELETE(m_outputFolderFavoritesMenu);
665 LAMEXP_DELETE(m_outputFolderContextMenu);
666 LAMEXP_DELETE(m_dropBox);
667 LAMEXP_DELETE(m_evenFilterCustumParamsHelp);
668 LAMEXP_DELETE(m_evenFilterOutputFolderMouse);
669 LAMEXP_DELETE(m_evenFilterOutputFolderView);
670 LAMEXP_DELETE(m_evenFilterCompressionTab);
672 //Un-initialize the dialog
673 LAMEXP_DELETE(ui);
676 ////////////////////////////////////////////////////////////
677 // PRIVATE FUNCTIONS
678 ////////////////////////////////////////////////////////////
681 * Add file to source list
683 void MainWindow::addFiles(const QStringList &files)
685 if(files.isEmpty())
687 return;
690 ui->tabWidget->setCurrentIndex(0);
692 FileAnalyzer *analyzer = new FileAnalyzer(files);
693 connect(analyzer, SIGNAL(fileSelected(QString)), m_banner, SLOT(setText(QString)), Qt::QueuedConnection);
694 connect(analyzer, SIGNAL(progressValChanged(unsigned int)), m_banner, SLOT(setProgressVal(unsigned int)), Qt::QueuedConnection);
695 connect(analyzer, SIGNAL(progressMaxChanged(unsigned int)), m_banner, SLOT(setProgressMax(unsigned int)), Qt::QueuedConnection);
696 connect(analyzer, SIGNAL(fileAnalyzed(AudioFileModel)), m_fileListModel, SLOT(addFile(AudioFileModel)), Qt::QueuedConnection);
697 connect(m_banner, SIGNAL(userAbort()), analyzer, SLOT(abortProcess()), Qt::DirectConnection);
701 m_fileListModel->setBlockUpdates(true);
702 QTime startTime = QTime::currentTime();
703 m_banner->show(tr("Adding file(s), please wait..."), analyzer);
705 catch(...)
707 /* ignore any exceptions that may occur */
710 m_fileListModel->setBlockUpdates(false);
711 qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
712 ui->sourceFileView->update();
713 qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
714 ui->sourceFileView->scrollToBottom();
715 qApp->processEvents(QEventLoop::ExcludeUserInputEvents);
717 if(analyzer->filesDenied())
719 QMessageBox::warning(this, tr("Access Denied"), QString("%1<br>%2").arg(NOBR(tr("%n file(s) have been rejected, because read access was not granted!", "", analyzer->filesDenied())), NOBR(tr("This usually means the file is locked by another process."))));
721 if(analyzer->filesDummyCDDA())
723 QMessageBox::warning(this, tr("CDDA Files"), QString("%1<br><br>%2<br>%3").arg(NOBR(tr("%n file(s) have been rejected, because they are dummy CDDA files!", "", analyzer->filesDummyCDDA())), NOBR(tr("Sorry, LameXP cannot extract audio tracks from an Audio-CD at present.")), NOBR(tr("We recommend using %1 for that purpose.").arg("<a href=\"http://www.exactaudiocopy.de/\">Exact Audio Copy</a>"))));
725 if(analyzer->filesCueSheet())
727 QMessageBox::warning(this, tr("Cue Sheet"), QString("%1<br>%2").arg(NOBR(tr("%n file(s) have been rejected, because they appear to be Cue Sheet images!", "",analyzer->filesCueSheet())), NOBR(tr("Please use LameXP's Cue Sheet wizard for importing Cue Sheet files."))));
729 if(analyzer->filesRejected())
731 QMessageBox::warning(this, tr("Files Rejected"), QString("%1<br>%2").arg(NOBR(tr("%n file(s) have been rejected, because the file format could not be recognized!", "", analyzer->filesRejected())), NOBR(tr("This usually means the file is damaged or the file format is not supported."))));
734 LAMEXP_DELETE(analyzer);
735 m_banner->close();
739 * Add folder to source list
741 void MainWindow::addFolder(const QString &path, bool recursive, bool delayed)
743 QFileInfoList folderInfoList;
744 folderInfoList << QFileInfo(path);
745 QStringList fileList;
747 m_banner->show(tr("Scanning folder(s) for files, please wait..."));
749 QApplication::processEvents();
750 lamexp_check_escape_state();
752 while(!folderInfoList.isEmpty())
754 if(lamexp_check_escape_state())
756 lamexp_beep(lamexp_beep_error);
757 qWarning("Operation cancelled by user!");
758 fileList.clear();
759 break;
762 QDir currentDir(folderInfoList.takeFirst().canonicalFilePath());
763 QFileInfoList fileInfoList = currentDir.entryInfoList(QDir::Files | QDir::NoSymLinks);
765 while(!fileInfoList.isEmpty())
767 fileList << fileInfoList.takeFirst().canonicalFilePath();
770 QApplication::processEvents();
772 if(recursive)
774 folderInfoList.append(currentDir.entryInfoList(QDir::Dirs | QDir::NoDotAndDotDot | QDir::NoSymLinks));
775 QApplication::processEvents();
779 m_banner->close();
780 QApplication::processEvents();
782 if(!fileList.isEmpty())
784 if(delayed)
786 addFilesDelayed(fileList);
788 else
790 addFiles(fileList);
796 * Check for updates
798 bool MainWindow::checkForUpdates(void)
800 bool bReadyToInstall = false;
802 UpdateDialog *updateDialog = new UpdateDialog(m_settings, this);
803 updateDialog->exec();
805 if(updateDialog->getSuccess())
807 m_settings->autoUpdateLastCheck(QDate::currentDate().toString(Qt::ISODate));
808 bReadyToInstall = updateDialog->updateReadyToInstall();
811 LAMEXP_DELETE(updateDialog);
812 return bReadyToInstall;
816 * Refresh list of favorites
818 void MainWindow::refreshFavorites(void)
820 QList<QAction*> folderList = m_outputFolderFavoritesMenu->actions();
821 QStringList favorites = m_settings->favoriteOutputFolders().split("|", QString::SkipEmptyParts);
822 while(favorites.count() > 6) favorites.removeFirst();
824 while(!folderList.isEmpty())
826 QAction *currentItem = folderList.takeFirst();
827 if(currentItem->isSeparator()) break;
828 m_outputFolderFavoritesMenu->removeAction(currentItem);
829 LAMEXP_DELETE(currentItem);
832 QAction *lastItem = m_outputFolderFavoritesMenu->actions().first();
834 while(!favorites.isEmpty())
836 QString path = favorites.takeLast();
837 if(QDir(path).exists())
839 QAction *action = new QAction(QIcon(":/icons/folder_go.png"), QDir::toNativeSeparators(path), this);
840 action->setData(path);
841 m_outputFolderFavoritesMenu->insertAction(lastItem, action);
842 connect(action, SIGNAL(triggered(bool)), this, SLOT(gotoFavoriteFolder()));
843 lastItem = action;
849 * Initilaize translation
851 void MainWindow::initializeTranslation(void)
853 bool translationLoaded = false;
855 //Try to load "external" translation file
856 if(!m_settings->currentLanguageFile().isEmpty())
858 const QString qmFilePath = QFileInfo(m_settings->currentLanguageFile()).canonicalFilePath();
859 if((!qmFilePath.isEmpty()) && QFileInfo(qmFilePath).exists() && QFileInfo(qmFilePath).isFile() && (QFileInfo(qmFilePath).suffix().compare("qm", Qt::CaseInsensitive) == 0))
861 if(lamexp_install_translator_from_file(qmFilePath))
863 QList<QAction*> actions = m_languageActionGroup->actions();
864 while(!actions.isEmpty()) actions.takeFirst()->setChecked(false);
865 ui->actionLoadTranslationFromFile->setChecked(true);
866 translationLoaded = true;
871 //Try to load "built-in" translation file
872 if(!translationLoaded)
874 QList<QAction*> languageActions = m_languageActionGroup->actions();
875 while(!languageActions.isEmpty())
877 QAction *currentLanguage = languageActions.takeFirst();
878 if(currentLanguage->data().toString().compare(m_settings->currentLanguage(), Qt::CaseInsensitive) == 0)
880 currentLanguage->setChecked(true);
881 languageActionActivated(currentLanguage);
882 translationLoaded = true;
887 //Fallback to default translation
888 if(!translationLoaded)
890 QList<QAction*> languageActions = m_languageActionGroup->actions();
891 while(!languageActions.isEmpty())
893 QAction *currentLanguage = languageActions.takeFirst();
894 if(currentLanguage->data().toString().compare(LAMEXP_DEFAULT_LANGID, Qt::CaseInsensitive) == 0)
896 currentLanguage->setChecked(true);
897 languageActionActivated(currentLanguage);
898 translationLoaded = true;
903 //Make sure we loaded some translation
904 if(!translationLoaded)
906 qFatal("Failed to load any translation, this is NOT supposed to happen!");
910 ////////////////////////////////////////////////////////////
911 // EVENTS
912 ////////////////////////////////////////////////////////////
915 * Window is about to be shown
917 void MainWindow::showEvent(QShowEvent *event)
919 m_accepted = false;
920 resizeEvent(NULL);
921 sourceModelChanged();
923 if(!event->spontaneous())
925 ui->tabWidget->setCurrentIndex(0);
928 if(m_firstTimeShown)
930 m_firstTimeShown = false;
931 QTimer::singleShot(0, this, SLOT(windowShown()));
933 else
935 if(m_settings->dropBoxWidgetEnabled())
937 m_dropBox->setVisible(true);
943 * Re-translate the UI
945 void MainWindow::changeEvent(QEvent *e)
947 if(e->type() == QEvent::LanguageChange)
949 /*qWarning("\nMainWindow::changeEvent()\n");*/
951 int comboBoxIndex[8];
953 //Backup combobox indices, as retranslateUi() resets
954 comboBoxIndex[0] = ui->comboBoxMP3ChannelMode->currentIndex();
955 comboBoxIndex[1] = ui->comboBoxSamplingRate->currentIndex();
956 comboBoxIndex[2] = ui->comboBoxAACProfile->currentIndex();
957 comboBoxIndex[3] = ui->comboBoxAftenCodingMode->currentIndex();
958 comboBoxIndex[4] = ui->comboBoxAftenDRCMode->currentIndex();
959 comboBoxIndex[5] = ui->comboBoxNormalizationMode->currentIndex();
960 comboBoxIndex[6] = 0; //comboBoxOpusOptimize->currentIndex();
961 comboBoxIndex[7] = ui->comboBoxOpusFramesize->currentIndex();
963 //Re-translate from UIC
964 ui->retranslateUi(this);
966 //Restore combobox indices
967 ui->comboBoxMP3ChannelMode->setCurrentIndex(comboBoxIndex[0]);
968 ui->comboBoxSamplingRate->setCurrentIndex(comboBoxIndex[1]);
969 ui->comboBoxAACProfile->setCurrentIndex(comboBoxIndex[2]);
970 ui->comboBoxAftenCodingMode->setCurrentIndex(comboBoxIndex[3]);
971 ui->comboBoxAftenDRCMode->setCurrentIndex(comboBoxIndex[4]);
972 ui->comboBoxNormalizationMode->setCurrentIndex(comboBoxIndex[5]);
973 //comboBoxOpusOptimize->setCurrentIndex(comboBoxIndex[6]);
974 ui->comboBoxOpusFramesize->setCurrentIndex(comboBoxIndex[7]);
976 //Update the window title
977 if(LAMEXP_DEBUG)
979 setWindowTitle(QString("%1 [!!! DEBUG BUILD !!!]").arg(windowTitle()));
981 else if(lamexp_version_demo())
983 setWindowTitle(QString("%1 [%2]").arg(windowTitle(), tr("DEMO VERSION")));
986 //Manually re-translate widgets that UIC doesn't handle
987 m_outputFolderNoteBox->setText(tr("Initializing directory outline, please be patient..."));
988 m_dropNoteLabel->setText(QString("<br><br>» %1 «<br><br><br><img src=\":/images/Sound.png\">").arg(tr("You can drop in audio files here!")));
989 m_showDetailsContextAction->setText(tr("Show Details"));
990 m_previewContextAction->setText(tr("Open File in External Application"));
991 m_findFileContextAction->setText(tr("Browse File Location"));
992 m_showFolderContextAction->setText(tr("Browse Selected Folder"));
993 m_refreshFolderContextAction->setText(tr("Refresh Directory Outline"));
994 m_goUpFolderContextAction->setText(tr("Go To Parent Directory"));
995 m_addFavoriteFolderAction->setText(tr("Bookmark Current Output Folder"));
996 m_exportCsvContextAction->setText(tr("Export Meta Tags to CSV File"));
997 m_importCsvContextAction->setText(tr("Import Meta Tags from CSV File"));
999 //Force GUI update
1000 m_metaInfoModel->clearData();
1001 m_metaInfoModel->setData(m_metaInfoModel->index(4, 1), m_settings->metaInfoPosition());
1002 updateEncoder(m_settings->compressionEncoder());
1003 updateLameAlgoQuality(ui->sliderLameAlgoQuality->value());
1004 updateMaximumInstances(ui->sliderMaxInstances->value());
1005 renameOutputPatternChanged(ui->lineEditRenamePattern->text(), true);
1007 //Re-install shell integration
1008 if(m_settings->shellIntegrationEnabled())
1010 ShellIntegration::install();
1013 //Translate system menu
1014 lamexp_update_sysmenu(this, IDM_ABOUTBOX, ui->buttonAbout->text());
1016 //Force resize, if needed
1017 tabPageChanged(ui->tabWidget->currentIndex());
1022 * File dragged over window
1024 void MainWindow::dragEnterEvent(QDragEnterEvent *event)
1026 QStringList formats = event->mimeData()->formats();
1028 if(formats.contains("application/x-qt-windows-mime;value=\"FileNameW\"", Qt::CaseInsensitive) && formats.contains("text/uri-list", Qt::CaseInsensitive))
1030 event->acceptProposedAction();
1035 * File dropped onto window
1037 void MainWindow::dropEvent(QDropEvent *event)
1039 ABORT_IF_BUSY;
1041 QStringList droppedFiles;
1042 QList<QUrl> urls = event->mimeData()->urls();
1044 while(!urls.isEmpty())
1046 QUrl currentUrl = urls.takeFirst();
1047 QFileInfo file(currentUrl.toLocalFile());
1048 if(!file.exists())
1050 continue;
1052 if(file.isFile())
1054 qDebug("Dropped File: %s", file.canonicalFilePath().toUtf8().constData());
1055 droppedFiles << file.canonicalFilePath();
1056 continue;
1058 if(file.isDir())
1060 qDebug("Dropped Folder: %s", file.canonicalFilePath().toUtf8().constData());
1061 QList<QFileInfo> list = QDir(file.canonicalFilePath()).entryInfoList(QDir::Files | QDir::NoSymLinks);
1062 if(list.count() > 0)
1064 for(int j = 0; j < list.count(); j++)
1066 droppedFiles << list.at(j).canonicalFilePath();
1069 else
1071 list = QDir(file.canonicalFilePath()).entryInfoList(QDir::Dirs | QDir::NoDotAndDotDot | QDir::NoSymLinks);
1072 for(int j = 0; j < list.count(); j++)
1074 qDebug("Descending to Folder: %s", list.at(j).canonicalFilePath().toUtf8().constData());
1075 urls.prepend(QUrl::fromLocalFile(list.at(j).canonicalFilePath()));
1081 if(!droppedFiles.isEmpty())
1083 addFilesDelayed(droppedFiles, true);
1088 * Window tries to close
1090 void MainWindow::closeEvent(QCloseEvent *event)
1092 if(m_banner->isVisible() || m_delayedFileTimer->isActive())
1094 lamexp_beep(lamexp_beep_warning);
1095 event->ignore();
1098 if(m_dropBox)
1100 m_dropBox->hide();
1105 * Window was resized
1107 void MainWindow::resizeEvent(QResizeEvent *event)
1109 if(event) QMainWindow::resizeEvent(event);
1111 if(QWidget *port = ui->sourceFileView->viewport())
1113 m_dropNoteLabel->setGeometry(port->geometry());
1116 if(QWidget *port = ui->outputFolderView->viewport())
1118 m_outputFolderNoteBox->setGeometry(16, (port->height() - 64) / 2, port->width() - 32, 64);
1123 * Key press event filter
1125 void MainWindow::keyPressEvent(QKeyEvent *e)
1127 if(e->key() == Qt::Key_Delete)
1129 if(ui->sourceFileView->isVisible())
1131 QTimer::singleShot(0, this, SLOT(removeFileButtonClicked()));
1132 return;
1136 if(e->modifiers().testFlag(Qt::ControlModifier) && (e->key() == Qt::Key_F5))
1138 initializeTranslation();
1139 lamexp_beep(lamexp_beep_info);
1140 return;
1143 if(e->key() == Qt::Key_F5)
1145 if(ui->outputFolderView->isVisible())
1147 QTimer::singleShot(0, this, SLOT(refreshFolderContextActionTriggered()));
1148 return;
1152 QMainWindow::keyPressEvent(e);
1156 * Event filter
1158 bool MainWindow::eventFilter(QObject *obj, QEvent *event)
1160 if(obj == m_fileSystemModel)
1162 if(QApplication::overrideCursor() == NULL)
1164 QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
1165 QTimer::singleShot(250, this, SLOT(restoreCursor()));
1169 return QMainWindow::eventFilter(obj, event);
1172 bool MainWindow::event(QEvent *e)
1174 switch(e->type())
1176 case lamexp_event_queryendsession:
1177 qWarning("System is shutting down, main window prepares to close...");
1178 if(m_banner->isVisible()) m_banner->close();
1179 if(m_delayedFileTimer->isActive()) m_delayedFileTimer->stop();
1180 return true;
1181 case lamexp_event_endsession:
1182 qWarning("System is shutting down, main window will close now...");
1183 if(isVisible())
1185 while(!close())
1187 QApplication::processEvents(QEventLoop::WaitForMoreEvents & QEventLoop::ExcludeUserInputEvents);
1190 m_fileListModel->clearFiles();
1191 return true;
1192 case QEvent::MouseButtonPress:
1193 if(ui->outputFolderEdit->isVisible())
1195 QTimer::singleShot(0, this, SLOT(outputFolderEditFinished()));
1197 default:
1198 return QMainWindow::event(e);
1202 bool MainWindow::winEvent(MSG *message, long *result)
1204 if(lamexp_check_sysmenu_msg(message, IDM_ABOUTBOX))
1206 QTimer::singleShot(0, ui->buttonAbout, SLOT(click()));
1207 *result = 0;
1208 return true;
1210 return WinSevenTaskbar::handleWinEvent(message, result);
1213 ////////////////////////////////////////////////////////////
1214 // Slots
1215 ////////////////////////////////////////////////////////////
1217 // =========================================================
1218 // Show window slots
1219 // =========================================================
1222 * Window shown
1224 void MainWindow::windowShown(void)
1226 const QStringList &arguments = lamexp_arguments(); //QApplication::arguments();
1228 //Force resize event
1229 resizeEvent(NULL);
1231 //First run?
1232 bool firstRun = false;
1233 for(int i = 0; i < arguments.count(); i++)
1235 /*QMessageBox::information(this, QString::number(i), arguments[i]);*/
1236 if(!arguments[i].compare("--first-run", Qt::CaseInsensitive)) firstRun = true;
1239 //Check license
1240 if((m_settings->licenseAccepted() <= 0) || firstRun)
1242 int iAccepted = m_settings->licenseAccepted();
1244 if((iAccepted == 0) || firstRun)
1246 AboutDialog *about = new AboutDialog(m_settings, this, true);
1247 iAccepted = about->exec();
1248 if(iAccepted <= 0) iAccepted = -2;
1249 LAMEXP_DELETE(about);
1252 if(iAccepted <= 0)
1254 m_settings->licenseAccepted(++iAccepted);
1255 m_settings->syncNow();
1256 QApplication::processEvents();
1257 lamexp_play_sound(IDR_WAVE_WHAMMY, false);
1258 QMessageBox::critical(this, tr("License Declined"), tr("You have declined the license. Consequently the application will exit now!"), tr("Goodbye!"));
1259 QFileInfo uninstallerInfo = QFileInfo(QString("%1/Uninstall.exe").arg(QApplication::applicationDirPath()));
1260 if(uninstallerInfo.exists())
1262 QString uninstallerDir = uninstallerInfo.canonicalPath();
1263 QString uninstallerPath = uninstallerInfo.canonicalFilePath();
1264 for(int i = 0; i < 3; i++)
1266 if(lamexp_exec_shell(this, QDir::toNativeSeparators(uninstallerPath), "/Force", QDir::toNativeSeparators(uninstallerDir))) break;
1269 QApplication::quit();
1270 return;
1273 lamexp_play_sound(IDR_WAVE_WOOHOO, false);
1274 m_settings->licenseAccepted(1);
1275 m_settings->syncNow();
1276 if(lamexp_version_demo()) showAnnounceBox();
1279 //Check for expiration
1280 if(lamexp_version_demo())
1282 if(lamexp_current_date_safe() >= lamexp_version_expires())
1284 qWarning("Binary has expired !!!");
1285 lamexp_play_sound(IDR_WAVE_WHAMMY, false);
1286 if(QMessageBox::warning(this, tr("LameXP - Expired"), QString("%1<br>%2").arg(NOBR(tr("This demo (pre-release) version of LameXP has expired at %1.").arg(lamexp_version_expires().toString(Qt::ISODate))), NOBR(tr("LameXP is free software and release versions won't expire."))), tr("Check for Updates"), tr("Exit Program")) == 0)
1288 checkForUpdates();
1290 QApplication::quit();
1291 return;
1295 //Slow startup indicator
1296 if(m_settings->slowStartup() && m_settings->antivirNotificationsEnabled())
1298 QString message;
1299 message += NOBR(tr("It seems that a bogus anti-virus software is slowing down the startup of LameXP.")).append("<br>");
1300 message += NOBR(tr("Please refer to the %1 document for details and solutions!")).arg("<a href=\"http://lamexp.sourceforge.net/doc/FAQ.html#df406578\">F.A.Q.</a>").append("<br>");
1301 if(QMessageBox::warning(this, tr("Slow Startup"), message, tr("Discard"), tr("Don't Show Again")) == 1)
1303 m_settings->antivirNotificationsEnabled(false);
1304 ui->actionDisableSlowStartupNotifications->setChecked(!m_settings->antivirNotificationsEnabled());
1308 //Update reminder
1309 if(lamexp_current_date_safe() >= lamexp_version_date().addYears(1))
1311 qWarning("Binary is more than a year old, time to update!");
1312 int ret = QMessageBox::warning(this, tr("Urgent Update"), NOBR(tr("Your version of LameXP is more than a year old. Time for an update!")), tr("Check for Updates"), tr("Exit Program"), tr("Ignore"));
1313 switch(ret)
1315 case 0:
1316 if(checkForUpdates())
1318 QApplication::quit();
1319 return;
1321 break;
1322 case 1:
1323 QApplication::quit();
1324 return;
1325 default:
1326 QEventLoop loop; QTimer::singleShot(7000, &loop, SLOT(quit()));
1327 lamexp_play_sound(IDR_WAVE_WAITING, true);
1328 m_banner->show(tr("Skipping update check this time, please be patient..."), &loop);
1329 break;
1332 else if(m_settings->autoUpdateEnabled())
1334 QDate lastUpdateCheck = QDate::fromString(m_settings->autoUpdateLastCheck(), Qt::ISODate);
1335 if(!firstRun && (!lastUpdateCheck.isValid() || lamexp_current_date_safe() >= lastUpdateCheck.addDays(14)))
1337 if(QMessageBox::information(this, tr("Update Reminder"), NOBR(lastUpdateCheck.isValid() ? tr("Your last update check was more than 14 days ago. Check for updates now?") : tr("Your did not check for LameXP updates yet. Check for updates now?")), tr("Check for Updates"), tr("Postpone")) == 0)
1339 if(checkForUpdates())
1341 QApplication::quit();
1342 return;
1348 //Check for AAC support
1349 const int aacEncoder = EncoderRegistry::getAacEncoder();
1350 if(aacEncoder == SettingsModel::AAC_ENCODER_NERO)
1352 if(m_settings->neroAacNotificationsEnabled())
1354 if(lamexp_tool_version("neroAacEnc.exe") < lamexp_toolver_neroaac())
1356 QString messageText;
1357 messageText += NOBR(tr("LameXP detected that your version of the Nero AAC encoder is outdated!")).append("<br>");
1358 messageText += NOBR(tr("The current version available is %1 (or later), but you still have version %2 installed.").arg(lamexp_version2string("?.?.?.?", lamexp_toolver_neroaac(), tr("n/a")), lamexp_version2string("?.?.?.?", lamexp_tool_version("neroAacEnc.exe"), tr("n/a")))).append("<br><br>");
1359 messageText += NOBR(tr("You can download the latest version of the Nero AAC encoder from the Nero website at:")).append("<br>");
1360 messageText += "<nobr><tt>" + LINK(AboutDialog::neroAacUrl) + "</tt></nobr><br><br>";
1361 messageText += NOBR(tr("(Hint: Please ignore the name of the downloaded ZIP file and check the included 'changelog.txt' instead!)")).append("<br>");
1362 QMessageBox::information(this, tr("AAC Encoder Outdated"), messageText);
1366 else
1368 if(m_settings->neroAacNotificationsEnabled() && (aacEncoder <= SettingsModel::AAC_ENCODER_NONE))
1370 QString appPath = QDir(QCoreApplication::applicationDirPath()).canonicalPath();
1371 if(appPath.isEmpty()) appPath = QCoreApplication::applicationDirPath();
1372 QString messageText;
1373 messageText += NOBR(tr("The Nero AAC encoder could not be found. AAC encoding support will be disabled.")).append("<br>");
1374 messageText += NOBR(tr("Please put 'neroAacEnc.exe', 'neroAacDec.exe' and 'neroAacTag.exe' into the LameXP directory!")).append("<br><br>");
1375 messageText += NOBR(tr("Your LameXP directory is located here:")).append("<br>");
1376 messageText += QString("<nobr><tt>%1</tt></nobr><br><br>").arg(FSLINK(QDir::toNativeSeparators(appPath)));
1377 messageText += NOBR(tr("You can download the Nero AAC encoder for free from the official Nero website at:")).append("<br>");
1378 messageText += "<nobr><tt>" + LINK(AboutDialog::neroAacUrl) + "</tt></nobr><br>";
1379 if(QMessageBox::information(this, tr("AAC Support Disabled"), messageText, tr("Discard"), tr("Don't Show Again")) == 1)
1381 m_settings->neroAacNotificationsEnabled(false);
1382 ui->actionDisableNeroAacNotifications->setChecked(!m_settings->neroAacNotificationsEnabled());
1387 //Add files from the command-line
1388 for(int i = 0; i < arguments.count() - 1; i++)
1390 QStringList addedFiles;
1391 if(!arguments[i].compare("--add", Qt::CaseInsensitive))
1393 QFileInfo currentFile(arguments[++i].trimmed());
1394 qDebug("Adding file from CLI: %s", currentFile.absoluteFilePath().toUtf8().constData());
1395 addedFiles.append(currentFile.absoluteFilePath());
1397 if(!addedFiles.isEmpty())
1399 addFilesDelayed(addedFiles);
1403 //Add folders from the command-line
1404 for(int i = 0; i < arguments.count() - 1; i++)
1406 if(!arguments[i].compare("--add-folder", Qt::CaseInsensitive))
1408 QFileInfo currentFile(arguments[++i].trimmed());
1409 qDebug("Adding folder from CLI: %s", currentFile.absoluteFilePath().toUtf8().constData());
1410 addFolder(currentFile.absoluteFilePath(), false, true);
1412 if(!arguments[i].compare("--add-recursive", Qt::CaseInsensitive))
1414 QFileInfo currentFile(arguments[++i].trimmed());
1415 qDebug("Adding folder recursively from CLI: %s", currentFile.absoluteFilePath().toUtf8().constData());
1416 addFolder(currentFile.absoluteFilePath(), true, true);
1420 //Enable shell integration
1421 if(m_settings->shellIntegrationEnabled())
1423 ShellIntegration::install();
1426 //Make DropBox visible
1427 if(m_settings->dropBoxWidgetEnabled())
1429 m_dropBox->setVisible(true);
1434 * Show announce box
1436 void MainWindow::showAnnounceBox(void)
1438 const unsigned int timeout = 8U;
1440 const QString announceText = QString("%1<br><br>%2<br><nobr><tt>%3</tt></nobr><br>").arg
1442 NOBR("We are still looking for LameXP translators!"),
1443 NOBR("If you are willing to translate LameXP to your language or to complete an existing translation, please refer to:"),
1444 LINK("http://lamexp.sourceforge.net/doc/Translate.html")
1447 QMessageBox *announceBox = new QMessageBox(QMessageBox::Warning, "We want you!", announceText, QMessageBox::NoButton, this);
1448 announceBox->setWindowFlags(Qt::Window | Qt::WindowTitleHint | Qt::CustomizeWindowHint);
1449 announceBox->setIconPixmap(QIcon(":/images/Announcement.png").pixmap(64,79));
1451 QTimer *timers[timeout+1];
1452 QPushButton *buttons[timeout+1];
1454 for(unsigned int i = 0; i <= timeout; i++)
1456 QString text = (i > 0) ? QString("%1 (%2)").arg(tr("Discard"), QString::number(i)) : tr("Discard");
1457 buttons[i] = announceBox->addButton(text, (i > 0) ? QMessageBox::NoRole : QMessageBox::AcceptRole);
1460 for(unsigned int i = 0; i <= timeout; i++)
1462 buttons[i]->setEnabled(i == 0);
1463 buttons[i]->setVisible(i == timeout);
1466 for(unsigned int i = 0; i < timeout; i++)
1468 timers[i] = new QTimer(this);
1469 timers[i]->setSingleShot(true);
1470 timers[i]->setInterval(1000);
1471 connect(timers[i], SIGNAL(timeout()), buttons[i+1], SLOT(hide()));
1472 connect(timers[i], SIGNAL(timeout()), buttons[i], SLOT(show()));
1473 if(i > 0)
1475 connect(timers[i], SIGNAL(timeout()), timers[i-1], SLOT(start()));
1479 timers[timeout-1]->start();
1480 announceBox->exec();
1482 for(unsigned int i = 0; i < timeout; i++)
1484 timers[i]->stop();
1485 LAMEXP_DELETE(timers[i]);
1488 LAMEXP_DELETE(announceBox);
1491 // =========================================================
1492 // Main button solots
1493 // =========================================================
1496 * Encode button
1498 void MainWindow::encodeButtonClicked(void)
1500 static const unsigned __int64 oneGigabyte = 1073741824ui64;
1501 static const unsigned __int64 minimumFreeDiskspaceMultiplier = 2ui64;
1502 static const char *writeTestBuffer = "LAMEXP_WRITE_TEST";
1504 ABORT_IF_BUSY;
1506 if(m_fileListModel->rowCount() < 1)
1508 QMessageBox::warning(this, tr("LameXP"), NOBR(tr("You must add at least one file to the list before proceeding!")));
1509 ui->tabWidget->setCurrentIndex(0);
1510 return;
1513 QString tempFolder = m_settings->customTempPathEnabled() ? m_settings->customTempPath() : lamexp_temp_folder2();
1514 if(!QFileInfo(tempFolder).exists() || !QFileInfo(tempFolder).isDir())
1516 if(QMessageBox::warning(this, tr("Not Found"), QString("%1<br><tt>%2</tt>").arg(NOBR(tr("Your currently selected TEMP folder does not exist anymore:")), NOBR(QDir::toNativeSeparators(tempFolder))), tr("Restore Default"), tr("Cancel")) == 0)
1518 SET_CHECKBOX_STATE(ui->checkBoxUseSystemTempFolder, m_settings->customTempPathEnabledDefault());
1520 return;
1523 bool ok = false;
1524 unsigned __int64 currentFreeDiskspace = lamexp_free_diskspace(tempFolder, &ok);
1526 if(ok && (currentFreeDiskspace < (oneGigabyte * minimumFreeDiskspaceMultiplier)))
1528 QStringList tempFolderParts = tempFolder.split("/", QString::SkipEmptyParts, Qt::CaseInsensitive);
1529 tempFolderParts.takeLast();
1530 if(m_settings->soundsEnabled()) lamexp_play_sound(IDR_WAVE_WHAMMY, false);
1531 QString lowDiskspaceMsg = QString("%1<br>%2<br><br>%3<br>%4<br>").arg
1533 NOBR(tr("There are less than %1 GB of free diskspace available on your system's TEMP folder.").arg(QString::number(minimumFreeDiskspaceMultiplier))),
1534 NOBR(tr("It is highly recommend to free up more diskspace before proceeding with the encode!")),
1535 NOBR(tr("Your TEMP folder is located at:")),
1536 QString("<nobr><tt>%1</tt></nobr>").arg(FSLINK(tempFolderParts.join("\\")))
1538 switch(QMessageBox::warning(this, tr("Low Diskspace Warning"), lowDiskspaceMsg, tr("Abort Encoding Process"), tr("Clean Disk Now"), tr("Ignore")))
1540 case 1:
1541 QProcess::startDetached(QString("%1/cleanmgr.exe").arg(lamexp_known_folder(lamexp_folder_systemfolder)), QStringList() << "/D" << tempFolderParts.first());
1542 case 0:
1543 return;
1544 break;
1545 default:
1546 QMessageBox::warning(this, tr("Low Diskspace"), NOBR(tr("You are proceeding with low diskspace. Problems might occur!")));
1547 break;
1551 switch(m_settings->compressionEncoder())
1553 case SettingsModel::MP3Encoder:
1554 case SettingsModel::VorbisEncoder:
1555 case SettingsModel::AACEncoder:
1556 case SettingsModel::AC3Encoder:
1557 case SettingsModel::FLACEncoder:
1558 case SettingsModel::OpusEncoder:
1559 case SettingsModel::DCAEncoder:
1560 case SettingsModel::PCMEncoder:
1561 break;
1562 default:
1563 QMessageBox::warning(this, tr("LameXP"), tr("Sorry, an unsupported encoder has been chosen!"));
1564 ui->tabWidget->setCurrentIndex(3);
1565 return;
1568 if(!m_settings->outputToSourceDir())
1570 QFile writeTest(QString("%1/~%2.txt").arg(m_settings->outputDir(), lamexp_rand_str()));
1571 if(!(writeTest.open(QIODevice::ReadWrite) && (writeTest.write(writeTestBuffer) == strlen(writeTestBuffer))))
1573 QMessageBox::warning(this, tr("LameXP"), QString("%1<br><nobr>%2</nobr><br><br>%3").arg(tr("Cannot write to the selected output directory."), m_settings->outputDir(), tr("Please choose a different directory!")));
1574 ui->tabWidget->setCurrentIndex(1);
1575 return;
1577 else
1579 writeTest.close();
1580 writeTest.remove();
1584 m_accepted = true;
1585 close();
1589 * About button
1591 void MainWindow::aboutButtonClicked(void)
1593 ABORT_IF_BUSY;
1595 TEMP_HIDE_DROPBOX
1597 AboutDialog *aboutBox = new AboutDialog(m_settings, this);
1598 aboutBox->exec();
1599 LAMEXP_DELETE(aboutBox);
1604 * Close button
1606 void MainWindow::closeButtonClicked(void)
1608 ABORT_IF_BUSY;
1609 close();
1612 // =========================================================
1613 // Tab widget slots
1614 // =========================================================
1617 * Tab page changed
1619 void MainWindow::tabPageChanged(int idx)
1621 resizeEvent(NULL);
1623 QList<QAction*> actions = m_tabActionGroup->actions();
1624 for(int i = 0; i < actions.count(); i++)
1626 bool ok = false;
1627 int actionIndex = actions.at(i)->data().toInt(&ok);
1628 if(ok && actionIndex == idx)
1630 actions.at(i)->setChecked(true);
1634 int initialWidth = this->width();
1635 int maximumWidth = QApplication::desktop()->availableGeometry().width();
1637 //Make sure all tab headers are fully visible
1638 if(this->isVisible())
1640 int delta = ui->tabWidget->sizeHint().width() - ui->tabWidget->width();
1641 if(delta > 0)
1643 this->resize(qMin(this->width() + delta, maximumWidth), this->height());
1647 //Tab specific operations
1648 if(idx == ui->tabWidget->indexOf(ui->tabOptions) && ui->scrollArea->widget() && this->isVisible())
1650 ui->scrollArea->widget()->updateGeometry();
1651 ui->scrollArea->viewport()->updateGeometry();
1652 qApp->processEvents();
1653 int delta = ui->scrollArea->widget()->width() - ui->scrollArea->viewport()->width();
1654 if(delta > 0)
1656 this->resize(qMin(this->width() + delta, maximumWidth), this->height());
1659 else if(idx == ui->tabWidget->indexOf(ui->tabSourceFiles))
1661 m_dropNoteLabel->setGeometry(0, 0, ui->sourceFileView->width(), ui->sourceFileView->height());
1663 else if(idx == ui->tabWidget->indexOf(ui->tabOutputDir))
1665 if(!m_fileSystemModel)
1667 QTimer::singleShot(125, this, SLOT(initOutputFolderModel()));
1669 else
1671 CENTER_CURRENT_OUTPUT_FOLDER_DELAYED;
1675 //Center window around previous position
1676 if(initialWidth < this->width())
1678 QPoint prevPos = this->pos();
1679 int delta = (this->width() - initialWidth) >> 2;
1680 move(prevPos.x() - delta, prevPos.y());
1685 * Tab action triggered
1687 void MainWindow::tabActionActivated(QAction *action)
1689 if(action && action->data().isValid())
1691 bool ok = false;
1692 int index = action->data().toInt(&ok);
1693 if(ok)
1695 ui->tabWidget->setCurrentIndex(index);
1700 // =========================================================
1701 // View menu slots
1702 // =========================================================
1705 * Style action triggered
1707 void MainWindow::styleActionActivated(QAction *action)
1709 //Change style setting
1710 if(action && action->data().isValid())
1712 bool ok = false;
1713 int actionIndex = action->data().toInt(&ok);
1714 if(ok)
1716 m_settings->interfaceStyle(actionIndex);
1720 //Set up the new style
1721 switch(m_settings->interfaceStyle())
1723 case 1:
1724 if(ui->actionStyleCleanlooks->isEnabled())
1726 ui->actionStyleCleanlooks->setChecked(true);
1727 QApplication::setStyle(new QCleanlooksStyle());
1728 break;
1730 case 2:
1731 if(ui->actionStyleWindowsVista->isEnabled())
1733 ui->actionStyleWindowsVista->setChecked(true);
1734 QApplication::setStyle(new QWindowsVistaStyle());
1735 break;
1737 case 3:
1738 if(ui->actionStyleWindowsXP->isEnabled())
1740 ui->actionStyleWindowsXP->setChecked(true);
1741 QApplication::setStyle(new QWindowsXPStyle());
1742 break;
1744 case 4:
1745 if(ui->actionStyleWindowsClassic->isEnabled())
1747 ui->actionStyleWindowsClassic->setChecked(true);
1748 QApplication::setStyle(new QWindowsStyle());
1749 break;
1751 default:
1752 ui->actionStylePlastique->setChecked(true);
1753 QApplication::setStyle(new QPlastiqueStyle());
1754 break;
1757 //Force re-translate after style change
1758 if(QEvent *e = new QEvent(QEvent::LanguageChange))
1760 changeEvent(e);
1761 LAMEXP_DELETE(e);
1764 //Make transparent
1765 const type_info &styleType = typeid(*qApp->style());
1766 const bool bTransparent = ((typeid(QWindowsVistaStyle) == styleType) || (typeid(QWindowsXPStyle) == styleType));
1767 MAKE_TRANSPARENT(ui->scrollArea, bTransparent);
1771 * Language action triggered
1773 void MainWindow::languageActionActivated(QAction *action)
1775 if(action->data().type() == QVariant::String)
1777 QString langId = action->data().toString();
1779 if(lamexp_install_translator(langId))
1781 action->setChecked(true);
1782 ui->actionLoadTranslationFromFile->setChecked(false);
1783 m_settings->currentLanguage(langId);
1784 m_settings->currentLanguageFile(QString());
1790 * Load language from file action triggered
1792 void MainWindow::languageFromFileActionActivated(bool checked)
1794 QFileDialog dialog(this, tr("Load Translation"));
1795 dialog.setFileMode(QFileDialog::ExistingFile);
1796 dialog.setNameFilter(QString("%1 (*.qm)").arg(tr("Translation Files")));
1798 if(dialog.exec())
1800 QStringList selectedFiles = dialog.selectedFiles();
1801 const QString qmFile = QFileInfo(selectedFiles.first()).canonicalFilePath();
1802 if(lamexp_install_translator_from_file(qmFile))
1804 QList<QAction*> actions = m_languageActionGroup->actions();
1805 while(!actions.isEmpty())
1807 actions.takeFirst()->setChecked(false);
1809 ui->actionLoadTranslationFromFile->setChecked(true);
1810 m_settings->currentLanguageFile(qmFile);
1812 else
1814 languageActionActivated(m_languageActionGroup->actions().first());
1819 // =========================================================
1820 // Tools menu slots
1821 // =========================================================
1824 * Disable update reminder action
1826 void MainWindow::disableUpdateReminderActionTriggered(bool checked)
1828 if(checked)
1830 if(0 == QMessageBox::question(this, tr("Disable Update Reminder"), NOBR(tr("Do you really want to disable the update reminder?")), tr("Yes"), tr("No"), QString(), 1))
1832 QMessageBox::information(this, tr("Update Reminder"), QString("%1<br>%2").arg(NOBR(tr("The update reminder has been disabled.")), NOBR(tr("Please remember to check for updates at regular intervals!"))));
1833 m_settings->autoUpdateEnabled(false);
1835 else
1837 m_settings->autoUpdateEnabled(true);
1840 else
1842 QMessageBox::information(this, tr("Update Reminder"), NOBR(tr("The update reminder has been re-enabled.")));
1843 m_settings->autoUpdateEnabled(true);
1846 ui->actionDisableUpdateReminder->setChecked(!m_settings->autoUpdateEnabled());
1850 * Disable sound effects action
1852 void MainWindow::disableSoundsActionTriggered(bool checked)
1854 if(checked)
1856 if(0 == QMessageBox::question(this, tr("Disable Sound Effects"), NOBR(tr("Do you really want to disable all sound effects?")), tr("Yes"), tr("No"), QString(), 1))
1858 QMessageBox::information(this, tr("Sound Effects"), NOBR(tr("All sound effects have been disabled.")));
1859 m_settings->soundsEnabled(false);
1861 else
1863 m_settings->soundsEnabled(true);
1866 else
1868 QMessageBox::information(this, tr("Sound Effects"), NOBR(tr("The sound effects have been re-enabled.")));
1869 m_settings->soundsEnabled(true);
1872 ui->actionDisableSounds->setChecked(!m_settings->soundsEnabled());
1876 * Disable Nero AAC encoder action
1878 void MainWindow::disableNeroAacNotificationsActionTriggered(bool checked)
1880 if(checked)
1882 if(0 == QMessageBox::question(this, tr("Nero AAC Notifications"), NOBR(tr("Do you really want to disable all Nero AAC Encoder notifications?")), tr("Yes"), tr("No"), QString(), 1))
1884 QMessageBox::information(this, tr("Nero AAC Notifications"), NOBR(tr("All Nero AAC Encoder notifications have been disabled.")));
1885 m_settings->neroAacNotificationsEnabled(false);
1887 else
1889 m_settings->neroAacNotificationsEnabled(true);
1892 else
1894 QMessageBox::information(this, tr("Nero AAC Notifications"), NOBR(tr("The Nero AAC Encoder notifications have been re-enabled.")));
1895 m_settings->neroAacNotificationsEnabled(true);
1898 ui->actionDisableNeroAacNotifications->setChecked(!m_settings->neroAacNotificationsEnabled());
1902 * Disable slow startup action
1904 void MainWindow::disableSlowStartupNotificationsActionTriggered(bool checked)
1906 if(checked)
1908 if(0 == QMessageBox::question(this, tr("Slow Startup Notifications"), NOBR(tr("Do you really want to disable the slow startup notifications?")), tr("Yes"), tr("No"), QString(), 1))
1910 QMessageBox::information(this, tr("Slow Startup Notifications"), NOBR(tr("The slow startup notifications have been disabled.")));
1911 m_settings->antivirNotificationsEnabled(false);
1913 else
1915 m_settings->antivirNotificationsEnabled(true);
1918 else
1920 QMessageBox::information(this, tr("Slow Startup Notifications"), NOBR(tr("The slow startup notifications have been re-enabled.")));
1921 m_settings->antivirNotificationsEnabled(true);
1924 ui->actionDisableSlowStartupNotifications->setChecked(!m_settings->antivirNotificationsEnabled());
1928 * Import a Cue Sheet file
1930 void MainWindow::importCueSheetActionTriggered(bool checked)
1932 ABORT_IF_BUSY;
1934 TEMP_HIDE_DROPBOX
1936 while(true)
1938 int result = 0;
1939 QString selectedCueFile;
1941 if(lamexp_themes_enabled())
1943 selectedCueFile = QFileDialog::getOpenFileName(this, tr("Open Cue Sheet"), m_settings->mostRecentInputPath(), QString("%1 (*.cue)").arg(tr("Cue Sheet File")));
1945 else
1947 QFileDialog dialog(this, tr("Open Cue Sheet"));
1948 dialog.setFileMode(QFileDialog::ExistingFile);
1949 dialog.setNameFilter(QString("%1 (*.cue)").arg(tr("Cue Sheet File")));
1950 dialog.setDirectory(m_settings->mostRecentInputPath());
1951 if(dialog.exec())
1953 selectedCueFile = dialog.selectedFiles().first();
1957 if(!selectedCueFile.isEmpty())
1959 m_settings->mostRecentInputPath(QFileInfo(selectedCueFile).canonicalPath());
1960 CueImportDialog *cueImporter = new CueImportDialog(this, m_fileListModel, selectedCueFile, m_settings);
1961 result = cueImporter->exec();
1962 LAMEXP_DELETE(cueImporter);
1965 if(result != (-1)) break;
1971 * Show the "drop box" widget
1973 void MainWindow::showDropBoxWidgetActionTriggered(bool checked)
1975 m_settings->dropBoxWidgetEnabled(true);
1977 if(!m_dropBox->isVisible())
1979 m_dropBox->show();
1982 lamexp_blink_window(m_dropBox);
1986 * Check for beta (pre-release) updates
1988 void MainWindow::checkForBetaUpdatesActionTriggered(bool checked)
1990 bool checkUpdatesNow = false;
1992 if(checked)
1994 if(0 == QMessageBox::question(this, tr("Beta Updates"), NOBR(tr("Do you really want LameXP to check for Beta (pre-release) updates?")), tr("Yes"), tr("No"), QString(), 1))
1996 if(0 == QMessageBox::information(this, tr("Beta Updates"), NOBR(tr("LameXP will check for Beta (pre-release) updates from now on.")), tr("Check Now"), tr("Discard")))
1998 checkUpdatesNow = true;
2000 m_settings->autoUpdateCheckBeta(true);
2002 else
2004 m_settings->autoUpdateCheckBeta(false);
2007 else
2009 QMessageBox::information(this, tr("Beta Updates"), NOBR(tr("LameXP will <i>not</i> check for Beta (pre-release) updates from now on.")));
2010 m_settings->autoUpdateCheckBeta(false);
2013 ui->actionCheckForBetaUpdates->setChecked(m_settings->autoUpdateCheckBeta());
2015 if(checkUpdatesNow)
2017 if(checkForUpdates())
2019 QApplication::quit();
2025 * Hibernate computer action
2027 void MainWindow::hibernateComputerActionTriggered(bool checked)
2029 if(checked)
2031 if(0 == QMessageBox::question(this, tr("Hibernate Computer"), NOBR(tr("Do you really want the computer to be hibernated on shutdown?")), tr("Yes"), tr("No"), QString(), 1))
2033 QMessageBox::information(this, tr("Hibernate Computer"), NOBR(tr("LameXP will hibernate the computer on shutdown from now on.")));
2034 m_settings->hibernateComputer(true);
2036 else
2038 m_settings->hibernateComputer(false);
2041 else
2043 QMessageBox::information(this, tr("Hibernate Computer"), NOBR(tr("LameXP will <i>not</i> hibernate the computer on shutdown from now on.")));
2044 m_settings->hibernateComputer(false);
2047 ui->actionHibernateComputer->setChecked(m_settings->hibernateComputer());
2051 * Disable shell integration action
2053 void MainWindow::disableShellIntegrationActionTriggered(bool checked)
2055 if(checked)
2057 if(0 == QMessageBox::question(this, tr("Shell Integration"), NOBR(tr("Do you really want to disable the LameXP shell integration?")), tr("Yes"), tr("No"), QString(), 1))
2059 ShellIntegration::remove();
2060 QMessageBox::information(this, tr("Shell Integration"), NOBR(tr("The LameXP shell integration has been disabled.")));
2061 m_settings->shellIntegrationEnabled(false);
2063 else
2065 m_settings->shellIntegrationEnabled(true);
2068 else
2070 ShellIntegration::install();
2071 QMessageBox::information(this, tr("Shell Integration"), NOBR(tr("The LameXP shell integration has been re-enabled.")));
2072 m_settings->shellIntegrationEnabled(true);
2075 ui->actionDisableShellIntegration->setChecked(!m_settings->shellIntegrationEnabled());
2077 if(lamexp_portable_mode() && ui->actionDisableShellIntegration->isChecked())
2079 ui->actionDisableShellIntegration->setEnabled(false);
2083 // =========================================================
2084 // Help menu slots
2085 // =========================================================
2088 * Visit homepage action
2090 void MainWindow::visitHomepageActionActivated(void)
2092 if(QAction *action = dynamic_cast<QAction*>(QObject::sender()))
2094 if(action->data().isValid() && (action->data().type() == QVariant::String))
2096 QDesktopServices::openUrl(QUrl(action->data().toString()));
2102 * Show document
2104 void MainWindow::documentActionActivated(void)
2106 if(QAction *action = dynamic_cast<QAction*>(QObject::sender()))
2108 if(action->data().isValid() && (action->data().type() == QVariant::String))
2110 QFileInfo document(action->data().toString());
2111 QFileInfo resource(QString(":/doc/%1.html").arg(document.baseName()));
2112 if(document.exists() && document.isFile() && (document.size() == resource.size()))
2114 QDesktopServices::openUrl(QUrl::fromLocalFile(document.canonicalFilePath()));
2116 else
2118 QFile source(resource.filePath());
2119 QFile output(QString("%1/%2.%3.html").arg(lamexp_temp_folder2(), document.baseName(), lamexp_rand_str().left(8)));
2120 if(source.open(QIODevice::ReadOnly) && output.open(QIODevice::ReadWrite))
2122 output.write(source.readAll());
2123 action->setData(output.fileName());
2124 source.close();
2125 output.close();
2126 QDesktopServices::openUrl(QUrl::fromLocalFile(output.fileName()));
2134 * Check for updates action
2136 void MainWindow::checkUpdatesActionActivated(void)
2138 ABORT_IF_BUSY;
2139 bool bFlag = false;
2141 TEMP_HIDE_DROPBOX
2143 bFlag = checkForUpdates();
2146 if(bFlag)
2148 QApplication::quit();
2152 // =========================================================
2153 // Source file slots
2154 // =========================================================
2157 * Add file(s) button
2159 void MainWindow::addFilesButtonClicked(void)
2161 ABORT_IF_BUSY;
2163 TEMP_HIDE_DROPBOX
2165 if(lamexp_themes_enabled())
2167 QStringList fileTypeFilters = DecoderRegistry::getSupportedTypes();
2168 QStringList selectedFiles = QFileDialog::getOpenFileNames(this, tr("Add file(s)"), m_settings->mostRecentInputPath(), fileTypeFilters.join(";;"));
2169 if(!selectedFiles.isEmpty())
2171 m_settings->mostRecentInputPath(QFileInfo(selectedFiles.first()).canonicalPath());
2172 addFiles(selectedFiles);
2175 else
2177 QFileDialog dialog(this, tr("Add file(s)"));
2178 QStringList fileTypeFilters = DecoderRegistry::getSupportedTypes();
2179 dialog.setFileMode(QFileDialog::ExistingFiles);
2180 dialog.setNameFilter(fileTypeFilters.join(";;"));
2181 dialog.setDirectory(m_settings->mostRecentInputPath());
2182 if(dialog.exec())
2184 QStringList selectedFiles = dialog.selectedFiles();
2185 if(!selectedFiles.isEmpty())
2187 m_settings->mostRecentInputPath(QFileInfo(selectedFiles.first()).canonicalPath());
2188 addFiles(selectedFiles);
2196 * Open folder action
2198 void MainWindow::openFolderActionActivated(void)
2200 ABORT_IF_BUSY;
2201 QString selectedFolder;
2203 if(QAction *action = dynamic_cast<QAction*>(QObject::sender()))
2205 TEMP_HIDE_DROPBOX
2207 if(lamexp_themes_enabled())
2209 selectedFolder = QFileDialog::getExistingDirectory(this, tr("Add Folder"), m_settings->mostRecentInputPath());
2211 else
2213 QFileDialog dialog(this, tr("Add Folder"));
2214 dialog.setFileMode(QFileDialog::DirectoryOnly);
2215 dialog.setDirectory(m_settings->mostRecentInputPath());
2216 if(dialog.exec())
2218 selectedFolder = dialog.selectedFiles().first();
2222 if(!selectedFolder.isEmpty())
2224 m_settings->mostRecentInputPath(QDir(selectedFolder).canonicalPath());
2225 addFolder(selectedFolder, action->data().toBool());
2232 * Remove file button
2234 void MainWindow::removeFileButtonClicked(void)
2236 if(ui->sourceFileView->currentIndex().isValid())
2238 int iRow = ui->sourceFileView->currentIndex().row();
2239 m_fileListModel->removeFile(ui->sourceFileView->currentIndex());
2240 ui->sourceFileView->selectRow(iRow < m_fileListModel->rowCount() ? iRow : m_fileListModel->rowCount()-1);
2245 * Clear files button
2247 void MainWindow::clearFilesButtonClicked(void)
2249 m_fileListModel->clearFiles();
2253 * Move file up button
2255 void MainWindow::fileUpButtonClicked(void)
2257 if(ui->sourceFileView->currentIndex().isValid())
2259 int iRow = ui->sourceFileView->currentIndex().row() - 1;
2260 m_fileListModel->moveFile(ui->sourceFileView->currentIndex(), -1);
2261 ui->sourceFileView->selectRow(iRow >= 0 ? iRow : 0);
2266 * Move file down button
2268 void MainWindow::fileDownButtonClicked(void)
2270 if(ui->sourceFileView->currentIndex().isValid())
2272 int iRow = ui->sourceFileView->currentIndex().row() + 1;
2273 m_fileListModel->moveFile(ui->sourceFileView->currentIndex(), 1);
2274 ui->sourceFileView->selectRow(iRow < m_fileListModel->rowCount() ? iRow : m_fileListModel->rowCount()-1);
2279 * Show details button
2281 void MainWindow::showDetailsButtonClicked(void)
2283 ABORT_IF_BUSY;
2285 int iResult = 0;
2286 MetaInfoDialog *metaInfoDialog = new MetaInfoDialog(this);
2287 QModelIndex index = ui->sourceFileView->currentIndex();
2289 while(index.isValid())
2291 if(iResult > 0)
2293 index = m_fileListModel->index(index.row() + 1, index.column());
2294 ui->sourceFileView->selectRow(index.row());
2296 if(iResult < 0)
2298 index = m_fileListModel->index(index.row() - 1, index.column());
2299 ui->sourceFileView->selectRow(index.row());
2302 AudioFileModel &file = (*m_fileListModel)[index];
2303 TEMP_HIDE_DROPBOX
2305 iResult = metaInfoDialog->exec(file, index.row() > 0, index.row() < m_fileListModel->rowCount() - 1);
2308 if(iResult == INT_MAX)
2310 m_metaInfoModel->assignInfoFrom(file);
2311 ui->tabWidget->setCurrentIndex(ui->tabWidget->indexOf(ui->tabMetaData));
2312 break;
2315 if(!iResult) break;
2318 LAMEXP_DELETE(metaInfoDialog);
2319 QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
2320 sourceFilesScrollbarMoved(0);
2324 * Show context menu for source files
2326 void MainWindow::sourceFilesContextMenu(const QPoint &pos)
2328 QAbstractScrollArea *scrollArea = dynamic_cast<QAbstractScrollArea*>(QObject::sender());
2329 QWidget *sender = scrollArea ? scrollArea->viewport() : dynamic_cast<QWidget*>(QObject::sender());
2331 if(sender)
2333 if(pos.x() <= sender->width() && pos.y() <= sender->height() && pos.x() >= 0 && pos.y() >= 0)
2335 m_sourceFilesContextMenu->popup(sender->mapToGlobal(pos));
2341 * Scrollbar of source files moved
2343 void MainWindow::sourceFilesScrollbarMoved(int)
2345 ui->sourceFileView->resizeColumnToContents(0);
2349 * Open selected file in external player
2351 void MainWindow::previewContextActionTriggered(void)
2353 QModelIndex index = ui->sourceFileView->currentIndex();
2354 if(!index.isValid())
2356 return;
2359 if(!lamexp_open_media_file(m_fileListModel->getFile(index).filePath()))
2361 qDebug("Player not found, falling back to default application...");
2362 QDesktopServices::openUrl(QString("file:///").append(m_fileListModel->getFile(index).filePath()));
2367 * Find selected file in explorer
2369 void MainWindow::findFileContextActionTriggered(void)
2371 QModelIndex index = ui->sourceFileView->currentIndex();
2372 if(index.isValid())
2374 QString systemRootPath;
2376 QDir systemRoot(lamexp_known_folder(lamexp_folder_systemfolder));
2377 if(systemRoot.exists() && systemRoot.cdUp())
2379 systemRootPath = systemRoot.canonicalPath();
2382 if(!systemRootPath.isEmpty())
2384 QFileInfo explorer(QString("%1/explorer.exe").arg(systemRootPath));
2385 if(explorer.exists() && explorer.isFile())
2387 QProcess::execute(explorer.canonicalFilePath(), QStringList() << "/select," << QDir::toNativeSeparators(m_fileListModel->getFile(index).filePath()));
2388 return;
2391 else
2393 qWarning("SystemRoot directory could not be detected!");
2399 * Add all pending files
2401 void MainWindow::handleDelayedFiles(void)
2403 m_delayedFileTimer->stop();
2405 if(m_delayedFileList->isEmpty())
2407 return;
2410 if(m_banner->isVisible())
2412 m_delayedFileTimer->start(5000);
2413 return;
2416 QStringList selectedFiles;
2417 ui->tabWidget->setCurrentIndex(0);
2419 while(!m_delayedFileList->isEmpty())
2421 QFileInfo currentFile = QFileInfo(m_delayedFileList->takeFirst());
2422 if(!currentFile.exists() || !currentFile.isFile())
2424 continue;
2426 selectedFiles << currentFile.canonicalFilePath();
2429 addFiles(selectedFiles);
2433 * Export Meta tags to CSV file
2435 void MainWindow::exportCsvContextActionTriggered(void)
2437 TEMP_HIDE_DROPBOX
2439 QString selectedCsvFile;
2441 if(lamexp_themes_enabled())
2443 selectedCsvFile = QFileDialog::getSaveFileName(this, tr("Save CSV file"), m_settings->mostRecentInputPath(), QString("%1 (*.csv)").arg(tr("CSV File")));
2445 else
2447 QFileDialog dialog(this, tr("Save CSV file"));
2448 dialog.setFileMode(QFileDialog::AnyFile);
2449 dialog.setAcceptMode(QFileDialog::AcceptSave);
2450 dialog.setNameFilter(QString("%1 (*.csv)").arg(tr("CSV File")));
2451 dialog.setDirectory(m_settings->mostRecentInputPath());
2452 if(dialog.exec())
2454 selectedCsvFile = dialog.selectedFiles().first();
2458 if(!selectedCsvFile.isEmpty())
2460 m_settings->mostRecentInputPath(QFileInfo(selectedCsvFile).canonicalPath());
2461 switch(m_fileListModel->exportToCsv(selectedCsvFile))
2463 case FileListModel::CsvError_NoTags:
2464 QMessageBox::critical(this, tr("CSV Export"), NOBR(tr("Sorry, there are no meta tags that can be exported!")));
2465 break;
2466 case FileListModel::CsvError_FileOpen:
2467 QMessageBox::critical(this, tr("CSV Export"), NOBR(tr("Sorry, failed to open CSV file for writing!")));
2468 break;
2469 case FileListModel::CsvError_FileWrite:
2470 QMessageBox::critical(this, tr("CSV Export"), NOBR(tr("Sorry, failed to write to the CSV file!")));
2471 break;
2472 case FileListModel::CsvError_OK:
2473 QMessageBox::information(this, tr("CSV Export"), NOBR(tr("The CSV files was created successfully!")));
2474 break;
2475 default:
2476 qWarning("exportToCsv: Unknown return code!");
2484 * Import Meta tags from CSV file
2486 void MainWindow::importCsvContextActionTriggered(void)
2488 TEMP_HIDE_DROPBOX
2490 QString selectedCsvFile;
2492 if(lamexp_themes_enabled())
2494 selectedCsvFile = QFileDialog::getOpenFileName(this, tr("Open CSV file"), m_settings->mostRecentInputPath(), QString("%1 (*.csv)").arg(tr("CSV File")));
2496 else
2498 QFileDialog dialog(this, tr("Open CSV file"));
2499 dialog.setFileMode(QFileDialog::ExistingFile);
2500 dialog.setNameFilter(QString("%1 (*.csv)").arg(tr("CSV File")));
2501 dialog.setDirectory(m_settings->mostRecentInputPath());
2502 if(dialog.exec())
2504 selectedCsvFile = dialog.selectedFiles().first();
2508 if(!selectedCsvFile.isEmpty())
2510 m_settings->mostRecentInputPath(QFileInfo(selectedCsvFile).canonicalPath());
2511 switch(m_fileListModel->importFromCsv(this, selectedCsvFile))
2513 case FileListModel::CsvError_FileOpen:
2514 QMessageBox::critical(this, tr("CSV Import"), NOBR(tr("Sorry, failed to open CSV file for reading!")));
2515 break;
2516 case FileListModel::CsvError_FileRead:
2517 QMessageBox::critical(this, tr("CSV Import"), NOBR(tr("Sorry, failed to read from the CSV file!")));
2518 break;
2519 case FileListModel::CsvError_NoTags:
2520 QMessageBox::critical(this, tr("CSV Import"), NOBR(tr("Sorry, the CSV file does not contain any known fields!")));
2521 break;
2522 case FileListModel::CsvError_Incomplete:
2523 QMessageBox::warning(this, tr("CSV Import"), NOBR(tr("CSV file is incomplete. Not all files were updated!")));
2524 break;
2525 case FileListModel::CsvError_OK:
2526 QMessageBox::information(this, tr("CSV Import"), NOBR(tr("The CSV files was imported successfully!")));
2527 break;
2528 case FileListModel::CsvError_Aborted:
2529 /* User aborted, ignore! */
2530 break;
2531 default:
2532 qWarning("exportToCsv: Unknown return code!");
2539 * Show or hide Drag'n'Drop notice after model reset
2541 void MainWindow::sourceModelChanged(void)
2543 m_dropNoteLabel->setVisible(m_fileListModel->rowCount() <= 0);
2546 // =========================================================
2547 // Output folder slots
2548 // =========================================================
2551 * Output folder changed (mouse clicked)
2553 void MainWindow::outputFolderViewClicked(const QModelIndex &index)
2555 if(index.isValid() && (ui->outputFolderView->currentIndex() != index))
2557 ui->outputFolderView->setCurrentIndex(index);
2560 if(m_fileSystemModel && index.isValid())
2562 QString selectedDir = m_fileSystemModel->filePath(index);
2563 if(selectedDir.length() < 3) selectedDir.append(QDir::separator());
2564 ui->outputFolderLabel->setText(QDir::toNativeSeparators(selectedDir));
2565 ui->outputFolderLabel->setToolTip(ui->outputFolderLabel->text());
2566 m_settings->outputDir(selectedDir);
2568 else
2570 ui->outputFolderLabel->setText(QDir::toNativeSeparators(m_settings->outputDir()));
2571 ui->outputFolderLabel->setToolTip(ui->outputFolderLabel->text());
2576 * Output folder changed (mouse moved)
2578 void MainWindow::outputFolderViewMoved(const QModelIndex &index)
2580 if(QApplication::mouseButtons() & Qt::LeftButton)
2582 outputFolderViewClicked(index);
2587 * Goto desktop button
2589 void MainWindow::gotoDesktopButtonClicked(void)
2591 if(!m_fileSystemModel)
2593 qWarning("File system model not initialized yet!");
2594 return;
2597 QString desktopPath = QDesktopServices::storageLocation(QDesktopServices::DesktopLocation);
2599 if(!desktopPath.isEmpty() && QDir(desktopPath).exists())
2601 ui->outputFolderView->setCurrentIndex(m_fileSystemModel->index(desktopPath));
2602 outputFolderViewClicked(ui->outputFolderView->currentIndex());
2603 CENTER_CURRENT_OUTPUT_FOLDER_DELAYED;
2605 else
2607 ui->buttonGotoDesktop->setEnabled(false);
2612 * Goto home folder button
2614 void MainWindow::gotoHomeFolderButtonClicked(void)
2616 if(!m_fileSystemModel)
2618 qWarning("File system model not initialized yet!");
2619 return;
2622 QString homePath = QDesktopServices::storageLocation(QDesktopServices::HomeLocation);
2624 if(!homePath.isEmpty() && QDir(homePath).exists())
2626 ui->outputFolderView->setCurrentIndex(m_fileSystemModel->index(homePath));
2627 outputFolderViewClicked(ui->outputFolderView->currentIndex());
2628 CENTER_CURRENT_OUTPUT_FOLDER_DELAYED;
2630 else
2632 ui->buttonGotoHome->setEnabled(false);
2637 * Goto music folder button
2639 void MainWindow::gotoMusicFolderButtonClicked(void)
2641 if(!m_fileSystemModel)
2643 qWarning("File system model not initialized yet!");
2644 return;
2647 QString musicPath = QDesktopServices::storageLocation(QDesktopServices::MusicLocation);
2649 if(!musicPath.isEmpty() && QDir(musicPath).exists())
2651 ui->outputFolderView->setCurrentIndex(m_fileSystemModel->index(musicPath));
2652 outputFolderViewClicked(ui->outputFolderView->currentIndex());
2653 CENTER_CURRENT_OUTPUT_FOLDER_DELAYED;
2655 else
2657 ui->buttonGotoMusic->setEnabled(false);
2662 * Goto music favorite output folder
2664 void MainWindow::gotoFavoriteFolder(void)
2666 if(!m_fileSystemModel)
2668 qWarning("File system model not initialized yet!");
2669 return;
2672 QAction *item = dynamic_cast<QAction*>(QObject::sender());
2674 if(item)
2676 QDir path(item->data().toString());
2677 if(path.exists())
2679 ui->outputFolderView->setCurrentIndex(m_fileSystemModel->index(path.canonicalPath()));
2680 outputFolderViewClicked(ui->outputFolderView->currentIndex());
2681 CENTER_CURRENT_OUTPUT_FOLDER_DELAYED;
2683 else
2685 lamexp_beep(lamexp_beep_error);
2686 m_outputFolderFavoritesMenu->removeAction(item);
2687 item->deleteLater();
2693 * Make folder button
2695 void MainWindow::makeFolderButtonClicked(void)
2697 ABORT_IF_BUSY;
2699 if(!m_fileSystemModel)
2701 qWarning("File system model not initialized yet!");
2702 return;
2705 QDir basePath(m_fileSystemModel->fileInfo(ui->outputFolderView->currentIndex()).absoluteFilePath());
2706 QString suggestedName = tr("New Folder");
2708 if(!m_metaData->fileArtist().isEmpty() && !m_metaData->fileAlbum().isEmpty())
2710 suggestedName = QString("%1 - %2").arg(m_metaData->fileArtist(), m_metaData->fileAlbum());
2712 else if(!m_metaData->fileArtist().isEmpty())
2714 suggestedName = m_metaData->fileArtist();
2716 else if(!m_metaData->fileAlbum().isEmpty())
2718 suggestedName = m_metaData->fileAlbum();
2720 else
2722 for(int i = 0; i < m_fileListModel->rowCount(); i++)
2724 AudioFileModel audioFile = m_fileListModel->getFile(m_fileListModel->index(i, 0));
2725 if(!audioFile.fileAlbum().isEmpty() || !audioFile.fileArtist().isEmpty())
2727 if(!audioFile.fileArtist().isEmpty() && !audioFile.fileAlbum().isEmpty())
2729 suggestedName = QString("%1 - %2").arg(audioFile.fileArtist(), audioFile.fileAlbum());
2731 else if(!audioFile.fileArtist().isEmpty())
2733 suggestedName = audioFile.fileArtist();
2735 else if(!audioFile.fileAlbum().isEmpty())
2737 suggestedName = audioFile.fileAlbum();
2739 break;
2744 suggestedName = lamexp_clean_filename(suggestedName);
2746 while(true)
2748 bool bApplied = false;
2749 QString folderName = QInputDialog::getText(this, tr("New Folder"), tr("Enter the name of the new folder:").leftJustified(96, ' '), QLineEdit::Normal, suggestedName, &bApplied, Qt::WindowStaysOnTopHint).simplified();
2751 if(bApplied)
2753 folderName = lamexp_clean_filepath(folderName.simplified());
2755 if(folderName.isEmpty())
2757 lamexp_beep(lamexp_beep_error);
2758 continue;
2761 int i = 1;
2762 QString newFolder = folderName;
2764 while(basePath.exists(newFolder))
2766 newFolder = QString(folderName).append(QString().sprintf(" (%d)", ++i));
2769 if(basePath.mkpath(newFolder))
2771 QDir createdDir = basePath;
2772 if(createdDir.cd(newFolder))
2774 QModelIndex newIndex = m_fileSystemModel->index(createdDir.canonicalPath());
2775 ui->outputFolderView->setCurrentIndex(newIndex);
2776 outputFolderViewClicked(newIndex);
2777 CENTER_CURRENT_OUTPUT_FOLDER_DELAYED;
2780 else
2782 QMessageBox::warning(this, tr("Failed to create folder"), QString("%1<br><nobr>%2</nobr><br><br>%3").arg(tr("The new folder could not be created:"), basePath.absoluteFilePath(newFolder), tr("Drive is read-only or insufficient access rights!")));
2785 break;
2790 * Output to source dir changed
2792 void MainWindow::saveToSourceFolderChanged(void)
2794 m_settings->outputToSourceDir(ui->saveToSourceFolderCheckBox->isChecked());
2798 * Prepend relative source file path to output file name changed
2800 void MainWindow::prependRelativePathChanged(void)
2802 m_settings->prependRelativeSourcePath(ui->prependRelativePathCheckBox->isChecked());
2806 * Show context menu for output folder
2808 void MainWindow::outputFolderContextMenu(const QPoint &pos)
2810 QAbstractScrollArea *scrollArea = dynamic_cast<QAbstractScrollArea*>(QObject::sender());
2811 QWidget *sender = scrollArea ? scrollArea->viewport() : dynamic_cast<QWidget*>(QObject::sender());
2813 if(pos.x() <= sender->width() && pos.y() <= sender->height() && pos.x() >= 0 && pos.y() >= 0)
2815 m_outputFolderContextMenu->popup(sender->mapToGlobal(pos));
2820 * Show selected folder in explorer
2822 void MainWindow::showFolderContextActionTriggered(void)
2824 if(!m_fileSystemModel)
2826 qWarning("File system model not initialized yet!");
2827 return;
2830 QString path = QDir::toNativeSeparators(m_fileSystemModel->filePath(ui->outputFolderView->currentIndex()));
2831 if(!path.endsWith(QDir::separator())) path.append(QDir::separator());
2832 lamexp_exec_shell(this, path, true);
2836 * Refresh the directory outline
2838 void MainWindow::refreshFolderContextActionTriggered(void)
2840 //force re-initialization
2841 QTimer::singleShot(0, this, SLOT(initOutputFolderModel()));
2845 * Go one directory up
2847 void MainWindow::goUpFolderContextActionTriggered(void)
2849 QModelIndex current = ui->outputFolderView->currentIndex();
2850 if(current.isValid())
2852 QModelIndex parent = current.parent();
2853 if(parent.isValid())
2856 ui->outputFolderView->setCurrentIndex(parent);
2857 outputFolderViewClicked(parent);
2859 else
2861 lamexp_beep(lamexp_beep_warning);
2863 CENTER_CURRENT_OUTPUT_FOLDER_DELAYED;
2868 * Add current folder to favorites
2870 void MainWindow::addFavoriteFolderActionTriggered(void)
2872 QString path = m_fileSystemModel->filePath(ui->outputFolderView->currentIndex());
2873 QStringList favorites = m_settings->favoriteOutputFolders().split("|", QString::SkipEmptyParts);
2875 if(!favorites.contains(path, Qt::CaseInsensitive))
2877 favorites.append(path);
2878 while(favorites.count() > 6) favorites.removeFirst();
2880 else
2882 lamexp_beep(lamexp_beep_warning);
2885 m_settings->favoriteOutputFolders(favorites.join("|"));
2886 refreshFavorites();
2890 * Output folder edit finished
2892 void MainWindow::outputFolderEditFinished(void)
2894 if(ui->outputFolderEdit->isHidden())
2896 return; //Not currently in edit mode!
2899 bool ok = false;
2901 QString text = QDir::fromNativeSeparators(ui->outputFolderEdit->text().trimmed());
2902 while(text.startsWith('"') || text.startsWith('/')) text = text.right(text.length() - 1).trimmed();
2903 while(text.endsWith('"') || text.endsWith('/')) text = text.left(text.length() - 1).trimmed();
2905 static const char *str = "?*<>|\"";
2906 for(size_t i = 0; str[i]; i++) text.replace(str[i], "_");
2908 if(!((text.length() >= 2) && text.at(0).isLetter() && text.at(1) == QChar(':')))
2910 text = QString("%1/%2").arg(QDir::fromNativeSeparators(ui->outputFolderLabel->text()), text);
2913 if(text.length() == 2) text += "/"; /* "X:" => "X:/" */
2915 while(text.length() > 2)
2917 QFileInfo info(text);
2918 if(info.exists() && info.isDir())
2920 QModelIndex index = m_fileSystemModel->index(QFileInfo(info.canonicalFilePath()).absoluteFilePath());
2921 if(index.isValid())
2923 ok = true;
2924 ui->outputFolderView->setCurrentIndex(index);
2925 outputFolderViewClicked(index);
2926 break;
2929 else if(info.exists() && info.isFile())
2931 QModelIndex index = m_fileSystemModel->index(QFileInfo(info.canonicalPath()).absoluteFilePath());
2932 if(index.isValid())
2934 ok = true;
2935 ui->outputFolderView->setCurrentIndex(index);
2936 outputFolderViewClicked(index);
2937 break;
2941 text = text.left(text.length() - 1).trimmed();
2944 ui->outputFolderEdit->setVisible(false);
2945 ui->outputFolderLabel->setVisible(true);
2946 ui->outputFolderView->setEnabled(true);
2948 if(!ok) lamexp_beep(lamexp_beep_error);
2949 CENTER_CURRENT_OUTPUT_FOLDER_DELAYED;
2953 * Initialize file system model
2955 void MainWindow::initOutputFolderModel(void)
2957 if(m_outputFolderNoteBox->isHidden())
2959 m_outputFolderNoteBox->show();
2960 m_outputFolderNoteBox->repaint();
2961 m_outputFolderViewInitCounter = 4;
2963 if(m_fileSystemModel)
2965 SET_MODEL(ui->outputFolderView, NULL);
2966 LAMEXP_DELETE(m_fileSystemModel);
2967 ui->outputFolderView->repaint();
2970 if(m_fileSystemModel = new QFileSystemModelEx())
2972 m_fileSystemModel->installEventFilter(this);
2973 connect(m_fileSystemModel, SIGNAL(directoryLoaded(QString)), this, SLOT(outputFolderDirectoryLoaded(QString)));
2974 connect(m_fileSystemModel, SIGNAL(rowsInserted(QModelIndex,int,int)), this, SLOT(outputFolderRowsInserted(QModelIndex,int,int)));
2976 SET_MODEL(ui->outputFolderView, m_fileSystemModel);
2977 ui->outputFolderView->header()->setStretchLastSection(true);
2978 ui->outputFolderView->header()->hideSection(1);
2979 ui->outputFolderView->header()->hideSection(2);
2980 ui->outputFolderView->header()->hideSection(3);
2982 m_fileSystemModel->setRootPath("");
2983 QModelIndex index = m_fileSystemModel->index(m_settings->outputDir());
2984 if(index.isValid()) ui->outputFolderView->setCurrentIndex(index);
2985 outputFolderViewClicked(ui->outputFolderView->currentIndex());
2988 CENTER_CURRENT_OUTPUT_FOLDER_DELAYED;
2989 QTimer::singleShot(125, this, SLOT(initOutputFolderModel_doAsync()));
2994 * Initialize file system model (do NOT call this one directly!)
2996 void MainWindow::initOutputFolderModel_doAsync(void)
2998 if(m_outputFolderViewInitCounter > 0)
3000 m_outputFolderViewInitCounter--;
3001 QTimer::singleShot(125, this, SLOT(initOutputFolderModel_doAsync()));
3003 else
3005 QTimer::singleShot(125, m_outputFolderNoteBox, SLOT(hide()));
3006 ui->outputFolderView->setFocus();
3011 * Center current folder in view
3013 void MainWindow::centerOutputFolderModel(void)
3015 if(ui->outputFolderView->isVisible())
3017 centerOutputFolderModel_doAsync();
3018 QTimer::singleShot(125, this, SLOT(centerOutputFolderModel_doAsync()));
3023 * Center current folder in view (do NOT call this one directly!)
3025 void MainWindow::centerOutputFolderModel_doAsync(void)
3027 if(ui->outputFolderView->isVisible())
3029 m_outputFolderViewCentering = true;
3030 const QModelIndex index = ui->outputFolderView->currentIndex();
3031 ui->outputFolderView->scrollTo(index, QAbstractItemView::PositionAtCenter);
3032 ui->outputFolderView->setFocus();
3037 * File system model asynchronously loaded a dir
3039 void MainWindow::outputFolderDirectoryLoaded(const QString &path)
3041 if(m_outputFolderViewCentering)
3043 CENTER_CURRENT_OUTPUT_FOLDER_DELAYED;
3048 * File system model inserted new items
3050 void MainWindow::outputFolderRowsInserted(const QModelIndex &parent, int start, int end)
3052 if(m_outputFolderViewCentering)
3054 CENTER_CURRENT_OUTPUT_FOLDER_DELAYED;
3059 * Directory view item was expanded by user
3061 void MainWindow::outputFolderItemExpanded(const QModelIndex &item)
3063 //We need to stop centering as soon as the user has expanded an item manually!
3064 m_outputFolderViewCentering = false;
3068 * View event for output folder control occurred
3070 void MainWindow::outputFolderViewEventOccurred(QWidget *sender, QEvent *event)
3072 switch(event->type())
3074 case QEvent::Enter:
3075 case QEvent::Leave:
3076 case QEvent::KeyPress:
3077 case QEvent::KeyRelease:
3078 case QEvent::FocusIn:
3079 case QEvent::FocusOut:
3080 case QEvent::TouchEnd:
3081 outputFolderViewClicked(ui->outputFolderView->currentIndex());
3082 break;
3087 * Mouse event for output folder control occurred
3089 void MainWindow::outputFolderMouseEventOccurred(QWidget *sender, QEvent *event)
3091 QMouseEvent *mouseEvent = dynamic_cast<QMouseEvent*>(event);
3092 QPoint pos = (mouseEvent) ? mouseEvent->pos() : QPoint();
3094 if(sender == ui->outputFolderLabel)
3096 switch(event->type())
3098 case QEvent::MouseButtonPress:
3099 if(mouseEvent && (mouseEvent->button() == Qt::LeftButton))
3101 QString path = ui->outputFolderLabel->text();
3102 if(!path.endsWith(QDir::separator())) path.append(QDir::separator());
3103 lamexp_exec_shell(this, path, true);
3105 break;
3106 case QEvent::Enter:
3107 ui->outputFolderLabel->setForegroundRole(QPalette::Link);
3108 break;
3109 case QEvent::Leave:
3110 ui->outputFolderLabel->setForegroundRole(QPalette::WindowText);
3111 break;
3115 if((sender == ui->outputFoldersFovoritesLabel) || (sender == ui->outputFoldersEditorLabel) || (sender == ui->outputFoldersGoUpLabel))
3117 const type_info &styleType = typeid(*qApp->style());
3118 if((typeid(QPlastiqueStyle) == styleType) || (typeid(QWindowsStyle) == styleType))
3120 switch(event->type())
3122 case QEvent::Enter:
3123 dynamic_cast<QLabel*>(sender)->setFrameShadow(ui->outputFolderView->isEnabled() ? QFrame::Raised : QFrame::Plain);
3124 break;
3125 case QEvent::MouseButtonPress:
3126 dynamic_cast<QLabel*>(sender)->setFrameShadow(ui->outputFolderView->isEnabled() ? QFrame::Sunken : QFrame::Plain);
3127 break;
3128 case QEvent::MouseButtonRelease:
3129 dynamic_cast<QLabel*>(sender)->setFrameShadow(ui->outputFolderView->isEnabled() ? QFrame::Raised : QFrame::Plain);
3130 break;
3131 case QEvent::Leave:
3132 dynamic_cast<QLabel*>(sender)->setFrameShadow(ui->outputFolderView->isEnabled() ? QFrame::Plain : QFrame::Plain);
3133 break;
3136 else
3138 dynamic_cast<QLabel*>(sender)->setFrameShadow(QFrame::Plain);
3141 if((event->type() == QEvent::MouseButtonRelease) && ui->outputFolderView->isEnabled() && (mouseEvent))
3143 if(pos.x() <= sender->width() && pos.y() <= sender->height() && pos.x() >= 0 && pos.y() >= 0 && mouseEvent->button() != Qt::MidButton)
3145 if(sender == ui->outputFoldersFovoritesLabel)
3147 m_outputFolderFavoritesMenu->popup(sender->mapToGlobal(pos));
3149 else if(sender == ui->outputFoldersEditorLabel)
3151 ui->outputFolderView->setEnabled(false);
3152 ui->outputFolderLabel->setVisible(false);
3153 ui->outputFolderEdit->setVisible(true);
3154 ui->outputFolderEdit->setText(ui->outputFolderLabel->text());
3155 ui->outputFolderEdit->selectAll();
3156 ui->outputFolderEdit->setFocus();
3158 else if(sender == ui->outputFoldersGoUpLabel)
3160 QTimer::singleShot(0, this, SLOT(goUpFolderContextActionTriggered()));
3162 else
3164 throw "Oups, this is not supposed to happen!";
3171 // =========================================================
3172 // Metadata tab slots
3173 // =========================================================
3176 * Edit meta button clicked
3178 void MainWindow::editMetaButtonClicked(void)
3180 ABORT_IF_BUSY;
3182 const QModelIndex index = ui->metaDataView->currentIndex();
3184 if(index.isValid())
3186 m_metaInfoModel->editItem(index, this);
3188 if(index.row() == 4)
3190 m_settings->metaInfoPosition(m_metaData->filePosition());
3196 * Reset meta button clicked
3198 void MainWindow::clearMetaButtonClicked(void)
3200 ABORT_IF_BUSY;
3201 m_metaInfoModel->clearData();
3205 * Meta tags enabled changed
3207 void MainWindow::metaTagsEnabledChanged(void)
3209 m_settings->writeMetaTags(ui->writeMetaDataCheckBox->isChecked());
3213 * Playlist enabled changed
3215 void MainWindow::playlistEnabledChanged(void)
3217 m_settings->createPlaylist(ui->generatePlaylistCheckBox->isChecked());
3220 // =========================================================
3221 // Compression tab slots
3222 // =========================================================
3225 * Update encoder
3227 void MainWindow::updateEncoder(int id)
3229 /*qWarning("\nupdateEncoder(%d)", id);*/
3231 m_settings->compressionEncoder(id);
3232 const AbstractEncoderInfo *info = EncoderRegistry::getEncoderInfo(id);
3234 //Update UI controls
3235 ui->radioButtonModeQuality ->setEnabled(info->isModeSupported(SettingsModel::VBRMode));
3236 ui->radioButtonModeAverageBitrate->setEnabled(info->isModeSupported(SettingsModel::ABRMode));
3237 ui->radioButtonConstBitrate ->setEnabled(info->isModeSupported(SettingsModel::CBRMode));
3239 //Initialize checkbox state
3240 if(ui->radioButtonModeQuality->isEnabled()) ui->radioButtonModeQuality->setChecked(true);
3241 else if(ui->radioButtonModeAverageBitrate->isEnabled()) ui->radioButtonModeAverageBitrate->setChecked(true);
3242 else if(ui->radioButtonConstBitrate->isEnabled()) ui->radioButtonConstBitrate->setChecked(true);
3243 else throw "It appears that the encoder does not support *any* RC mode!";
3245 //Apply current RC mode
3246 const int currentRCMode = EncoderRegistry::loadEncoderMode(m_settings, id);
3247 switch(currentRCMode)
3249 case SettingsModel::VBRMode: if(ui->radioButtonModeQuality->isEnabled()) ui->radioButtonModeQuality->setChecked(true); break;
3250 case SettingsModel::ABRMode: if(ui->radioButtonModeAverageBitrate->isEnabled()) ui->radioButtonModeAverageBitrate->setChecked(true); break;
3251 case SettingsModel::CBRMode: if(ui->radioButtonConstBitrate->isEnabled()) ui->radioButtonConstBitrate->setChecked(true); break;
3252 default: throw "updateEncoder(): Unknown rc-mode encountered!";
3255 //Display encoder description
3256 if(const char* description = info->description())
3258 ui->labelEncoderInfo->setVisible(true);
3259 ui->labelEncoderInfo->setText(tr("Current Encoder: %1").arg(QString::fromUtf8(description)));
3261 else
3263 ui->labelEncoderInfo->setVisible(false);
3266 //Update RC mode!
3267 updateRCMode(m_modeButtonGroup->checkedId());
3271 * Update rate-control mode
3273 void MainWindow::updateRCMode(int id)
3275 /*qWarning("updateRCMode(%d)", id);*/
3277 //Store new RC mode
3278 const int currentEncoder = m_encoderButtonGroup->checkedId();
3279 EncoderRegistry::saveEncoderMode(m_settings, currentEncoder, id);
3281 //Fetch encoder info
3282 const AbstractEncoderInfo *info = EncoderRegistry::getEncoderInfo(currentEncoder);
3283 const int valueCount = info->valueCount(id);
3285 //Sanity check
3286 if(!info->isModeSupported(id))
3288 qWarning("Attempting to use an unsupported RC mode (%d) with current encoder (%d)!", id, currentEncoder);
3289 ui->labelBitrate->setText("(ERROR)");
3290 return;
3293 //Update slider min/max values
3294 if(valueCount > 0)
3296 WITH_BLOCKED_SIGNALS(ui->sliderBitrate, setEnabled, true);
3297 WITH_BLOCKED_SIGNALS(ui->sliderBitrate, setMinimum, 0);
3298 WITH_BLOCKED_SIGNALS(ui->sliderBitrate, setMaximum, valueCount-1);
3300 else
3302 WITH_BLOCKED_SIGNALS(ui->sliderBitrate, setEnabled, false);
3303 WITH_BLOCKED_SIGNALS(ui->sliderBitrate, setMinimum, 0);
3304 WITH_BLOCKED_SIGNALS(ui->sliderBitrate, setMaximum, 2);
3307 //Now update bitrate/quality value!
3308 if(valueCount > 0)
3310 const int currentValue = EncoderRegistry::loadEncoderValue(m_settings, currentEncoder, id);
3311 ui->sliderBitrate->setValue(qBound(0, currentValue, valueCount-1));
3312 updateBitrate(qBound(0, currentValue, valueCount-1));
3314 else
3316 ui->sliderBitrate->setValue(1);
3317 updateBitrate(0);
3322 * Update bitrate
3324 void MainWindow::updateBitrate(int value)
3326 /*qWarning("updateBitrate(%d)", value);*/
3328 //Load current encoder and RC mode
3329 const int currentEncoder = m_encoderButtonGroup->checkedId();
3330 const int currentRCMode = m_modeButtonGroup->checkedId();
3332 //Fetch encoder info
3333 const AbstractEncoderInfo *info = EncoderRegistry::getEncoderInfo(currentEncoder);
3334 const int valueCount = info->valueCount(currentRCMode);
3336 //Sanity check
3337 if(!info->isModeSupported(currentRCMode))
3339 qWarning("Attempting to use an unsupported RC mode (%d) with current encoder (%d)!", currentRCMode, currentEncoder);
3340 ui->labelBitrate->setText("(ERROR)");
3341 return;
3344 //Store new bitrate value
3345 if(valueCount > 0)
3347 EncoderRegistry::saveEncoderValue(m_settings, currentEncoder, currentRCMode, qBound(0, value, valueCount-1));
3350 //Update bitrate value
3351 const int displayValue = (valueCount > 0) ? info->valueAt(currentRCMode, qBound(0, value, valueCount-1)) : INT_MAX;
3352 switch(info->valueType(currentRCMode))
3354 case AbstractEncoderInfo::TYPE_BITRATE:
3355 ui->labelBitrate->setText(QString("%1 kbps").arg(QString::number(displayValue)));
3356 break;
3357 case AbstractEncoderInfo::TYPE_APPROX_BITRATE:
3358 ui->labelBitrate->setText(QString("&asymp; %1 kbps").arg(QString::number(displayValue)));
3359 break;
3360 case AbstractEncoderInfo::TYPE_QUALITY_LEVEL:
3361 ui->labelBitrate->setText(tr("Quality Level %1").arg(QString::number(displayValue)));
3362 break;
3363 case AbstractEncoderInfo::TYPE_COMPRESSION_LEVEL:
3364 ui->labelBitrate->setText(tr("Compression %1").arg(QString::number(displayValue)));
3365 break;
3366 case AbstractEncoderInfo::TYPE_UNCOMPRESSED:
3367 ui->labelBitrate->setText(tr("Uncompressed"));
3368 break;
3369 default:
3370 throw "Unknown display value type encountered!";
3371 break;
3376 * Event for compression tab occurred
3378 void MainWindow::compressionTabEventOccurred(QWidget *sender, QEvent *event)
3380 static const QUrl helpUrl("http://lamexp.sourceforge.net/doc/FAQ.html#054010d9");
3382 if((sender == ui->labelCompressionHelp) && (event->type() == QEvent::MouseButtonPress))
3384 QDesktopServices::openUrl(helpUrl);
3386 else if((sender == ui->labelResetEncoders) && (event->type() == QEvent::MouseButtonPress))
3388 if(m_settings->soundsEnabled())
3390 lamexp_play_sound(IDR_WAVE_BLAST, true);
3393 EncoderRegistry::resetAllEncoders(m_settings);
3394 m_settings->compressionEncoder(SettingsModel::MP3Encoder);
3395 ui->radioButtonEncoderMP3->setChecked(true);
3396 QTimer::singleShot(0, this, SLOT(updateEncoder()));
3400 // =========================================================
3401 // Advanced option slots
3402 // =========================================================
3405 * Lame algorithm quality changed
3407 void MainWindow::updateLameAlgoQuality(int value)
3409 QString text;
3411 switch(value)
3413 case 3:
3414 text = tr("Best Quality (Slow)");
3415 break;
3416 case 2:
3417 text = tr("High Quality (Recommended)");
3418 break;
3419 case 1:
3420 text = tr("Acceptable Quality (Fast)");
3421 break;
3422 case 0:
3423 text = tr("Poor Quality (Very Fast)");
3424 break;
3427 if(!text.isEmpty())
3429 m_settings->lameAlgoQuality(value);
3430 ui->labelLameAlgoQuality->setText(text);
3433 bool warning = (value == 0), notice = (value == 3);
3434 ui->labelLameAlgoQualityWarning->setVisible(warning);
3435 ui->labelLameAlgoQualityWarningIcon->setVisible(warning);
3436 ui->labelLameAlgoQualityNotice->setVisible(notice);
3437 ui->labelLameAlgoQualityNoticeIcon->setVisible(notice);
3438 ui->labelLameAlgoQualitySpacer->setVisible(warning || notice);
3442 * Bitrate management endabled/disabled
3444 void MainWindow::bitrateManagementEnabledChanged(bool checked)
3446 m_settings->bitrateManagementEnabled(checked);
3450 * Minimum bitrate has changed
3452 void MainWindow::bitrateManagementMinChanged(int value)
3454 if(value > ui->spinBoxBitrateManagementMax->value())
3456 ui->spinBoxBitrateManagementMin->setValue(ui->spinBoxBitrateManagementMax->value());
3457 m_settings->bitrateManagementMinRate(ui->spinBoxBitrateManagementMax->value());
3459 else
3461 m_settings->bitrateManagementMinRate(value);
3466 * Maximum bitrate has changed
3468 void MainWindow::bitrateManagementMaxChanged(int value)
3470 if(value < ui->spinBoxBitrateManagementMin->value())
3472 ui->spinBoxBitrateManagementMax->setValue(ui->spinBoxBitrateManagementMin->value());
3473 m_settings->bitrateManagementMaxRate(ui->spinBoxBitrateManagementMin->value());
3475 else
3477 m_settings->bitrateManagementMaxRate(value);
3482 * Channel mode has changed
3484 void MainWindow::channelModeChanged(int value)
3486 if(value >= 0) m_settings->lameChannelMode(value);
3490 * Sampling rate has changed
3492 void MainWindow::samplingRateChanged(int value)
3494 if(value >= 0) m_settings->samplingRate(value);
3498 * Nero AAC 2-Pass mode changed
3500 void MainWindow::neroAAC2PassChanged(bool checked)
3502 m_settings->neroAACEnable2Pass(checked);
3506 * Nero AAC profile mode changed
3508 void MainWindow::neroAACProfileChanged(int value)
3510 if(value >= 0) m_settings->aacEncProfile(value);
3514 * Aften audio coding mode changed
3516 void MainWindow::aftenCodingModeChanged(int value)
3518 if(value >= 0) m_settings->aftenAudioCodingMode(value);
3522 * Aften DRC mode changed
3524 void MainWindow::aftenDRCModeChanged(int value)
3526 if(value >= 0) m_settings->aftenDynamicRangeCompression(value);
3530 * Aften exponent search size changed
3532 void MainWindow::aftenSearchSizeChanged(int value)
3534 if(value >= 0) m_settings->aftenExponentSearchSize(value);
3538 * Aften fast bit allocation changed
3540 void MainWindow::aftenFastAllocationChanged(bool checked)
3542 m_settings->aftenFastBitAllocation(checked);
3547 * Opus encoder settings changed
3549 void MainWindow::opusSettingsChanged(void)
3551 m_settings->opusFramesize(ui->comboBoxOpusFramesize->currentIndex());
3552 m_settings->opusComplexity(ui->spinBoxOpusComplexity->value());
3553 m_settings->opusDisableResample(ui->checkBoxOpusDisableResample->isChecked());
3557 * Normalization filter enabled changed
3559 void MainWindow::normalizationEnabledChanged(bool checked)
3561 m_settings->normalizationFilterEnabled(checked);
3565 * Normalization max. volume changed
3567 void MainWindow::normalizationMaxVolumeChanged(double value)
3569 m_settings->normalizationFilterMaxVolume(static_cast<int>(value * 100.0));
3573 * Normalization equalization mode changed
3575 void MainWindow::normalizationModeChanged(int mode)
3577 m_settings->normalizationFilterEQMode(mode);
3581 * Tone adjustment has changed (Bass)
3583 void MainWindow::toneAdjustBassChanged(double value)
3585 m_settings->toneAdjustBass(static_cast<int>(value * 100.0));
3586 ui->spinBoxToneAdjustBass->setPrefix((value > 0) ? "+" : QString());
3590 * Tone adjustment has changed (Treble)
3592 void MainWindow::toneAdjustTrebleChanged(double value)
3594 m_settings->toneAdjustTreble(static_cast<int>(value * 100.0));
3595 ui->spinBoxToneAdjustTreble->setPrefix((value > 0) ? "+" : QString());
3599 * Tone adjustment has been reset
3601 void MainWindow::toneAdjustTrebleReset(void)
3603 ui->spinBoxToneAdjustBass->setValue(m_settings->toneAdjustBassDefault());
3604 ui->spinBoxToneAdjustTreble->setValue(m_settings->toneAdjustTrebleDefault());
3605 toneAdjustBassChanged(ui->spinBoxToneAdjustBass->value());
3606 toneAdjustTrebleChanged(ui->spinBoxToneAdjustTreble->value());
3610 * Custom encoder parameters changed
3612 void MainWindow::customParamsChanged(void)
3614 ui->lineEditCustomParamLAME->setText(ui->lineEditCustomParamLAME->text().simplified());
3615 ui->lineEditCustomParamOggEnc->setText(ui->lineEditCustomParamOggEnc->text().simplified());
3616 ui->lineEditCustomParamNeroAAC->setText(ui->lineEditCustomParamNeroAAC->text().simplified());
3617 ui->lineEditCustomParamFLAC->setText(ui->lineEditCustomParamFLAC->text().simplified());
3618 ui->lineEditCustomParamAften->setText(ui->lineEditCustomParamAften->text().simplified());
3619 ui->lineEditCustomParamOpus->setText(ui->lineEditCustomParamOpus->text().simplified());
3621 bool customParamsUsed = false;
3622 if(!ui->lineEditCustomParamLAME->text().isEmpty()) customParamsUsed = true;
3623 if(!ui->lineEditCustomParamOggEnc->text().isEmpty()) customParamsUsed = true;
3624 if(!ui->lineEditCustomParamNeroAAC->text().isEmpty()) customParamsUsed = true;
3625 if(!ui->lineEditCustomParamFLAC->text().isEmpty()) customParamsUsed = true;
3626 if(!ui->lineEditCustomParamAften->text().isEmpty()) customParamsUsed = true;
3627 if(!ui->lineEditCustomParamOpus->text().isEmpty()) customParamsUsed = true;
3629 ui->labelCustomParamsIcon->setVisible(customParamsUsed);
3630 ui->labelCustomParamsText->setVisible(customParamsUsed);
3631 ui->labelCustomParamsSpacer->setVisible(customParamsUsed);
3633 EncoderRegistry::saveEncoderCustomParams(m_settings, SettingsModel::MP3Encoder, ui->lineEditCustomParamLAME->text());
3634 EncoderRegistry::saveEncoderCustomParams(m_settings, SettingsModel::VorbisEncoder, ui->lineEditCustomParamOggEnc->text());
3635 EncoderRegistry::saveEncoderCustomParams(m_settings, SettingsModel::AACEncoder, ui->lineEditCustomParamNeroAAC->text());
3636 EncoderRegistry::saveEncoderCustomParams(m_settings, SettingsModel::FLACEncoder, ui->lineEditCustomParamFLAC->text());
3637 EncoderRegistry::saveEncoderCustomParams(m_settings, SettingsModel::AC3Encoder, ui->lineEditCustomParamAften->text());
3638 EncoderRegistry::saveEncoderCustomParams(m_settings, SettingsModel::OpusEncoder, ui->lineEditCustomParamOpus->text());
3642 * Rename output files enabled changed
3644 void MainWindow::renameOutputEnabledChanged(bool checked)
3646 m_settings->renameOutputFilesEnabled(checked);
3650 * Rename output files patterm changed
3652 void MainWindow::renameOutputPatternChanged(void)
3654 QString temp = ui->lineEditRenamePattern->text().simplified();
3655 ui->lineEditRenamePattern->setText(temp.isEmpty() ? m_settings->renameOutputFilesPatternDefault() : temp);
3656 m_settings->renameOutputFilesPattern(ui->lineEditRenamePattern->text());
3660 * Rename output files patterm changed
3662 void MainWindow::renameOutputPatternChanged(const QString &text, bool silent)
3664 QString pattern(text.simplified());
3666 pattern.replace("<BaseName>", "The_White_Stripes_-_Fell_In_Love_With_A_Girl", Qt::CaseInsensitive);
3667 pattern.replace("<TrackNo>", "04", Qt::CaseInsensitive);
3668 pattern.replace("<Title>", "Fell In Love With A Girl", Qt::CaseInsensitive);
3669 pattern.replace("<Artist>", "The White Stripes", Qt::CaseInsensitive);
3670 pattern.replace("<Album>", "White Blood Cells", Qt::CaseInsensitive);
3671 pattern.replace("<Year>", "2001", Qt::CaseInsensitive);
3672 pattern.replace("<Comment>", "Encoded by LameXP", Qt::CaseInsensitive);
3674 const QString patternClean = lamexp_clean_filename(pattern);
3676 if(pattern.compare(patternClean))
3678 if(ui->lineEditRenamePattern->palette().color(QPalette::Text) != Qt::red)
3680 if(!silent) lamexp_beep(lamexp_beep_error);
3681 SET_TEXT_COLOR(ui->lineEditRenamePattern, Qt::red);
3684 else
3686 if(ui->lineEditRenamePattern->palette() != QPalette())
3688 if(!silent) lamexp_beep(lamexp_beep_info);
3689 ui->lineEditRenamePattern->setPalette(QPalette());
3693 ui->labelRanameExample->setText(patternClean);
3697 * Show list of rename macros
3699 void MainWindow::showRenameMacros(const QString &text)
3701 if(text.compare("reset", Qt::CaseInsensitive) == 0)
3703 ui->lineEditRenamePattern->setText(m_settings->renameOutputFilesPatternDefault());
3704 return;
3707 const QString format = QString("<tr><td><tt>&lt;%1&gt;</tt></td><td>&nbsp;&nbsp;</td><td>%2</td></tr>");
3709 QString message = QString("<table>");
3710 message += QString(format).arg("BaseName", tr("File name without extension"));
3711 message += QString(format).arg("TrackNo", tr("Track number with leading zero"));
3712 message += QString(format).arg("Title", tr("Track title"));
3713 message += QString(format).arg("Artist", tr("Artist name"));
3714 message += QString(format).arg("Album", tr("Album name"));
3715 message += QString(format).arg("Year", tr("Year with (at least) four digits"));
3716 message += QString(format).arg("Comment", tr("Comment"));
3717 message += "</table><br><br>";
3718 message += QString("%1<br>").arg(tr("Characters forbidden in file names:"));
3719 message += "<b><tt>\\ / : * ? &lt; &gt; |<br>";
3721 QMessageBox::information(this, tr("Rename Macros"), message, tr("Discard"));
3724 void MainWindow::forceStereoDownmixEnabledChanged(bool checked)
3726 m_settings->forceStereoDownmix(checked);
3730 * Maximum number of instances changed
3732 void MainWindow::updateMaximumInstances(int value)
3734 ui->labelMaxInstances->setText(tr("%n Instance(s)", "", value));
3735 m_settings->maximumInstances(ui->checkBoxAutoDetectInstances->isChecked() ? NULL : value);
3739 * Auto-detect number of instances
3741 void MainWindow::autoDetectInstancesChanged(bool checked)
3743 m_settings->maximumInstances(checked ? NULL : ui->sliderMaxInstances->value());
3747 * Browse for custom TEMP folder button clicked
3749 void MainWindow::browseCustomTempFolderButtonClicked(void)
3751 QString newTempFolder;
3753 if(lamexp_themes_enabled())
3755 newTempFolder = QFileDialog::getExistingDirectory(this, QString(), m_settings->customTempPath());
3757 else
3759 QFileDialog dialog(this);
3760 dialog.setFileMode(QFileDialog::DirectoryOnly);
3761 dialog.setDirectory(m_settings->customTempPath());
3762 if(dialog.exec())
3764 newTempFolder = dialog.selectedFiles().first();
3768 if(!newTempFolder.isEmpty())
3770 QFile writeTest(QString("%1/~%2.tmp").arg(newTempFolder, lamexp_rand_str()));
3771 if(writeTest.open(QIODevice::ReadWrite))
3773 writeTest.remove();
3774 ui->lineEditCustomTempFolder->setText(QDir::toNativeSeparators(newTempFolder));
3776 else
3778 QMessageBox::warning(this, tr("Access Denied"), tr("Cannot write to the selected directory. Please choose another directory!"));
3784 * Custom TEMP folder changed
3786 void MainWindow::customTempFolderChanged(const QString &text)
3788 m_settings->customTempPath(QDir::fromNativeSeparators(text));
3792 * Use custom TEMP folder option changed
3794 void MainWindow::useCustomTempFolderChanged(bool checked)
3796 m_settings->customTempPathEnabled(!checked);
3800 * Help for custom parameters was requested
3802 void MainWindow::customParamsHelpRequested(QWidget *obj, QEvent *event)
3804 if(event->type() != QEvent::MouseButtonRelease)
3806 return;
3809 if(QMouseEvent *mouseEvent = dynamic_cast<QMouseEvent*>(event))
3811 QPoint pos = mouseEvent->pos();
3812 if(!(pos.x() <= obj->width() && pos.y() <= obj->height() && pos.x() >= 0 && pos.y() >= 0 && mouseEvent->button() != Qt::MidButton))
3814 return;
3818 if(obj == ui->helpCustomParamLAME) showCustomParamsHelpScreen("lame.exe", "--longhelp");
3819 else if(obj == ui->helpCustomParamOggEnc) showCustomParamsHelpScreen("oggenc2.exe", "--help");
3820 else if(obj == ui->helpCustomParamNeroAAC)
3822 switch(EncoderRegistry::getAacEncoder())
3824 case SettingsModel::AAC_ENCODER_QAAC: showCustomParamsHelpScreen("qaac.exe", "--help"); break;
3825 case SettingsModel::AAC_ENCODER_FHG : showCustomParamsHelpScreen("fhgaacenc.exe", ""); break;
3826 case SettingsModel::AAC_ENCODER_NERO: showCustomParamsHelpScreen("neroAacEnc.exe", "-help"); break;
3827 default: lamexp_beep(lamexp_beep_error); break;
3830 else if(obj == ui->helpCustomParamFLAC) showCustomParamsHelpScreen("flac.exe", "--help");
3831 else if(obj == ui->helpCustomParamAften) showCustomParamsHelpScreen("aften.exe", "-h");
3832 else if(obj == ui->helpCustomParamOpus) showCustomParamsHelpScreen("opusenc.exe", "--help");
3833 else lamexp_beep(lamexp_beep_error);
3837 * Show help for custom parameters
3839 void MainWindow::showCustomParamsHelpScreen(const QString &toolName, const QString &command)
3841 const QString binary = lamexp_lookup_tool(toolName);
3842 if(binary.isEmpty())
3844 lamexp_beep(lamexp_beep_error);
3845 qWarning("customParamsHelpRequested: Binary could not be found!");
3846 return;
3849 QProcess *process = new QProcess();
3850 process->setProcessChannelMode(QProcess::MergedChannels);
3851 process->setReadChannel(QProcess::StandardOutput);
3852 process->start(binary, command.isEmpty() ? QStringList() : QStringList() << command);
3853 qApp->setOverrideCursor(QCursor(Qt::WaitCursor));
3855 if(process->waitForStarted(15000))
3857 qApp->processEvents();
3858 process->waitForFinished(15000);
3861 if(process->state() != QProcess::NotRunning)
3863 process->kill();
3864 process->waitForFinished(-1);
3867 qApp->restoreOverrideCursor();
3868 QStringList output; bool spaceFlag = true;
3870 while(process->canReadLine())
3872 QString temp = QString::fromUtf8(process->readLine());
3873 TRIM_STRING_RIGHT(temp);
3874 if(temp.isEmpty())
3876 if(!spaceFlag) { output << temp; spaceFlag = true; }
3878 else
3880 output << temp; spaceFlag = false;
3884 LAMEXP_DELETE(process);
3886 if(output.count() < 1)
3888 qWarning("Empty output, cannot show help screen!");
3889 lamexp_beep(lamexp_beep_error);
3892 LogViewDialog *dialog = new LogViewDialog(this);
3893 TEMP_HIDE_DROPBOX( dialog->exec(output); );
3894 LAMEXP_DELETE(dialog);
3897 void MainWindow::overwriteModeChanged(int id)
3899 if((id == SettingsModel::Overwrite_Replaces) && (m_settings->overwriteMode() != SettingsModel::Overwrite_Replaces))
3901 if(QMessageBox::warning(this, tr("Overwrite Mode"), tr("Warning: This mode may overwrite existing files with no way to revert!"), tr("Continue"), tr("Revert"), QString(), 1) != 0)
3903 ui->radioButtonOverwriteModeKeepBoth->setChecked(m_settings->overwriteMode() == SettingsModel::Overwrite_KeepBoth);
3904 ui->radioButtonOverwriteModeSkipFile->setChecked(m_settings->overwriteMode() == SettingsModel::Overwrite_SkipFile);
3905 return;
3909 m_settings->overwriteMode(id);
3913 * Reset all advanced options to their defaults
3915 void MainWindow::resetAdvancedOptionsButtonClicked(void)
3917 if(m_settings->soundsEnabled())
3919 lamexp_play_sound(IDR_WAVE_BLAST, true);
3922 ui->sliderLameAlgoQuality->setValue(m_settings->lameAlgoQualityDefault());
3923 ui->spinBoxBitrateManagementMin->setValue(m_settings->bitrateManagementMinRateDefault());
3924 ui->spinBoxBitrateManagementMax->setValue(m_settings->bitrateManagementMaxRateDefault());
3925 ui->spinBoxNormalizationFilter->setValue(static_cast<double>(m_settings->normalizationFilterMaxVolumeDefault()) / 100.0);
3926 ui->spinBoxToneAdjustBass->setValue(static_cast<double>(m_settings->toneAdjustBassDefault()) / 100.0);
3927 ui->spinBoxToneAdjustTreble->setValue(static_cast<double>(m_settings->toneAdjustTrebleDefault()) / 100.0);
3928 ui->spinBoxAftenSearchSize->setValue(m_settings->aftenExponentSearchSizeDefault());
3929 ui->spinBoxOpusComplexity->setValue(m_settings->opusComplexityDefault());
3930 ui->comboBoxMP3ChannelMode->setCurrentIndex(m_settings->lameChannelModeDefault());
3931 ui->comboBoxSamplingRate->setCurrentIndex(m_settings->samplingRateDefault());
3932 ui->comboBoxAACProfile->setCurrentIndex(m_settings->aacEncProfileDefault());
3933 ui->comboBoxAftenCodingMode->setCurrentIndex(m_settings->aftenAudioCodingModeDefault());
3934 ui->comboBoxAftenDRCMode->setCurrentIndex(m_settings->aftenDynamicRangeCompressionDefault());
3935 ui->comboBoxNormalizationMode->setCurrentIndex(m_settings->normalizationFilterEQModeDefault());
3936 ui->comboBoxOpusFramesize->setCurrentIndex(m_settings->opusFramesizeDefault());
3938 SET_CHECKBOX_STATE(ui->checkBoxBitrateManagement, m_settings->bitrateManagementEnabledDefault());
3939 SET_CHECKBOX_STATE(ui->checkBoxNeroAAC2PassMode, m_settings->neroAACEnable2PassDefault());
3940 SET_CHECKBOX_STATE(ui->checkBoxNormalizationFilter, m_settings->normalizationFilterEnabledDefault());
3941 SET_CHECKBOX_STATE(ui->checkBoxAutoDetectInstances, (m_settings->maximumInstancesDefault() < 1));
3942 SET_CHECKBOX_STATE(ui->checkBoxUseSystemTempFolder, !m_settings->customTempPathEnabledDefault());
3943 SET_CHECKBOX_STATE(ui->checkBoxAftenFastAllocation, m_settings->aftenFastBitAllocationDefault());
3944 SET_CHECKBOX_STATE(ui->checkBoxRenameOutput, m_settings->renameOutputFilesEnabledDefault());
3945 SET_CHECKBOX_STATE(ui->checkBoxForceStereoDownmix, m_settings->forceStereoDownmixDefault());
3946 SET_CHECKBOX_STATE(ui->checkBoxOpusDisableResample, m_settings->opusDisableResampleDefault());
3948 ui->lineEditCustomParamLAME ->setText(m_settings->customParametersLAMEDefault());
3949 ui->lineEditCustomParamOggEnc ->setText(m_settings->customParametersOggEncDefault());
3950 ui->lineEditCustomParamNeroAAC->setText(m_settings->customParametersAacEncDefault());
3951 ui->lineEditCustomParamFLAC ->setText(m_settings->customParametersFLACDefault());
3952 ui->lineEditCustomParamOpus ->setText(m_settings->customParametersOpusEncDefault());
3953 ui->lineEditCustomTempFolder ->setText(QDir::toNativeSeparators(m_settings->customTempPathDefault()));
3954 ui->lineEditRenamePattern ->setText(m_settings->renameOutputFilesPatternDefault());
3956 if(m_settings->overwriteModeDefault() == SettingsModel::Overwrite_KeepBoth) ui->radioButtonOverwriteModeKeepBoth->click();
3957 if(m_settings->overwriteModeDefault() == SettingsModel::Overwrite_SkipFile) ui->radioButtonOverwriteModeSkipFile->click();
3958 if(m_settings->overwriteModeDefault() == SettingsModel::Overwrite_Replaces) ui->radioButtonOverwriteModeReplaces->click();
3960 customParamsChanged();
3961 ui->scrollArea->verticalScrollBar()->setValue(0);
3964 // =========================================================
3965 // Multi-instance handling slots
3966 // =========================================================
3969 * Other instance detected
3971 void MainWindow::notifyOtherInstance(void)
3973 if(!m_banner->isVisible())
3975 QMessageBox msgBox(QMessageBox::Warning, tr("Already Running"), tr("LameXP is already running, please use the running instance!"), QMessageBox::NoButton, this, Qt::Dialog | Qt::MSWindowsFixedSizeDialogHint | Qt::WindowStaysOnTopHint);
3976 msgBox.exec();
3981 * Add file from another instance
3983 void MainWindow::addFileDelayed(const QString &filePath, bool tryASAP)
3985 if(tryASAP && !m_delayedFileTimer->isActive())
3987 qDebug("Received file: %s", filePath.toUtf8().constData());
3988 m_delayedFileList->append(filePath);
3989 QTimer::singleShot(0, this, SLOT(handleDelayedFiles()));
3992 m_delayedFileTimer->stop();
3993 qDebug("Received file: %s", filePath.toUtf8().constData());
3994 m_delayedFileList->append(filePath);
3995 m_delayedFileTimer->start(5000);
3999 * Add files from another instance
4001 void MainWindow::addFilesDelayed(const QStringList &filePaths, bool tryASAP)
4003 if(tryASAP && !m_delayedFileTimer->isActive())
4005 qDebug("Received %d file(s).", filePaths.count());
4006 m_delayedFileList->append(filePaths);
4007 QTimer::singleShot(0, this, SLOT(handleDelayedFiles()));
4009 else
4011 m_delayedFileTimer->stop();
4012 qDebug("Received %d file(s).", filePaths.count());
4013 m_delayedFileList->append(filePaths);
4014 m_delayedFileTimer->start(5000);
4019 * Add folder from another instance
4021 void MainWindow::addFolderDelayed(const QString &folderPath, bool recursive)
4023 if(!m_banner->isVisible())
4025 addFolder(folderPath, recursive, true);
4029 // =========================================================
4030 // Misc slots
4031 // =========================================================
4034 * Restore the override cursor
4036 void MainWindow::restoreCursor(void)
4038 QApplication::restoreOverrideCursor();