2018-02-11 05:10:01 +05:30
|
|
|
/* Copyright 2013-2018 MultiMC Contributors
|
2014-06-02 04:19:53 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
2014-07-13 02:32:52 +05:30
|
|
|
|
2014-06-02 04:19:53 +05:30
|
|
|
#include <QDialog>
|
2015-02-09 06:21:14 +05:30
|
|
|
#include "pages/BasePageProvider.h"
|
2014-06-02 04:19:53 +05:30
|
|
|
|
2014-06-29 23:29:08 +05:30
|
|
|
class PageContainer;
|
2014-06-02 04:19:53 +05:30
|
|
|
class PageDialog : public QDialog
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
2018-03-19 07:06:12 +05:30
|
|
|
explicit PageDialog(BasePageProvider *pageProvider, QString defaultId = QString(), QWidget *parent = 0);
|
2014-07-13 02:32:52 +05:30
|
|
|
virtual ~PageDialog() {}
|
2014-06-09 04:59:18 +05:30
|
|
|
|
|
|
|
private
|
|
|
|
slots:
|
2014-06-03 05:04:44 +05:30
|
|
|
virtual void closeEvent(QCloseEvent *event);
|
2014-06-02 04:19:53 +05:30
|
|
|
|
|
|
|
private:
|
2014-06-29 23:29:08 +05:30
|
|
|
PageContainer * m_container;
|
2014-06-02 04:19:53 +05:30
|
|
|
};
|