2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2014-06-29 23:29:08 +05:30
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "PageContainer.h"
|
2014-07-13 02:32:52 +05:30
|
|
|
|
2014-06-29 23:29:08 +05:30
|
|
|
#include <QStackedLayout>
|
|
|
|
#include <QPushButton>
|
|
|
|
#include <QSortFilterProxyModel>
|
|
|
|
#include <QUrl>
|
|
|
|
#include <QStyledItemDelegate>
|
|
|
|
#include <QListView>
|
|
|
|
#include <QLineEdit>
|
|
|
|
#include <QLabel>
|
|
|
|
#include <QDialogButtonBox>
|
|
|
|
#include <QGridLayout>
|
|
|
|
|
2014-07-13 02:32:52 +05:30
|
|
|
#include "MultiMC.h"
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "settings/SettingsObject.h"
|
|
|
|
#include "widgets/IconLabel.h"
|
2014-06-29 23:29:08 +05:30
|
|
|
#include "PageContainer_p.h"
|
2015-03-02 02:50:57 +05:30
|
|
|
#include <MultiMC.h>
|
2016-01-05 12:02:52 +05:30
|
|
|
#include <DesktopServices.h>
|
2014-06-29 23:29:08 +05:30
|
|
|
|
|
|
|
class PageEntryFilterModel : public QSortFilterProxyModel
|
|
|
|
{
|
|
|
|
public:
|
2018-07-15 18:21:05 +05:30
|
|
|
explicit PageEntryFilterModel(QObject *parent = 0) : QSortFilterProxyModel(parent)
|
|
|
|
{
|
|
|
|
}
|
2014-06-29 23:29:08 +05:30
|
|
|
|
|
|
|
protected:
|
2018-07-15 18:21:05 +05:30
|
|
|
bool filterAcceptsRow(int sourceRow, const QModelIndex &sourceParent) const
|
|
|
|
{
|
|
|
|
const QString pattern = filterRegExp().pattern();
|
|
|
|
const auto model = static_cast<PageModel *>(sourceModel());
|
|
|
|
const auto page = model->pages().at(sourceRow);
|
|
|
|
if (!page->shouldDisplay())
|
|
|
|
return false;
|
|
|
|
// Regular contents check, then check page-filter.
|
|
|
|
return QSortFilterProxyModel::filterAcceptsRow(sourceRow, sourceParent);
|
|
|
|
}
|
2014-06-29 23:29:08 +05:30
|
|
|
};
|
|
|
|
|
2018-03-19 07:06:12 +05:30
|
|
|
PageContainer::PageContainer(BasePageProvider *pageProvider, QString defaultId,
|
2018-07-15 18:21:05 +05:30
|
|
|
QWidget *parent)
|
|
|
|
: QWidget(parent)
|
2014-06-29 23:29:08 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
createUI();
|
|
|
|
m_model = new PageModel(this);
|
|
|
|
m_proxyModel = new PageEntryFilterModel(this);
|
|
|
|
int counter = 0;
|
|
|
|
auto pages = pageProvider->getPages();
|
|
|
|
for (auto page : pages)
|
|
|
|
{
|
|
|
|
page->stackIndex = m_pageStack->addWidget(dynamic_cast<QWidget *>(page));
|
|
|
|
page->listIndex = counter;
|
|
|
|
page->setParentContainer(this);
|
|
|
|
counter++;
|
|
|
|
}
|
|
|
|
m_model->setPages(pages);
|
|
|
|
|
|
|
|
m_proxyModel->setSourceModel(m_model);
|
|
|
|
m_proxyModel->setFilterCaseSensitivity(Qt::CaseInsensitive);
|
|
|
|
|
|
|
|
m_pageList->setIconSize(QSize(pageIconSize, pageIconSize));
|
|
|
|
m_pageList->setSelectionMode(QAbstractItemView::SingleSelection);
|
|
|
|
m_pageList->setVerticalScrollMode(QAbstractItemView::ScrollPerPixel);
|
|
|
|
m_pageList->setSizeAdjustPolicy(QAbstractScrollArea::AdjustToContents);
|
|
|
|
m_pageList->setModel(m_proxyModel);
|
|
|
|
connect(m_pageList->selectionModel(), SIGNAL(currentRowChanged(QModelIndex, QModelIndex)),
|
|
|
|
this, SLOT(currentChanged(QModelIndex)));
|
|
|
|
m_pageStack->setStackingMode(QStackedLayout::StackOne);
|
|
|
|
m_pageList->setFocus();
|
|
|
|
selectPage(defaultId);
|
2015-05-29 05:52:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
bool PageContainer::selectPage(QString pageId)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
// now find what we want to have selected...
|
|
|
|
auto page = m_model->findPageEntryById(pageId);
|
|
|
|
QModelIndex index;
|
|
|
|
if (page)
|
|
|
|
{
|
|
|
|
index = m_proxyModel->mapFromSource(m_model->index(page->listIndex));
|
|
|
|
}
|
|
|
|
if(!index.isValid())
|
|
|
|
{
|
|
|
|
index = m_proxyModel->index(0, 0);
|
|
|
|
}
|
|
|
|
if (index.isValid())
|
|
|
|
{
|
|
|
|
m_pageList->setCurrentIndex(index);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2014-06-29 23:29:08 +05:30
|
|
|
}
|
|
|
|
|
2016-11-07 04:48:27 +05:30
|
|
|
void PageContainer::refreshContainer()
|
2016-08-06 19:09:29 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_proxyModel->invalidate();
|
|
|
|
if(!m_currentPage->shouldDisplay())
|
|
|
|
{
|
|
|
|
auto index = m_proxyModel->index(0, 0);
|
|
|
|
if(index.isValid())
|
|
|
|
{
|
|
|
|
m_pageList->setCurrentIndex(index);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// FIXME: unhandled corner case: what to do when there's no page to select?
|
|
|
|
}
|
|
|
|
}
|
2016-08-06 19:09:29 +05:30
|
|
|
}
|
|
|
|
|
2014-06-29 23:29:08 +05:30
|
|
|
void PageContainer::createUI()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_pageStack = new QStackedLayout;
|
|
|
|
m_pageList = new PageView;
|
|
|
|
m_header = new QLabel();
|
|
|
|
m_iconHeader = new IconLabel(this, QIcon(), QSize(24, 24));
|
|
|
|
|
|
|
|
QFont headerLabelFont = m_header->font();
|
|
|
|
headerLabelFont.setBold(true);
|
|
|
|
const int pointSize = headerLabelFont.pointSize();
|
|
|
|
if (pointSize > 0)
|
|
|
|
headerLabelFont.setPointSize(pointSize + 2);
|
|
|
|
m_header->setFont(headerLabelFont);
|
|
|
|
|
|
|
|
QHBoxLayout *headerHLayout = new QHBoxLayout;
|
|
|
|
const int leftMargin = MMC->style()->pixelMetric(QStyle::PM_LayoutLeftMargin);
|
2019-08-03 03:22:19 +05:30
|
|
|
headerHLayout->addSpacerItem(new QSpacerItem(leftMargin, 0, QSizePolicy::Fixed, QSizePolicy::Ignored));
|
2018-07-15 18:21:05 +05:30
|
|
|
headerHLayout->addWidget(m_header);
|
2019-08-03 03:22:19 +05:30
|
|
|
headerHLayout->addSpacerItem(new QSpacerItem(0, 0, QSizePolicy::Expanding, QSizePolicy::Ignored));
|
2018-07-15 18:21:05 +05:30
|
|
|
headerHLayout->addWidget(m_iconHeader);
|
|
|
|
const int rightMargin = MMC->style()->pixelMetric(QStyle::PM_LayoutRightMargin);
|
2019-08-03 03:22:19 +05:30
|
|
|
headerHLayout->addSpacerItem(new QSpacerItem(rightMargin, 0, QSizePolicy::Fixed, QSizePolicy::Ignored));
|
|
|
|
headerHLayout->setContentsMargins(0, 6, 0, 0);
|
2018-07-15 18:21:05 +05:30
|
|
|
|
|
|
|
m_pageStack->setMargin(0);
|
|
|
|
m_pageStack->addWidget(new QWidget(this));
|
|
|
|
|
|
|
|
m_layout = new QGridLayout;
|
|
|
|
m_layout->addLayout(headerHLayout, 0, 1, 1, 1);
|
|
|
|
m_layout->addWidget(m_pageList, 0, 0, 2, 1);
|
|
|
|
m_layout->addLayout(m_pageStack, 1, 1, 1, 1);
|
|
|
|
m_layout->setColumnStretch(1, 4);
|
2019-08-03 03:22:19 +05:30
|
|
|
m_layout->setContentsMargins(0,0,0,6);
|
2018-07-15 18:21:05 +05:30
|
|
|
setLayout(m_layout);
|
2014-06-29 23:29:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void PageContainer::addButtons(QWidget *buttons)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_layout->addWidget(buttons, 2, 0, 1, 2);
|
2014-06-29 23:29:08 +05:30
|
|
|
}
|
|
|
|
|
2014-06-30 05:32:57 +05:30
|
|
|
void PageContainer::addButtons(QLayout *buttons)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
m_layout->addLayout(buttons, 2, 0, 1, 2);
|
2014-06-30 05:32:57 +05:30
|
|
|
}
|
|
|
|
|
2014-06-29 23:29:08 +05:30
|
|
|
void PageContainer::showPage(int row)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if (m_currentPage)
|
|
|
|
{
|
|
|
|
m_currentPage->closed();
|
|
|
|
}
|
|
|
|
if (row != -1)
|
|
|
|
{
|
|
|
|
m_currentPage = m_model->pages().at(row);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_currentPage = nullptr;
|
|
|
|
}
|
|
|
|
if (m_currentPage)
|
|
|
|
{
|
|
|
|
m_pageStack->setCurrentIndex(m_currentPage->stackIndex);
|
|
|
|
m_header->setText(m_currentPage->displayName());
|
|
|
|
m_iconHeader->setIcon(m_currentPage->icon());
|
|
|
|
m_currentPage->opened();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_pageStack->setCurrentIndex(0);
|
|
|
|
m_header->setText(QString());
|
|
|
|
m_iconHeader->setIcon(MMC->getThemedIcon("bug"));
|
|
|
|
}
|
2014-06-29 23:29:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void PageContainer::help()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if (m_currentPage)
|
|
|
|
{
|
|
|
|
QString pageId = m_currentPage->helpPage();
|
|
|
|
if (pageId.isEmpty())
|
|
|
|
return;
|
|
|
|
DesktopServices::openUrl(QUrl("https://github.com/MultiMC/MultiMC5/wiki/" + pageId));
|
|
|
|
}
|
2014-06-29 23:29:08 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
void PageContainer::currentChanged(const QModelIndex ¤t)
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
showPage(current.isValid() ? m_proxyModel->mapToSource(current).row() : -1);
|
2014-06-29 23:29:08 +05:30
|
|
|
}
|
|
|
|
|
2016-10-28 07:06:29 +05:30
|
|
|
bool PageContainer::prepareToClose()
|
2014-06-29 23:29:08 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
if(!saveAll())
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (m_currentPage)
|
|
|
|
{
|
|
|
|
m_currentPage->closed();
|
|
|
|
}
|
|
|
|
return true;
|
2014-06-29 23:29:08 +05:30
|
|
|
}
|
2018-04-12 05:14:51 +05:30
|
|
|
|
|
|
|
bool PageContainer::saveAll()
|
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
for (auto page : m_model->pages())
|
|
|
|
{
|
|
|
|
if (!page->apply())
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2018-04-12 05:14:51 +05:30
|
|
|
}
|