mirror of
https://github.com/UltimMC/Launcher.git
synced 2025-12-13 12:12:14 +00:00
Compare commits
1 Commits
feature/of
...
feature/wi
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
d746deb35a |
@@ -89,6 +89,56 @@ void runGlxinfo(QStringList & log)
|
||||
}
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_WIN32
|
||||
#include <windows.h>
|
||||
|
||||
namespace {
|
||||
void printDisplayFlags(QStringList & log, const DWORD flags, const char * spacing)
|
||||
{
|
||||
QStringList flagStrings;
|
||||
if(flags & DISPLAY_DEVICE_ACTIVE)
|
||||
{
|
||||
flags << "Active";
|
||||
}
|
||||
if(flags & DISPLAY_DEVICE_PRIMARY_DEVICE)
|
||||
{
|
||||
flags << "Primary";
|
||||
}
|
||||
if(flags & DISPLAY_DEVICE_MIRRORING_DRIVER)
|
||||
{
|
||||
flags << "Mirroring";
|
||||
}
|
||||
if(flagStrings.size())
|
||||
{
|
||||
log << QString("%1%2").arg(spacing, flagStrings.join(','));
|
||||
}
|
||||
}
|
||||
|
||||
void probeWinAPIForDevices(QStringList & log)
|
||||
{
|
||||
DISPLAY_DEVICEW dd;
|
||||
memset(&dd, 0, sizeof(DISPLAY_DEVICEW));
|
||||
int i = 0;
|
||||
|
||||
// enumerate devices
|
||||
while(EnumDisplayDevicesW(NULL, i, &dd, 0))
|
||||
{
|
||||
log << "Display devices:";
|
||||
log << QString("Device Name: %1 | Device String: %2").arg(QString::fromWCharArray(dd.DeviceName), QString::fromWCharArray(dd.DeviceString));
|
||||
printDisplayFlags(log, dd.StateFlags, " ");
|
||||
|
||||
// enumerate monitors
|
||||
if(EnumDisplayDevicesW(dd.DeviceName, 0, &dd, 0))
|
||||
{
|
||||
log << QString(" Monitor Name: %1 | Monitor String: %2").arg(QString::fromWCharArray(dd.DeviceName), QString::fromWCharArray(dd.DeviceString));
|
||||
printDisplayFlags(log, dd.StateFlags, " ");
|
||||
}
|
||||
i++;
|
||||
}
|
||||
}
|
||||
}
|
||||
#endif
|
||||
|
||||
void PrintInstanceInfo::executeTask()
|
||||
{
|
||||
auto instance = m_parent->instance();
|
||||
@@ -100,6 +150,10 @@ void PrintInstanceInfo::executeTask()
|
||||
::runGlxinfo(log);
|
||||
#endif
|
||||
|
||||
#ifdef Q_OS_WIN32
|
||||
::probeWinAPIForDevices(log);
|
||||
#endif
|
||||
|
||||
logLines(log, MessageLevel::MultiMC);
|
||||
logLines(instance->verboseDescription(m_session), MessageLevel::MultiMC);
|
||||
emitSucceeded();
|
||||
|
||||
@@ -488,10 +488,6 @@ MultiMC::MultiMC(int &argc, char **argv) : QApplication(argc, argv)
|
||||
m_settings->registerSetting("InstSortMode", "Name");
|
||||
m_settings->registerSetting("SelectedInstance", QString());
|
||||
|
||||
// Offline mode stuff
|
||||
m_settings->registerSetting("OfflineModeNameMode", "UseAccountName");
|
||||
m_settings->registerSetting("OfflineModeName", "Player");
|
||||
|
||||
// Window state and geometry
|
||||
m_settings->registerSetting("MainWindowState", "");
|
||||
m_settings->registerSetting("MainWindowGeometry", "");
|
||||
|
||||
@@ -33,18 +33,11 @@
|
||||
|
||||
#include "MultiMC.h"
|
||||
|
||||
enum class OfflineModeNameMode
|
||||
{
|
||||
UseAccountName = 1,
|
||||
RememberPerAccount = 2,
|
||||
RememberPerInstance = 3,
|
||||
UseFixedName = 4
|
||||
};
|
||||
|
||||
AccountListPage::AccountListPage(QWidget *parent)
|
||||
: QWidget(parent), ui(new Ui::AccountListPage)
|
||||
{
|
||||
ui->setupUi(this);
|
||||
ui->tabWidget->tabBar()->hide();
|
||||
|
||||
m_accounts = MMC->accounts();
|
||||
|
||||
@@ -63,15 +56,7 @@ AccountListPage::AccountListPage(QWidget *parent)
|
||||
connect(m_accounts.get(), SIGNAL(listChanged()), SLOT(listChanged()));
|
||||
connect(m_accounts.get(), SIGNAL(activeAccountChanged()), SLOT(listChanged()));
|
||||
|
||||
ui->offlineButtonGroup->setId(ui->useSelectedNameBtn, int(OfflineModeNameMode::UseAccountName));
|
||||
ui->offlineButtonGroup->setId(ui->rememberNamesForAccountsBtn, int(OfflineModeNameMode::RememberPerAccount));
|
||||
ui->offlineButtonGroup->setId(ui->rememberNamesForInstancesBtn, int(OfflineModeNameMode::RememberPerInstance));
|
||||
ui->offlineButtonGroup->setId(ui->useFixedNameBtn, int(OfflineModeNameMode::UseFixedName));
|
||||
|
||||
connect(ui->offlineButtonGroup, SIGNAL(buttonToggled(int,bool)), this, SLOT(groupSelectionChanged(int,bool)));
|
||||
|
||||
updateButtonStates();
|
||||
loadSettings();
|
||||
}
|
||||
|
||||
AccountListPage::~AccountListPage()
|
||||
@@ -166,68 +151,3 @@ void AccountListPage::on_uploadSkinBtn_clicked()
|
||||
dialog.exec();
|
||||
}
|
||||
}
|
||||
|
||||
bool AccountListPage::apply()
|
||||
{
|
||||
applySettings();
|
||||
return true;
|
||||
}
|
||||
|
||||
void AccountListPage::applySettings()
|
||||
{
|
||||
auto s = MMC->settings();
|
||||
auto sortMode = (OfflineModeNameMode)ui->offlineButtonGroup->checkedId();
|
||||
switch (sortMode)
|
||||
{
|
||||
default:
|
||||
case OfflineModeNameMode::UseAccountName:
|
||||
s->set("OfflineModeNameMode", "UseAccountName");
|
||||
break;
|
||||
case OfflineModeNameMode::RememberPerAccount:
|
||||
s->set("OfflineModeNameMode", "RememberPerAccount");
|
||||
break;
|
||||
case OfflineModeNameMode::RememberPerInstance:
|
||||
s->set("OfflineModeNameMode", "RememberPerInstance");
|
||||
break;
|
||||
case OfflineModeNameMode::UseFixedName:
|
||||
s->set("OfflineModeNameMode", "UseFixedName");
|
||||
break;
|
||||
}
|
||||
s->set("OfflineModeName", ui->mainOfflineNameEdit->text());
|
||||
}
|
||||
|
||||
void AccountListPage::loadSettings()
|
||||
{
|
||||
auto s = MMC->settings();
|
||||
auto value = s->get("OfflineModeNameMode").toString();
|
||||
if(value == "UseAccountName")
|
||||
{
|
||||
ui->useSelectedNameBtn->setChecked(true);
|
||||
}
|
||||
else if(value == "RememberPerAccount")
|
||||
{
|
||||
ui->rememberNamesForAccountsBtn->setChecked(true);
|
||||
}
|
||||
else if(value == "RememberPerInstance")
|
||||
{
|
||||
ui->rememberNamesForInstancesBtn->setChecked(true);
|
||||
}
|
||||
else if(value == "UseFixedName")
|
||||
{
|
||||
ui->useFixedNameBtn->setChecked(true);
|
||||
}
|
||||
ui->mainOfflineNameEdit->setText(s->get("OfflineModeName").toString());
|
||||
}
|
||||
|
||||
void AccountListPage::groupSelectionChanged(int, bool)
|
||||
{
|
||||
auto sortMode = (OfflineModeNameMode)ui->offlineButtonGroup->checkedId();
|
||||
if(sortMode == OfflineModeNameMode::UseFixedName)
|
||||
{
|
||||
ui->mainOfflineNameEdit->setEnabled(true);
|
||||
}
|
||||
else
|
||||
{
|
||||
ui->mainOfflineNameEdit->setEnabled(false);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -58,7 +58,6 @@ public:
|
||||
{
|
||||
return "Getting-Started#adding-an-account";
|
||||
}
|
||||
bool apply() override;
|
||||
|
||||
public
|
||||
slots:
|
||||
@@ -74,8 +73,6 @@ slots:
|
||||
|
||||
void listChanged();
|
||||
|
||||
void groupSelectionChanged(int, bool);
|
||||
|
||||
//! Updates the states of the dialog's buttons.
|
||||
void updateButtonStates();
|
||||
|
||||
@@ -86,10 +83,6 @@ protected
|
||||
slots:
|
||||
void addAccount(const QString& errMsg="");
|
||||
|
||||
private:
|
||||
void applySettings();
|
||||
void loadSettings();
|
||||
|
||||
private:
|
||||
Ui::AccountListPage *ui;
|
||||
};
|
||||
|
||||
@@ -6,8 +6,8 @@
|
||||
<rect>
|
||||
<x>0</x>
|
||||
<y>0</y>
|
||||
<width>333</width>
|
||||
<height>302</height>
|
||||
<width>694</width>
|
||||
<height>609</height>
|
||||
</rect>
|
||||
</property>
|
||||
<layout class="QVBoxLayout" name="verticalLayout_2">
|
||||
@@ -28,9 +28,9 @@
|
||||
<property name="currentIndex">
|
||||
<number>0</number>
|
||||
</property>
|
||||
<widget class="QWidget" name="onlineTab">
|
||||
<widget class="QWidget" name="tab">
|
||||
<attribute name="title">
|
||||
<string>Online</string>
|
||||
<string notr="true">Tab 1</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout">
|
||||
<item>
|
||||
@@ -113,89 +113,10 @@
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<widget class="QWidget" name="offlineTab">
|
||||
<attribute name="title">
|
||||
<string>Offline</string>
|
||||
</attribute>
|
||||
<layout class="QVBoxLayout" name="verticalLayout22">
|
||||
<item>
|
||||
<widget class="QGroupBox" name="offlineBox">
|
||||
<property name="title">
|
||||
<string>Offline mode name</string>
|
||||
</property>
|
||||
<layout class="QGridLayout" name="foldersBoxLayout_2">
|
||||
<item row="0" column="0">
|
||||
<widget class="QRadioButton" name="useSelectedNameBtn">
|
||||
<property name="text">
|
||||
<string>&Use selected account name</string>
|
||||
</property>
|
||||
<attribute name="buttonGroup">
|
||||
<string notr="true">offlineButtonGroup</string>
|
||||
</attribute>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="3" column="0">
|
||||
<widget class="QRadioButton" name="useFixedNameBtn">
|
||||
<property name="text">
|
||||
<string>Always use &this offline name:</string>
|
||||
</property>
|
||||
<attribute name="buttonGroup">
|
||||
<string notr="true">offlineButtonGroup</string>
|
||||
</attribute>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="4" column="0">
|
||||
<widget class="QLineEdit" name="mainOfflineNameEdit">
|
||||
<property name="enabled">
|
||||
<bool>false</bool>
|
||||
</property>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="1" column="0">
|
||||
<widget class="QRadioButton" name="rememberNamesForAccountsBtn">
|
||||
<property name="text">
|
||||
<string>Remember offline &names per account</string>
|
||||
</property>
|
||||
<attribute name="buttonGroup">
|
||||
<string notr="true">offlineButtonGroup</string>
|
||||
</attribute>
|
||||
</widget>
|
||||
</item>
|
||||
<item row="2" column="0">
|
||||
<widget class="QRadioButton" name="rememberNamesForInstancesBtn">
|
||||
<property name="text">
|
||||
<string>Remember offline &names per instance</string>
|
||||
</property>
|
||||
<attribute name="buttonGroup">
|
||||
<string notr="true">offlineButtonGroup</string>
|
||||
</attribute>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</item>
|
||||
<item>
|
||||
<spacer name="verticalSpacer">
|
||||
<property name="orientation">
|
||||
<enum>Qt::Vertical</enum>
|
||||
</property>
|
||||
<property name="sizeHint" stdset="0">
|
||||
<size>
|
||||
<width>20</width>
|
||||
<height>40</height>
|
||||
</size>
|
||||
</property>
|
||||
</spacer>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
</widget>
|
||||
</item>
|
||||
</layout>
|
||||
</widget>
|
||||
<resources/>
|
||||
<connections/>
|
||||
<buttongroups>
|
||||
<buttongroup name="offlineButtonGroup"/>
|
||||
</buttongroups>
|
||||
</ui>
|
||||
|
||||
Reference in New Issue
Block a user