mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
30 lines
601 B
C++
30 lines
601 B
C++
#pragma once
|
|
|
|
#include <QApplication>
|
|
#include <boost/optional.hpp>
|
|
#include "common/WindowDescriptors.hpp"
|
|
|
|
namespace chatterino {
|
|
|
|
/// Command line arguments passed to Chatterino.
|
|
class Args
|
|
{
|
|
public:
|
|
Args(const QApplication &app);
|
|
|
|
bool printVersion{};
|
|
bool crashRecovery{};
|
|
bool shouldRunBrowserExtensionHost{};
|
|
bool dontSaveSettings{};
|
|
boost::optional<WindowLayout> customChannelLayout;
|
|
bool verbose{};
|
|
|
|
private:
|
|
void applyCustomChannelLayout(const QString &argValue);
|
|
};
|
|
|
|
void initArgs(const QApplication &app);
|
|
const Args &getArgs();
|
|
|
|
} // namespace chatterino
|