Nuke the old instance model, LONG LIVE THE NEW ONE
This commit is contained in:
parent
392c58c4b0
commit
a63c7340a6
@ -159,7 +159,6 @@ gui/logindialog.h
|
|||||||
gui/taskdialog.h
|
gui/taskdialog.h
|
||||||
gui/aboutdialog.h
|
gui/aboutdialog.h
|
||||||
gui/consolewindow.h
|
gui/consolewindow.h
|
||||||
gui/instancemodel.h
|
|
||||||
gui/instancedelegate.h
|
gui/instancedelegate.h
|
||||||
gui/versionselectdialog.h
|
gui/versionselectdialog.h
|
||||||
gui/lwjglselectdialog.h
|
gui/lwjglselectdialog.h
|
||||||
@ -230,7 +229,6 @@ gui/logindialog.cpp
|
|||||||
gui/taskdialog.cpp
|
gui/taskdialog.cpp
|
||||||
gui/aboutdialog.cpp
|
gui/aboutdialog.cpp
|
||||||
gui/consolewindow.cpp
|
gui/consolewindow.cpp
|
||||||
gui/instancemodel.cpp
|
|
||||||
gui/instancedelegate.cpp
|
gui/instancedelegate.cpp
|
||||||
gui/versionselectdialog.cpp
|
gui/versionselectdialog.cpp
|
||||||
gui/lwjglselectdialog.cpp
|
gui/lwjglselectdialog.cpp
|
||||||
|
@ -1,126 +0,0 @@
|
|||||||
#include "instancemodel.h"
|
|
||||||
#include <logic/BaseInstance.h>
|
|
||||||
#include <logic/IconListModel.h>
|
|
||||||
#include <QIcon>
|
|
||||||
//#include "iconcache.h"
|
|
||||||
|
|
||||||
InstanceModel::InstanceModel ( const InstanceList& instances, QObject *parent )
|
|
||||||
: QAbstractListModel ( parent ), m_instances ( &instances )
|
|
||||||
{
|
|
||||||
currentInstancesNumber = m_instances->count();
|
|
||||||
connect(m_instances,SIGNAL(instanceAdded(int)),this,SLOT(onInstanceAdded(int)));
|
|
||||||
connect(m_instances,SIGNAL(instanceChanged(int)),this,SLOT(onInstanceChanged(int)));
|
|
||||||
connect(m_instances,SIGNAL(invalidated()),this,SLOT(onInvalidated()));
|
|
||||||
}
|
|
||||||
|
|
||||||
void InstanceModel::onInstanceAdded ( int index )
|
|
||||||
{
|
|
||||||
beginInsertRows(QModelIndex(), index, index);
|
|
||||||
currentInstancesNumber ++;
|
|
||||||
endInsertRows();
|
|
||||||
}
|
|
||||||
|
|
||||||
void InstanceModel::onInstanceChanged ( int index )
|
|
||||||
{
|
|
||||||
QModelIndex mx = InstanceModel::index(index);
|
|
||||||
dataChanged(mx,mx);
|
|
||||||
}
|
|
||||||
|
|
||||||
void InstanceModel::onInvalidated()
|
|
||||||
{
|
|
||||||
beginResetModel();
|
|
||||||
currentInstancesNumber = m_instances->count();
|
|
||||||
endResetModel();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
int InstanceModel::rowCount ( const QModelIndex& parent ) const
|
|
||||||
{
|
|
||||||
Q_UNUSED ( parent );
|
|
||||||
return m_instances->count();
|
|
||||||
}
|
|
||||||
|
|
||||||
QModelIndex InstanceModel::index ( int row, int column, const QModelIndex& parent ) const
|
|
||||||
{
|
|
||||||
Q_UNUSED ( parent );
|
|
||||||
if ( row < 0 || row >= currentInstancesNumber )
|
|
||||||
return QModelIndex();
|
|
||||||
return createIndex ( row, column, ( void* ) m_instances->at ( row ).data() );
|
|
||||||
}
|
|
||||||
|
|
||||||
QVariant InstanceModel::data ( const QModelIndex& index, int role ) const
|
|
||||||
{
|
|
||||||
if ( !index.isValid() )
|
|
||||||
{
|
|
||||||
return QVariant();
|
|
||||||
}
|
|
||||||
BaseInstance *pdata = static_cast<BaseInstance*> ( index.internalPointer() );
|
|
||||||
switch ( role )
|
|
||||||
{
|
|
||||||
case InstancePointerRole:
|
|
||||||
{
|
|
||||||
QVariant v = qVariantFromValue((void *) pdata);
|
|
||||||
return v;
|
|
||||||
}
|
|
||||||
case Qt::DisplayRole:
|
|
||||||
{
|
|
||||||
return pdata->name();
|
|
||||||
}
|
|
||||||
case Qt::ToolTipRole:
|
|
||||||
{
|
|
||||||
return pdata->instanceRoot();
|
|
||||||
}
|
|
||||||
case Qt::DecorationRole:
|
|
||||||
{
|
|
||||||
IconList * ic = IconList::instance();
|
|
||||||
// FIXME: replace with an icon cache/renderer
|
|
||||||
/*
|
|
||||||
QString path = ":/icons/instances/";
|
|
||||||
path += pdata->iconKey();
|
|
||||||
QIcon icon(path);
|
|
||||||
*/
|
|
||||||
QString key = pdata->iconKey();
|
|
||||||
return ic->getIcon(key);
|
|
||||||
//else return QIcon(":/icons/multimc/scalable/apps/multimc.svg");
|
|
||||||
}
|
|
||||||
// for now.
|
|
||||||
case KCategorizedSortFilterProxyModel::CategorySortRole:
|
|
||||||
case KCategorizedSortFilterProxyModel::CategoryDisplayRole:
|
|
||||||
{
|
|
||||||
return pdata->group();
|
|
||||||
}
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
return QVariant();
|
|
||||||
}
|
|
||||||
|
|
||||||
Qt::ItemFlags InstanceModel::flags ( const QModelIndex& index ) const
|
|
||||||
{
|
|
||||||
Qt::ItemFlags f;
|
|
||||||
if ( index.isValid() )
|
|
||||||
{
|
|
||||||
f |= ( Qt::ItemIsEnabled | Qt::ItemIsSelectable );
|
|
||||||
}
|
|
||||||
return f;
|
|
||||||
}
|
|
||||||
|
|
||||||
InstanceProxyModel::InstanceProxyModel ( QObject *parent )
|
|
||||||
: KCategorizedSortFilterProxyModel ( parent )
|
|
||||||
{
|
|
||||||
// disable since by default we are globally sorting by date:
|
|
||||||
setCategorizedModel(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
bool InstanceProxyModel::subSortLessThan (
|
|
||||||
const QModelIndex& left, const QModelIndex& right ) const
|
|
||||||
{
|
|
||||||
BaseInstance *pdataLeft = static_cast<BaseInstance*> ( left.internalPointer() );
|
|
||||||
BaseInstance *pdataRight = static_cast<BaseInstance*> ( right.internalPointer() );
|
|
||||||
//kDebug() << *pdataLeft << *pdataRight;
|
|
||||||
return QString::localeAwareCompare(pdataLeft->name(), pdataRight->name()) < 0;
|
|
||||||
//return pdataLeft->name() < pdataRight->name();
|
|
||||||
}
|
|
||||||
|
|
||||||
#include "instancemodel.moc"
|
|
||||||
|
|
@ -1,43 +0,0 @@
|
|||||||
#pragma once
|
|
||||||
|
|
||||||
#include <QAbstractListModel>
|
|
||||||
#include "categorizedsortfilterproxymodel.h"
|
|
||||||
#include "logic/lists/InstanceList.h"
|
|
||||||
#include <QIcon>
|
|
||||||
|
|
||||||
class InstanceModel : public QAbstractListModel
|
|
||||||
{
|
|
||||||
Q_OBJECT
|
|
||||||
public:
|
|
||||||
enum AdditionalRoles
|
|
||||||
{
|
|
||||||
InstancePointerRole = 0x34B1CB48 ///< Return pointer to real instance
|
|
||||||
};
|
|
||||||
explicit InstanceModel ( const InstanceList& instances,
|
|
||||||
QObject *parent = 0 );
|
|
||||||
|
|
||||||
QModelIndex index ( int row, int column = 0,
|
|
||||||
const QModelIndex& parent = QModelIndex() ) const;
|
|
||||||
int rowCount ( const QModelIndex& parent = QModelIndex() ) const;
|
|
||||||
QVariant data ( const QModelIndex& index, int role ) const;
|
|
||||||
Qt::ItemFlags flags ( const QModelIndex& index ) const;
|
|
||||||
|
|
||||||
public slots:
|
|
||||||
void onInstanceAdded(int index);
|
|
||||||
void onInstanceChanged(int index);
|
|
||||||
void onInvalidated();
|
|
||||||
|
|
||||||
private:
|
|
||||||
const InstanceList* m_instances;
|
|
||||||
int currentInstancesNumber;
|
|
||||||
};
|
|
||||||
|
|
||||||
class InstanceProxyModel : public KCategorizedSortFilterProxyModel
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
explicit InstanceProxyModel ( QObject *parent = 0 );
|
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual bool subSortLessThan ( const QModelIndex& left, const QModelIndex& right ) const;
|
|
||||||
};
|
|
||||||
|
|
@ -63,7 +63,6 @@
|
|||||||
#include <logic/IconListModel.h>
|
#include <logic/IconListModel.h>
|
||||||
#include <logic/LegacyInstance.h>
|
#include <logic/LegacyInstance.h>
|
||||||
|
|
||||||
#include "instancemodel.h"
|
|
||||||
#include "instancedelegate.h"
|
#include "instancedelegate.h"
|
||||||
#include "IconPickerDialog.h"
|
#include "IconPickerDialog.h"
|
||||||
#include "LabeledToolButton.h"
|
#include "LabeledToolButton.h"
|
||||||
@ -108,12 +107,11 @@ MainWindow::MainWindow ( QWidget *parent ) :
|
|||||||
view->setUniformItemWidths(true);
|
view->setUniformItemWidths(true);
|
||||||
view->installEventFilter(this);
|
view->installEventFilter(this);
|
||||||
|
|
||||||
model = new InstanceModel ( instList,this );
|
|
||||||
proxymodel = new InstanceProxyModel ( this );
|
proxymodel = new InstanceProxyModel ( this );
|
||||||
proxymodel->setSortRole ( KCategorizedSortFilterProxyModel::CategorySortRole );
|
proxymodel->setSortRole ( KCategorizedSortFilterProxyModel::CategorySortRole );
|
||||||
proxymodel->setFilterRole ( KCategorizedSortFilterProxyModel::CategorySortRole );
|
proxymodel->setFilterRole ( KCategorizedSortFilterProxyModel::CategorySortRole );
|
||||||
//proxymodel->setDynamicSortFilter ( true );
|
//proxymodel->setDynamicSortFilter ( true );
|
||||||
proxymodel->setSourceModel ( model );
|
proxymodel->setSourceModel ( &instList );
|
||||||
proxymodel->sort ( 0 );
|
proxymodel->sort ( 0 );
|
||||||
|
|
||||||
view->setFrameShape ( QFrame::NoFrame );
|
view->setFrameShape ( QFrame::NoFrame );
|
||||||
@ -137,6 +135,7 @@ MainWindow::MainWindow ( QWidget *parent ) :
|
|||||||
this,
|
this,
|
||||||
SLOT(instanceChanged(const QModelIndex &,const QModelIndex &))
|
SLOT(instanceChanged(const QModelIndex &,const QModelIndex &))
|
||||||
);
|
);
|
||||||
|
connect(&instList,SIGNAL(dataIsInvalid()),SLOT(selectionBad()));
|
||||||
// Load the instances. FIXME: this is not the place I'd say.
|
// Load the instances. FIXME: this is not the place I'd say.
|
||||||
instList.loadList();
|
instList.loadList();
|
||||||
|
|
||||||
@ -160,7 +159,6 @@ MainWindow::~MainWindow()
|
|||||||
{
|
{
|
||||||
delete ui;
|
delete ui;
|
||||||
delete proxymodel;
|
delete proxymodel;
|
||||||
delete model;
|
|
||||||
delete drawer;
|
delete drawer;
|
||||||
delete assets_downloader;
|
delete assets_downloader;
|
||||||
}
|
}
|
||||||
@ -228,7 +226,7 @@ void MainWindow::instanceActivated ( QModelIndex index )
|
|||||||
{
|
{
|
||||||
if(!index.isValid())
|
if(!index.isValid())
|
||||||
return;
|
return;
|
||||||
BaseInstance * inst = (BaseInstance *) index.data(InstanceModel::InstancePointerRole).value<void *>();
|
BaseInstance * inst = (BaseInstance *) index.data(InstanceList::InstancePointerRole).value<void *>();
|
||||||
doLogin();
|
doLogin();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -380,8 +378,7 @@ void MainWindow::on_actionDeleteInstance_triggered()
|
|||||||
QString("This is permanent! Are you sure?\nAbout to delete: ") + m_selectedInstance->name());
|
QString("This is permanent! Are you sure?\nAbout to delete: ") + m_selectedInstance->name());
|
||||||
if (response == QMessageBox::Yes)
|
if (response == QMessageBox::Yes)
|
||||||
{
|
{
|
||||||
QDir(m_selectedInstance->instanceRoot()).removeRecursively();
|
m_selectedInstance->nuke();
|
||||||
instList.loadList();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -596,25 +593,32 @@ void MainWindow::on_actionInstanceSettings_triggered()
|
|||||||
|
|
||||||
void MainWindow::instanceChanged( const QModelIndex& current, const QModelIndex& previous )
|
void MainWindow::instanceChanged( const QModelIndex& current, const QModelIndex& previous )
|
||||||
{
|
{
|
||||||
QString iconKey = "infinity";
|
if(current.isValid() && nullptr != (m_selectedInstance = (BaseInstance *) current.data(InstanceList::InstancePointerRole).value<void *>()))
|
||||||
|
|
||||||
if(current.isValid() && nullptr != (m_selectedInstance = (BaseInstance *) current.data(InstanceModel::InstancePointerRole).value<void *>()))
|
|
||||||
{
|
{
|
||||||
ui->instanceToolBar->setEnabled(true);
|
ui->instanceToolBar->setEnabled(true);
|
||||||
iconKey = m_selectedInstance->iconKey();
|
QString iconKey = m_selectedInstance->iconKey();
|
||||||
renameButton->setText(m_selectedInstance->name());
|
renameButton->setText(m_selectedInstance->name());
|
||||||
ui->actionChangeInstLWJGLVersion->setEnabled(m_selectedInstance->menuActionEnabled("actionChangeInstLWJGLVersion"));
|
ui->actionChangeInstLWJGLVersion->setEnabled(m_selectedInstance->menuActionEnabled("actionChangeInstLWJGLVersion"));
|
||||||
ui->actionEditInstMods->setEnabled(m_selectedInstance->menuActionEnabled("actionEditInstMods"));
|
ui->actionEditInstMods->setEnabled(m_selectedInstance->menuActionEnabled("actionEditInstMods"));
|
||||||
statusBar()->clearMessage();
|
statusBar()->clearMessage();
|
||||||
statusBar()->showMessage(m_selectedInstance->getStatusbarDescription());
|
statusBar()->showMessage(m_selectedInstance->getStatusbarDescription());
|
||||||
|
IconList * iconListModel = IconList::instance();
|
||||||
|
auto ico =iconListModel->getIcon(iconKey);
|
||||||
|
ui->actionChangeInstIcon->setIcon(ico);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
statusBar()->clearMessage();
|
selectionBad();
|
||||||
ui->instanceToolBar->setEnabled(false);
|
|
||||||
renameButton->setText("Rename Instance");
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void MainWindow::selectionBad()
|
||||||
|
{
|
||||||
|
m_selectedInstance = nullptr;
|
||||||
|
QString iconKey = "infinity";
|
||||||
|
statusBar()->clearMessage();
|
||||||
|
ui->instanceToolBar->setEnabled(false);
|
||||||
|
renameButton->setText("Rename Instance");
|
||||||
IconList * iconListModel = IconList::instance();
|
IconList * iconListModel = IconList::instance();
|
||||||
auto ico =iconListModel->getIcon(iconKey);
|
auto ico =iconListModel->getIcon(iconKey);
|
||||||
ui->actionChangeInstIcon->setIcon(ico);
|
ui->actionChangeInstIcon->setIcon(ico);
|
||||||
@ -622,7 +626,6 @@ void MainWindow::instanceChanged( const QModelIndex& current, const QModelIndex&
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
void MainWindow::on_actionEditInstNotes_triggered()
|
void MainWindow::on_actionEditInstNotes_triggered()
|
||||||
{
|
{
|
||||||
if (!m_selectedInstance)
|
if (!m_selectedInstance)
|
||||||
|
@ -24,7 +24,6 @@
|
|||||||
|
|
||||||
class LabeledToolButton;
|
class LabeledToolButton;
|
||||||
class QLabel;
|
class QLabel;
|
||||||
class InstanceModel;
|
|
||||||
class InstanceProxyModel;
|
class InstanceProxyModel;
|
||||||
class KCategorizedView;
|
class KCategorizedView;
|
||||||
class KCategoryDrawer;
|
class KCategoryDrawer;
|
||||||
@ -119,6 +118,8 @@ public slots:
|
|||||||
|
|
||||||
void instanceChanged (const QModelIndex & current,const QModelIndex & previous);
|
void instanceChanged (const QModelIndex & current,const QModelIndex & previous);
|
||||||
|
|
||||||
|
void selectionBad();
|
||||||
|
|
||||||
void startTask(Task *task);
|
void startTask(Task *task);
|
||||||
|
|
||||||
void launchInstance(BaseInstance *inst, LoginResponse response);
|
void launchInstance(BaseInstance *inst, LoginResponse response);
|
||||||
@ -130,7 +131,6 @@ private:
|
|||||||
Ui::MainWindow *ui;
|
Ui::MainWindow *ui;
|
||||||
KCategoryDrawer * drawer;
|
KCategoryDrawer * drawer;
|
||||||
KCategorizedView * view;
|
KCategorizedView * view;
|
||||||
InstanceModel * model;
|
|
||||||
InstanceProxyModel * proxymodel;
|
InstanceProxyModel * proxymodel;
|
||||||
InstanceList instList;
|
InstanceList instList;
|
||||||
MinecraftProcess *proc;
|
MinecraftProcess *proc;
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
#include "BaseInstance_p.h"
|
#include "BaseInstance_p.h"
|
||||||
|
|
||||||
#include <QFileInfo>
|
#include <QFileInfo>
|
||||||
|
#include <QDir>
|
||||||
|
|
||||||
#include "inisettingsobject.h"
|
#include "inisettingsobject.h"
|
||||||
#include "setting.h"
|
#include "setting.h"
|
||||||
@ -83,6 +84,13 @@ BaseInstance::BaseInstance( BaseInstancePrivate* d_in,
|
|||||||
settings().registerSetting(new OverrideSetting("AutoCloseConsole", globalSettings->getSetting("AutoCloseConsole")));
|
settings().registerSetting(new OverrideSetting("AutoCloseConsole", globalSettings->getSetting("AutoCloseConsole")));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void BaseInstance::nuke()
|
||||||
|
{
|
||||||
|
QDir(instanceRoot()).removeRecursively();
|
||||||
|
emit nuked(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
QString BaseInstance::id() const
|
QString BaseInstance::id() const
|
||||||
{
|
{
|
||||||
return QFileInfo(instanceRoot()).fileName();
|
return QFileInfo(instanceRoot()).fileName();
|
||||||
|
@ -48,6 +48,9 @@ public:
|
|||||||
/// virtual destructor to make sure the destruction is COMPLETE
|
/// virtual destructor to make sure the destruction is COMPLETE
|
||||||
virtual ~BaseInstance() {};
|
virtual ~BaseInstance() {};
|
||||||
|
|
||||||
|
/// nuke thoroughly - deletes the instance contents, notifies the list/model which is responsible of cleaning up the husk
|
||||||
|
void nuke();
|
||||||
|
|
||||||
/// The instance's ID. The ID SHALL be determined by MMC internally. The ID IS guaranteed to be unique.
|
/// The instance's ID. The ID SHALL be determined by MMC internally. The ID IS guaranteed to be unique.
|
||||||
QString id() const;
|
QString id() const;
|
||||||
|
|
||||||
@ -169,6 +172,11 @@ signals:
|
|||||||
* \brief Signal emitted when groups are affected in any way
|
* \brief Signal emitted when groups are affected in any way
|
||||||
*/
|
*/
|
||||||
void groupChanged();
|
void groupChanged();
|
||||||
|
/*!
|
||||||
|
* \brief The instance just got nuked. Hurray!
|
||||||
|
*/
|
||||||
|
void nuked(BaseInstance * inst);
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
QSharedPointer<BaseInstancePrivate> inst_d;
|
QSharedPointer<BaseInstancePrivate> inst_d;
|
||||||
};
|
};
|
||||||
|
@ -26,13 +26,14 @@
|
|||||||
#include "logic/lists/InstanceList.h"
|
#include "logic/lists/InstanceList.h"
|
||||||
#include "logic/BaseInstance.h"
|
#include "logic/BaseInstance.h"
|
||||||
#include "logic/InstanceFactory.h"
|
#include "logic/InstanceFactory.h"
|
||||||
|
#include <logic/IconListModel.h>
|
||||||
|
|
||||||
#include "pathutils.h"
|
#include "pathutils.h"
|
||||||
|
|
||||||
const static int GROUP_FILE_FORMAT_VERSION = 1;
|
const static int GROUP_FILE_FORMAT_VERSION = 1;
|
||||||
|
|
||||||
InstanceList::InstanceList(const QString &instDir, QObject *parent) :
|
InstanceList::InstanceList(const QString &instDir, QObject *parent) :
|
||||||
QObject(parent), m_instDir("instances")
|
QAbstractListModel ( parent ), m_instDir("instances")
|
||||||
{
|
{
|
||||||
|
|
||||||
}
|
}
|
||||||
@ -42,6 +43,69 @@ InstanceList::~InstanceList()
|
|||||||
saveGroupList();
|
saveGroupList();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
int InstanceList::rowCount ( const QModelIndex& parent ) const
|
||||||
|
{
|
||||||
|
Q_UNUSED ( parent );
|
||||||
|
return m_instances.count();
|
||||||
|
}
|
||||||
|
|
||||||
|
QModelIndex InstanceList::index ( int row, int column, const QModelIndex& parent ) const
|
||||||
|
{
|
||||||
|
Q_UNUSED ( parent );
|
||||||
|
if ( row < 0 || row >= m_instances.size() )
|
||||||
|
return QModelIndex();
|
||||||
|
return createIndex ( row, column, ( void* ) m_instances.at ( row ).data() );
|
||||||
|
}
|
||||||
|
|
||||||
|
QVariant InstanceList::data ( const QModelIndex& index, int role ) const
|
||||||
|
{
|
||||||
|
if ( !index.isValid() )
|
||||||
|
{
|
||||||
|
return QVariant();
|
||||||
|
}
|
||||||
|
BaseInstance *pdata = static_cast<BaseInstance*> ( index.internalPointer() );
|
||||||
|
switch ( role )
|
||||||
|
{
|
||||||
|
case InstancePointerRole:
|
||||||
|
{
|
||||||
|
QVariant v = qVariantFromValue((void *) pdata);
|
||||||
|
return v;
|
||||||
|
}
|
||||||
|
case Qt::DisplayRole:
|
||||||
|
{
|
||||||
|
return pdata->name();
|
||||||
|
}
|
||||||
|
case Qt::ToolTipRole:
|
||||||
|
{
|
||||||
|
return pdata->instanceRoot();
|
||||||
|
}
|
||||||
|
case Qt::DecorationRole:
|
||||||
|
{
|
||||||
|
IconList * ic = IconList::instance();
|
||||||
|
QString key = pdata->iconKey();
|
||||||
|
return ic->getIcon(key);
|
||||||
|
}
|
||||||
|
// for now.
|
||||||
|
case KCategorizedSortFilterProxyModel::CategorySortRole:
|
||||||
|
case KCategorizedSortFilterProxyModel::CategoryDisplayRole:
|
||||||
|
{
|
||||||
|
return pdata->group();
|
||||||
|
}
|
||||||
|
default:
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
return QVariant();
|
||||||
|
}
|
||||||
|
|
||||||
|
Qt::ItemFlags InstanceList::flags ( const QModelIndex& index ) const
|
||||||
|
{
|
||||||
|
Qt::ItemFlags f;
|
||||||
|
if ( index.isValid() )
|
||||||
|
{
|
||||||
|
f |= ( Qt::ItemIsEnabled | Qt::ItemIsSelectable );
|
||||||
|
}
|
||||||
|
return f;
|
||||||
|
}
|
||||||
|
|
||||||
void InstanceList::groupChanged()
|
void InstanceList::groupChanged()
|
||||||
{
|
{
|
||||||
@ -197,6 +261,8 @@ InstanceList::InstListError InstanceList::loadList()
|
|||||||
QMap<QString, QString> groupMap;
|
QMap<QString, QString> groupMap;
|
||||||
loadGroupList(groupMap);
|
loadGroupList(groupMap);
|
||||||
|
|
||||||
|
beginResetModel();
|
||||||
|
|
||||||
m_instances.clear();
|
m_instances.clear();
|
||||||
QDir dir(m_instDir);
|
QDir dir(m_instDir);
|
||||||
QDirIterator iter(dir);
|
QDirIterator iter(dir);
|
||||||
@ -251,25 +317,34 @@ InstanceList::InstListError InstanceList::loadList()
|
|||||||
m_instances.append(inst);
|
m_instances.append(inst);
|
||||||
connect(instPtr, SIGNAL(propertiesChanged(BaseInstance*)),this, SLOT(propertiesChanged(BaseInstance*)));
|
connect(instPtr, SIGNAL(propertiesChanged(BaseInstance*)),this, SLOT(propertiesChanged(BaseInstance*)));
|
||||||
connect(instPtr, SIGNAL(groupChanged()),this, SLOT(groupChanged()));
|
connect(instPtr, SIGNAL(groupChanged()),this, SLOT(groupChanged()));
|
||||||
|
connect(instPtr, SIGNAL(nuked(BaseInstance*)), this, SLOT(instanceNuked(BaseInstance*)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
emit invalidated();
|
endResetModel();
|
||||||
|
emit dataIsInvalid();
|
||||||
return NoError;
|
return NoError;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Clear all instances. Triggers notifications.
|
/// Clear all instances. Triggers notifications.
|
||||||
void InstanceList::clear()
|
void InstanceList::clear()
|
||||||
{
|
{
|
||||||
|
beginResetModel();
|
||||||
saveGroupList();
|
saveGroupList();
|
||||||
m_instances.clear();
|
m_instances.clear();
|
||||||
emit invalidated();
|
endResetModel();
|
||||||
|
emit dataIsInvalid();
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Add an instance. Triggers notifications, returns the new index
|
/// Add an instance. Triggers notifications, returns the new index
|
||||||
int InstanceList::add(InstancePtr t)
|
int InstanceList::add(InstancePtr t)
|
||||||
{
|
{
|
||||||
|
beginInsertRows(QModelIndex(), m_instances.size(), m_instances.size());
|
||||||
m_instances.append(t);
|
m_instances.append(t);
|
||||||
emit instanceAdded(count() - 1);
|
t->setParent(this);
|
||||||
|
connect(t.data(), SIGNAL(propertiesChanged(BaseInstance*)),this, SLOT(propertiesChanged(BaseInstance*)));
|
||||||
|
connect(t.data(), SIGNAL(groupChanged()),this, SLOT(groupChanged()));
|
||||||
|
connect(t.data(), SIGNAL(nuked(BaseInstance*)), this, SLOT(instanceNuked(BaseInstance*)));
|
||||||
|
endInsertRows();
|
||||||
return count() - 1;
|
return count() - 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -289,14 +364,54 @@ InstancePtr InstanceList::getInstanceById(QString instId)
|
|||||||
return iter.peekPrevious();
|
return iter.peekPrevious();
|
||||||
}
|
}
|
||||||
|
|
||||||
void InstanceList::propertiesChanged(BaseInstance * inst)
|
int InstanceList::getInstIndex ( BaseInstance* inst )
|
||||||
{
|
{
|
||||||
for(int i = 0; i < m_instances.count(); i++)
|
for(int i = 0; i < m_instances.count(); i++)
|
||||||
{
|
{
|
||||||
if(inst == m_instances[i].data())
|
if(inst == m_instances[i].data())
|
||||||
{
|
{
|
||||||
emit instanceChanged(i);
|
return i;
|
||||||
break;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void InstanceList::instanceNuked ( BaseInstance* inst )
|
||||||
|
{
|
||||||
|
int i = getInstIndex(inst);
|
||||||
|
if(i != -1)
|
||||||
|
{
|
||||||
|
beginRemoveRows(QModelIndex(),i,i);
|
||||||
|
m_instances.removeAt(i);
|
||||||
|
endRemoveRows();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
void InstanceList::propertiesChanged(BaseInstance * inst)
|
||||||
|
{
|
||||||
|
int i = getInstIndex(inst);
|
||||||
|
if(i != -1)
|
||||||
|
{
|
||||||
|
emit dataChanged(index(i), index(i));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
InstanceProxyModel::InstanceProxyModel ( QObject *parent )
|
||||||
|
: KCategorizedSortFilterProxyModel ( parent )
|
||||||
|
{
|
||||||
|
// disable since by default we are globally sorting by date:
|
||||||
|
setCategorizedModel(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool InstanceProxyModel::subSortLessThan (const QModelIndex& left, const QModelIndex& right ) const
|
||||||
|
{
|
||||||
|
BaseInstance *pdataLeft = static_cast<BaseInstance*> ( left.internalPointer() );
|
||||||
|
BaseInstance *pdataRight = static_cast<BaseInstance*> ( right.internalPointer() );
|
||||||
|
//kDebug() << *pdataLeft << *pdataRight;
|
||||||
|
return QString::localeAwareCompare(pdataLeft->name(), pdataRight->name()) < 0;
|
||||||
|
//return pdataLeft->name() < pdataRight->name();
|
||||||
|
}
|
||||||
|
|
||||||
|
#include "InstanceList.moc"
|
@ -17,12 +17,15 @@
|
|||||||
|
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
#include <QSharedPointer>
|
#include <QSharedPointer>
|
||||||
|
#include <QAbstractListModel>
|
||||||
|
#include "categorizedsortfilterproxymodel.h"
|
||||||
|
#include <QIcon>
|
||||||
|
|
||||||
#include "logic/BaseInstance.h"
|
#include "logic/BaseInstance.h"
|
||||||
|
|
||||||
class BaseInstance;
|
class BaseInstance;
|
||||||
|
|
||||||
class InstanceList : public QObject
|
class InstanceList : public QAbstractListModel
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
private:
|
private:
|
||||||
@ -33,6 +36,16 @@ public:
|
|||||||
explicit InstanceList(const QString &instDir, QObject *parent = 0);
|
explicit InstanceList(const QString &instDir, QObject *parent = 0);
|
||||||
virtual ~InstanceList();
|
virtual ~InstanceList();
|
||||||
|
|
||||||
|
public:
|
||||||
|
QModelIndex index ( int row, int column = 0, const QModelIndex& parent = QModelIndex() ) const;
|
||||||
|
int rowCount ( const QModelIndex& parent = QModelIndex() ) const;
|
||||||
|
QVariant data ( const QModelIndex& index, int role ) const;
|
||||||
|
Qt::ItemFlags flags ( const QModelIndex& index ) const;
|
||||||
|
|
||||||
|
enum AdditionalRoles
|
||||||
|
{
|
||||||
|
InstancePointerRole = 0x34B1CB48 ///< Return pointer to real instance
|
||||||
|
};
|
||||||
/*!
|
/*!
|
||||||
* \brief Error codes returned by functions in the InstanceList class.
|
* \brief Error codes returned by functions in the InstanceList class.
|
||||||
* NoError Indicates that no error occurred.
|
* NoError Indicates that no error occurred.
|
||||||
@ -75,16 +88,26 @@ public:
|
|||||||
|
|
||||||
/// Get an instance by ID
|
/// Get an instance by ID
|
||||||
InstancePtr getInstanceById (QString id);
|
InstancePtr getInstanceById (QString id);
|
||||||
|
|
||||||
signals:
|
signals:
|
||||||
void instanceAdded(int index);
|
void dataIsInvalid();
|
||||||
void instanceChanged(int index);
|
|
||||||
void invalidated();
|
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
void propertiesChanged(BaseInstance * inst);
|
void propertiesChanged(BaseInstance * inst);
|
||||||
|
void instanceNuked(BaseInstance * inst);
|
||||||
void groupChanged();
|
void groupChanged();
|
||||||
|
private:
|
||||||
|
int getInstIndex(BaseInstance * inst);
|
||||||
protected:
|
protected:
|
||||||
QString m_instDir;
|
QString m_instDir;
|
||||||
QList< InstancePtr > m_instances;
|
QList< InstancePtr > m_instances;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class InstanceProxyModel : public KCategorizedSortFilterProxyModel
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
explicit InstanceProxyModel ( QObject *parent = 0 );
|
||||||
|
|
||||||
|
protected:
|
||||||
|
virtual bool subSortLessThan ( const QModelIndex& left, const QModelIndex& right ) const;
|
||||||
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user