2021-01-18 12:58:54 +05:30
|
|
|
/* Copyright 2013-2021 MultiMC Contributors
|
2018-04-12 05:14:51 +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
|
|
|
|
|
2019-07-17 05:31:29 +05:30
|
|
|
#include <QMainWindow>
|
2018-04-12 05:14:51 +05:30
|
|
|
#include <QString>
|
|
|
|
|
2021-11-22 08:25:16 +05:30
|
|
|
#include "ui/pages/BasePage.h"
|
2021-11-20 20:52:22 +05:30
|
|
|
#include <Application.h>
|
2018-04-12 05:14:51 +05:30
|
|
|
|
|
|
|
namespace Ui
|
|
|
|
{
|
|
|
|
class ServersPage;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Server;
|
|
|
|
class ServersModel;
|
|
|
|
class MinecraftInstance;
|
|
|
|
|
2019-07-17 05:31:29 +05:30
|
|
|
class ServersPage : public QMainWindow, public BasePage
|
2018-04-12 05:14:51 +05:30
|
|
|
{
|
2018-07-15 18:21:05 +05:30
|
|
|
Q_OBJECT
|
2018-04-12 05:14:51 +05:30
|
|
|
|
|
|
|
public:
|
2021-05-22 21:37:08 +05:30
|
|
|
explicit ServersPage(InstancePtr inst, QWidget *parent = 0);
|
2018-07-15 18:21:05 +05:30
|
|
|
virtual ~ServersPage();
|
2018-04-12 05:14:51 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void openedImpl() override;
|
|
|
|
void closedImpl() override;
|
2018-04-12 05:14:51 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
virtual QString displayName() const override
|
|
|
|
{
|
|
|
|
return tr("Servers");
|
|
|
|
}
|
|
|
|
virtual QIcon icon() const override
|
|
|
|
{
|
2021-11-20 20:52:22 +05:30
|
|
|
return APPLICATION->getThemedIcon("unknown_server");
|
2018-07-15 18:21:05 +05:30
|
|
|
}
|
|
|
|
virtual QString id() const override
|
|
|
|
{
|
|
|
|
return "servers";
|
|
|
|
}
|
|
|
|
virtual QString helpPage() const override
|
|
|
|
{
|
|
|
|
return "Servers-management";
|
|
|
|
}
|
2019-07-17 05:31:29 +05:30
|
|
|
|
|
|
|
protected:
|
|
|
|
QMenu * createPopupMenu() override;
|
|
|
|
|
2018-04-12 05:14:51 +05:30
|
|
|
private:
|
2018-07-15 18:21:05 +05:30
|
|
|
void updateState();
|
|
|
|
void scheduleSave();
|
|
|
|
bool saveIsScheduled() const;
|
2018-04-12 05:14:51 +05:30
|
|
|
|
|
|
|
private slots:
|
2018-07-15 18:21:05 +05:30
|
|
|
void currentChanged(const QModelIndex ¤t, const QModelIndex &previous);
|
|
|
|
void rowsRemoved(const QModelIndex &parent, int first, int last);
|
2018-04-12 05:14:51 +05:30
|
|
|
|
2019-07-17 05:31:29 +05:30
|
|
|
void on_actionAdd_triggered();
|
|
|
|
void on_actionRemove_triggered();
|
|
|
|
void on_actionMove_Up_triggered();
|
|
|
|
void on_actionMove_Down_triggered();
|
2021-05-22 21:37:08 +05:30
|
|
|
void on_actionJoin_triggered();
|
2019-07-17 05:31:29 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void on_RunningState_changed(bool running);
|
2018-04-12 05:14:51 +05:30
|
|
|
|
2018-07-15 18:21:05 +05:30
|
|
|
void nameEdited(const QString & name);
|
|
|
|
void addressEdited(const QString & address);
|
2019-07-25 04:32:30 +05:30
|
|
|
void resourceIndexChanged(int index);\
|
|
|
|
|
|
|
|
void ShowContextMenu(const QPoint &pos);
|
2018-04-12 05:14:51 +05:30
|
|
|
|
|
|
|
private: // data
|
2018-07-15 18:21:05 +05:30
|
|
|
int currentServer = -1;
|
|
|
|
bool m_locked = true;
|
|
|
|
Ui::ServersPage *ui = nullptr;
|
|
|
|
ServersModel * m_model = nullptr;
|
2021-05-22 21:37:08 +05:30
|
|
|
InstancePtr m_inst = nullptr;
|
2018-04-12 05:14:51 +05:30
|
|
|
};
|
|
|
|
|