summaryrefslogtreecommitdiffstats
path: root/gui
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2013-08-26 07:09:54 +0200
committerPetr Mrázek <peterix@gmail.com>2013-08-26 07:09:54 +0200
commite6999b3b62c5b765eff1736477a052f1cfeffd19 (patch)
tree3ec68b93e84a0e4a5859b09a7e11f37b35b1e055 /gui
parenta63c7340a632c634733271332a43aac82bc73799 (diff)
downloadMultiMC-e6999b3b62c5b765eff1736477a052f1cfeffd19.tar
MultiMC-e6999b3b62c5b765eff1736477a052f1cfeffd19.tar.gz
MultiMC-e6999b3b62c5b765eff1736477a052f1cfeffd19.tar.lz
MultiMC-e6999b3b62c5b765eff1736477a052f1cfeffd19.tar.xz
MultiMC-e6999b3b62c5b765eff1736477a052f1cfeffd19.zip
Clean up the main window constructor a bit
Diffstat (limited to 'gui')
-rw-r--r--gui/mainwindow.cpp132
1 files changed, 70 insertions, 62 deletions
diff --git a/gui/mainwindow.cpp b/gui/mainwindow.cpp
index 52971acf..fbda2547 100644
--- a/gui/mainwindow.cpp
+++ b/gui/mainwindow.cpp
@@ -74,85 +74,93 @@ MainWindow::MainWindow ( QWidget *parent ) :
instList ( globalSettings->get ( "InstanceDir" ).toString() )
{
ui->setupUi ( this );
+ setWindowTitle ( QString ( "MultiMC %1" ).arg ( AppVersion::current.toString() ) );
- ui->instanceToolBar->setEnabled(false);
// Set the selected instance to null
m_selectedInstance = nullptr;
// Set active instance to null.
m_activeInst = nullptr;
- // the rename label is inside the rename tool button
- renameButton = new LabeledToolButton();
- renameButton->setText("Instance Name");
- connect(renameButton, SIGNAL(clicked(bool)), SLOT(on_actionRenameInstance_triggered()));
- ui->instanceToolBar->insertWidget(ui->actionLaunchInstance, renameButton);
- ui->instanceToolBar->insertSeparator(ui->actionLaunchInstance);
- renameButton->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Preferred);
- // Create the widget
- view = new KCategorizedView ( ui->centralWidget );
- drawer = new KCategoryDrawer ( view );
-
- view->setSelectionMode ( QAbstractItemView::SingleSelection );
- //view->setSpacing( KDialog::spacingHint() );
- view->setCategoryDrawer ( drawer );
- view->setCollapsibleBlocks ( true );
- view->setViewMode ( QListView::IconMode );
- view->setFlow ( QListView::LeftToRight );
- view->setWordWrap(true);
- view->setMouseTracking ( true );
- view->viewport()->setAttribute ( Qt::WA_Hover );
- auto delegate = new ListViewDelegate();
- view->setItemDelegate(delegate);
- view->setSpacing(10);
- view->setUniformItemWidths(true);
- view->installEventFilter(this);
-
- proxymodel = new InstanceProxyModel ( this );
- proxymodel->setSortRole ( KCategorizedSortFilterProxyModel::CategorySortRole );
- proxymodel->setFilterRole ( KCategorizedSortFilterProxyModel::CategorySortRole );
- //proxymodel->setDynamicSortFilter ( true );
- proxymodel->setSourceModel ( &instList );
- proxymodel->sort ( 0 );
-
- view->setFrameShape ( QFrame::NoFrame );
-
- bool cat_enable = globalSettings->get("TheCat").toBool();
- ui->actionCAT->setChecked(cat_enable);
- connect(ui->actionCAT, SIGNAL(toggled(bool)), SLOT(onCatToggled(bool)));
- setCatBackground(cat_enable);
+ // The instance action toolbar customizations
+ {
+ ui->instanceToolBar->setEnabled(false);
+ // the rename label is inside the rename tool button
+ renameButton = new LabeledToolButton();
+ renameButton->setText("Instance Name");
+ connect(renameButton, SIGNAL(clicked(bool)), SLOT(on_actionRenameInstance_triggered()));
+ ui->instanceToolBar->insertWidget(ui->actionLaunchInstance, renameButton);
+ ui->instanceToolBar->insertSeparator(ui->actionLaunchInstance);
+ renameButton->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Preferred);
+ }
- ui->horizontalLayout->addWidget ( view );
- setWindowTitle ( QString ( "MultiMC %1" ).arg ( AppVersion::current.toString() ) );
- // TODO: Make this work with the new settings system.
-// restoreGeometry(settings->getConfig().value("MainWindowGeometry", saveGeometry()).toByteArray());
-// restoreState(settings->getConfig().value("MainWindowState", saveState()).toByteArray());
- view->setModel ( proxymodel );
+ // Create the instance list widget
+ {
+ view = new KCategorizedView ( ui->centralWidget );
+ drawer = new KCategoryDrawer ( view );
+
+ view->setSelectionMode ( QAbstractItemView::SingleSelection );
+ view->setCategoryDrawer ( drawer );
+ view->setCollapsibleBlocks ( true );
+ view->setViewMode ( QListView::IconMode );
+ view->setFlow ( QListView::LeftToRight );
+ view->setWordWrap(true);
+ view->setMouseTracking ( true );
+ view->viewport()->setAttribute ( Qt::WA_Hover );
+ auto delegate = new ListViewDelegate();
+ view->setItemDelegate(delegate);
+ view->setSpacing(10);
+ view->setUniformItemWidths(true);
+ view->installEventFilter(this);
+
+ proxymodel = new InstanceProxyModel ( this );
+ proxymodel->setSortRole ( KCategorizedSortFilterProxyModel::CategorySortRole );
+ proxymodel->setFilterRole ( KCategorizedSortFilterProxyModel::CategorySortRole );
+ //proxymodel->setDynamicSortFilter ( true );
+
+ // FIXME: instList should be global-ish, or at least not tied to the main window... maybe the application itself?
+ proxymodel->setSourceModel ( &instList );
+ proxymodel->sort ( 0 );
+ view->setFrameShape ( QFrame::NoFrame );
+ view->setModel ( proxymodel );
+
+ ui->horizontalLayout->addWidget ( view );
+ }
+ // The cat background
+ {
+ bool cat_enable = globalSettings->get("TheCat").toBool();
+ ui->actionCAT->setChecked(cat_enable);
+ connect(ui->actionCAT, SIGNAL(toggled(bool)), SLOT(onCatToggled(bool)));
+ setCatBackground(cat_enable);
+ }
+ // start instance when double-clicked
connect(view, SIGNAL(doubleClicked(const QModelIndex &)), this, SLOT(instanceActivated(const QModelIndex &)));
- auto selectionmodel = view->selectionModel();
+ // track the selection -- update the instance toolbar
connect(
- selectionmodel,
+ view->selectionModel(),
SIGNAL(currentChanged(const QModelIndex &,const QModelIndex &)),
this,
SLOT(instanceChanged(const QModelIndex &,const QModelIndex &))
);
+ // model reset -> selection is invalid. All the instance pointers are wrong.
+ // FIXME: stop using POINTERS everywhere
connect(&instList,SIGNAL(dataIsInvalid()),SLOT(selectionBad()));
- // Load the instances. FIXME: this is not the place I'd say.
- instList.loadList();
- //FIXME: WTF
- if (!MinecraftVersionList::getMainList().isLoaded())
+ // run the things that load and download other things... FIXME: this is NOT the place
+ // FIXME: invisible actions in the background = NOPE.
{
- m_versionLoadTask = MinecraftVersionList::getMainList().getLoadTask();
- startTask(m_versionLoadTask);
- }
- //FIXME: WTF X 2
- if (!LWJGLVersionList::get().isLoaded())
- {
- LWJGLVersionList::get().loadList();
+ instList.loadList();
+ if (!MinecraftVersionList::getMainList().isLoaded())
+ {
+ m_versionLoadTask = MinecraftVersionList::getMainList().getLoadTask();
+ startTask(m_versionLoadTask);
+ }
+ if (!LWJGLVersionList::get().isLoaded())
+ {
+ LWJGLVersionList::get().loadList();
+ }
+ assets_downloader = new OneSixAssets();
+ assets_downloader->start();
}
- //FIXME: I guess you get the idea. This is a quick hack.
- assets_downloader = new OneSixAssets();
- assets_downloader->start();
}
MainWindow::~MainWindow()