Adjusted QAAC detection for shared 'libsoxrate' library.
[LameXP.git] / src / Dialog_MainWindow.cpp
blob5701755dd5830a73a936f016e5a7d411a3ab1623
1 ///////////////////////////////////////////////////////////////////////////////
2 // LameXP - Audio Encoder Front-End
3 // Copyright (C) 2004-2011 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 //LameXP includes
25 #include "Global.h"
26 #include "Resource.h"
27 #include "Dialog_WorkingBanner.h"
28 #include "Dialog_MetaInfo.h"
29 #include "Dialog_About.h"
30 #include "Dialog_Update.h"
31 #include "Dialog_DropBox.h"
32 #include "Dialog_CueImport.h"
33 #include "Thread_FileAnalyzer.h"
34 #include "Thread_MessageHandler.h"
35 #include "Model_MetaInfo.h"
36 #include "Model_Settings.h"
37 #include "Model_FileList.h"
38 #include "Model_FileSystem.h"
39 #include "WinSevenTaskbar.h"
40 #include "Registry_Decoder.h"
41 #include "ShellIntegration.h"
43 //Qt includes
44 #include <QMessageBox>
45 #include <QTimer>
46 #include <QDesktopWidget>
47 #include <QDate>
48 #include <QFileDialog>
49 #include <QInputDialog>
50 #include <QFileSystemModel>
51 #include <QDesktopServices>
52 #include <QUrl>
53 #include <QPlastiqueStyle>
54 #include <QCleanlooksStyle>
55 #include <QWindowsVistaStyle>
56 #include <QWindowsStyle>
57 #include <QSysInfo>
58 #include <QDragEnterEvent>
59 #include <QWindowsMime>
60 #include <QProcess>
61 #include <QUuid>
62 #include <QProcessEnvironment>
63 #include <QCryptographicHash>
64 #include <QTranslator>
65 #include <QResource>
66 #include <QScrollBar>
68 //System includes
69 #include <MMSystem.h>
70 #include <ShellAPI.h>
72 //Helper macros
73 #define ABORT_IF_BUSY if(m_banner->isVisible() || m_delayedFileTimer->isActive()) { MessageBeep(MB_ICONEXCLAMATION); return; }
74 #define SET_TEXT_COLOR(WIDGET,COLOR) { QPalette _palette = WIDGET->palette(); _palette.setColor(QPalette::WindowText, (COLOR)); _palette.setColor(QPalette::Text, (COLOR)); WIDGET->setPalette(_palette); }
75 #define SET_FONT_BOLD(WIDGET,BOLD) { QFont _font = WIDGET->font(); _font.setBold(BOLD); WIDGET->setFont(_font); }
76 #define LINK(URL) QString("<a href=\"%1\">%2</a>").arg(URL).arg(QString(URL).replace("-", "&minus;"))
77 #define FSLINK(PATH) QString("<a href=\"file:///%1\">%2</a>").arg(PATH).arg(QString(PATH).replace("-", "&minus;"))
78 #define TEMP_HIDE_DROPBOX(CMD) { bool __dropBoxVisible = m_dropBox->isVisible(); if(__dropBoxVisible) m_dropBox->hide(); {CMD}; if(__dropBoxVisible) m_dropBox->show(); }
79 #define USE_NATIVE_FILE_DIALOG (lamexp_themes_enabled() || ((QSysInfo::windowsVersion() & QSysInfo::WV_NT_based) < QSysInfo::WV_XP))
81 ////////////////////////////////////////////////////////////
82 // Constructor
83 ////////////////////////////////////////////////////////////
85 MainWindow::MainWindow(FileListModel *fileListModel, AudioFileModel *metaInfo, SettingsModel *settingsModel, QWidget *parent)
87 QMainWindow(parent),
88 m_fileListModel(fileListModel),
89 m_metaData(metaInfo),
90 m_settings(settingsModel),
91 m_neroEncoderAvailable(lamexp_check_tool("neroAacEnc.exe") && lamexp_check_tool("neroAacDec.exe") && lamexp_check_tool("neroAacTag.exe")),
92 m_fhgEncoderAvailable(lamexp_check_tool("fhgaacenc.exe") && lamexp_check_tool("enc_fhgaac.dll") && lamexp_check_tool("nsutil.dll") && lamexp_check_tool("libmp4v2.dll")),
93 m_qaacEncoderAvailable(lamexp_check_tool("qaac.exe") && lamexp_check_tool("libsoxrate.dll")),
94 m_accepted(false),
95 m_firstTimeShown(true),
96 m_OutputFolderViewInitialized(false)
98 //Init the dialog, from the .ui file
99 setupUi(this);
100 setWindowFlags(windowFlags() ^ Qt::WindowMaximizeButtonHint);
102 //Register meta types
103 qRegisterMetaType<AudioFileModel>("AudioFileModel");
105 //Enabled main buttons
106 connect(buttonAbout, SIGNAL(clicked()), this, SLOT(aboutButtonClicked()));
107 connect(buttonStart, SIGNAL(clicked()), this, SLOT(encodeButtonClicked()));
108 connect(buttonQuit, SIGNAL(clicked()), this, SLOT(closeButtonClicked()));
110 //Setup tab widget
111 tabWidget->setCurrentIndex(0);
112 connect(tabWidget, SIGNAL(currentChanged(int)), this, SLOT(tabPageChanged(int)));
114 //Setup "Source" tab
115 sourceFileView->setModel(m_fileListModel);
116 sourceFileView->verticalHeader()->setResizeMode(QHeaderView::ResizeToContents);
117 sourceFileView->horizontalHeader()->setResizeMode(QHeaderView::ResizeToContents);
118 sourceFileView->setContextMenuPolicy(Qt::CustomContextMenu);
119 sourceFileView->viewport()->installEventFilter(this);
120 m_dropNoteLabel = new QLabel(sourceFileView);
121 m_dropNoteLabel->setAlignment(Qt::AlignHCenter | Qt::AlignVCenter);
122 SET_FONT_BOLD(m_dropNoteLabel, true);
123 SET_TEXT_COLOR(m_dropNoteLabel, Qt::darkGray);
124 m_sourceFilesContextMenu = new QMenu();
125 m_showDetailsContextAction = m_sourceFilesContextMenu->addAction(QIcon(":/icons/zoom.png"), "N/A");
126 m_previewContextAction = m_sourceFilesContextMenu->addAction(QIcon(":/icons/sound.png"), "N/A");
127 m_findFileContextAction = m_sourceFilesContextMenu->addAction(QIcon(":/icons/folder_go.png"), "N/A");
128 SET_FONT_BOLD(m_showDetailsContextAction, true);
129 connect(buttonAddFiles, SIGNAL(clicked()), this, SLOT(addFilesButtonClicked()));
130 connect(buttonRemoveFile, SIGNAL(clicked()), this, SLOT(removeFileButtonClicked()));
131 connect(buttonClearFiles, SIGNAL(clicked()), this, SLOT(clearFilesButtonClicked()));
132 connect(buttonFileUp, SIGNAL(clicked()), this, SLOT(fileUpButtonClicked()));
133 connect(buttonFileDown, SIGNAL(clicked()), this, SLOT(fileDownButtonClicked()));
134 connect(buttonShowDetails, SIGNAL(clicked()), this, SLOT(showDetailsButtonClicked()));
135 connect(m_fileListModel, SIGNAL(rowsInserted(QModelIndex,int,int)), this, SLOT(sourceModelChanged()));
136 connect(m_fileListModel, SIGNAL(rowsRemoved(QModelIndex,int,int)), this, SLOT(sourceModelChanged()));
137 connect(m_fileListModel, SIGNAL(modelReset()), this, SLOT(sourceModelChanged()));
138 connect(sourceFileView, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(sourceFilesContextMenu(QPoint)));
139 connect(sourceFileView->verticalScrollBar(), SIGNAL(sliderMoved(int)), this, SLOT(sourceFilesScrollbarMoved(int)));
140 connect(sourceFileView->verticalScrollBar(), SIGNAL(valueChanged(int)), this, SLOT(sourceFilesScrollbarMoved(int)));
141 connect(m_showDetailsContextAction, SIGNAL(triggered(bool)), this, SLOT(showDetailsButtonClicked()));
142 connect(m_previewContextAction, SIGNAL(triggered(bool)), this, SLOT(previewContextActionTriggered()));
143 connect(m_findFileContextAction, SIGNAL(triggered(bool)), this, SLOT(findFileContextActionTriggered()));
145 //Setup "Output" tab
146 m_fileSystemModel = new QFileSystemModelEx();
147 m_fileSystemModel->installEventFilter(this);
148 outputFolderView->setModel(m_fileSystemModel);
149 outputFolderView->header()->setStretchLastSection(true);
150 outputFolderView->header()->hideSection(1);
151 outputFolderView->header()->hideSection(2);
152 outputFolderView->header()->hideSection(3);
153 outputFolderView->setHeaderHidden(true);
154 outputFolderView->setAnimated(false);
155 outputFolderView->setMouseTracking(false);
156 outputFolderView->setContextMenuPolicy(Qt::CustomContextMenu);
157 outputFolderView->installEventFilter(this);
158 outputFoldersFovoritesLabel->installEventFilter(this);
159 while(saveToSourceFolderCheckBox->isChecked() != m_settings->outputToSourceDir()) saveToSourceFolderCheckBox->click();
160 prependRelativePathCheckBox->setChecked(m_settings->prependRelativeSourcePath());
161 connect(outputFolderView, SIGNAL(clicked(QModelIndex)), this, SLOT(outputFolderViewClicked(QModelIndex)));
162 connect(outputFolderView, SIGNAL(activated(QModelIndex)), this, SLOT(outputFolderViewClicked(QModelIndex)));
163 connect(outputFolderView, SIGNAL(pressed(QModelIndex)), this, SLOT(outputFolderViewClicked(QModelIndex)));
164 connect(outputFolderView, SIGNAL(entered(QModelIndex)), this, SLOT(outputFolderViewMoved(QModelIndex)));
165 connect(buttonMakeFolder, SIGNAL(clicked()), this, SLOT(makeFolderButtonClicked()));
166 connect(buttonGotoHome, SIGNAL(clicked()), SLOT(gotoHomeFolderButtonClicked()));
167 connect(buttonGotoDesktop, SIGNAL(clicked()), this, SLOT(gotoDesktopButtonClicked()));
168 connect(buttonGotoMusic, SIGNAL(clicked()), this, SLOT(gotoMusicFolderButtonClicked()));
169 connect(saveToSourceFolderCheckBox, SIGNAL(clicked()), this, SLOT(saveToSourceFolderChanged()));
170 connect(prependRelativePathCheckBox, SIGNAL(clicked()), this, SLOT(prependRelativePathChanged()));
171 m_outputFolderContextMenu = new QMenu();
172 m_showFolderContextAction = m_outputFolderContextMenu->addAction(QIcon(":/icons/zoom.png"), "N/A");
173 m_outputFolderFavoritesMenu = new QMenu();
174 m_addFavoriteFolderAction = m_outputFolderFavoritesMenu->addAction(QIcon(":/icons/add.png"), "N/A");
175 m_outputFolderFavoritesMenu->insertSeparator(m_addFavoriteFolderAction);
176 connect(outputFolderView, SIGNAL(customContextMenuRequested(QPoint)), this, SLOT(outputFolderContextMenu(QPoint)));
177 connect(m_showFolderContextAction, SIGNAL(triggered(bool)), this, SLOT(showFolderContextActionTriggered()));
178 connect(m_addFavoriteFolderAction, SIGNAL(triggered(bool)), this, SLOT(addFavoriteFolderActionTriggered()));
179 outputFolderLabel->installEventFilter(this);
180 outputFolderView->setCurrentIndex(m_fileSystemModel->index(m_settings->outputDir()));
181 outputFolderViewClicked(outputFolderView->currentIndex());
182 refreshFavorites();
184 //Setup "Meta Data" tab
185 m_metaInfoModel = new MetaInfoModel(m_metaData, 6);
186 m_metaInfoModel->clearData();
187 m_metaInfoModel->setData(m_metaInfoModel->index(4, 1), m_settings->metaInfoPosition());
188 metaDataView->setModel(m_metaInfoModel);
189 metaDataView->verticalHeader()->setResizeMode(QHeaderView::ResizeToContents);
190 metaDataView->verticalHeader()->hide();
191 metaDataView->horizontalHeader()->setResizeMode(QHeaderView::ResizeToContents);
192 while(writeMetaDataCheckBox->isChecked() != m_settings->writeMetaTags()) writeMetaDataCheckBox->click();
193 generatePlaylistCheckBox->setChecked(m_settings->createPlaylist());
194 connect(buttonEditMeta, SIGNAL(clicked()), this, SLOT(editMetaButtonClicked()));
195 connect(buttonClearMeta, SIGNAL(clicked()), this, SLOT(clearMetaButtonClicked()));
196 connect(writeMetaDataCheckBox, SIGNAL(clicked()), this, SLOT(metaTagsEnabledChanged()));
197 connect(generatePlaylistCheckBox, SIGNAL(clicked()), this, SLOT(playlistEnabledChanged()));
199 //Setup "Compression" tab
200 m_encoderButtonGroup = new QButtonGroup(this);
201 m_encoderButtonGroup->addButton(radioButtonEncoderMP3, SettingsModel::MP3Encoder);
202 m_encoderButtonGroup->addButton(radioButtonEncoderVorbis, SettingsModel::VorbisEncoder);
203 m_encoderButtonGroup->addButton(radioButtonEncoderAAC, SettingsModel::AACEncoder);
204 m_encoderButtonGroup->addButton(radioButtonEncoderAC3, SettingsModel::AC3Encoder);
205 m_encoderButtonGroup->addButton(radioButtonEncoderFLAC, SettingsModel::FLACEncoder);
206 m_encoderButtonGroup->addButton(radioButtonEncoderPCM, SettingsModel::PCMEncoder);
207 m_modeButtonGroup = new QButtonGroup(this);
208 m_modeButtonGroup->addButton(radioButtonModeQuality, SettingsModel::VBRMode);
209 m_modeButtonGroup->addButton(radioButtonModeAverageBitrate, SettingsModel::ABRMode);
210 m_modeButtonGroup->addButton(radioButtonConstBitrate, SettingsModel::CBRMode);
211 radioButtonEncoderAAC->setEnabled(m_neroEncoderAvailable || m_fhgEncoderAvailable || m_qaacEncoderAvailable);
212 radioButtonEncoderMP3->setChecked(m_settings->compressionEncoder() == SettingsModel::MP3Encoder);
213 radioButtonEncoderVorbis->setChecked(m_settings->compressionEncoder() == SettingsModel::VorbisEncoder);
214 radioButtonEncoderAAC->setChecked((m_settings->compressionEncoder() == SettingsModel::AACEncoder) && (m_neroEncoderAvailable || m_fhgEncoderAvailable || m_qaacEncoderAvailable));
215 radioButtonEncoderAC3->setChecked(m_settings->compressionEncoder() == SettingsModel::AC3Encoder);
216 radioButtonEncoderFLAC->setChecked(m_settings->compressionEncoder() == SettingsModel::FLACEncoder);
217 radioButtonEncoderPCM->setChecked(m_settings->compressionEncoder() == SettingsModel::PCMEncoder);
218 radioButtonModeQuality->setChecked(m_settings->compressionRCMode() == SettingsModel::VBRMode);
219 radioButtonModeAverageBitrate->setChecked(m_settings->compressionRCMode() == SettingsModel::ABRMode);
220 radioButtonConstBitrate->setChecked(m_settings->compressionRCMode() == SettingsModel::CBRMode);
221 sliderBitrate->setValue(m_settings->compressionBitrate());
222 connect(m_encoderButtonGroup, SIGNAL(buttonClicked(int)), this, SLOT(updateEncoder(int)));
223 connect(m_modeButtonGroup, SIGNAL(buttonClicked(int)), this, SLOT(updateRCMode(int)));
224 connect(sliderBitrate, SIGNAL(valueChanged(int)), this, SLOT(updateBitrate(int)));
225 updateEncoder(m_encoderButtonGroup->checkedId());
227 //Setup "Advanced Options" tab
228 sliderLameAlgoQuality->setValue(m_settings->lameAlgoQuality());
229 if(m_settings->maximumInstances() > 0) sliderMaxInstances->setValue(m_settings->maximumInstances());
230 spinBoxBitrateManagementMin->setValue(m_settings->bitrateManagementMinRate());
231 spinBoxBitrateManagementMax->setValue(m_settings->bitrateManagementMaxRate());
232 spinBoxNormalizationFilter->setValue(static_cast<double>(m_settings->normalizationFilterMaxVolume()) / 100.0);
233 spinBoxToneAdjustBass->setValue(static_cast<double>(m_settings->toneAdjustBass()) / 100.0);
234 spinBoxToneAdjustTreble->setValue(static_cast<double>(m_settings->toneAdjustTreble()) / 100.0);
235 spinBoxAftenSearchSize->setValue(m_settings->aftenExponentSearchSize());
236 comboBoxMP3ChannelMode->setCurrentIndex(m_settings->lameChannelMode());
237 comboBoxSamplingRate->setCurrentIndex(m_settings->samplingRate());
238 comboBoxAACProfile->setCurrentIndex(m_settings->aacEncProfile());
239 comboBoxAftenCodingMode->setCurrentIndex(m_settings->aftenAudioCodingMode());
240 comboBoxAftenDRCMode->setCurrentIndex(m_settings->aftenDynamicRangeCompression());
241 comboBoxNormalizationMode->setCurrentIndex(m_settings->normalizationFilterEqualizationMode());
242 while(checkBoxBitrateManagement->isChecked() != m_settings->bitrateManagementEnabled()) checkBoxBitrateManagement->click();
243 while(checkBoxNeroAAC2PassMode->isChecked() != m_settings->neroAACEnable2Pass()) checkBoxNeroAAC2PassMode->click();
244 while(checkBoxAftenFastAllocation->isChecked() != m_settings->aftenFastBitAllocation()) checkBoxAftenFastAllocation->click();
245 while(checkBoxNormalizationFilter->isChecked() != m_settings->normalizationFilterEnabled()) checkBoxNormalizationFilter->click();
246 while(checkBoxAutoDetectInstances->isChecked() != (m_settings->maximumInstances() < 1)) checkBoxAutoDetectInstances->click();
247 while(checkBoxUseSystemTempFolder->isChecked() == m_settings->customTempPathEnabled()) checkBoxUseSystemTempFolder->click();
248 while(checkBoxRenameOutput->isChecked() != m_settings->renameOutputFilesEnabled()) checkBoxRenameOutput->click();
249 while(checkBoxForceStereoDownmix->isChecked() != m_settings->forceStereoDownmix()) checkBoxForceStereoDownmix->click();
250 checkBoxNeroAAC2PassMode->setEnabled(!(m_fhgEncoderAvailable || m_qaacEncoderAvailable));
251 lineEditCustomParamLAME->setText(m_settings->customParametersLAME());
252 lineEditCustomParamOggEnc->setText(m_settings->customParametersOggEnc());
253 lineEditCustomParamNeroAAC->setText(m_settings->customParametersAacEnc());
254 lineEditCustomParamFLAC->setText(m_settings->customParametersFLAC());
255 lineEditCustomParamAften->setText(m_settings->customParametersAften());
256 lineEditCustomTempFolder->setText(QDir::toNativeSeparators(m_settings->customTempPath()));
257 lineEditRenamePattern->setText(m_settings->renameOutputFilesPattern());
258 connect(sliderLameAlgoQuality, SIGNAL(valueChanged(int)), this, SLOT(updateLameAlgoQuality(int)));
259 connect(checkBoxBitrateManagement, SIGNAL(clicked(bool)), this, SLOT(bitrateManagementEnabledChanged(bool)));
260 connect(spinBoxBitrateManagementMin, SIGNAL(valueChanged(int)), this, SLOT(bitrateManagementMinChanged(int)));
261 connect(spinBoxBitrateManagementMax, SIGNAL(valueChanged(int)), this, SLOT(bitrateManagementMaxChanged(int)));
262 connect(comboBoxMP3ChannelMode, SIGNAL(currentIndexChanged(int)), this, SLOT(channelModeChanged(int)));
263 connect(comboBoxSamplingRate, SIGNAL(currentIndexChanged(int)), this, SLOT(samplingRateChanged(int)));
264 connect(checkBoxNeroAAC2PassMode, SIGNAL(clicked(bool)), this, SLOT(neroAAC2PassChanged(bool)));
265 connect(comboBoxAACProfile, SIGNAL(currentIndexChanged(int)), this, SLOT(neroAACProfileChanged(int)));
266 connect(checkBoxNormalizationFilter, SIGNAL(clicked(bool)), this, SLOT(normalizationEnabledChanged(bool)));
267 connect(comboBoxAftenCodingMode, SIGNAL(currentIndexChanged(int)), this, SLOT(aftenCodingModeChanged(int)));
268 connect(comboBoxAftenDRCMode, SIGNAL(currentIndexChanged(int)), this, SLOT(aftenDRCModeChanged(int)));
269 connect(spinBoxAftenSearchSize, SIGNAL(valueChanged(int)), this, SLOT(aftenSearchSizeChanged(int)));
270 connect(checkBoxAftenFastAllocation, SIGNAL(clicked(bool)), this, SLOT(aftenFastAllocationChanged(bool)));
271 connect(spinBoxNormalizationFilter, SIGNAL(valueChanged(double)), this, SLOT(normalizationMaxVolumeChanged(double)));
272 connect(comboBoxNormalizationMode, SIGNAL(currentIndexChanged(int)), this, SLOT(normalizationModeChanged(int)));
273 connect(spinBoxToneAdjustBass, SIGNAL(valueChanged(double)), this, SLOT(toneAdjustBassChanged(double)));
274 connect(spinBoxToneAdjustTreble, SIGNAL(valueChanged(double)), this, SLOT(toneAdjustTrebleChanged(double)));
275 connect(buttonToneAdjustReset, SIGNAL(clicked()), this, SLOT(toneAdjustTrebleReset()));
276 connect(lineEditCustomParamLAME, SIGNAL(editingFinished()), this, SLOT(customParamsChanged()));
277 connect(lineEditCustomParamOggEnc, SIGNAL(editingFinished()), this, SLOT(customParamsChanged()));
278 connect(lineEditCustomParamNeroAAC, SIGNAL(editingFinished()), this, SLOT(customParamsChanged()));
279 connect(lineEditCustomParamFLAC, SIGNAL(editingFinished()), this, SLOT(customParamsChanged()));
280 connect(lineEditCustomParamAften, SIGNAL(editingFinished()), this, SLOT(customParamsChanged()));
281 connect(sliderMaxInstances, SIGNAL(valueChanged(int)), this, SLOT(updateMaximumInstances(int)));
282 connect(checkBoxAutoDetectInstances, SIGNAL(clicked(bool)), this, SLOT(autoDetectInstancesChanged(bool)));
283 connect(buttonBrowseCustomTempFolder, SIGNAL(clicked()), this, SLOT(browseCustomTempFolderButtonClicked()));
284 connect(lineEditCustomTempFolder, SIGNAL(textChanged(QString)), this, SLOT(customTempFolderChanged(QString)));
285 connect(checkBoxUseSystemTempFolder, SIGNAL(clicked(bool)), this, SLOT(useCustomTempFolderChanged(bool)));
286 connect(buttonResetAdvancedOptions, SIGNAL(clicked()), this, SLOT(resetAdvancedOptionsButtonClicked()));
287 connect(checkBoxRenameOutput, SIGNAL(clicked(bool)), this, SLOT(renameOutputEnabledChanged(bool)));
288 connect(lineEditRenamePattern, SIGNAL(editingFinished()), this, SLOT(renameOutputPatternChanged()));
289 connect(lineEditRenamePattern, SIGNAL(textChanged(QString)), this, SLOT(renameOutputPatternChanged(QString)));
290 connect(labelShowRenameMacros, SIGNAL(linkActivated(QString)), this, SLOT(showRenameMacros(QString)));
291 connect(checkBoxForceStereoDownmix, SIGNAL(clicked(bool)), this, SLOT(forceStereoDownmixEnabledChanged(bool)));
292 updateLameAlgoQuality(sliderLameAlgoQuality->value());
293 updateMaximumInstances(sliderMaxInstances->value());
294 toneAdjustTrebleChanged(spinBoxToneAdjustTreble->value());
295 toneAdjustBassChanged(spinBoxToneAdjustBass->value());
296 customParamsChanged();
298 //Activate file menu actions
299 actionOpenFolder->setData(QVariant::fromValue<bool>(false));
300 actionOpenFolderRecursively->setData(QVariant::fromValue<bool>(true));
301 connect(actionOpenFolder, SIGNAL(triggered()), this, SLOT(openFolderActionActivated()));
302 connect(actionOpenFolderRecursively, SIGNAL(triggered()), this, SLOT(openFolderActionActivated()));
304 //Activate view menu actions
305 m_tabActionGroup = new QActionGroup(this);
306 m_tabActionGroup->addAction(actionSourceFiles);
307 m_tabActionGroup->addAction(actionOutputDirectory);
308 m_tabActionGroup->addAction(actionCompression);
309 m_tabActionGroup->addAction(actionMetaData);
310 m_tabActionGroup->addAction(actionAdvancedOptions);
311 actionSourceFiles->setData(0);
312 actionOutputDirectory->setData(1);
313 actionMetaData->setData(2);
314 actionCompression->setData(3);
315 actionAdvancedOptions->setData(4);
316 actionSourceFiles->setChecked(true);
317 connect(m_tabActionGroup, SIGNAL(triggered(QAction*)), this, SLOT(tabActionActivated(QAction*)));
319 //Activate style menu actions
320 m_styleActionGroup = new QActionGroup(this);
321 m_styleActionGroup->addAction(actionStylePlastique);
322 m_styleActionGroup->addAction(actionStyleCleanlooks);
323 m_styleActionGroup->addAction(actionStyleWindowsVista);
324 m_styleActionGroup->addAction(actionStyleWindowsXP);
325 m_styleActionGroup->addAction(actionStyleWindowsClassic);
326 actionStylePlastique->setData(0);
327 actionStyleCleanlooks->setData(1);
328 actionStyleWindowsVista->setData(2);
329 actionStyleWindowsXP->setData(3);
330 actionStyleWindowsClassic->setData(4);
331 actionStylePlastique->setChecked(true);
332 actionStyleWindowsXP->setEnabled((QSysInfo::windowsVersion() & QSysInfo::WV_NT_based) >= QSysInfo::WV_XP && lamexp_themes_enabled());
333 actionStyleWindowsVista->setEnabled((QSysInfo::windowsVersion() & QSysInfo::WV_NT_based) >= QSysInfo::WV_VISTA && lamexp_themes_enabled());
334 connect(m_styleActionGroup, SIGNAL(triggered(QAction*)), this, SLOT(styleActionActivated(QAction*)));
335 styleActionActivated(NULL);
337 //Populate the language menu
338 m_languageActionGroup = new QActionGroup(this);
339 QStringList translations = lamexp_query_translations();
340 while(!translations.isEmpty())
342 QString langId = translations.takeFirst();
343 QAction *currentLanguage = new QAction(this);
344 currentLanguage->setData(langId);
345 currentLanguage->setText(lamexp_translation_name(langId));
346 currentLanguage->setIcon(QIcon(QString(":/flags/%1.png").arg(langId)));
347 currentLanguage->setCheckable(true);
348 m_languageActionGroup->addAction(currentLanguage);
349 menuLanguage->insertAction(actionLoadTranslationFromFile, currentLanguage);
351 menuLanguage->insertSeparator(actionLoadTranslationFromFile);
352 connect(actionLoadTranslationFromFile, SIGNAL(triggered(bool)), this, SLOT(languageFromFileActionActivated(bool)));
353 connect(m_languageActionGroup, SIGNAL(triggered(QAction*)), this, SLOT(languageActionActivated(QAction*)));
355 //Activate tools menu actions
356 actionDisableUpdateReminder->setChecked(!m_settings->autoUpdateEnabled());
357 actionDisableSounds->setChecked(!m_settings->soundsEnabled());
358 actionDisableNeroAacNotifications->setChecked(!m_settings->neroAacNotificationsEnabled());
359 actionDisableSlowStartupNotifications->setChecked(!m_settings->antivirNotificationsEnabled());
360 actionDisableShellIntegration->setChecked(!m_settings->shellIntegrationEnabled());
361 actionDisableShellIntegration->setDisabled(lamexp_portable_mode() && actionDisableShellIntegration->isChecked());
362 actionCheckForBetaUpdates->setChecked(m_settings->autoUpdateCheckBeta() || lamexp_version_demo());
363 actionCheckForBetaUpdates->setEnabled(!lamexp_version_demo());
364 actionHibernateComputer->setChecked(m_settings->hibernateComputer());
365 actionHibernateComputer->setEnabled(lamexp_is_hibernation_supported());
366 connect(actionDisableUpdateReminder, SIGNAL(triggered(bool)), this, SLOT(disableUpdateReminderActionTriggered(bool)));
367 connect(actionDisableSounds, SIGNAL(triggered(bool)), this, SLOT(disableSoundsActionTriggered(bool)));
368 connect(actionDisableNeroAacNotifications, SIGNAL(triggered(bool)), this, SLOT(disableNeroAacNotificationsActionTriggered(bool)));
369 connect(actionDisableSlowStartupNotifications, SIGNAL(triggered(bool)), this, SLOT(disableSlowStartupNotificationsActionTriggered(bool)));
370 connect(actionDisableShellIntegration, SIGNAL(triggered(bool)), this, SLOT(disableShellIntegrationActionTriggered(bool)));
371 connect(actionShowDropBoxWidget, SIGNAL(triggered(bool)), this, SLOT(showDropBoxWidgetActionTriggered(bool)));
372 connect(actionHibernateComputer, SIGNAL(triggered(bool)), this, SLOT(hibernateComputerActionTriggered(bool)));
373 connect(actionCheckForBetaUpdates, SIGNAL(triggered(bool)), this, SLOT(checkForBetaUpdatesActionTriggered(bool)));
374 connect(actionImportCueSheet, SIGNAL(triggered(bool)), this, SLOT(importCueSheetActionTriggered(bool)));
376 //Activate help menu actions
377 actionVisitHomepage->setData(QString::fromLatin1(lamexp_website_url()));
378 actionVisitSupport->setData(QString::fromLatin1(lamexp_support_url()));
379 actionDocumentFAQ->setData(QString("%1/FAQ.html").arg(QApplication::applicationDirPath()));
380 actionDocumentChangelog->setData(QString("%1/Changelog.html").arg(QApplication::applicationDirPath()));
381 actionDocumentTranslate->setData(QString("%1/Translate.html").arg(QApplication::applicationDirPath()));
382 connect(actionCheckUpdates, SIGNAL(triggered()), this, SLOT(checkUpdatesActionActivated()));
383 connect(actionVisitHomepage, SIGNAL(triggered()), this, SLOT(visitHomepageActionActivated()));
384 connect(actionVisitSupport, SIGNAL(triggered()), this, SLOT(visitHomepageActionActivated()));
385 connect(actionDocumentFAQ, SIGNAL(triggered()), this, SLOT(documentActionActivated()));
386 connect(actionDocumentChangelog, SIGNAL(triggered()), this, SLOT(documentActionActivated()));
387 connect(actionDocumentTranslate, SIGNAL(triggered()), this, SLOT(documentActionActivated()));
389 //Center window in screen
390 QRect desktopRect = QApplication::desktop()->screenGeometry();
391 QRect thisRect = this->geometry();
392 move((desktopRect.width() - thisRect.width()) / 2, (desktopRect.height() - thisRect.height()) / 2);
393 setMinimumSize(thisRect.width(), thisRect.height());
395 //Create banner
396 m_banner = new WorkingBanner(this);
398 //Create DropBox widget
399 m_dropBox = new DropBox(this, m_fileListModel, m_settings);
400 connect(m_fileListModel, SIGNAL(modelReset()), m_dropBox, SLOT(modelChanged()));
401 connect(m_fileListModel, SIGNAL(rowsInserted(QModelIndex,int,int)), m_dropBox, SLOT(modelChanged()));
402 connect(m_fileListModel, SIGNAL(rowsRemoved(QModelIndex,int,int)), m_dropBox, SLOT(modelChanged()));
404 //Create message handler thread
405 m_messageHandler = new MessageHandlerThread();
406 m_delayedFileList = new QStringList();
407 m_delayedFileTimer = new QTimer();
408 m_delayedFileTimer->setSingleShot(true);
409 m_delayedFileTimer->setInterval(5000);
410 connect(m_messageHandler, SIGNAL(otherInstanceDetected()), this, SLOT(notifyOtherInstance()), Qt::QueuedConnection);
411 connect(m_messageHandler, SIGNAL(fileReceived(QString)), this, SLOT(addFileDelayed(QString)), Qt::QueuedConnection);
412 connect(m_messageHandler, SIGNAL(folderReceived(QString, bool)), this, SLOT(addFolderDelayed(QString, bool)), Qt::QueuedConnection);
413 connect(m_messageHandler, SIGNAL(killSignalReceived()), this, SLOT(close()), Qt::QueuedConnection);
414 connect(m_delayedFileTimer, SIGNAL(timeout()), this, SLOT(handleDelayedFiles()));
415 m_messageHandler->start();
417 //Load translation file
418 QList<QAction*> languageActions = m_languageActionGroup->actions();
419 while(!languageActions.isEmpty())
421 QAction *currentLanguage = languageActions.takeFirst();
422 if(currentLanguage->data().toString().compare(m_settings->currentLanguage(), Qt::CaseInsensitive) == 0)
424 currentLanguage->setChecked(true);
425 languageActionActivated(currentLanguage);
429 //Re-translate (make sure we translate once)
430 QEvent languageChangeEvent(QEvent::LanguageChange);
431 changeEvent(&languageChangeEvent);
433 //Enable Drag & Drop
434 this->setAcceptDrops(true);
437 ////////////////////////////////////////////////////////////
438 // Destructor
439 ////////////////////////////////////////////////////////////
441 MainWindow::~MainWindow(void)
443 //Stop message handler thread
444 if(m_messageHandler && m_messageHandler->isRunning())
446 m_messageHandler->stop();
447 if(!m_messageHandler->wait(10000))
449 m_messageHandler->terminate();
450 m_messageHandler->wait();
454 //Unset models
455 sourceFileView->setModel(NULL);
456 metaDataView->setModel(NULL);
458 //Free memory
459 LAMEXP_DELETE(m_tabActionGroup);
460 LAMEXP_DELETE(m_styleActionGroup);
461 LAMEXP_DELETE(m_languageActionGroup);
462 LAMEXP_DELETE(m_banner);
463 LAMEXP_DELETE(m_fileSystemModel);
464 LAMEXP_DELETE(m_messageHandler);
465 LAMEXP_DELETE(m_delayedFileList);
466 LAMEXP_DELETE(m_delayedFileTimer);
467 LAMEXP_DELETE(m_metaInfoModel);
468 LAMEXP_DELETE(m_encoderButtonGroup);
469 LAMEXP_DELETE(m_encoderButtonGroup);
470 LAMEXP_DELETE(m_sourceFilesContextMenu);
471 LAMEXP_DELETE(m_outputFolderFavoritesMenu);
472 LAMEXP_DELETE(m_dropBox);
475 ////////////////////////////////////////////////////////////
476 // PRIVATE FUNCTIONS
477 ////////////////////////////////////////////////////////////
480 * Add file to source list
482 void MainWindow::addFiles(const QStringList &files)
484 if(files.isEmpty())
486 return;
489 tabWidget->setCurrentIndex(0);
491 FileAnalyzer *analyzer = new FileAnalyzer(files);
492 connect(analyzer, SIGNAL(fileSelected(QString)), m_banner, SLOT(setText(QString)), Qt::QueuedConnection);
493 connect(analyzer, SIGNAL(fileAnalyzed(AudioFileModel)), m_fileListModel, SLOT(addFile(AudioFileModel)), Qt::QueuedConnection);
494 connect(m_banner, SIGNAL(userAbort()), analyzer, SLOT(abortProcess()), Qt::DirectConnection);
496 m_banner->show(tr("Adding file(s), please wait..."), analyzer);
498 if(analyzer->filesDenied())
500 QMessageBox::warning(this, tr("Access Denied"), QString("%1<br>%2").arg(NOBR(tr("%1 file(s) have been rejected, because read access was not granted!").arg(analyzer->filesDenied())), NOBR(tr("This usually means the file is locked by another process."))));
502 if(analyzer->filesDummyCDDA())
504 QMessageBox::warning(this, tr("CDDA Files"), QString("%1<br><br>%2<br>%3").arg(NOBR(tr("%1 file(s) have been rejected, because they are dummy CDDA files!").arg(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>"))));
506 if(analyzer->filesCueSheet())
508 QMessageBox::warning(this, tr("Cue Sheet"), QString("%1<br>%2").arg(NOBR(tr("%1 file(s) have been rejected, because they appear to be Cue Sheet images!").arg(analyzer->filesCueSheet())), NOBR(tr("Please use LameXP's Cue Sheet wizard for importing Cue Sheet files."))));
510 if(analyzer->filesRejected())
512 QMessageBox::warning(this, tr("Files Rejected"), QString("%1<br>%2").arg(NOBR(tr("%1 file(s) have been rejected, because the file format could not be recognized!").arg(analyzer->filesRejected())), NOBR(tr("This usually means the file is damaged or the file format is not supported."))));
515 LAMEXP_DELETE(analyzer);
516 sourceFileView->scrollToBottom();
517 m_banner->close();
521 * Add folder to source list
523 void MainWindow::addFolder(const QString &path, bool recursive, bool delayed)
525 QFileInfoList folderInfoList;
526 folderInfoList << QFileInfo(path);
527 QStringList fileList;
529 m_banner->show(tr("Scanning folder(s) for files, please wait..."));
531 QApplication::processEvents();
532 GetAsyncKeyState(VK_ESCAPE);
534 while(!folderInfoList.isEmpty())
536 if(GetAsyncKeyState(VK_ESCAPE) & 0x0001)
538 MessageBeep(MB_ICONERROR);
539 qWarning("Operation cancelled by user!");
540 fileList.clear();
541 break;
544 QDir currentDir(folderInfoList.takeFirst().canonicalFilePath());
545 QFileInfoList fileInfoList = currentDir.entryInfoList(QDir::Files | QDir::NoSymLinks);
547 while(!fileInfoList.isEmpty())
549 fileList << fileInfoList.takeFirst().canonicalFilePath();
552 QApplication::processEvents();
554 if(recursive)
556 folderInfoList.append(currentDir.entryInfoList(QDir::Dirs | QDir::NoDotAndDotDot | QDir::NoSymLinks));
557 QApplication::processEvents();
561 m_banner->close();
562 QApplication::processEvents();
564 if(!fileList.isEmpty())
566 if(delayed)
568 addFilesDelayed(fileList);
570 else
572 addFiles(fileList);
578 * Check for updates
580 bool MainWindow::checkForUpdates(void)
582 bool bReadyToInstall = false;
584 UpdateDialog *updateDialog = new UpdateDialog(m_settings, this);
585 updateDialog->exec();
587 if(updateDialog->getSuccess())
589 m_settings->autoUpdateLastCheck(QDate::currentDate().toString(Qt::ISODate));
590 bReadyToInstall = updateDialog->updateReadyToInstall();
593 LAMEXP_DELETE(updateDialog);
594 return bReadyToInstall;
597 void MainWindow::refreshFavorites(void)
599 QList<QAction*> folderList = m_outputFolderFavoritesMenu->actions();
600 QStringList favorites = m_settings->favoriteOutputFolders().split("|", QString::SkipEmptyParts);
601 while(favorites.count() > 6) favorites.removeFirst();
603 while(!folderList.isEmpty())
605 QAction *currentItem = folderList.takeFirst();
606 if(currentItem->isSeparator()) break;
607 m_outputFolderFavoritesMenu->removeAction(currentItem);
608 LAMEXP_DELETE(currentItem);
611 QAction *lastItem = m_outputFolderFavoritesMenu->actions().first();
613 while(!favorites.isEmpty())
615 QString path = favorites.takeLast();
616 if(QDir(path).exists())
618 QAction *action = new QAction(QIcon(":/icons/folder_go.png"), QDir::toNativeSeparators(path), this);
619 action->setData(path);
620 m_outputFolderFavoritesMenu->insertAction(lastItem, action);
621 connect(action, SIGNAL(triggered(bool)), this, SLOT(gotoFavoriteFolder()));
622 lastItem = action;
627 ////////////////////////////////////////////////////////////
628 // EVENTS
629 ////////////////////////////////////////////////////////////
632 * Window is about to be shown
634 void MainWindow::showEvent(QShowEvent *event)
636 m_accepted = false;
637 m_dropNoteLabel->setGeometry(0, 0, sourceFileView->width(), sourceFileView->height());
638 sourceModelChanged();
640 if(!event->spontaneous())
642 tabWidget->setCurrentIndex(0);
645 if(m_firstTimeShown)
647 m_firstTimeShown = false;
648 QTimer::singleShot(0, this, SLOT(windowShown()));
650 else
652 if(m_settings->dropBoxWidgetEnabled())
654 m_dropBox->setVisible(true);
660 * Re-translate the UI
662 void MainWindow::changeEvent(QEvent *e)
664 if(e->type() == QEvent::LanguageChange)
666 int comboBoxIndex[6];
668 //Backup combobox indices, as retranslateUi() resets
669 comboBoxIndex[0] = comboBoxMP3ChannelMode->currentIndex();
670 comboBoxIndex[1] = comboBoxSamplingRate->currentIndex();
671 comboBoxIndex[2] = comboBoxAACProfile->currentIndex();
672 comboBoxIndex[3] = comboBoxAftenCodingMode->currentIndex();
673 comboBoxIndex[4] = comboBoxAftenDRCMode->currentIndex();
674 comboBoxIndex[5] = comboBoxNormalizationMode->currentIndex();
676 //Re-translate from UIC
677 Ui::MainWindow::retranslateUi(this);
679 //Restore combobox indices
680 comboBoxMP3ChannelMode->setCurrentIndex(comboBoxIndex[0]);
681 comboBoxSamplingRate->setCurrentIndex(comboBoxIndex[1]);
682 comboBoxAACProfile->setCurrentIndex(comboBoxIndex[2]);
683 comboBoxAftenCodingMode->setCurrentIndex(comboBoxIndex[3]);
684 comboBoxAftenDRCMode->setCurrentIndex(comboBoxIndex[4]);
685 comboBoxNormalizationMode->setCurrentIndex(comboBoxIndex[5]);
687 //Update the window title
688 if(LAMEXP_DEBUG)
690 setWindowTitle(QString("%1 [!!! DEBUG BUILD !!!]").arg(windowTitle()));
692 else if(lamexp_version_demo())
694 setWindowTitle(QString("%1 [%2]").arg(windowTitle(), tr("DEMO VERSION")));
697 //Manually re-translate widgets that UIC doesn't handle
698 m_dropNoteLabel->setText(QString("» %1 «").arg(tr("You can drop in audio files here!")));
699 m_showDetailsContextAction->setText(tr("Show Details"));
700 m_previewContextAction->setText(tr("Open File in External Application"));
701 m_findFileContextAction->setText(tr("Browse File Location"));
702 m_showFolderContextAction->setText(tr("Browse Selected Folder"));
703 m_addFavoriteFolderAction->setText(tr("Bookmark Current Output Folder"));
705 //Force GUI update
706 m_metaInfoModel->clearData();
707 m_metaInfoModel->setData(m_metaInfoModel->index(4, 1), m_settings->metaInfoPosition());
708 updateEncoder(m_settings->compressionEncoder());
709 updateLameAlgoQuality(sliderLameAlgoQuality->value());
710 updateMaximumInstances(sliderMaxInstances->value());
711 renameOutputPatternChanged(lineEditRenamePattern->text());
713 //Re-install shell integration
714 if(m_settings->shellIntegrationEnabled())
716 ShellIntegration::install();
719 //Force resize, if needed
720 tabPageChanged(tabWidget->currentIndex());
725 * File dragged over window
727 void MainWindow::dragEnterEvent(QDragEnterEvent *event)
729 QStringList formats = event->mimeData()->formats();
731 if(formats.contains("application/x-qt-windows-mime;value=\"FileNameW\"", Qt::CaseInsensitive) && formats.contains("text/uri-list", Qt::CaseInsensitive))
733 event->acceptProposedAction();
738 * File dropped onto window
740 void MainWindow::dropEvent(QDropEvent *event)
742 ABORT_IF_BUSY;
744 QStringList droppedFiles;
745 QList<QUrl> urls = event->mimeData()->urls();
747 while(!urls.isEmpty())
749 QUrl currentUrl = urls.takeFirst();
750 QFileInfo file(currentUrl.toLocalFile());
751 if(!file.exists())
753 continue;
755 if(file.isFile())
757 qDebug("Dropped File: %s", file.canonicalFilePath().toUtf8().constData());
758 droppedFiles << file.canonicalFilePath();
759 continue;
761 if(file.isDir())
763 qDebug("Dropped Folder: %s", file.canonicalFilePath().toUtf8().constData());
764 QList<QFileInfo> list = QDir(file.canonicalFilePath()).entryInfoList(QDir::Files | QDir::NoSymLinks);
765 if(list.count() > 0)
767 for(int j = 0; j < list.count(); j++)
769 droppedFiles << list.at(j).canonicalFilePath();
772 else
774 list = QDir(file.canonicalFilePath()).entryInfoList(QDir::Dirs | QDir::NoDotAndDotDot | QDir::NoSymLinks);
775 for(int j = 0; j < list.count(); j++)
777 qDebug("Descending to Folder: %s", list.at(j).canonicalFilePath().toUtf8().constData());
778 urls.prepend(QUrl::fromLocalFile(list.at(j).canonicalFilePath()));
784 if(!droppedFiles.isEmpty())
786 addFilesDelayed(droppedFiles, true);
791 * Window tries to close
793 void MainWindow::closeEvent(QCloseEvent *event)
795 if(m_banner->isVisible() || m_delayedFileTimer->isActive())
797 MessageBeep(MB_ICONEXCLAMATION);
798 event->ignore();
801 if(m_dropBox)
803 m_dropBox->hide();
808 * Window was resized
810 void MainWindow::resizeEvent(QResizeEvent *event)
812 QMainWindow::resizeEvent(event);
813 m_dropNoteLabel->setGeometry(0, 0, sourceFileView->width(), sourceFileView->height());
817 * Event filter
819 bool MainWindow::eventFilter(QObject *obj, QEvent *event)
821 if(obj == m_fileSystemModel)
823 if(QApplication::overrideCursor() == NULL)
825 QApplication::setOverrideCursor(QCursor(Qt::WaitCursor));
826 QTimer::singleShot(250, this, SLOT(restoreCursor()));
829 else if(obj == outputFolderView)
831 switch(event->type())
833 case QEvent::Enter:
834 case QEvent::Leave:
835 case QEvent::KeyPress:
836 case QEvent::KeyRelease:
837 case QEvent::FocusIn:
838 case QEvent::FocusOut:
839 case QEvent::TouchEnd:
840 outputFolderViewClicked(outputFolderView->currentIndex());
841 break;
844 else if(obj == outputFolderLabel)
846 switch(event->type())
848 case QEvent::MouseButtonPress:
849 if(dynamic_cast<QMouseEvent*>(event)->button() == Qt::LeftButton)
851 QDesktopServices::openUrl(QString("file:///%1").arg(outputFolderLabel->text()));
853 break;
854 case QEvent::Enter:
855 outputFolderLabel->setForegroundRole(QPalette::Link);
856 break;
857 case QEvent::Leave:
858 outputFolderLabel->setForegroundRole(QPalette::WindowText);
859 break;
862 else if(obj == outputFoldersFovoritesLabel)
864 QMouseEvent *mouseEvent = dynamic_cast<QMouseEvent*>(event);
865 QPoint pos = (mouseEvent != NULL) ? mouseEvent->pos() : QPoint();
866 QWidget *sender = dynamic_cast<QLabel*>(obj);
868 switch(event->type())
870 case QEvent::Enter:
871 outputFoldersFovoritesLabel->setFrameShadow(QFrame::Raised);
872 break;
873 case QEvent::MouseButtonPress:
874 outputFoldersFovoritesLabel->setFrameShadow(QFrame::Sunken);
875 break;
876 case QEvent::MouseButtonRelease:
877 outputFoldersFovoritesLabel->setFrameShadow(QFrame::Raised);
878 if(sender && mouseEvent)
880 if(pos.x() <= sender->width() && pos.y() <= sender->height() && pos.x() >= 0 && pos.y() >= 0 && mouseEvent->button() != Qt::MidButton)
882 m_outputFolderFavoritesMenu->popup(sender->mapToGlobal(pos));
885 break;
886 case QEvent::Leave:
887 outputFoldersFovoritesLabel->setFrameShadow(QFrame::Plain);
888 break;
892 return false;
895 bool MainWindow::winEvent(MSG *message, long *result)
897 return WinSevenTaskbar::handleWinEvent(message, result);
900 ////////////////////////////////////////////////////////////
901 // Slots
902 ////////////////////////////////////////////////////////////
904 // =========================================================
905 // Show window slots
906 // =========================================================
909 * Window shown
911 void MainWindow::windowShown(void)
913 QStringList arguments = QApplication::arguments();
915 //First run?
916 bool firstRun = false;
917 for(int i = 0; i < arguments.count(); i++)
919 if(!arguments[i].compare("--first-run", Qt::CaseInsensitive)) firstRun = true;
922 //Check license
923 if((m_settings->licenseAccepted() <= 0) || firstRun)
925 int iAccepted = -1;
927 if((m_settings->licenseAccepted() == 0) || firstRun)
929 AboutDialog *about = new AboutDialog(m_settings, this, true);
930 iAccepted = about->exec();
931 LAMEXP_DELETE(about);
934 if(iAccepted <= 0)
936 m_settings->licenseAccepted(-1);
937 QApplication::processEvents();
938 PlaySound(MAKEINTRESOURCE(IDR_WAVE_WHAMMY), GetModuleHandle(NULL), SND_RESOURCE | SND_SYNC);
939 QMessageBox::critical(this, tr("License Declined"), tr("You have declined the license. Consequently the application will exit now!"), tr("Goodbye!"));
940 QFileInfo uninstallerInfo = QFileInfo(QString("%1/Uninstall.exe").arg(QApplication::applicationDirPath()));
941 if(uninstallerInfo.exists())
943 QString uninstallerDir = uninstallerInfo.canonicalPath();
944 QString uninstallerPath = uninstallerInfo.canonicalFilePath();
945 for(int i = 0; i < 3; i++)
947 HINSTANCE res = ShellExecuteW(this->winId(), L"open", QWCHAR(QDir::toNativeSeparators(uninstallerPath)), L"/Force", QWCHAR(QDir::toNativeSeparators(uninstallerDir)), SW_SHOWNORMAL);
948 if(reinterpret_cast<int>(res) > 32) break;
951 else
953 MoveFileEx(QWCHAR(QDir::toNativeSeparators(QFileInfo(QApplication::applicationFilePath()).canonicalFilePath())), NULL, MOVEFILE_DELAY_UNTIL_REBOOT | MOVEFILE_REPLACE_EXISTING);
955 QApplication::quit();
956 return;
959 PlaySound(MAKEINTRESOURCE(IDR_WAVE_WOOHOO), GetModuleHandle(NULL), SND_RESOURCE | SND_SYNC);
960 m_settings->licenseAccepted(1);
961 if(lamexp_version_demo()) showAnnounceBox();
964 //Check for expiration
965 if(lamexp_version_demo())
967 if(QDate::currentDate() >= lamexp_version_expires())
969 qWarning("Binary has expired !!!");
970 PlaySound(MAKEINTRESOURCE(IDR_WAVE_WHAMMY), GetModuleHandle(NULL), SND_RESOURCE | SND_SYNC);
971 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)
973 checkForUpdates();
975 QApplication::quit();
976 return;
980 //Slow startup indicator
981 if(m_settings->slowStartup() && m_settings->antivirNotificationsEnabled())
983 QString message;
984 message += NOBR(tr("It seems that a bogus anti-virus software is slowing down the startup of LameXP.")).append("<br>");
985 message += NOBR(tr("Please refer to the %1 document for details and solutions!")).arg("<a href=\"http://lamexp.git.sourceforge.net/git/gitweb.cgi?p=lamexp/lamexp;a=blob_plain;f=doc/FAQ.html;hb=HEAD#df406578\">F.A.Q.</a>").append("<br>");
986 if(QMessageBox::warning(this, tr("Slow Startup"), message, tr("Discard"), tr("Don't Show Again")) == 1)
988 m_settings->antivirNotificationsEnabled(false);
989 actionDisableSlowStartupNotifications->setChecked(!m_settings->antivirNotificationsEnabled());
993 //Update reminder
994 if(QDate::currentDate() >= lamexp_version_date().addYears(1))
996 qWarning("Binary is more than a year old, time to update!");
997 if(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")) == 0)
999 if(checkForUpdates())
1001 QApplication::quit();
1002 return;
1005 else
1007 QApplication::quit();
1008 return;
1011 else if(m_settings->autoUpdateEnabled())
1013 QDate lastUpdateCheck = QDate::fromString(m_settings->autoUpdateLastCheck(), Qt::ISODate);
1014 if(!firstRun && (!lastUpdateCheck.isValid() || QDate::currentDate() >= lastUpdateCheck.addDays(14)))
1016 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)
1018 if(checkForUpdates())
1020 QApplication::quit();
1021 return;
1027 //Check for AAC support
1028 if(m_neroEncoderAvailable)
1030 if(m_settings->neroAacNotificationsEnabled())
1032 if(lamexp_tool_version("neroAacEnc.exe") < lamexp_toolver_neroaac())
1034 QString messageText;
1035 messageText += NOBR(tr("LameXP detected that your version of the Nero AAC encoder is outdated!")).append("<br>");
1036 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>");
1037 messageText += NOBR(tr("You can download the latest version of the Nero AAC encoder from the Nero website at:")).append("<br>");
1038 messageText += "<nobr><tt>" + LINK(AboutDialog::neroAacUrl) + "</tt></nobr><br><br>";
1039 messageText += NOBR(tr("(Hint: Please ignore the name of the downloaded ZIP file and check the included 'changelog.txt' instead!)")).append("<br>");
1040 QMessageBox::information(this, tr("AAC Encoder Outdated"), messageText);
1044 else
1046 if(m_settings->neroAacNotificationsEnabled() && (!(m_fhgEncoderAvailable || m_qaacEncoderAvailable)))
1048 QString appPath = QDir(QCoreApplication::applicationDirPath()).canonicalPath();
1049 if(appPath.isEmpty()) appPath = QCoreApplication::applicationDirPath();
1050 QString messageText;
1051 messageText += NOBR(tr("The Nero AAC encoder could not be found. AAC encoding support will be disabled.")).append("<br>");
1052 messageText += NOBR(tr("Please put 'neroAacEnc.exe', 'neroAacDec.exe' and 'neroAacTag.exe' into the LameXP directory!")).append("<br><br>");
1053 messageText += NOBR(tr("Your LameXP directory is located here:")).append("<br>");
1054 messageText += QString("<nobr><tt>%1</tt></nobr><br><br>").arg(FSLINK(QDir::toNativeSeparators(appPath)));
1055 messageText += NOBR(tr("You can download the Nero AAC encoder for free from the official Nero website at:")).append("<br>");
1056 messageText += "<nobr><tt>" + LINK(AboutDialog::neroAacUrl) + "</tt></nobr><br>";
1057 if(QMessageBox::information(this, tr("AAC Support Disabled"), messageText, tr("Discard"), tr("Don't Show Again")) == 1)
1059 m_settings->neroAacNotificationsEnabled(false);
1060 actionDisableNeroAacNotifications->setChecked(!m_settings->neroAacNotificationsEnabled());
1065 //Add files from the command-line
1066 for(int i = 0; i < arguments.count() - 1; i++)
1068 QStringList addedFiles;
1069 if(!arguments[i].compare("--add", Qt::CaseInsensitive))
1071 QFileInfo currentFile(arguments[++i].trimmed());
1072 qDebug("Adding file from CLI: %s", currentFile.absoluteFilePath().toUtf8().constData());
1073 addedFiles.append(currentFile.absoluteFilePath());
1075 if(!addedFiles.isEmpty())
1077 addFilesDelayed(addedFiles);
1081 //Add folders from the command-line
1082 for(int i = 0; i < arguments.count() - 1; i++)
1084 if(!arguments[i].compare("--add-folder", Qt::CaseInsensitive))
1086 QFileInfo currentFile(arguments[++i].trimmed());
1087 qDebug("Adding folder from CLI: %s", currentFile.absoluteFilePath().toUtf8().constData());
1088 addFolder(currentFile.absoluteFilePath(), false, true);
1090 if(!arguments[i].compare("--add-recursive", Qt::CaseInsensitive))
1092 QFileInfo currentFile(arguments[++i].trimmed());
1093 qDebug("Adding folder recursively from CLI: %s", currentFile.absoluteFilePath().toUtf8().constData());
1094 addFolder(currentFile.absoluteFilePath(), true, true);
1098 //Enable shell integration
1099 if(m_settings->shellIntegrationEnabled())
1101 ShellIntegration::install();
1104 //Make DropBox visible
1105 if(m_settings->dropBoxWidgetEnabled())
1107 m_dropBox->setVisible(true);
1112 * Show announce box
1114 void MainWindow::showAnnounceBox(void)
1116 const QString announceText = QString("%1<br><br>%2<br><nobr><tt>%3</tt></nobr><br>").arg
1118 NOBR("We are still looking for LameXP translators!"),
1119 NOBR("If you are willing to translate LameXP to your language or to complete an existing translation, please refer to:"),
1120 LINK("http://mulder.brhack.net/public/doc/lamexp_translate.html")
1123 QMessageBox *announceBox = new QMessageBox(QMessageBox::Warning, "We want you!", announceText, QMessageBox::NoButton, this);
1124 announceBox->setWindowFlags(Qt::Window | Qt::WindowTitleHint | Qt::CustomizeWindowHint);
1125 announceBox->setIconPixmap(QIcon(":/images/Announcement.png").pixmap(64,79));
1126 QPushButton *button1 = announceBox->addButton(tr("Discard"), QMessageBox::AcceptRole);
1127 QPushButton *button2 = announceBox->addButton(tr("Discard"), QMessageBox::NoRole);
1128 button1->setVisible(false);
1129 button2->setEnabled(false);
1131 QTimer *announceTimer = new QTimer(this);
1132 announceTimer->setSingleShot(true);
1133 announceTimer->setInterval(8000);
1134 connect(announceTimer, SIGNAL(timeout()), button1, SLOT(show()));
1135 connect(announceTimer, SIGNAL(timeout()), button2, SLOT(hide()));
1137 announceTimer->start();
1138 while(announceTimer->isActive()) announceBox->exec();
1139 announceTimer->stop();
1141 LAMEXP_DELETE(announceTimer);
1142 LAMEXP_DELETE(announceBox);
1145 // =========================================================
1146 // Main button solots
1147 // =========================================================
1150 * Encode button
1152 void MainWindow::encodeButtonClicked(void)
1154 static const unsigned __int64 oneGigabyte = 1073741824ui64;
1155 static const unsigned __int64 minimumFreeDiskspaceMultiplier = 2ui64;
1156 static const char *writeTestBuffer = "LAMEXP_WRITE_TEST";
1158 ABORT_IF_BUSY;
1160 if(m_fileListModel->rowCount() < 1)
1162 QMessageBox::warning(this, tr("LameXP"), NOBR(tr("You must add at least one file to the list before proceeding!")));
1163 tabWidget->setCurrentIndex(0);
1164 return;
1167 QString tempFolder = m_settings->customTempPathEnabled() ? m_settings->customTempPath() : lamexp_temp_folder2();
1168 if(!QFileInfo(tempFolder).exists() || !QFileInfo(tempFolder).isDir())
1170 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)
1172 while(checkBoxUseSystemTempFolder->isChecked() == m_settings->customTempPathEnabledDefault()) checkBoxUseSystemTempFolder->click();
1174 return;
1177 bool ok = false;
1178 unsigned __int64 currentFreeDiskspace = lamexp_free_diskspace(tempFolder, &ok);
1180 if(ok && (currentFreeDiskspace < (oneGigabyte * minimumFreeDiskspaceMultiplier)))
1182 QStringList tempFolderParts = tempFolder.split("/", QString::SkipEmptyParts, Qt::CaseInsensitive);
1183 tempFolderParts.takeLast();
1184 if(m_settings->soundsEnabled()) PlaySound(MAKEINTRESOURCE(IDR_WAVE_WHAMMY), GetModuleHandle(NULL), SND_RESOURCE | SND_SYNC);
1185 QString lowDiskspaceMsg = QString("%1<br>%2<br><br>%3<br>%4<br>").arg
1187 NOBR(tr("There are less than %1 GB of free diskspace available on your system's TEMP folder.").arg(QString::number(minimumFreeDiskspaceMultiplier))),
1188 NOBR(tr("It is highly recommend to free up more diskspace before proceeding with the encode!")),
1189 NOBR(tr("Your TEMP folder is located at:")),
1190 QString("<nobr><tt>%1</tt></nobr>").arg(FSLINK(tempFolderParts.join("\\")))
1192 switch(QMessageBox::warning(this, tr("Low Diskspace Warning"), lowDiskspaceMsg, tr("Abort Encoding Process"), tr("Clean Disk Now"), tr("Ignore")))
1194 case 1:
1195 QProcess::startDetached(QString("%1/cleanmgr.exe").arg(lamexp_known_folder(lamexp_folder_systemfolder)), QStringList() << "/D" << tempFolderParts.first());
1196 case 0:
1197 return;
1198 break;
1199 default:
1200 QMessageBox::warning(this, tr("Low Diskspace"), tr("You are proceeding with low diskspace. Problems might occur!"));
1201 break;
1205 switch(m_settings->compressionEncoder())
1207 case SettingsModel::MP3Encoder:
1208 case SettingsModel::VorbisEncoder:
1209 case SettingsModel::AACEncoder:
1210 case SettingsModel::AC3Encoder:
1211 case SettingsModel::FLACEncoder:
1212 case SettingsModel::PCMEncoder:
1213 break;
1214 default:
1215 QMessageBox::warning(this, tr("LameXP"), tr("Sorry, an unsupported encoder has been chosen!"));
1216 tabWidget->setCurrentIndex(3);
1217 return;
1220 if(!m_settings->outputToSourceDir())
1222 QFile writeTest(QString("%1/~%2.txt").arg(m_settings->outputDir(), lamexp_rand_str()));
1223 if(!(writeTest.open(QIODevice::ReadWrite) && (writeTest.write(writeTestBuffer) == strlen(writeTestBuffer))))
1225 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!")));
1226 tabWidget->setCurrentIndex(1);
1227 return;
1229 else
1231 writeTest.close();
1232 writeTest.remove();
1236 m_accepted = true;
1237 close();
1241 * About button
1243 void MainWindow::aboutButtonClicked(void)
1245 ABORT_IF_BUSY;
1247 TEMP_HIDE_DROPBOX
1249 AboutDialog *aboutBox = new AboutDialog(m_settings, this);
1250 aboutBox->exec();
1251 LAMEXP_DELETE(aboutBox);
1256 * Close button
1258 void MainWindow::closeButtonClicked(void)
1260 ABORT_IF_BUSY;
1261 close();
1264 // =========================================================
1265 // Tab widget slots
1266 // =========================================================
1269 * Tab page changed
1271 void MainWindow::tabPageChanged(int idx)
1273 QList<QAction*> actions = m_tabActionGroup->actions();
1274 for(int i = 0; i < actions.count(); i++)
1276 bool ok = false;
1277 int actionIndex = actions.at(i)->data().toInt(&ok);
1278 if(ok && actionIndex == idx)
1280 actions.at(i)->setChecked(true);
1284 int initialWidth = this->width();
1285 int maximumWidth = QApplication::desktop()->width();
1287 if(this->isVisible())
1289 while(tabWidget->width() < tabWidget->sizeHint().width())
1291 int previousWidth = this->width();
1292 this->resize(this->width() + 1, this->height());
1293 if(this->frameGeometry().width() >= maximumWidth) break;
1294 if(this->width() <= previousWidth) break;
1298 if(idx == tabWidget->indexOf(tabOptions) && scrollArea->widget() && this->isVisible())
1300 for(int i = 0; i < 2; i++)
1302 QApplication::processEvents();
1303 while(scrollArea->viewport()->width() < scrollArea->widget()->width())
1305 int previousWidth = this->width();
1306 this->resize(this->width() + 1, this->height());
1307 if(this->frameGeometry().width() >= maximumWidth) break;
1308 if(this->width() <= previousWidth) break;
1312 else if(idx == tabWidget->indexOf(tabSourceFiles))
1314 m_dropNoteLabel->setGeometry(0, 0, sourceFileView->width(), sourceFileView->height());
1316 else if(idx == tabWidget->indexOf(tabOutputDir))
1318 if(!m_OutputFolderViewInitialized)
1320 QTimer::singleShot(0, this, SLOT(initOutputFolderModel()));
1324 if(initialWidth < this->width())
1326 QPoint prevPos = this->pos();
1327 int delta = (this->width() - initialWidth) >> 2;
1328 move(prevPos.x() - delta, prevPos.y());
1333 * Tab action triggered
1335 void MainWindow::tabActionActivated(QAction *action)
1337 if(action && action->data().isValid())
1339 bool ok = false;
1340 int index = action->data().toInt(&ok);
1341 if(ok)
1343 tabWidget->setCurrentIndex(index);
1348 // =========================================================
1349 // View menu slots
1350 // =========================================================
1353 * Style action triggered
1355 void MainWindow::styleActionActivated(QAction *action)
1357 //Change style setting
1358 if(action && action->data().isValid())
1360 bool ok = false;
1361 int actionIndex = action->data().toInt(&ok);
1362 if(ok)
1364 m_settings->interfaceStyle(actionIndex);
1368 //Set up the new style
1369 switch(m_settings->interfaceStyle())
1371 case 1:
1372 if(actionStyleCleanlooks->isEnabled())
1374 actionStyleCleanlooks->setChecked(true);
1375 QApplication::setStyle(new QCleanlooksStyle());
1376 break;
1378 case 2:
1379 if(actionStyleWindowsVista->isEnabled())
1381 actionStyleWindowsVista->setChecked(true);
1382 QApplication::setStyle(new QWindowsVistaStyle());
1383 break;
1385 case 3:
1386 if(actionStyleWindowsXP->isEnabled())
1388 actionStyleWindowsXP->setChecked(true);
1389 QApplication::setStyle(new QWindowsXPStyle());
1390 break;
1392 case 4:
1393 if(actionStyleWindowsClassic->isEnabled())
1395 actionStyleWindowsClassic->setChecked(true);
1396 QApplication::setStyle(new QWindowsStyle());
1397 break;
1399 default:
1400 actionStylePlastique->setChecked(true);
1401 QApplication::setStyle(new QPlastiqueStyle());
1402 break;
1405 //Force re-translate after style change
1406 changeEvent(new QEvent(QEvent::LanguageChange));
1410 * Language action triggered
1412 void MainWindow::languageActionActivated(QAction *action)
1414 if(action->data().type() == QVariant::String)
1416 QString langId = action->data().toString();
1418 if(lamexp_install_translator(langId))
1420 action->setChecked(true);
1421 m_settings->currentLanguage(langId);
1427 * Load language from file action triggered
1429 void MainWindow::languageFromFileActionActivated(bool checked)
1431 QFileDialog dialog(this, tr("Load Translation"));
1432 dialog.setFileMode(QFileDialog::ExistingFile);
1433 dialog.setNameFilter(QString("%1 (*.qm)").arg(tr("Translation Files")));
1435 if(dialog.exec())
1437 QStringList selectedFiles = dialog.selectedFiles();
1438 if(lamexp_install_translator_from_file(selectedFiles.first()))
1440 QList<QAction*> actions = m_languageActionGroup->actions();
1441 while(!actions.isEmpty())
1443 actions.takeFirst()->setChecked(false);
1446 else
1448 languageActionActivated(m_languageActionGroup->actions().first());
1453 // =========================================================
1454 // Tools menu slots
1455 // =========================================================
1458 * Disable update reminder action
1460 void MainWindow::disableUpdateReminderActionTriggered(bool checked)
1462 if(checked)
1464 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))
1466 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!"))));
1467 m_settings->autoUpdateEnabled(false);
1469 else
1471 m_settings->autoUpdateEnabled(true);
1474 else
1476 QMessageBox::information(this, tr("Update Reminder"), NOBR(tr("The update reminder has been re-enabled.")));
1477 m_settings->autoUpdateEnabled(true);
1480 actionDisableUpdateReminder->setChecked(!m_settings->autoUpdateEnabled());
1484 * Disable sound effects action
1486 void MainWindow::disableSoundsActionTriggered(bool checked)
1488 if(checked)
1490 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))
1492 QMessageBox::information(this, tr("Sound Effects"), NOBR(tr("All sound effects have been disabled.")));
1493 m_settings->soundsEnabled(false);
1495 else
1497 m_settings->soundsEnabled(true);
1500 else
1502 QMessageBox::information(this, tr("Sound Effects"), NOBR(tr("The sound effects have been re-enabled.")));
1503 m_settings->soundsEnabled(true);
1506 actionDisableSounds->setChecked(!m_settings->soundsEnabled());
1510 * Disable Nero AAC encoder action
1512 void MainWindow::disableNeroAacNotificationsActionTriggered(bool checked)
1514 if(checked)
1516 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))
1518 QMessageBox::information(this, tr("Nero AAC Notifications"), NOBR(tr("All Nero AAC Encoder notifications have been disabled.")));
1519 m_settings->neroAacNotificationsEnabled(false);
1521 else
1523 m_settings->neroAacNotificationsEnabled(true);
1526 else
1528 QMessageBox::information(this, tr("Nero AAC Notifications"), NOBR(tr("The Nero AAC Encoder notifications have been re-enabled.")));
1529 m_settings->neroAacNotificationsEnabled(true);
1532 actionDisableNeroAacNotifications->setChecked(!m_settings->neroAacNotificationsEnabled());
1536 * Disable slow startup action
1538 void MainWindow::disableSlowStartupNotificationsActionTriggered(bool checked)
1540 if(checked)
1542 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))
1544 QMessageBox::information(this, tr("Slow Startup Notifications"), NOBR(tr("The slow startup notifications have been disabled.")));
1545 m_settings->antivirNotificationsEnabled(false);
1547 else
1549 m_settings->antivirNotificationsEnabled(true);
1552 else
1554 QMessageBox::information(this, tr("Slow Startup Notifications"), NOBR(tr("The slow startup notifications have been re-enabled.")));
1555 m_settings->antivirNotificationsEnabled(true);
1558 actionDisableSlowStartupNotifications->setChecked(!m_settings->antivirNotificationsEnabled());
1562 * Import a Cue Sheet file
1564 void MainWindow::importCueSheetActionTriggered(bool checked)
1566 ABORT_IF_BUSY;
1568 TEMP_HIDE_DROPBOX
1570 while(true)
1572 int result = 0;
1573 QString selectedCueFile;
1575 if(USE_NATIVE_FILE_DIALOG)
1577 selectedCueFile = QFileDialog::getOpenFileName(this, tr("Open Cue Sheet"), m_settings->mostRecentInputPath(), QString("%1 (*.cue)").arg(tr("Cue Sheet File")));
1579 else
1581 QFileDialog dialog(this, tr("Open Cue Sheet"));
1582 dialog.setFileMode(QFileDialog::ExistingFile);
1583 dialog.setNameFilter(QString("%1 (*.cue)").arg(tr("Cue Sheet File")));
1584 dialog.setDirectory(m_settings->mostRecentInputPath());
1585 if(dialog.exec())
1587 selectedCueFile = dialog.selectedFiles().first();
1591 if(!selectedCueFile.isEmpty())
1593 m_settings->mostRecentInputPath(QFileInfo(selectedCueFile).canonicalPath());
1594 CueImportDialog *cueImporter = new CueImportDialog(this, m_fileListModel, selectedCueFile);
1595 result = cueImporter->exec();
1596 LAMEXP_DELETE(cueImporter);
1599 if(result != (-1)) break;
1605 * Show the "drop box" widget
1607 void MainWindow::showDropBoxWidgetActionTriggered(bool checked)
1609 m_settings->dropBoxWidgetEnabled(true);
1611 if(!m_dropBox->isVisible())
1613 m_dropBox->show();
1616 lamexp_blink_window(m_dropBox);
1620 * Check for beta (pre-release) updates
1622 void MainWindow::checkForBetaUpdatesActionTriggered(bool checked)
1624 bool checkUpdatesNow = false;
1626 if(checked)
1628 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))
1630 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")))
1632 checkUpdatesNow = true;
1634 m_settings->autoUpdateCheckBeta(true);
1636 else
1638 m_settings->autoUpdateCheckBeta(false);
1641 else
1643 QMessageBox::information(this, tr("Beta Updates"), NOBR(tr("LameXP will <i>not</i> check for Beta (pre-release) updates from now on.")));
1644 m_settings->autoUpdateCheckBeta(false);
1647 actionCheckForBetaUpdates->setChecked(m_settings->autoUpdateCheckBeta());
1649 if(checkUpdatesNow)
1651 if(checkForUpdates())
1653 QApplication::quit();
1659 * Hibernate computer action
1661 void MainWindow::hibernateComputerActionTriggered(bool checked)
1663 if(checked)
1665 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))
1667 QMessageBox::information(this, tr("Hibernate Computer"), NOBR(tr("LameXP will hibernate the computer on shutdown from now on.")));
1668 m_settings->hibernateComputer(true);
1670 else
1672 m_settings->hibernateComputer(false);
1675 else
1677 QMessageBox::information(this, tr("Hibernate Computer"), NOBR(tr("LameXP will <i>not</i> hibernate the computer on shutdown from now on.")));
1678 m_settings->hibernateComputer(false);
1681 actionHibernateComputer->setChecked(m_settings->hibernateComputer());
1685 * Disable shell integration action
1687 void MainWindow::disableShellIntegrationActionTriggered(bool checked)
1689 if(checked)
1691 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))
1693 ShellIntegration::remove();
1694 QMessageBox::information(this, tr("Shell Integration"), NOBR(tr("The LameXP shell integration has been disabled.")));
1695 m_settings->shellIntegrationEnabled(false);
1697 else
1699 m_settings->shellIntegrationEnabled(true);
1702 else
1704 ShellIntegration::install();
1705 QMessageBox::information(this, tr("Shell Integration"), NOBR(tr("The LameXP shell integration has been re-enabled.")));
1706 m_settings->shellIntegrationEnabled(true);
1709 actionDisableShellIntegration->setChecked(!m_settings->shellIntegrationEnabled());
1711 if(lamexp_portable_mode() && actionDisableShellIntegration->isChecked())
1713 actionDisableShellIntegration->setEnabled(false);
1717 // =========================================================
1718 // Help menu slots
1719 // =========================================================
1722 * Visit homepage action
1724 void MainWindow::visitHomepageActionActivated(void)
1726 if(QAction *action = dynamic_cast<QAction*>(QObject::sender()))
1728 if(action->data().isValid() && (action->data().type() == QVariant::String))
1730 QDesktopServices::openUrl(QUrl(action->data().toString()));
1736 * Show document
1738 void MainWindow::documentActionActivated(void)
1740 if(QAction *action = dynamic_cast<QAction*>(QObject::sender()))
1742 if(action->data().isValid() && (action->data().type() == QVariant::String))
1744 QFileInfo document(action->data().toString());
1745 QFileInfo resource(QString(":/doc/%1.html").arg(document.baseName()));
1746 if(document.exists() && document.isFile() && (document.size() == resource.size()))
1748 QDesktopServices::openUrl(QUrl::fromLocalFile(document.canonicalFilePath()));
1750 else
1752 QFile source(resource.filePath());
1753 QFile output(QString("%1/%2.%3.html").arg(lamexp_temp_folder2(), document.baseName(), lamexp_rand_str().left(8)));
1754 if(source.open(QIODevice::ReadOnly) && output.open(QIODevice::ReadWrite))
1756 output.write(source.readAll());
1757 action->setData(output.fileName());
1758 source.close();
1759 output.close();
1760 QDesktopServices::openUrl(QUrl::fromLocalFile(output.fileName()));
1768 * Check for updates action
1770 void MainWindow::checkUpdatesActionActivated(void)
1772 ABORT_IF_BUSY;
1773 bool bFlag = false;
1775 TEMP_HIDE_DROPBOX
1777 bFlag = checkForUpdates();
1780 if(bFlag)
1782 QApplication::quit();
1786 // =========================================================
1787 // Source file slots
1788 // =========================================================
1791 * Add file(s) button
1793 void MainWindow::addFilesButtonClicked(void)
1795 ABORT_IF_BUSY;
1797 TEMP_HIDE_DROPBOX
1799 if(USE_NATIVE_FILE_DIALOG)
1801 QStringList fileTypeFilters = DecoderRegistry::getSupportedTypes();
1802 QStringList selectedFiles = QFileDialog::getOpenFileNames(this, tr("Add file(s)"), m_settings->mostRecentInputPath(), fileTypeFilters.join(";;"));
1803 if(!selectedFiles.isEmpty())
1805 m_settings->mostRecentInputPath(QFileInfo(selectedFiles.first()).canonicalPath());
1806 addFiles(selectedFiles);
1809 else
1811 QFileDialog dialog(this, tr("Add file(s)"));
1812 QStringList fileTypeFilters = DecoderRegistry::getSupportedTypes();
1813 dialog.setFileMode(QFileDialog::ExistingFiles);
1814 dialog.setNameFilter(fileTypeFilters.join(";;"));
1815 dialog.setDirectory(m_settings->mostRecentInputPath());
1816 if(dialog.exec())
1818 QStringList selectedFiles = dialog.selectedFiles();
1819 if(!selectedFiles.isEmpty())
1821 m_settings->mostRecentInputPath(QFileInfo(selectedFiles.first()).canonicalPath());
1822 addFiles(selectedFiles);
1830 * Open folder action
1832 void MainWindow::openFolderActionActivated(void)
1834 ABORT_IF_BUSY;
1835 QString selectedFolder;
1837 if(QAction *action = dynamic_cast<QAction*>(QObject::sender()))
1839 TEMP_HIDE_DROPBOX
1841 if(USE_NATIVE_FILE_DIALOG)
1843 selectedFolder = QFileDialog::getExistingDirectory(this, tr("Add Folder"), m_settings->mostRecentInputPath());
1845 else
1847 QFileDialog dialog(this, tr("Add Folder"));
1848 dialog.setFileMode(QFileDialog::DirectoryOnly);
1849 dialog.setDirectory(m_settings->mostRecentInputPath());
1850 if(dialog.exec())
1852 selectedFolder = dialog.selectedFiles().first();
1856 if(!selectedFolder.isEmpty())
1858 m_settings->mostRecentInputPath(QDir(selectedFolder).canonicalPath());
1859 addFolder(selectedFolder, action->data().toBool());
1866 * Remove file button
1868 void MainWindow::removeFileButtonClicked(void)
1870 if(sourceFileView->currentIndex().isValid())
1872 int iRow = sourceFileView->currentIndex().row();
1873 m_fileListModel->removeFile(sourceFileView->currentIndex());
1874 sourceFileView->selectRow(iRow < m_fileListModel->rowCount() ? iRow : m_fileListModel->rowCount()-1);
1879 * Clear files button
1881 void MainWindow::clearFilesButtonClicked(void)
1883 m_fileListModel->clearFiles();
1887 * Move file up button
1889 void MainWindow::fileUpButtonClicked(void)
1891 if(sourceFileView->currentIndex().isValid())
1893 int iRow = sourceFileView->currentIndex().row() - 1;
1894 m_fileListModel->moveFile(sourceFileView->currentIndex(), -1);
1895 sourceFileView->selectRow(iRow >= 0 ? iRow : 0);
1900 * Move file down button
1902 void MainWindow::fileDownButtonClicked(void)
1904 if(sourceFileView->currentIndex().isValid())
1906 int iRow = sourceFileView->currentIndex().row() + 1;
1907 m_fileListModel->moveFile(sourceFileView->currentIndex(), 1);
1908 sourceFileView->selectRow(iRow < m_fileListModel->rowCount() ? iRow : m_fileListModel->rowCount()-1);
1913 * Show details button
1915 void MainWindow::showDetailsButtonClicked(void)
1917 ABORT_IF_BUSY;
1919 int iResult = 0;
1920 MetaInfoDialog *metaInfoDialog = new MetaInfoDialog(this);
1921 QModelIndex index = sourceFileView->currentIndex();
1923 while(index.isValid())
1925 if(iResult > 0)
1927 index = m_fileListModel->index(index.row() + 1, index.column());
1928 sourceFileView->selectRow(index.row());
1930 if(iResult < 0)
1932 index = m_fileListModel->index(index.row() - 1, index.column());
1933 sourceFileView->selectRow(index.row());
1936 AudioFileModel &file = (*m_fileListModel)[index];
1937 TEMP_HIDE_DROPBOX
1939 iResult = metaInfoDialog->exec(file, index.row() > 0, index.row() < m_fileListModel->rowCount() - 1);
1942 if(iResult == INT_MAX)
1944 m_metaInfoModel->assignInfoFrom(file);
1945 tabWidget->setCurrentIndex(tabWidget->indexOf(tabMetaData));
1946 break;
1949 if(!iResult) break;
1952 LAMEXP_DELETE(metaInfoDialog);
1956 * Show context menu for source files
1958 void MainWindow::sourceFilesContextMenu(const QPoint &pos)
1960 QAbstractScrollArea *scrollArea = dynamic_cast<QAbstractScrollArea*>(QObject::sender());
1961 QWidget *sender = scrollArea ? scrollArea->viewport() : dynamic_cast<QWidget*>(QObject::sender());
1963 if(sender)
1965 if(pos.x() <= sender->width() && pos.y() <= sender->height() && pos.x() >= 0 && pos.y() >= 0)
1967 m_sourceFilesContextMenu->popup(sender->mapToGlobal(pos));
1973 * Scrollbar of source files moved
1975 void MainWindow::sourceFilesScrollbarMoved(int)
1977 sourceFileView->resizeColumnToContents(0);
1981 * Open selected file in external player
1983 void MainWindow::previewContextActionTriggered(void)
1985 const static char *appNames[3] = {"smplayer_portable.exe", "smplayer.exe", "mplayer.exe"};
1986 const static wchar_t *registryKey = L"SOFTWARE\\Wow6432Node\\Microsoft\\Windows\\CurrentVersion\\Uninstall\\{DB9E4EAB-2717-499F-8D56-4CC8A644AB60}";
1988 QModelIndex index = sourceFileView->currentIndex();
1989 if(!index.isValid())
1991 return;
1994 QString mplayerPath;
1995 HKEY registryKeyHandle;
1997 if(RegOpenKeyExW(HKEY_LOCAL_MACHINE, registryKey, 0, KEY_READ, &registryKeyHandle) == ERROR_SUCCESS)
1999 wchar_t Buffer[4096];
2000 DWORD BuffSize = sizeof(wchar_t*) * 4096;
2001 if(RegQueryValueExW(registryKeyHandle, L"InstallLocation", 0, 0, reinterpret_cast<BYTE*>(Buffer), &BuffSize) == ERROR_SUCCESS)
2003 mplayerPath = QString::fromUtf16(reinterpret_cast<const unsigned short*>(Buffer));
2007 if(!mplayerPath.isEmpty())
2009 QDir mplayerDir(mplayerPath);
2010 if(mplayerDir.exists())
2012 for(int i = 0; i < 3; i++)
2014 if(mplayerDir.exists(appNames[i]))
2016 QProcess::startDetached(mplayerDir.absoluteFilePath(appNames[i]), QStringList() << QDir::toNativeSeparators(m_fileListModel->getFile(index).filePath()));
2017 return;
2023 QDesktopServices::openUrl(QString("file:///").append(m_fileListModel->getFile(index).filePath()));
2027 * Find selected file in explorer
2029 void MainWindow::findFileContextActionTriggered(void)
2031 QModelIndex index = sourceFileView->currentIndex();
2032 if(index.isValid())
2034 QString systemRootPath;
2036 QDir systemRoot(lamexp_known_folder(lamexp_folder_systemfolder));
2037 if(systemRoot.exists() && systemRoot.cdUp())
2039 systemRootPath = systemRoot.canonicalPath();
2042 if(!systemRootPath.isEmpty())
2044 QFileInfo explorer(QString("%1/explorer.exe").arg(systemRootPath));
2045 if(explorer.exists() && explorer.isFile())
2047 QProcess::execute(explorer.canonicalFilePath(), QStringList() << "/select," << QDir::toNativeSeparators(m_fileListModel->getFile(index).filePath()));
2048 return;
2051 else
2053 qWarning("SystemRoot directory could not be detected!");
2059 * Add all pending files
2061 void MainWindow::handleDelayedFiles(void)
2063 m_delayedFileTimer->stop();
2065 if(m_delayedFileList->isEmpty())
2067 return;
2070 if(m_banner->isVisible())
2072 m_delayedFileTimer->start(5000);
2073 return;
2076 QStringList selectedFiles;
2077 tabWidget->setCurrentIndex(0);
2079 while(!m_delayedFileList->isEmpty())
2081 QFileInfo currentFile = QFileInfo(m_delayedFileList->takeFirst());
2082 if(!currentFile.exists() || !currentFile.isFile())
2084 continue;
2086 selectedFiles << currentFile.canonicalFilePath();
2089 addFiles(selectedFiles);
2093 * Show or hide Drag'n'Drop notice after model reset
2095 void MainWindow::sourceModelChanged(void)
2097 m_dropNoteLabel->setVisible(m_fileListModel->rowCount() <= 0);
2100 // =========================================================
2101 // Output folder slots
2102 // =========================================================
2105 * Output folder changed (mouse clicked)
2107 void MainWindow::outputFolderViewClicked(const QModelIndex &index)
2109 if(outputFolderView->currentIndex() != index)
2111 outputFolderView->setCurrentIndex(index);
2113 QString selectedDir = m_fileSystemModel->filePath(index);
2114 if(selectedDir.length() < 3) selectedDir.append(QDir::separator());
2115 outputFolderLabel->setText(QDir::toNativeSeparators(selectedDir));
2116 m_settings->outputDir(selectedDir);
2120 * Output folder changed (mouse moved)
2122 void MainWindow::outputFolderViewMoved(const QModelIndex &index)
2124 if(QApplication::mouseButtons() & Qt::LeftButton)
2126 outputFolderViewClicked(index);
2131 * Goto desktop button
2133 void MainWindow::gotoDesktopButtonClicked(void)
2135 QString desktopPath = QDesktopServices::storageLocation(QDesktopServices::DesktopLocation);
2137 if(!desktopPath.isEmpty() && QDir(desktopPath).exists())
2139 outputFolderView->setCurrentIndex(m_fileSystemModel->index(desktopPath));
2140 outputFolderViewClicked(outputFolderView->currentIndex());
2141 outputFolderView->setFocus();
2143 else
2145 buttonGotoDesktop->setEnabled(false);
2150 * Goto home folder button
2152 void MainWindow::gotoHomeFolderButtonClicked(void)
2154 QString homePath = QDesktopServices::storageLocation(QDesktopServices::HomeLocation);
2156 if(!homePath.isEmpty() && QDir(homePath).exists())
2158 outputFolderView->setCurrentIndex(m_fileSystemModel->index(homePath));
2159 outputFolderViewClicked(outputFolderView->currentIndex());
2160 outputFolderView->setFocus();
2162 else
2164 buttonGotoHome->setEnabled(false);
2169 * Goto music folder button
2171 void MainWindow::gotoMusicFolderButtonClicked(void)
2173 QString musicPath = QDesktopServices::storageLocation(QDesktopServices::MusicLocation);
2175 if(!musicPath.isEmpty() && QDir(musicPath).exists())
2177 outputFolderView->setCurrentIndex(m_fileSystemModel->index(musicPath));
2178 outputFolderViewClicked(outputFolderView->currentIndex());
2179 outputFolderView->setFocus();
2181 else
2183 buttonGotoMusic->setEnabled(false);
2188 * Goto music favorite output folder
2190 void MainWindow::gotoFavoriteFolder(void)
2192 QAction *item = dynamic_cast<QAction*>(QObject::sender());
2194 if(item)
2196 QDir path(item->data().toString());
2197 if(path.exists())
2199 outputFolderView->setCurrentIndex(m_fileSystemModel->index(path.canonicalPath()));
2200 outputFolderViewClicked(outputFolderView->currentIndex());
2201 outputFolderView->setFocus();
2203 else
2205 MessageBeep(MB_ICONERROR);
2206 m_outputFolderFavoritesMenu->removeAction(item);
2207 item->deleteLater();
2213 * Make folder button
2215 void MainWindow::makeFolderButtonClicked(void)
2217 ABORT_IF_BUSY;
2219 QDir basePath(m_fileSystemModel->fileInfo(outputFolderView->currentIndex()).absoluteFilePath());
2220 QString suggestedName = tr("New Folder");
2222 if(!m_metaData->fileArtist().isEmpty() && !m_metaData->fileAlbum().isEmpty())
2224 suggestedName = QString("%1 - %2").arg(m_metaData->fileArtist(), m_metaData->fileAlbum());
2226 else if(!m_metaData->fileArtist().isEmpty())
2228 suggestedName = m_metaData->fileArtist();
2230 else if(!m_metaData->fileAlbum().isEmpty())
2232 suggestedName = m_metaData->fileAlbum();
2234 else
2236 for(int i = 0; i < m_fileListModel->rowCount(); i++)
2238 AudioFileModel audioFile = m_fileListModel->getFile(m_fileListModel->index(i, 0));
2239 if(!audioFile.fileAlbum().isEmpty() || !audioFile.fileArtist().isEmpty())
2241 if(!audioFile.fileArtist().isEmpty() && !audioFile.fileAlbum().isEmpty())
2243 suggestedName = QString("%1 - %2").arg(audioFile.fileArtist(), audioFile.fileAlbum());
2245 else if(!audioFile.fileArtist().isEmpty())
2247 suggestedName = audioFile.fileArtist();
2249 else if(!audioFile.fileAlbum().isEmpty())
2251 suggestedName = audioFile.fileAlbum();
2253 break;
2258 suggestedName = lamexp_clean_filename(suggestedName);
2260 while(true)
2262 bool bApplied = false;
2263 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();
2265 if(bApplied)
2267 folderName = lamexp_clean_filepath(folderName.simplified());
2269 if(folderName.isEmpty())
2271 MessageBeep(MB_ICONERROR);
2272 continue;
2275 int i = 1;
2276 QString newFolder = folderName;
2278 while(basePath.exists(newFolder))
2280 newFolder = QString(folderName).append(QString().sprintf(" (%d)", ++i));
2283 if(basePath.mkpath(newFolder))
2285 QDir createdDir = basePath;
2286 if(createdDir.cd(newFolder))
2288 outputFolderView->setCurrentIndex(m_fileSystemModel->index(createdDir.canonicalPath()));
2289 outputFolderViewClicked(outputFolderView->currentIndex());
2290 outputFolderView->setFocus();
2293 else
2295 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!")));
2298 break;
2303 * Output to source dir changed
2305 void MainWindow::saveToSourceFolderChanged(void)
2307 m_settings->outputToSourceDir(saveToSourceFolderCheckBox->isChecked());
2311 * Prepend relative source file path to output file name changed
2313 void MainWindow::prependRelativePathChanged(void)
2315 m_settings->prependRelativeSourcePath(prependRelativePathCheckBox->isChecked());
2319 * Show context menu for output folder
2321 void MainWindow::outputFolderContextMenu(const QPoint &pos)
2323 QAbstractScrollArea *scrollArea = dynamic_cast<QAbstractScrollArea*>(QObject::sender());
2324 QWidget *sender = scrollArea ? scrollArea->viewport() : dynamic_cast<QWidget*>(QObject::sender());
2326 if(pos.x() <= sender->width() && pos.y() <= sender->height() && pos.x() >= 0 && pos.y() >= 0)
2328 m_outputFolderContextMenu->popup(sender->mapToGlobal(pos));
2333 * Show selected folder in explorer
2335 void MainWindow::showFolderContextActionTriggered(void)
2337 QDesktopServices::openUrl(QUrl::fromLocalFile(m_fileSystemModel->filePath(outputFolderView->currentIndex())));
2341 * Add current folder to favorites
2343 void MainWindow::addFavoriteFolderActionTriggered(void)
2345 QString path = m_fileSystemModel->filePath(outputFolderView->currentIndex());
2346 QStringList favorites = m_settings->favoriteOutputFolders().split("|", QString::SkipEmptyParts);
2348 if(!favorites.contains(path, Qt::CaseInsensitive))
2350 favorites.append(path);
2351 while(favorites.count() > 6) favorites.removeFirst();
2353 else
2355 MessageBeep(MB_ICONWARNING);
2358 m_settings->favoriteOutputFolders(favorites.join("|"));
2359 refreshFavorites();
2363 * Initialize file system model
2365 void MainWindow::initOutputFolderModel(void)
2367 QModelIndex previousIndex = outputFolderView->currentIndex();
2368 m_fileSystemModel->setRootPath(m_fileSystemModel->rootPath());
2369 QApplication::processEvents();
2370 outputFolderView->reset();
2371 outputFolderView->setCurrentIndex(previousIndex);
2372 m_OutputFolderViewInitialized = true;
2375 // =========================================================
2376 // Metadata tab slots
2377 // =========================================================
2380 * Edit meta button clicked
2382 void MainWindow::editMetaButtonClicked(void)
2384 ABORT_IF_BUSY;
2386 const QModelIndex index = metaDataView->currentIndex();
2388 if(index.isValid())
2390 m_metaInfoModel->editItem(index, this);
2392 if(index.row() == 4)
2394 m_settings->metaInfoPosition(m_metaData->filePosition());
2400 * Reset meta button clicked
2402 void MainWindow::clearMetaButtonClicked(void)
2404 ABORT_IF_BUSY;
2405 m_metaInfoModel->clearData();
2409 * Meta tags enabled changed
2411 void MainWindow::metaTagsEnabledChanged(void)
2413 m_settings->writeMetaTags(writeMetaDataCheckBox->isChecked());
2417 * Playlist enabled changed
2419 void MainWindow::playlistEnabledChanged(void)
2421 m_settings->createPlaylist(generatePlaylistCheckBox->isChecked());
2424 // =========================================================
2425 // Compression tab slots
2426 // =========================================================
2429 * Update encoder
2431 void MainWindow::updateEncoder(int id)
2433 m_settings->compressionEncoder(id);
2435 switch(m_settings->compressionEncoder())
2437 case SettingsModel::VorbisEncoder:
2438 radioButtonModeQuality->setEnabled(true);
2439 radioButtonModeAverageBitrate->setEnabled(true);
2440 radioButtonConstBitrate->setEnabled(false);
2441 if(radioButtonConstBitrate->isChecked()) radioButtonModeQuality->setChecked(true);
2442 sliderBitrate->setEnabled(true);
2443 break;
2444 case SettingsModel::AC3Encoder:
2445 radioButtonModeQuality->setEnabled(true);
2446 radioButtonModeQuality->setChecked(true);
2447 radioButtonModeAverageBitrate->setEnabled(false);
2448 radioButtonConstBitrate->setEnabled(true);
2449 sliderBitrate->setEnabled(true);
2450 break;
2451 case SettingsModel::FLACEncoder:
2452 radioButtonModeQuality->setEnabled(false);
2453 radioButtonModeQuality->setChecked(true);
2454 radioButtonModeAverageBitrate->setEnabled(false);
2455 radioButtonConstBitrate->setEnabled(false);
2456 sliderBitrate->setEnabled(true);
2457 break;
2458 case SettingsModel::PCMEncoder:
2459 radioButtonModeQuality->setEnabled(false);
2460 radioButtonModeQuality->setChecked(true);
2461 radioButtonModeAverageBitrate->setEnabled(false);
2462 radioButtonConstBitrate->setEnabled(false);
2463 sliderBitrate->setEnabled(false);
2464 break;
2465 case SettingsModel::AACEncoder:
2466 radioButtonModeQuality->setEnabled(true);
2467 radioButtonModeAverageBitrate->setEnabled(!m_fhgEncoderAvailable);
2468 if(m_fhgEncoderAvailable && radioButtonModeAverageBitrate->isChecked()) radioButtonConstBitrate->setChecked(true);
2469 radioButtonConstBitrate->setEnabled(true);
2470 sliderBitrate->setEnabled(true);
2471 break;
2472 default:
2473 radioButtonModeQuality->setEnabled(true);
2474 radioButtonModeAverageBitrate->setEnabled(true);
2475 radioButtonConstBitrate->setEnabled(true);
2476 sliderBitrate->setEnabled(true);
2477 break;
2480 updateRCMode(m_modeButtonGroup->checkedId());
2484 * Update rate-control mode
2486 void MainWindow::updateRCMode(int id)
2488 m_settings->compressionRCMode(id);
2490 switch(m_settings->compressionEncoder())
2492 case SettingsModel::MP3Encoder:
2493 switch(m_settings->compressionRCMode())
2495 case SettingsModel::VBRMode:
2496 sliderBitrate->setMinimum(0);
2497 sliderBitrate->setMaximum(9);
2498 break;
2499 default:
2500 sliderBitrate->setMinimum(0);
2501 sliderBitrate->setMaximum(13);
2502 break;
2504 break;
2505 case SettingsModel::VorbisEncoder:
2506 switch(m_settings->compressionRCMode())
2508 case SettingsModel::VBRMode:
2509 sliderBitrate->setMinimum(-2);
2510 sliderBitrate->setMaximum(10);
2511 break;
2512 default:
2513 sliderBitrate->setMinimum(4);
2514 sliderBitrate->setMaximum(63);
2515 break;
2517 break;
2518 case SettingsModel::AC3Encoder:
2519 switch(m_settings->compressionRCMode())
2521 case SettingsModel::VBRMode:
2522 sliderBitrate->setMinimum(0);
2523 sliderBitrate->setMaximum(16);
2524 break;
2525 default:
2526 sliderBitrate->setMinimum(0);
2527 sliderBitrate->setMaximum(18);
2528 break;
2530 break;
2531 case SettingsModel::AACEncoder:
2532 switch(m_settings->compressionRCMode())
2534 case SettingsModel::VBRMode:
2535 sliderBitrate->setMinimum(0);
2536 sliderBitrate->setMaximum(20);
2537 break;
2538 default:
2539 sliderBitrate->setMinimum(4);
2540 sliderBitrate->setMaximum(63);
2541 break;
2543 break;
2544 case SettingsModel::FLACEncoder:
2545 sliderBitrate->setMinimum(0);
2546 sliderBitrate->setMaximum(8);
2547 break;
2548 case SettingsModel::PCMEncoder:
2549 sliderBitrate->setMinimum(0);
2550 sliderBitrate->setMaximum(2);
2551 sliderBitrate->setValue(1);
2552 break;
2553 default:
2554 sliderBitrate->setMinimum(0);
2555 sliderBitrate->setMaximum(0);
2556 break;
2559 updateBitrate(sliderBitrate->value());
2563 * Update bitrate
2565 void MainWindow::updateBitrate(int value)
2567 m_settings->compressionBitrate(value);
2569 switch(m_settings->compressionRCMode())
2571 case SettingsModel::VBRMode:
2572 switch(m_settings->compressionEncoder())
2574 case SettingsModel::MP3Encoder:
2575 labelBitrate->setText(tr("Quality Level %1").arg(9 - value));
2576 break;
2577 case SettingsModel::VorbisEncoder:
2578 labelBitrate->setText(tr("Quality Level %1").arg(value));
2579 break;
2580 case SettingsModel::AACEncoder:
2581 labelBitrate->setText(tr("Quality Level %1").arg(QString().sprintf("%.2f", static_cast<double>(value * 5) / 100.0)));
2582 break;
2583 case SettingsModel::FLACEncoder:
2584 labelBitrate->setText(tr("Compression %1").arg(value));
2585 break;
2586 case SettingsModel::AC3Encoder:
2587 labelBitrate->setText(tr("Quality Level %1").arg(qMin(1024, qMax(0, value * 64))));
2588 break;
2589 case SettingsModel::PCMEncoder:
2590 labelBitrate->setText(tr("Uncompressed"));
2591 break;
2592 default:
2593 labelBitrate->setText(QString::number(value));
2594 break;
2596 break;
2597 case SettingsModel::ABRMode:
2598 switch(m_settings->compressionEncoder())
2600 case SettingsModel::MP3Encoder:
2601 labelBitrate->setText(QString("&asymp; %1 kbps").arg(SettingsModel::mp3Bitrates[value]));
2602 break;
2603 case SettingsModel::FLACEncoder:
2604 labelBitrate->setText(tr("Compression %1").arg(value));
2605 break;
2606 case SettingsModel::AC3Encoder:
2607 labelBitrate->setText(QString("&asymp; %1 kbps").arg(SettingsModel::ac3Bitrates[value]));
2608 break;
2609 case SettingsModel::PCMEncoder:
2610 labelBitrate->setText(tr("Uncompressed"));
2611 break;
2612 default:
2613 labelBitrate->setText(QString("&asymp; %1 kbps").arg(qMin(500, value * 8)));
2614 break;
2616 break;
2617 default:
2618 switch(m_settings->compressionEncoder())
2620 case SettingsModel::MP3Encoder:
2621 labelBitrate->setText(QString("%1 kbps").arg(SettingsModel::mp3Bitrates[value]));
2622 break;
2623 case SettingsModel::FLACEncoder:
2624 labelBitrate->setText(tr("Compression %1").arg(value));
2625 break;
2626 case SettingsModel::AC3Encoder:
2627 labelBitrate->setText(QString("%1 kbps").arg(SettingsModel::ac3Bitrates[value]));
2628 break;
2629 case SettingsModel::PCMEncoder:
2630 labelBitrate->setText(tr("Uncompressed"));
2631 break;
2632 default:
2633 labelBitrate->setText(QString("%1 kbps").arg(qMin(500, value * 8)));
2634 break;
2636 break;
2640 // =========================================================
2641 // Advanced option slots
2642 // =========================================================
2645 * Lame algorithm quality changed
2647 void MainWindow::updateLameAlgoQuality(int value)
2649 QString text;
2651 switch(value)
2653 case 4:
2654 text = tr("Best Quality (Very Slow)");
2655 break;
2656 case 3:
2657 text = tr("High Quality (Recommended)");
2658 break;
2659 case 2:
2660 text = tr("Average Quality (Default)");
2661 break;
2662 case 1:
2663 text = tr("Low Quality (Fast)");
2664 break;
2665 case 0:
2666 text = tr("Poor Quality (Very Fast)");
2667 break;
2670 if(!text.isEmpty())
2672 m_settings->lameAlgoQuality(value);
2673 labelLameAlgoQuality->setText(text);
2676 bool warning = (value == 0), notice = (value == 4);
2677 labelLameAlgoQualityWarning->setVisible(warning);
2678 labelLameAlgoQualityWarningIcon->setVisible(warning);
2679 labelLameAlgoQualityNotice->setVisible(notice);
2680 labelLameAlgoQualityNoticeIcon->setVisible(notice);
2681 labelLameAlgoQualitySpacer->setVisible(warning || notice);
2685 * Bitrate management endabled/disabled
2687 void MainWindow::bitrateManagementEnabledChanged(bool checked)
2689 m_settings->bitrateManagementEnabled(checked);
2693 * Minimum bitrate has changed
2695 void MainWindow::bitrateManagementMinChanged(int value)
2697 if(value > spinBoxBitrateManagementMax->value())
2699 spinBoxBitrateManagementMin->setValue(spinBoxBitrateManagementMax->value());
2700 m_settings->bitrateManagementMinRate(spinBoxBitrateManagementMax->value());
2702 else
2704 m_settings->bitrateManagementMinRate(value);
2709 * Maximum bitrate has changed
2711 void MainWindow::bitrateManagementMaxChanged(int value)
2713 if(value < spinBoxBitrateManagementMin->value())
2715 spinBoxBitrateManagementMax->setValue(spinBoxBitrateManagementMin->value());
2716 m_settings->bitrateManagementMaxRate(spinBoxBitrateManagementMin->value());
2718 else
2720 m_settings->bitrateManagementMaxRate(value);
2725 * Channel mode has changed
2727 void MainWindow::channelModeChanged(int value)
2729 if(value >= 0) m_settings->lameChannelMode(value);
2733 * Sampling rate has changed
2735 void MainWindow::samplingRateChanged(int value)
2737 if(value >= 0) m_settings->samplingRate(value);
2741 * Nero AAC 2-Pass mode changed
2743 void MainWindow::neroAAC2PassChanged(bool checked)
2745 m_settings->neroAACEnable2Pass(checked);
2749 * Nero AAC profile mode changed
2751 void MainWindow::neroAACProfileChanged(int value)
2753 if(value >= 0) m_settings->aacEncProfile(value);
2757 * Aften audio coding mode changed
2759 void MainWindow::aftenCodingModeChanged(int value)
2761 if(value >= 0) m_settings->aftenAudioCodingMode(value);
2765 * Aften DRC mode changed
2767 void MainWindow::aftenDRCModeChanged(int value)
2769 if(value >= 0) m_settings->aftenDynamicRangeCompression(value);
2773 * Aften exponent search size changed
2775 void MainWindow::aftenSearchSizeChanged(int value)
2777 if(value >= 0) m_settings->aftenExponentSearchSize(value);
2781 * Aften fast bit allocation changed
2783 void MainWindow::aftenFastAllocationChanged(bool checked)
2785 m_settings->aftenFastBitAllocation(checked);
2789 * Normalization filter enabled changed
2791 void MainWindow::normalizationEnabledChanged(bool checked)
2793 m_settings->normalizationFilterEnabled(checked);
2797 * Normalization max. volume changed
2799 void MainWindow::normalizationMaxVolumeChanged(double value)
2801 m_settings->normalizationFilterMaxVolume(static_cast<int>(value * 100.0));
2805 * Normalization equalization mode changed
2807 void MainWindow::normalizationModeChanged(int mode)
2809 m_settings->normalizationFilterEqualizationMode(mode);
2813 * Tone adjustment has changed (Bass)
2815 void MainWindow::toneAdjustBassChanged(double value)
2817 m_settings->toneAdjustBass(static_cast<int>(value * 100.0));
2818 spinBoxToneAdjustBass->setPrefix((value > 0) ? "+" : QString());
2822 * Tone adjustment has changed (Treble)
2824 void MainWindow::toneAdjustTrebleChanged(double value)
2826 m_settings->toneAdjustTreble(static_cast<int>(value * 100.0));
2827 spinBoxToneAdjustTreble->setPrefix((value > 0) ? "+" : QString());
2831 * Tone adjustment has been reset
2833 void MainWindow::toneAdjustTrebleReset(void)
2835 spinBoxToneAdjustBass->setValue(m_settings->toneAdjustBassDefault());
2836 spinBoxToneAdjustTreble->setValue(m_settings->toneAdjustTrebleDefault());
2837 toneAdjustBassChanged(spinBoxToneAdjustBass->value());
2838 toneAdjustTrebleChanged(spinBoxToneAdjustTreble->value());
2842 * Custom encoder parameters changed
2844 void MainWindow::customParamsChanged(void)
2846 lineEditCustomParamLAME->setText(lineEditCustomParamLAME->text().simplified());
2847 lineEditCustomParamOggEnc->setText(lineEditCustomParamOggEnc->text().simplified());
2848 lineEditCustomParamNeroAAC->setText(lineEditCustomParamNeroAAC->text().simplified());
2849 lineEditCustomParamFLAC->setText(lineEditCustomParamFLAC->text().simplified());
2850 lineEditCustomParamAften->setText(lineEditCustomParamAften->text().simplified());
2852 bool customParamsUsed = false;
2853 if(!lineEditCustomParamLAME->text().isEmpty()) customParamsUsed = true;
2854 if(!lineEditCustomParamOggEnc->text().isEmpty()) customParamsUsed = true;
2855 if(!lineEditCustomParamNeroAAC->text().isEmpty()) customParamsUsed = true;
2856 if(!lineEditCustomParamFLAC->text().isEmpty()) customParamsUsed = true;
2857 if(!lineEditCustomParamAften->text().isEmpty()) customParamsUsed = true;
2859 labelCustomParamsIcon->setVisible(customParamsUsed);
2860 labelCustomParamsText->setVisible(customParamsUsed);
2861 labelCustomParamsSpacer->setVisible(customParamsUsed);
2863 m_settings->customParametersLAME(lineEditCustomParamLAME->text());
2864 m_settings->customParametersOggEnc(lineEditCustomParamOggEnc->text());
2865 m_settings->customParametersAacEnc(lineEditCustomParamNeroAAC->text());
2866 m_settings->customParametersFLAC(lineEditCustomParamFLAC->text());
2867 m_settings->customParametersAften(lineEditCustomParamAften->text());
2872 * Rename output files enabled changed
2874 void MainWindow::renameOutputEnabledChanged(bool checked)
2876 m_settings->renameOutputFilesEnabled(checked);
2880 * Rename output files patterm changed
2882 void MainWindow::renameOutputPatternChanged(void)
2884 QString temp = lineEditRenamePattern->text().simplified();
2885 lineEditRenamePattern->setText(temp.isEmpty() ? m_settings->renameOutputFilesPatternDefault() : temp);
2886 m_settings->renameOutputFilesPattern(lineEditRenamePattern->text());
2890 * Rename output files patterm changed
2892 void MainWindow::renameOutputPatternChanged(const QString &text)
2894 QString pattern(text.simplified());
2896 pattern.replace("<BaseName>", "The_White_Stripes_-_Fell_In_Love_With_A_Girl", Qt::CaseInsensitive);
2897 pattern.replace("<TrackNo>", "04", Qt::CaseInsensitive);
2898 pattern.replace("<Title>", "Fell In Love With A Girl", Qt::CaseInsensitive);
2899 pattern.replace("<Artist>", "The White Stripes", Qt::CaseInsensitive);
2900 pattern.replace("<Album>", "White Blood Cells", Qt::CaseInsensitive);
2901 pattern.replace("<Year>", "2001", Qt::CaseInsensitive);
2902 pattern.replace("<Comment>", "Encoded by LameXP", Qt::CaseInsensitive);
2904 if(pattern.compare(lamexp_clean_filename(pattern)))
2906 if(lineEditRenamePattern->palette().color(QPalette::Text) != Qt::red)
2908 MessageBeep(MB_ICONERROR);
2909 SET_TEXT_COLOR(lineEditRenamePattern, Qt::red);
2912 else
2914 if(lineEditRenamePattern->palette().color(QPalette::Text) != Qt::black)
2916 MessageBeep(MB_ICONINFORMATION);
2917 SET_TEXT_COLOR(lineEditRenamePattern, Qt::black);
2921 labelRanameExample->setText(lamexp_clean_filename(pattern));
2925 * Show list of rename macros
2927 void MainWindow::showRenameMacros(const QString &text)
2929 if(text.compare("reset", Qt::CaseInsensitive) == 0)
2931 lineEditRenamePattern->setText(m_settings->renameOutputFilesPatternDefault());
2932 return;
2935 const QString format = QString("<tr><td><tt>&lt;%1&gt;</tt></td><td>&nbsp;&nbsp;</td><td>%2</td></tr>");
2937 QString message = QString("<table>");
2938 message += QString(format).arg("BaseName", tr("File name without extension"));
2939 message += QString(format).arg("TrackNo", tr("Track number with leading zero"));
2940 message += QString(format).arg("Title", tr("Track title"));
2941 message += QString(format).arg("Artist", tr("Artist name"));
2942 message += QString(format).arg("Album", tr("Album name"));
2943 message += QString(format).arg("Year", tr("Year with (at least) four digits"));
2944 message += QString(format).arg("Comment", tr("Comment"));
2945 message += "</table><br><br>";
2946 message += QString("%1<br>").arg(tr("Characters forbidden in file names:"));
2947 message += "<b><tt>\\ / : * ? &lt; &gt; |<br>";
2949 QMessageBox::information(this, tr("Rename Macros"), message, tr("Discard"));
2952 void MainWindow::forceStereoDownmixEnabledChanged(bool checked)
2954 m_settings->forceStereoDownmix(checked);
2958 * Maximum number of instances changed
2960 void MainWindow::updateMaximumInstances(int value)
2962 labelMaxInstances->setText(tr("%1 Instance(s)").arg(QString::number(value)));
2963 m_settings->maximumInstances(checkBoxAutoDetectInstances->isChecked() ? NULL : value);
2967 * Auto-detect number of instances
2969 void MainWindow::autoDetectInstancesChanged(bool checked)
2971 m_settings->maximumInstances(checked ? NULL : sliderMaxInstances->value());
2975 * Browse for custom TEMP folder button clicked
2977 void MainWindow::browseCustomTempFolderButtonClicked(void)
2979 QString newTempFolder;
2981 if(USE_NATIVE_FILE_DIALOG)
2983 newTempFolder = QFileDialog::getExistingDirectory(this, QString(), m_settings->customTempPath());
2985 else
2987 QFileDialog dialog(this);
2988 dialog.setFileMode(QFileDialog::DirectoryOnly);
2989 dialog.setDirectory(m_settings->customTempPath());
2990 if(dialog.exec())
2992 newTempFolder = dialog.selectedFiles().first();
2996 if(!newTempFolder.isEmpty())
2998 QFile writeTest(QString("%1/~%2.tmp").arg(newTempFolder, lamexp_rand_str()));
2999 if(writeTest.open(QIODevice::ReadWrite))
3001 writeTest.remove();
3002 lineEditCustomTempFolder->setText(QDir::toNativeSeparators(newTempFolder));
3004 else
3006 QMessageBox::warning(this, tr("Access Denied"), tr("Cannot write to the selected directory. Please choose another directory!"));
3012 * Custom TEMP folder changed
3014 void MainWindow::customTempFolderChanged(const QString &text)
3016 m_settings->customTempPath(QDir::fromNativeSeparators(text));
3020 * Use custom TEMP folder option changed
3022 void MainWindow::useCustomTempFolderChanged(bool checked)
3024 m_settings->customTempPathEnabled(!checked);
3028 * Reset all advanced options to their defaults
3030 void MainWindow::resetAdvancedOptionsButtonClicked(void)
3032 sliderLameAlgoQuality->setValue(m_settings->lameAlgoQualityDefault());
3033 spinBoxBitrateManagementMin->setValue(m_settings->bitrateManagementMinRateDefault());
3034 spinBoxBitrateManagementMax->setValue(m_settings->bitrateManagementMaxRateDefault());
3035 spinBoxNormalizationFilter->setValue(static_cast<double>(m_settings->normalizationFilterMaxVolumeDefault()) / 100.0);
3036 spinBoxToneAdjustBass->setValue(static_cast<double>(m_settings->toneAdjustBassDefault()) / 100.0);
3037 spinBoxToneAdjustTreble->setValue(static_cast<double>(m_settings->toneAdjustTrebleDefault()) / 100.0);
3038 spinBoxAftenSearchSize->setValue(m_settings->aftenExponentSearchSizeDefault());
3039 comboBoxMP3ChannelMode->setCurrentIndex(m_settings->lameChannelModeDefault());
3040 comboBoxSamplingRate->setCurrentIndex(m_settings->samplingRateDefault());
3041 comboBoxAACProfile->setCurrentIndex(m_settings->aacEncProfileDefault());
3042 comboBoxAftenCodingMode->setCurrentIndex(m_settings->aftenAudioCodingModeDefault());
3043 comboBoxAftenDRCMode->setCurrentIndex(m_settings->aftenDynamicRangeCompressionDefault());
3044 comboBoxNormalizationMode->setCurrentIndex(m_settings->normalizationFilterEqualizationModeDefault());
3045 while(checkBoxBitrateManagement->isChecked() != m_settings->bitrateManagementEnabledDefault()) checkBoxBitrateManagement->click();
3046 while(checkBoxNeroAAC2PassMode->isChecked() != m_settings->neroAACEnable2PassDefault()) checkBoxNeroAAC2PassMode->click();
3047 while(checkBoxNormalizationFilter->isChecked() != m_settings->normalizationFilterEnabledDefault()) checkBoxNormalizationFilter->click();
3048 while(checkBoxAutoDetectInstances->isChecked() != (m_settings->maximumInstancesDefault() < 1)) checkBoxAutoDetectInstances->click();
3049 while(checkBoxUseSystemTempFolder->isChecked() == m_settings->customTempPathEnabledDefault()) checkBoxUseSystemTempFolder->click();
3050 while(checkBoxAftenFastAllocation->isChecked() != m_settings->aftenFastBitAllocationDefault()) checkBoxAftenFastAllocation->click();
3051 while(checkBoxRenameOutput->isChecked() != m_settings->renameOutputFilesEnabledDefault()) checkBoxRenameOutput->click();
3052 while(checkBoxForceStereoDownmix->isChecked() != m_settings->forceStereoDownmixDefault()) checkBoxForceStereoDownmix->click();
3053 lineEditCustomParamLAME->setText(m_settings->customParametersLAMEDefault());
3054 lineEditCustomParamOggEnc->setText(m_settings->customParametersOggEncDefault());
3055 lineEditCustomParamNeroAAC->setText(m_settings->customParametersAacEncDefault());
3056 lineEditCustomParamFLAC->setText(m_settings->customParametersFLACDefault());
3057 lineEditCustomTempFolder->setText(QDir::toNativeSeparators(m_settings->customTempPathDefault()));
3058 lineEditRenamePattern->setText(m_settings->renameOutputFilesPatternDefault());
3059 customParamsChanged();
3060 scrollArea->verticalScrollBar()->setValue(0);
3063 // =========================================================
3064 // Multi-instance handling slots
3065 // =========================================================
3068 * Other instance detected
3070 void MainWindow::notifyOtherInstance(void)
3072 if(!m_banner->isVisible())
3074 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);
3075 msgBox.exec();
3080 * Add file from another instance
3082 void MainWindow::addFileDelayed(const QString &filePath, bool tryASAP)
3084 if(tryASAP && !m_delayedFileTimer->isActive())
3086 qDebug("Received file: %s", filePath.toUtf8().constData());
3087 m_delayedFileList->append(filePath);
3088 QTimer::singleShot(0, this, SLOT(handleDelayedFiles()));
3091 m_delayedFileTimer->stop();
3092 qDebug("Received file: %s", filePath.toUtf8().constData());
3093 m_delayedFileList->append(filePath);
3094 m_delayedFileTimer->start(5000);
3098 * Add files from another instance
3100 void MainWindow::addFilesDelayed(const QStringList &filePaths, bool tryASAP)
3102 if(tryASAP && !m_delayedFileTimer->isActive())
3104 qDebug("Received %d file(s).", filePaths.count());
3105 m_delayedFileList->append(filePaths);
3106 QTimer::singleShot(0, this, SLOT(handleDelayedFiles()));
3108 else
3110 m_delayedFileTimer->stop();
3111 qDebug("Received %d file(s).", filePaths.count());
3112 m_delayedFileList->append(filePaths);
3113 m_delayedFileTimer->start(5000);
3118 * Add folder from another instance
3120 void MainWindow::addFolderDelayed(const QString &folderPath, bool recursive)
3122 if(!m_banner->isVisible())
3124 addFolder(folderPath, recursive, true);
3128 // =========================================================
3129 // Misc slots
3130 // =========================================================
3133 * Restore the override cursor
3135 void MainWindow::restoreCursor(void)
3137 QApplication::restoreOverrideCursor();