summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
blob: db82370c97ca7d39b4a0464a1e5bf3fcc38eb45e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#include "widget.h"
#include "main.h"
#include "xx.h"
#include "bus.h"

#include <QApplication>
#include <QLibraryInfo>
#include <QTranslator>
#include <QCommandLineParser>

namespace {
bool _testMode, _autoSetup, _showGui, _backgroundMode, _wakeup, _center;
}

namespace CommandLine
{
bool testMode() { return _testMode; }
bool autoSetup() { return _autoSetup; }
bool showGui() { return _showGui; }
bool backgroundMode() { return _backgroundMode; }
bool wakeup() { return _wakeup; }
bool center() { return _center; }
}

static void parseCommandLine(const QCoreApplication &a);

int main(int argc, char *argv[])
{
	QCoreApplication *a;
	bool gui = true;
	for (int i = 0; i < argc; ++i) {
		if (strcmp(argv[i], "-w") == 0 || strcmp(argv[i], "--wakeup") == 0) {
			gui = false;
		}
	}
	if (gui) {
		a = new QApplication(argc, argv);
	} else {
		a = new QCoreApplication(argc, argv);
	}
	QCoreApplication::setApplicationName("BeamerGUI XP - Home Edition");
	QCoreApplication::setApplicationVersion("2.0");
	// System strings
	QTranslator *qtTranslator = new QTranslator(a);
	qtTranslator->load(QLocale::system(), "qt", "_", QLibraryInfo::location(QLibraryInfo::TranslationsPath));
	a->installTranslator(qtTranslator);
	// App specific
	QTranslator *translator = new QTranslator(a);
	translator->load(QLocale::system(), ":");
	a->installTranslator(translator);

	parseCommandLine(*a);

	if (CommandLine::wakeup()) {
		return Bus::inst()->registerService() ? 0 : 1;
	}

	ScreenSetup::inst()->addMissingEdidResolutions();
	ScreenSetup::inst()->initModes();

	if (CommandLine::center()) {
		ScreenSetup::inst()->setCenteredClone();
	} else if (CommandLine::autoSetup()) {
        ScreenMode mode;
        ScreenSetup::inst()->setDefaultMode(CommandLine::testMode(), mode);
	} else {
		ScreenSetup::inst()->getCurrentMode();
	}

	Widget *w = nullptr;
	if (CommandLine::backgroundMode() || CommandLine::showGui()) {
		w = new Widget();
		if (CommandLine::showGui()) {
			w->show();
		}
	}
	if (w == nullptr)
		return 0;
	return a->exec();
}

static void parseCommandLine(const QCoreApplication &a)
{
	// Command line
	QCommandLineParser parser;
	parser.setApplicationDescription("Utility for detecting and configuring screen setup");
	parser.addHelpOption();
	parser.addVersionOption();
	// Option for adding modes and trying to auto-setup
	QCommandLineOption oAutoSetup(QStringList() << "a" << "auto",
								QCoreApplication::translate("main", "Automatically configure modes and set up screens."));
	parser.addOption(oAutoSetup);
	// Show config GUI if more than one screen
	QCommandLineOption oShowGui(QStringList() << "g" << "gui",
								QCoreApplication::translate("main", "Show config GUI right away."));
	parser.addOption(oShowGui);
	// Keep running and detect screen setup changes
	QCommandLineOption oBackground(QStringList() << "b" << "background",
								QCoreApplication::translate("main", "Keep running in background and show GUI when number of screens changes."));
	parser.addOption(oBackground);
	// Test mode -- pretend to do setup
	QCommandLineOption oTest(QStringList() << "t" << "test",
							QCoreApplication::translate("main", "Test mode, don't actually apply any changes."));
	//parser.addOption(oTest); TODO Not fully implemented so disabled for now
	// Wakeup beamergui daemon via DBus connect
	QCommandLineOption oWakeup(QStringList() << "w" << "wakeup",
							QCoreApplication::translate("main", "Connect to system bus to trigger wakeup of wainting beamergui."));
	parser.addOption(oWakeup);
	// Set all outputs to clone mode and center them according to the largest output
	QCommandLineOption oCenter(QStringList() << "c" << "center",
							QCoreApplication::translate("main", "Set all outputs to clone mode. If size differs, center outputs according to largest output."));
	parser.addOption(oCenter);
	// PARSE
	parser.process(a);
	_testMode = parser.isSet(oTest);
	_autoSetup = parser.isSet(oAutoSetup);
	_showGui = parser.isSet(oShowGui);
	_backgroundMode = parser.isSet(oBackground);
	_wakeup = parser.isSet(oWakeup);
	_center = parser.isSet(oCenter);
}