When moving files in the list, ensure the selected file(s) remain visible in the view.
This commit is contained in:
parent
c7be996b47
commit
0e796aad96
@ -101,9 +101,13 @@
|
||||
<EntryPointSymbol>lamexp_entry_point</EntryPointSymbol>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Message>Copy VLD DLL%27s</Message>
|
||||
<Command>copy /Y "$(SolutionDir)\..\Prerequisites\VisualLeakDetector\bin\Win32\*.dll" "$(TargetDir)"
|
||||
copy /Y "$(SolutionDir)\..\Prerequisites\VisualLeakDetector\bin\Win32\*.manifest" "$(TargetDir)"</Command>
|
||||
<Message>Copy DLL's</Message>
|
||||
<Command>mkdir "$(OutDir)\imageformats" 2> NUL
|
||||
copy /Y "$(SolutionDir)\..\Prerequisites\Qt4\MSVC-2013\Debug\bin\Qt*.dll" "$(OutDir)"
|
||||
copy /Y "$(SolutionDir)\..\Prerequisites\Qt4\MSVC-2013\Debug\plugins\imageformats\*.dll" "$(OutDir)\imageformats"
|
||||
copy /Y "$(SolutionDir)\..\Prerequisites\VisualLeakDetector\bin\Win32\*.dll" "$(OutDir)"
|
||||
copy /Y "$(SolutionDir)\..\Prerequisites\VisualLeakDetector\bin\Win32\*.manifest" "$(OutDir)"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
<ResourceCompile>
|
||||
<PreprocessorDefinitions>_CONFIG_NAME=$(ConfigurationName);%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
@ -175,9 +179,10 @@ copy /Y "$(SolutionDir)\..\Prerequisites\VisualLeakDetector\bin\Win32\*.manifest
|
||||
<GenerateDebugInformation>false</GenerateDebugInformation>
|
||||
</Link>
|
||||
<PostBuildEvent>
|
||||
<Message>
|
||||
</Message>
|
||||
<Command>
|
||||
<Message>Copy DLL's</Message>
|
||||
<Command>mkdir "$(OutDir)\imageformats" 2> NUL
|
||||
copy /Y "$(SolutionDir)\..\Prerequisites\Qt4\MSVC-2013\Shared\bin\Qt*.dll" "$(OutDir)"
|
||||
copy /Y "$(SolutionDir)\..\Prerequisites\Qt4\MSVC-2013\Shared\plugins\imageformats\*.dll" "$(OutDir)\imageformats"
|
||||
</Command>
|
||||
</PostBuildEvent>
|
||||
<ResourceCompile>
|
||||
|
@ -35,7 +35,7 @@
|
||||
#define VER_LAMEXP_MINOR_LO 2
|
||||
#define VER_LAMEXP_TYPE Alpha
|
||||
#define VER_LAMEXP_PATCH 5
|
||||
#define VER_LAMEXP_BUILD 1753
|
||||
#define VER_LAMEXP_BUILD 1754
|
||||
#define VER_LAMEXP_CONFG 1700
|
||||
|
||||
///////////////////////////////////////////////////////////////////////////////
|
||||
|
@ -1069,6 +1069,7 @@ void MainWindow::moveSelectedFiles(const bool &up)
|
||||
const QModelIndex item = m_fileListModel->index(firstIndex + i, 0);
|
||||
selection->select(QItemSelection(item, item), QItemSelectionModel::Select | QItemSelectionModel::Rows);
|
||||
}
|
||||
ui->sourceFileView->scrollTo(m_fileListModel->index((up ? firstIndex : firstIndex + selectionCount - 1), 0), QAbstractItemView::PositionAtCenter);
|
||||
return;
|
||||
}
|
||||
}
|
||||
@ -2442,24 +2443,29 @@ void MainWindow::openFolderActionActivated(void)
|
||||
* Remove file button
|
||||
*/
|
||||
void MainWindow::removeFileButtonClicked(void)
|
||||
{
|
||||
const QModelIndex current = ui->sourceFileView->currentIndex();
|
||||
if(current.isValid())
|
||||
{
|
||||
const QItemSelectionModel *const selection = ui->sourceFileView->selectionModel();
|
||||
if(selection && selection->hasSelection())
|
||||
{
|
||||
int firstRow = -1;
|
||||
const QModelIndexList selectedRows = INVERT_LIST(selection->selectedRows());
|
||||
if(!selectedRows.isEmpty())
|
||||
{
|
||||
FileListBlockHelper fileListBlocker(m_fileListModel);
|
||||
firstRow = selectedRows.last().row();
|
||||
for(QModelIndexList::ConstIterator iter = selectedRows.constBegin(); iter != selectedRows.constEnd(); iter++)
|
||||
{
|
||||
m_fileListModel->removeFile(*iter);
|
||||
if(!m_fileListModel->removeFile(*iter))
|
||||
{
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
if(m_fileListModel->rowCount() > 0)
|
||||
{
|
||||
ui->sourceFileView->selectRow((current.row() < m_fileListModel->rowCount()) ? current.row() : (m_fileListModel->rowCount() - 1));
|
||||
ui->sourceFileView->scrollTo(ui->sourceFileView->currentIndex());
|
||||
const QModelIndex position = m_fileListModel->index(((firstRow >= 0) && (firstRow < m_fileListModel->rowCount())) ? firstRow : (m_fileListModel->rowCount() - 1), 0);
|
||||
ui->sourceFileView->selectRow(position.row());
|
||||
ui->sourceFileView->scrollTo(position, QAbstractItemView::PositionAtCenter);
|
||||
}
|
||||
}
|
||||
else
|
||||
@ -2472,9 +2478,16 @@ void MainWindow::removeFileButtonClicked(void)
|
||||
* Clear files button
|
||||
*/
|
||||
void MainWindow::clearFilesButtonClicked(void)
|
||||
{
|
||||
if(m_fileListModel->rowCount() > 0)
|
||||
{
|
||||
m_fileListModel->clearFiles();
|
||||
}
|
||||
else
|
||||
{
|
||||
MUtils::Sound::beep(MUtils::Sound::BEEP_WRN);
|
||||
}
|
||||
}
|
||||
|
||||
/*
|
||||
* Move file up button
|
||||
@ -2536,6 +2549,10 @@ void MainWindow::showDetailsButtonClicked(void)
|
||||
break; /*close dilalog now*/
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
MUtils::Sound::beep(MUtils::Sound::BEEP_WRN);
|
||||
}
|
||||
|
||||
QApplication::processEvents(QEventLoop::ExcludeUserInputEvents);
|
||||
sourceFilesScrollbarMoved(0);
|
||||
|
Loading…
Reference in New Issue
Block a user