summaryrefslogtreecommitdiffstats
path: root/logic
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2013-08-21 01:07:54 +0200
committerPetr Mrázek <peterix@gmail.com>2013-08-21 01:07:54 +0200
commitb78123166627139777fbd206866ee0d1c8bcd040 (patch)
tree9ea910562faae1be208cfda68f9c4f6795040524 /logic
parent524fbcdd3e359e07c1ff6e8ae05e03bc35977259 (diff)
downloadMultiMC-b78123166627139777fbd206866ee0d1c8bcd040.tar
MultiMC-b78123166627139777fbd206866ee0d1c8bcd040.tar.gz
MultiMC-b78123166627139777fbd206866ee0d1c8bcd040.tar.lz
MultiMC-b78123166627139777fbd206866ee0d1c8bcd040.tar.xz
MultiMC-b78123166627139777fbd206866ee0d1c8bcd040.zip
Contiguous selection and keyboard input for mod lists.
Tweak console to take up the sides. You can reorder mods from the keyboard.
Diffstat (limited to 'logic')
-rw-r--r--logic/Mod.cpp2
-rw-r--r--logic/ModList.cpp88
-rw-r--r--logic/ModList.h22
3 files changed, 91 insertions, 21 deletions
diff --git a/logic/Mod.cpp b/logic/Mod.cpp
index 4f9a1685..03c34140 100644
--- a/logic/Mod.cpp
+++ b/logic/Mod.cpp
@@ -260,5 +260,7 @@ QString Mod::version() const
return "Folder";
case MOD_SINGLEFILE:
return "File";
+ default:
+ return "VOID";
}
}
diff --git a/logic/ModList.cpp b/logic/ModList.cpp
index c968f326..c3f3ced3 100644
--- a/logic/ModList.cpp
+++ b/logic/ModList.cpp
@@ -137,9 +137,9 @@ bool ModList::isValid()
return m_dir.exists() && m_dir.isReadable();
}
-bool ModList::installMod ( const QFileInfo& filename, size_t index )
+bool ModList::installMod ( const QFileInfo& filename, int index )
{
- if(!filename.exists() || !filename.isReadable())
+ if(!filename.exists() || !filename.isReadable() || index < 0)
{
return false;
}
@@ -198,9 +198,9 @@ bool ModList::installMod ( const QFileInfo& filename, size_t index )
return false;
}
-bool ModList::deleteMod ( size_t index )
+bool ModList::deleteMod ( int index )
{
- if(index >= mods.size())
+ if(index >= mods.size() || index < 0)
return false;
Mod & m = mods[index];
if(m.destroy())
@@ -215,7 +215,23 @@ bool ModList::deleteMod ( size_t index )
return false;
}
-bool ModList::moveMod ( size_t from, size_t to )
+bool ModList::deleteMods ( int first, int last )
+{
+ for(int i = first; i <= last; i++)
+ {
+ Mod & m = mods[i];
+ m.destroy();
+ }
+ beginRemoveRows(QModelIndex(), first, last);
+ mods.erase(mods.begin() + first, mods.begin() + last + 1);
+ endRemoveRows();
+ saveListFile();
+ emit changed();
+ return true;
+}
+
+
+bool ModList::moveModTo ( int from, int to )
{
if(from < 0 || from >= mods.size())
return false;
@@ -223,18 +239,61 @@ bool ModList::moveMod ( size_t from, size_t to )
to = rowCount() - 1;
if (to == -1)
to = rowCount() - 1;
- // FIXME: this should be better, but segfaults for some reason
- //beginMoveRows(QModelIndex(), from, from, QModelIndex(), to);
-
- beginResetModel();
+ if(from == to)
+ return false;
+ int togap = to > from ? to + 1: to;
+ beginMoveRows(QModelIndex(), from, from, QModelIndex(), togap);
mods.move(from, to);
- endResetModel();
- //endMoveRows();
+ endMoveRows();
saveListFile();
emit changed();
return true;
}
+bool ModList::moveModUp ( int from )
+{
+ if(from > 0)
+ return moveModTo(from, from - 1);
+ return false;
+}
+
+bool ModList::moveModsUp ( int first, int last )
+{
+ if(first == 0)
+ return false;
+
+ beginMoveRows(QModelIndex(), first, last, QModelIndex(), first - 1);
+ mods.move(first-1, last);
+ endMoveRows();
+ saveListFile();
+ emit changed();
+ return true;
+}
+
+
+bool ModList::moveModDown ( int from )
+{
+ if(from < 0)
+ return false;
+ if(from < mods.size() - 1)
+ return moveModTo(from, from + 1);
+ return false;
+}
+
+bool ModList::moveModsDown ( int first, int last )
+{
+ if(last == mods.size() - 1)
+ return false;
+
+ beginMoveRows(QModelIndex(), first, last, QModelIndex(), last + 2);
+ mods.move(last+1, first);
+ endMoveRows();
+ saveListFile();
+ emit changed();
+ return true;
+}
+
+
int ModList::columnCount ( const QModelIndex& parent ) const
{
return 2;
@@ -329,11 +388,6 @@ QMimeData* ModList::mimeData ( const QModelIndexList& indexes ) const
data->setText(params.join('|'));
return data;
}
-bool ModList::removeRows ( int row, int count, const QModelIndex& parent )
-{
- return QAbstractItemModel::removeRows ( row, count, parent );
-}
-
bool ModList::dropMimeData ( const QMimeData* data, Qt::DropAction action, int row, int column, const QModelIndex& parent )
{
if (action == Qt::IgnoreAction)
@@ -386,7 +440,7 @@ bool ModList::dropMimeData ( const QMimeData* data, Qt::DropAction action, int r
if(row == remoteIndex)
return false;
// otherwise, move the mod :D
- moveMod(remoteIndex, row);
+ moveModTo(remoteIndex, row);
return true;
}
return false;
diff --git a/logic/ModList.h b/logic/ModList.h
index 04ddaa8e..3cba69f5 100644
--- a/logic/ModList.h
+++ b/logic/ModList.h
@@ -45,16 +45,31 @@ public:
/**
* Adds the given mod to the list at the given index - if the list supports custom ordering
*/
- virtual bool installMod(const QFileInfo& filename, size_t index = 0);
+ virtual bool installMod(const QFileInfo& filename, int index = 0);
/// Deletes the mod at the given index.
- virtual bool deleteMod(size_t index);
+ virtual bool deleteMod(int index);
+
+ /// Deletes all the selected mods
+ virtual bool deleteMods( int first, int last );
/**
* move the mod at index to the position N
* 0 is the beginning of the list, length() is the end of the list.
*/
- virtual bool moveMod(size_t from, size_t to);
+ virtual bool moveModTo(int from, int to);
+
+ /**
+ * move the mod at index one position upwards
+ */
+ virtual bool moveModUp(int from);
+ virtual bool moveModsUp( int first, int last );
+
+ /**
+ * move the mod at index one position downwards
+ */
+ virtual bool moveModDown(int from);
+ virtual bool moveModsDown( int first, int last );
/// flags, mostly to support drag&drop
virtual Qt::ItemFlags flags(const QModelIndex& index) const;
@@ -67,7 +82,6 @@ public:
/// what drag actions do we support?
virtual Qt::DropActions supportedDragActions() const;
- virtual bool removeRows(int row, int count, const QModelIndex& parent = QModelIndex());
/// what drop actions do we support?
virtual Qt::DropActions supportedDropActions() const;