mirror-chatterino2/src/common/Args.hpp

36 lines
826 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{};
// Shows a single chat. Used on windows to embed in another application.
bool isFramelessEmbed{};
boost::optional<unsigned long long> parentWindowId{};
// Not settings directly
bool dontSaveSettings{};
bool dontLoadMainWindow{};
boost::optional<WindowLayout> customChannelLayout;
bool verbose{};
private:
void applyCustomChannelLayout(const QString &argValue);
};
void initArgs(const QApplication &app);
const Args &getArgs();
} // namespace chatterino