mirror-chatterino2/src/common/Args.hpp

29 lines
581 B
C++
Raw Normal View History

#pragma once
#include <QApplication>
#include <boost/optional.hpp>
#include "common/WindowDescriptors.hpp"
2019-10-07 18:57:33 +02:00
namespace chatterino {
/// Command line arguments passed to Chatterino.
class Args
{
public:
Args(const QApplication &app);
2019-10-07 18:57:33 +02:00
bool printVersion{};
bool crashRecovery{};
bool shouldRunBrowserExtensionHost{};
bool dontSaveSettings{};
boost::optional<WindowLayout> customChannelLayout;
private:
void applyCustomChannelLayout(const QString &argValue);
};
void initArgs(const QApplication &app);
const Args &getArgs();
} // namespace chatterino