mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
removed namespaces
This commit is contained in:
parent
15abedd869
commit
2df0566492
|
@ -20,8 +20,6 @@
|
||||||
|
|
||||||
#include <atomic>
|
#include <atomic>
|
||||||
|
|
||||||
using namespace chatterino::singletons;
|
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
|
@ -7,34 +7,14 @@
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
|
|
||||||
namespace providers {
|
|
||||||
namespace twitch {
|
|
||||||
|
|
||||||
class TwitchServer;
|
class TwitchServer;
|
||||||
class PubSub;
|
class PubSub;
|
||||||
|
|
||||||
} // namespace twitch
|
|
||||||
} // namespace providers
|
|
||||||
|
|
||||||
namespace controllers {
|
|
||||||
namespace commands {
|
|
||||||
class CommandController;
|
class CommandController;
|
||||||
}
|
|
||||||
namespace highlights {
|
|
||||||
class HighlightController;
|
class HighlightController;
|
||||||
}
|
|
||||||
namespace ignores {
|
|
||||||
class IgnoreController;
|
class IgnoreController;
|
||||||
}
|
|
||||||
namespace taggedusers {
|
|
||||||
class TaggedUsersController;
|
class TaggedUsersController;
|
||||||
}
|
|
||||||
namespace accounts {
|
|
||||||
class AccountController;
|
class AccountController;
|
||||||
}
|
|
||||||
} // namespace controllers
|
|
||||||
|
|
||||||
namespace singletons {
|
|
||||||
|
|
||||||
class ThemeManager;
|
class ThemeManager;
|
||||||
class WindowManager;
|
class WindowManager;
|
||||||
|
@ -47,8 +27,6 @@ class SettingManager;
|
||||||
class FontManager;
|
class FontManager;
|
||||||
class ResourceManager;
|
class ResourceManager;
|
||||||
|
|
||||||
} // namespace singletons
|
|
||||||
|
|
||||||
class Application
|
class Application
|
||||||
{
|
{
|
||||||
Application(int _argc, char **_argv);
|
Application(int _argc, char **_argv);
|
||||||
|
|
|
@ -16,8 +16,6 @@
|
||||||
#include <QNetworkReply>
|
#include <QNetworkReply>
|
||||||
#include <QNetworkRequest>
|
#include <QNetworkRequest>
|
||||||
|
|
||||||
using namespace chatterino::messages;
|
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
|
|
||||||
Channel::Channel(const QString &_name, Type _type)
|
Channel::Channel(const QString &_name, Type _type)
|
||||||
|
|
|
@ -13,9 +13,7 @@
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
struct Message;
|
struct Message;
|
||||||
} // namespace messages
|
|
||||||
|
|
||||||
class Channel : public std::enable_shared_from_this<Channel>
|
class Channel : public std::enable_shared_from_this<Channel>
|
||||||
{
|
{
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
#include "singletons/SettingsManager.hpp"
|
#include "singletons/SettingsManager.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
|
|
||||||
EmoteData::EmoteData(messages::Image *_image)
|
EmoteData::EmoteData(messages::Image *_image)
|
||||||
: image1x(_image)
|
: image1x(_image)
|
||||||
|
@ -44,5 +43,4 @@ messages::Image *EmoteData::getImage(float scale) const
|
||||||
return _image;
|
return _image;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
#include "util/ConcurrentMap.hpp"
|
#include "util/ConcurrentMap.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
|
|
||||||
struct EmoteData {
|
struct EmoteData {
|
||||||
EmoteData() = default;
|
EmoteData() = default;
|
||||||
|
@ -25,5 +24,4 @@ struct EmoteData {
|
||||||
|
|
||||||
using EmoteMap = ConcurrentMap<QString, EmoteData>;
|
using EmoteMap = ConcurrentMap<QString, EmoteData>;
|
||||||
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#include <type_traits>
|
#include <type_traits>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
|
|
||||||
// = std::enable_if<std::is_enum<T>::value>::type
|
// = std::enable_if<std::is_enum<T>::value>::type
|
||||||
|
|
||||||
|
@ -63,5 +62,4 @@ public:
|
||||||
T value;
|
T value;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
class MutexValue : boost::noncopyable
|
class MutexValue : boost::noncopyable
|
||||||
|
@ -37,5 +36,4 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#include <QNetworkAccessManager>
|
#include <QNetworkAccessManager>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
|
|
||||||
QThread NetworkManager::workerThread;
|
QThread NetworkManager::workerThread;
|
||||||
QNetworkAccessManager NetworkManager::NaM;
|
QNetworkAccessManager NetworkManager::NaM;
|
||||||
|
@ -20,5 +19,4 @@ void NetworkManager::deinit()
|
||||||
NetworkManager::workerThread.wait();
|
NetworkManager::workerThread.wait();
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
#include <QUrl>
|
#include <QUrl>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
|
|
||||||
static QJsonObject parseJSONFromReplyxD(QNetworkReply *reply)
|
static QJsonObject parseJSONFromReplyxD(QNetworkReply *reply)
|
||||||
{
|
{
|
||||||
|
@ -169,5 +168,4 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#include "Application.hpp"
|
#include "Application.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
|
|
||||||
NetworkRequest::NetworkRequest(const char *url)
|
NetworkRequest::NetworkRequest(const char *url)
|
||||||
{
|
{
|
||||||
|
@ -40,5 +39,4 @@ void NetworkRequest::Data::writeToCache(const QByteArray &bytes)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -12,7 +12,6 @@
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
|
|
||||||
static QJsonObject parseJSONFromData(const QByteArray &data)
|
static QJsonObject parseJSONFromData(const QByteArray &data)
|
||||||
{
|
{
|
||||||
|
@ -468,5 +467,4 @@ private:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#include <QObject>
|
#include <QObject>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
|
|
||||||
class NetworkRequester : public QObject
|
class NetworkRequester : public QObject
|
||||||
{
|
{
|
||||||
|
@ -13,5 +12,4 @@ signals:
|
||||||
void requestUrl();
|
void requestUrl();
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
class QNetworkReply;
|
class QNetworkReply;
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
|
|
||||||
class NetworkWorker : public QObject
|
class NetworkWorker : public QObject
|
||||||
{
|
{
|
||||||
|
@ -15,5 +14,4 @@ signals:
|
||||||
void doneUrl(QNetworkReply *);
|
void doneUrl(QNetworkReply *);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#include "boost/noncopyable.hpp"
|
#include "boost/noncopyable.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
class Property final : boost::noncopyable
|
class Property final : boost::noncopyable
|
||||||
|
@ -32,5 +31,4 @@ protected:
|
||||||
T value;
|
T value;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -1,5 +1,7 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
|
|
||||||
enum class ProviderId { Twitch };
|
enum class ProviderId { Twitch };
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
#include "debug/AssertInGuiThread.hpp"
|
#include "debug/AssertInGuiThread.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
|
|
||||||
template <typename TVectorItem>
|
template <typename TVectorItem>
|
||||||
struct SignalVectorItemArgs {
|
struct SignalVectorItemArgs {
|
||||||
|
@ -123,5 +122,4 @@ public:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
#include <pajlada/signals/signalholder.hpp>
|
#include <pajlada/signals/signalholder.hpp>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
|
|
||||||
template <typename TVectorItem>
|
template <typename TVectorItem>
|
||||||
class SignalVectorModel : public QAbstractTableModel, pajlada::Signals::SignalHolder
|
class SignalVectorModel : public QAbstractTableModel, pajlada::Signals::SignalHolder
|
||||||
|
@ -317,5 +316,4 @@ private:
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -22,8 +22,6 @@
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
namespace twitch {
|
|
||||||
|
|
||||||
static void get(QString url, const QObject *caller,
|
static void get(QString url, const QObject *caller,
|
||||||
std::function<void(const QJsonObject &)> successCallback)
|
std::function<void(const QJsonObject &)> successCallback)
|
||||||
|
@ -155,6 +153,4 @@ static void sendDelete(QUrl url, std::function<void()> successCallback)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace twitch
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include <tuple>
|
#include <tuple>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace accounts {
|
|
||||||
|
|
||||||
Account::Account(ProviderId _providerId)
|
Account::Account(ProviderId _providerId)
|
||||||
: providerId(_providerId)
|
: providerId(_providerId)
|
||||||
|
@ -38,6 +36,4 @@ bool Account::operator<(const Account &other) const
|
||||||
return std::tie(this->category, a) < std::tie(other.category, b);
|
return std::tie(this->category, a) < std::tie(other.category, b);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace accounts
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace accounts {
|
|
||||||
|
|
||||||
class Account
|
class Account
|
||||||
{
|
{
|
||||||
|
@ -25,6 +23,4 @@ private:
|
||||||
QString category;
|
QString category;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace accounts
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include "controllers/accounts/AccountModel.hpp"
|
#include "controllers/accounts/AccountModel.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace accounts {
|
|
||||||
|
|
||||||
AccountController::AccountController()
|
AccountController::AccountController()
|
||||||
{
|
{
|
||||||
|
@ -48,6 +46,4 @@ AccountModel *AccountController::createModel(QObject *parent)
|
||||||
return model;
|
return model;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace accounts
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
#include "common/SignalVector2.hpp"
|
#include "common/SignalVector2.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace accounts {
|
|
||||||
|
|
||||||
class AccountModel;
|
class AccountModel;
|
||||||
|
|
||||||
|
@ -29,6 +27,4 @@ private:
|
||||||
accounts;
|
accounts;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace accounts
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include "util/StandardItemHelper.hpp"
|
#include "util/StandardItemHelper.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace accounts {
|
|
||||||
|
|
||||||
AccountModel::AccountModel(QObject *parent)
|
AccountModel::AccountModel(QObject *parent)
|
||||||
: util::SignalVectorModel<std::shared_ptr<Account>>(1, parent)
|
: util::SignalVectorModel<std::shared_ptr<Account>>(1, parent)
|
||||||
|
@ -57,6 +55,4 @@ void AccountModel::afterRemoved(const std::shared_ptr<Account> &item,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace accounts
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace accounts {
|
|
||||||
|
|
||||||
class AccountController;
|
class AccountController;
|
||||||
|
|
||||||
|
@ -38,6 +36,4 @@ private:
|
||||||
std::unordered_map<QString, int> categoryCount;
|
std::unordered_map<QString, int> categoryCount;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace accounts
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
#include "Command.hpp"
|
#include "Command.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace commands {
|
|
||||||
|
|
||||||
// command
|
// command
|
||||||
Command::Command(const QString &_text)
|
Command::Command(const QString &_text)
|
||||||
|
@ -29,6 +27,4 @@ QString Command::toString() const
|
||||||
return this->name + " " + this->func;
|
return this->name + " " + this->func;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace commands
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace commands {
|
|
||||||
|
|
||||||
struct Command {
|
struct Command {
|
||||||
QString name;
|
QString name;
|
||||||
|
@ -17,6 +15,4 @@ struct Command {
|
||||||
QString toString() const;
|
QString toString() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace commands
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -26,8 +26,6 @@
|
||||||
using namespace chatterino::providers::twitch;
|
using namespace chatterino::providers::twitch;
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace commands {
|
|
||||||
|
|
||||||
CommandController::CommandController()
|
CommandController::CommandController()
|
||||||
{
|
{
|
||||||
|
@ -290,6 +288,4 @@ QStringList CommandController::getDefaultTwitchCommandList()
|
||||||
return l;
|
return l;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace commands
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -10,8 +10,6 @@
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
class Channel;
|
class Channel;
|
||||||
|
|
||||||
namespace controllers {
|
|
||||||
namespace commands {
|
|
||||||
|
|
||||||
class CommandModel;
|
class CommandModel;
|
||||||
|
|
||||||
|
@ -39,6 +37,4 @@ private:
|
||||||
QString execCustomCommand(const QStringList &words, const Command &command);
|
QString execCustomCommand(const QStringList &words, const Command &command);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace commands
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
#include "CommandModel.hpp"
|
#include "CommandModel.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace commands {
|
|
||||||
|
|
||||||
// commandmodel
|
// commandmodel
|
||||||
CommandModel::CommandModel(QObject *parent)
|
CommandModel::CommandModel(QObject *parent)
|
||||||
|
@ -25,6 +23,4 @@ void CommandModel::getRowFromItem(const Command &item, std::vector<QStandardItem
|
||||||
row[1]->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsEditable);
|
row[1]->setFlags(Qt::ItemIsEnabled | Qt::ItemIsSelectable | Qt::ItemIsEditable);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace commands
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
#include "common/SignalVectorModel.hpp"
|
#include "common/SignalVectorModel.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace commands {
|
|
||||||
|
|
||||||
class CommandController;
|
class CommandController;
|
||||||
|
|
||||||
|
@ -26,6 +24,4 @@ protected:
|
||||||
friend class CommandController;
|
friend class CommandController;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace commands
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
#include "widgets/dialogs/NotificationPopup.hpp"
|
#include "widgets/dialogs/NotificationPopup.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace highlights {
|
|
||||||
|
|
||||||
HighlightController::HighlightController()
|
HighlightController::HighlightController()
|
||||||
{
|
{
|
||||||
|
@ -43,6 +41,4 @@ void HighlightController::addHighlight(const messages::MessagePtr &msg)
|
||||||
// popup.show();
|
// popup.show();
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace highlights
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
#include "common/SignalVector2.hpp"
|
#include "common/SignalVector2.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace highlights {
|
|
||||||
|
|
||||||
class HighlightModel;
|
class HighlightModel;
|
||||||
|
|
||||||
|
@ -31,6 +29,4 @@ private:
|
||||||
"/highlighting/highlights"};
|
"/highlighting/highlights"};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace highlights
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
#include "util/StandardItemHelper.hpp"
|
#include "util/StandardItemHelper.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace highlights {
|
|
||||||
|
|
||||||
// commandmodel
|
// commandmodel
|
||||||
HighlightModel::HighlightModel(QObject *parent)
|
HighlightModel::HighlightModel(QObject *parent)
|
||||||
|
@ -70,6 +68,4 @@ void HighlightModel::customRowSetData(const std::vector<QStandardItem *> &row, i
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace highlights
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
#include "common/SignalVectorModel.hpp"
|
#include "common/SignalVectorModel.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace highlights {
|
|
||||||
|
|
||||||
class HighlightController;
|
class HighlightController;
|
||||||
|
|
||||||
|
@ -32,6 +30,4 @@ protected:
|
||||||
friend class HighlightController;
|
friend class HighlightController;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace highlights
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -9,8 +9,6 @@
|
||||||
#include <pajlada/settings/serialize.hpp>
|
#include <pajlada/settings/serialize.hpp>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace highlights {
|
|
||||||
|
|
||||||
class HighlightPhrase
|
class HighlightPhrase
|
||||||
{
|
{
|
||||||
|
@ -70,8 +68,6 @@ public:
|
||||||
// return this->regex;
|
// return this->regex;
|
||||||
// }
|
// }
|
||||||
};
|
};
|
||||||
} // namespace highlights
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
||||||
namespace pajlada {
|
namespace pajlada {
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace ignores {
|
|
||||||
|
|
||||||
void IgnoreController::initialize()
|
void IgnoreController::initialize()
|
||||||
{
|
{
|
||||||
|
@ -31,6 +29,4 @@ IgnoreModel *IgnoreController::createModel(QObject *parent)
|
||||||
return model;
|
return model;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace ignores
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
#include "common/SignalVector2.hpp"
|
#include "common/SignalVector2.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace ignores {
|
|
||||||
|
|
||||||
class IgnoreModel;
|
class IgnoreModel;
|
||||||
|
|
||||||
|
@ -26,6 +24,4 @@ private:
|
||||||
"/ignore/phrases"};
|
"/ignore/phrases"};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ignores
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
#include "util/StandardItemHelper.hpp"
|
#include "util/StandardItemHelper.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace ignores {
|
|
||||||
|
|
||||||
// commandmodel
|
// commandmodel
|
||||||
IgnoreModel::IgnoreModel(QObject *parent)
|
IgnoreModel::IgnoreModel(QObject *parent)
|
||||||
|
@ -31,6 +29,4 @@ void IgnoreModel::getRowFromItem(const IgnorePhrase &item, std::vector<QStandard
|
||||||
util::setBoolItem(row[1], item.isRegex());
|
util::setBoolItem(row[1], item.isRegex());
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace ignores
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
#include "common/SignalVectorModel.hpp"
|
#include "common/SignalVectorModel.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace ignores {
|
|
||||||
|
|
||||||
class IgnoreController;
|
class IgnoreController;
|
||||||
|
|
||||||
|
@ -27,6 +25,4 @@ protected:
|
||||||
friend class IgnoreController;
|
friend class IgnoreController;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ignores
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -10,8 +10,6 @@
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace ignores {
|
|
||||||
|
|
||||||
class IgnorePhrase
|
class IgnorePhrase
|
||||||
{
|
{
|
||||||
|
@ -53,8 +51,6 @@ public:
|
||||||
return this->isValid() && this->regex.match(subject).hasMatch();
|
return this->isValid() && this->regex.match(subject).hasMatch();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
} // namespace ignores
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
||||||
namespace pajlada {
|
namespace pajlada {
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include <tuple>
|
#include <tuple>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace taggedusers {
|
|
||||||
|
|
||||||
TaggedUser::TaggedUser(ProviderId _provider, const QString &_name, const QString &_id)
|
TaggedUser::TaggedUser(ProviderId _provider, const QString &_name, const QString &_id)
|
||||||
: provider(_provider)
|
: provider(_provider)
|
||||||
|
@ -19,6 +17,4 @@ bool TaggedUser::operator<(const TaggedUser &other) const
|
||||||
std::tie(other.provider, other.name, other.id);
|
std::tie(other.provider, other.name, other.id);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace taggedusers
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace taggedusers {
|
|
||||||
|
|
||||||
class TaggedUser
|
class TaggedUser
|
||||||
{
|
{
|
||||||
|
@ -20,6 +18,4 @@ public:
|
||||||
QString id;
|
QString id;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace taggedusers
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include "controllers/taggedusers/TaggedUsersModel.hpp"
|
#include "controllers/taggedusers/TaggedUsersModel.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace taggedusers {
|
|
||||||
|
|
||||||
TaggedUsersController::TaggedUsersController()
|
TaggedUsersController::TaggedUsersController()
|
||||||
{
|
{
|
||||||
|
@ -18,6 +16,4 @@ TaggedUsersModel *TaggedUsersController::createModel(QObject *parent)
|
||||||
return model;
|
return model;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace taggedusers
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
#include "common/SignalVector2.hpp"
|
#include "common/SignalVector2.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace taggedusers {
|
|
||||||
|
|
||||||
class TaggedUsersModel;
|
class TaggedUsersModel;
|
||||||
|
|
||||||
|
@ -19,6 +17,4 @@ public:
|
||||||
TaggedUsersModel *createModel(QObject *parent = nullptr);
|
TaggedUsersModel *createModel(QObject *parent = nullptr);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace taggedusers
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
#include "util/StandardItemHelper.hpp"
|
#include "util/StandardItemHelper.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace taggedusers {
|
|
||||||
|
|
||||||
// commandmodel
|
// commandmodel
|
||||||
TaggedUsersModel::TaggedUsersModel(QObject *parent)
|
TaggedUsersModel::TaggedUsersModel(QObject *parent)
|
||||||
|
@ -61,6 +59,4 @@ void TaggedUsersModel::afterInit()
|
||||||
// }
|
// }
|
||||||
//}
|
//}
|
||||||
|
|
||||||
} // namespace taggedusers
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
#include "common/SignalVectorModel.hpp"
|
#include "common/SignalVectorModel.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace controllers {
|
|
||||||
namespace taggedusers {
|
|
||||||
|
|
||||||
class TaggedUsersController;
|
class TaggedUsersController;
|
||||||
|
|
||||||
|
@ -29,6 +27,4 @@ protected:
|
||||||
friend class TaggedUsersController;
|
friend class TaggedUsersController;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace taggedusers
|
|
||||||
} // namespace controllers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace util {
|
|
||||||
|
|
||||||
static void assertInGuiThread()
|
static void assertInGuiThread()
|
||||||
{
|
{
|
||||||
|
@ -14,5 +13,4 @@ static void assertInGuiThread()
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace util
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -13,6 +13,8 @@
|
||||||
qDebug() << BOOST_CURRENT_FUNCTION << __LINE__ \
|
qDebug() << BOOST_CURRENT_FUNCTION << __LINE__ \
|
||||||
<< static_cast<float>(x.nsecsElapsed()) / 1000000.0 << "ms";
|
<< static_cast<float>(x.nsecsElapsed()) / 1000000.0 << "ms";
|
||||||
|
|
||||||
|
namespace chatterino {
|
||||||
|
|
||||||
class BenchmarkGuard : boost::noncopyable
|
class BenchmarkGuard : boost::noncopyable
|
||||||
{
|
{
|
||||||
QElapsedTimer timer;
|
QElapsedTimer timer;
|
||||||
|
@ -35,3 +37,5 @@ public:
|
||||||
return qreal(timer.nsecsElapsed()) / 1000000.0;
|
return qreal(timer.nsecsElapsed()) / 1000000.0;
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
} // namespace chatterino
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
#include <QTime>
|
#include <QTime>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace debug {
|
|
||||||
|
|
||||||
template <typename... Args>
|
template <typename... Args>
|
||||||
inline void Log(const std::string &formatString, Args &&... args)
|
inline void Log(const std::string &formatString, Args &&... args)
|
||||||
|
@ -15,5 +14,4 @@ inline void Log(const std::string &formatString, Args &&... args)
|
||||||
<< fS(formatString, std::forward<Args>(args)...).c_str();
|
<< fS(formatString, std::forward<Args>(args)...).c_str();
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace debug
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -20,7 +20,6 @@
|
||||||
#include <thread>
|
#include <thread>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
bool Image::loadedEventQueued = false;
|
bool Image::loadedEventQueued = false;
|
||||||
|
|
||||||
|
@ -273,5 +272,4 @@ void Image::setCopyString(const QString &newCopyString)
|
||||||
this->copyString = newCopyString;
|
this->copyString = newCopyString;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
#include <atomic>
|
#include <atomic>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
class Image : public QObject, boost::noncopyable
|
class Image : public QObject, boost::noncopyable
|
||||||
{
|
{
|
||||||
|
@ -67,5 +66,4 @@ private:
|
||||||
void gifUpdateTimout();
|
void gifUpdateTimout();
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
//
|
//
|
||||||
// Warning:
|
// Warning:
|
||||||
|
@ -267,5 +266,4 @@ private:
|
||||||
const size_t chunkSize = 100;
|
const size_t chunkSize = 100;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
template <typename T>
|
template <typename T>
|
||||||
class LimitedQueueSnapshot
|
class LimitedQueueSnapshot
|
||||||
|
@ -55,5 +54,4 @@ private:
|
||||||
size_t lastChunkEnd = 0;
|
size_t lastChunkEnd = 0;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
#include "messages/Link.hpp"
|
#include "messages/Link.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
Link::Link()
|
Link::Link()
|
||||||
: type(None)
|
: type(None)
|
||||||
|
@ -20,5 +19,4 @@ bool Link::isValid() const
|
||||||
return this->type != None;
|
return this->type != None;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
struct Link {
|
struct Link {
|
||||||
public:
|
public:
|
||||||
|
@ -28,5 +27,4 @@ public:
|
||||||
bool isValid() const;
|
bool isValid() const;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
using SBHighlight = chatterino::widgets::ScrollbarHighlight;
|
using SBHighlight = chatterino::widgets::ScrollbarHighlight;
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
void Message::addElement(MessageElement *element)
|
void Message::addElement(MessageElement *element)
|
||||||
{
|
{
|
||||||
|
@ -212,5 +211,4 @@ MessagePtr Message::createUntimeoutMessage(const providers::twitch::UnbanAction
|
||||||
return msg;
|
return msg;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -14,7 +14,6 @@
|
||||||
#include "util/DebugCount.hpp"
|
#include "util/DebugCount.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
struct Message {
|
struct Message {
|
||||||
Message()
|
Message()
|
||||||
|
@ -81,5 +80,4 @@ public:
|
||||||
|
|
||||||
using MessagePtr = std::shared_ptr<Message>;
|
using MessagePtr = std::shared_ptr<Message>;
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -6,7 +6,6 @@
|
||||||
#include <QDateTime>
|
#include <QDateTime>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
MessageBuilder::MessageBuilder()
|
MessageBuilder::MessageBuilder()
|
||||||
: message(new Message)
|
: message(new Message)
|
||||||
|
@ -62,5 +61,4 @@ QString MessageBuilder::matchLink(const QString &string)
|
||||||
return captured;
|
return captured;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
#include <ctime>
|
#include <ctime>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
struct MessageBuilder {
|
struct MessageBuilder {
|
||||||
public:
|
public:
|
||||||
|
@ -35,5 +34,4 @@ protected:
|
||||||
MessagePtr message;
|
MessagePtr message;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
#include "MessageColor.hpp"
|
#include "MessageColor.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
MessageColor::MessageColor(const QColor &_color)
|
MessageColor::MessageColor(const QColor &_color)
|
||||||
: type(Type::Custom)
|
: type(Type::Custom)
|
||||||
|
@ -31,5 +30,4 @@ const QColor &MessageColor::getColor(singletons::ThemeManager &themeManager) con
|
||||||
return _default;
|
return _default;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
#include <QColor>
|
#include <QColor>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
struct MessageColor {
|
struct MessageColor {
|
||||||
enum Type { Custom, Text, Link, System };
|
enum Type { Custom, Text, Link, System };
|
||||||
|
@ -20,5 +19,4 @@ private:
|
||||||
QColor customColor;
|
QColor customColor;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
#include "common/Emotemap.hpp"
|
#include "common/Emotemap.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
MessageElement::MessageElement(Flags _flags)
|
MessageElement::MessageElement(Flags _flags)
|
||||||
: flags(_flags)
|
: flags(_flags)
|
||||||
|
@ -262,5 +261,4 @@ void TwitchModerationElement::addToContainer(MessageLayoutContainer &container,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -16,13 +16,8 @@
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
class Channel;
|
class Channel;
|
||||||
namespace util {
|
|
||||||
struct EmoteData;
|
struct EmoteData;
|
||||||
} // namespace util
|
|
||||||
namespace messages {
|
|
||||||
namespace layouts {
|
|
||||||
struct MessageLayoutContainer;
|
struct MessageLayoutContainer;
|
||||||
} // namespace layouts
|
|
||||||
|
|
||||||
using namespace chatterino::messages::layouts;
|
using namespace chatterino::messages::layouts;
|
||||||
|
|
||||||
|
@ -206,5 +201,4 @@ public:
|
||||||
void addToContainer(MessageLayoutContainer &container, MessageElement::Flags flags) override;
|
void addToContainer(MessageLayoutContainer &container, MessageElement::Flags flags) override;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -1,7 +1,6 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
struct MessageParseArgs {
|
struct MessageParseArgs {
|
||||||
bool disablePingSounds = false;
|
bool disablePingSounds = false;
|
||||||
|
@ -11,5 +10,4 @@ struct MessageParseArgs {
|
||||||
bool isStaffOrBroadcaster = false;
|
bool isStaffOrBroadcaster = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,7 +3,6 @@
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
struct SelectionItem {
|
struct SelectionItem {
|
||||||
int messageIndex;
|
int messageIndex;
|
||||||
|
@ -79,5 +78,4 @@ struct Selection {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -19,8 +19,6 @@
|
||||||
#define COMPACT_EMOTES_OFFSET 6
|
#define COMPACT_EMOTES_OFFSET 6
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
namespace layouts {
|
|
||||||
|
|
||||||
MessageLayout::MessageLayout(MessagePtr message)
|
MessageLayout::MessageLayout(MessagePtr message)
|
||||||
: message_(message)
|
: message_(message)
|
||||||
|
@ -274,6 +272,4 @@ void MessageLayout::addSelectionText(QString &str, int from, int to)
|
||||||
this->container_.addSelectionText(str, from, to);
|
this->container_.addSelectionText(str, from, to);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace layouts
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -13,8 +13,6 @@
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
namespace layouts {
|
|
||||||
|
|
||||||
class MessageLayout : boost::noncopyable
|
class MessageLayout : boost::noncopyable
|
||||||
{
|
{
|
||||||
|
@ -82,6 +80,4 @@ private:
|
||||||
|
|
||||||
using MessageLayoutPtr = std::shared_ptr<MessageLayout>;
|
using MessageLayoutPtr = std::shared_ptr<MessageLayout>;
|
||||||
|
|
||||||
} // namespace layouts
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -12,8 +12,6 @@
|
||||||
#define MAX_UNCOLLAPSED_LINES (getApp()->settings->collpseMessagesMinLines.getValue())
|
#define MAX_UNCOLLAPSED_LINES (getApp()->settings->collpseMessagesMinLines.getValue())
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
namespace layouts {
|
|
||||||
|
|
||||||
int MessageLayoutContainer::getHeight() const
|
int MessageLayoutContainer::getHeight() const
|
||||||
{
|
{
|
||||||
|
@ -497,6 +495,4 @@ void MessageLayoutContainer::addSelectionText(QString &str, int from, int to)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace layouts
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -12,9 +12,6 @@
|
||||||
class QPainter;
|
class QPainter;
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
|
|
||||||
namespace layouts {
|
|
||||||
class MessageLayoutElement;
|
class MessageLayoutElement;
|
||||||
|
|
||||||
struct Margin {
|
struct Margin {
|
||||||
|
@ -113,6 +110,4 @@ private:
|
||||||
std::vector<Line> lines;
|
std::vector<Line> lines;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace layouts
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -8,8 +8,6 @@
|
||||||
#include <QPainter>
|
#include <QPainter>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
namespace layouts {
|
|
||||||
|
|
||||||
const QRect &MessageLayoutElement::getRect() const
|
const QRect &MessageLayoutElement::getRect() const
|
||||||
{
|
{
|
||||||
|
@ -289,6 +287,4 @@ int TextIconLayoutElement::getXFromIndex(int index)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace layouts
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -14,12 +14,9 @@
|
||||||
class QPainter;
|
class QPainter;
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace messages {
|
|
||||||
class MessageElement;
|
class MessageElement;
|
||||||
class Image;
|
class Image;
|
||||||
|
|
||||||
namespace layouts {
|
|
||||||
|
|
||||||
class MessageLayoutElement : boost::noncopyable
|
class MessageLayoutElement : boost::noncopyable
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -113,6 +110,4 @@ private:
|
||||||
QString line2;
|
QString line2;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace layouts
|
|
||||||
} // namespace messages
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
#include "common/UrlFetch.hpp"
|
#include "common/UrlFetch.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace bttv {
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
|
@ -118,6 +116,4 @@ void BTTVEmotes::loadChannelEmotes(const QString &channelName, std::weak_ptr<uti
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace bttv
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace bttv {
|
|
||||||
|
|
||||||
class BTTVEmotes
|
class BTTVEmotes
|
||||||
{
|
{
|
||||||
|
@ -27,6 +25,4 @@ private:
|
||||||
util::EmoteMap channelEmoteCache;
|
util::EmoteMap channelEmoteCache;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace bttv
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace emoji {
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
|
@ -379,6 +377,4 @@ QString Emojis::replaceShortCodes(const QString &text)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace emoji
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -10,8 +10,6 @@
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace emoji {
|
|
||||||
|
|
||||||
struct EmojiData {
|
struct EmojiData {
|
||||||
// actual byte-representation of the emoji (i.e. \154075\156150 which is :male:)
|
// actual byte-representation of the emoji (i.e. \154075\156150 which is :male:)
|
||||||
|
@ -66,6 +64,4 @@ private:
|
||||||
QMap<QChar, QVector<std::shared_ptr<EmojiData>>> emojiFirstByte;
|
QMap<QChar, QVector<std::shared_ptr<EmojiData>>> emojiFirstByte;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace emoji
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -5,8 +5,6 @@
|
||||||
#include "common/UrlFetch.hpp"
|
#include "common/UrlFetch.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace ffz {
|
|
||||||
|
|
||||||
namespace {
|
namespace {
|
||||||
|
|
||||||
|
@ -133,6 +131,4 @@ void FFZEmotes::loadChannelEmotes(const QString &channelName, std::weak_ptr<util
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace ffz
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
#include <map>
|
#include <map>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace ffz {
|
|
||||||
|
|
||||||
class FFZEmotes
|
class FFZEmotes
|
||||||
{
|
{
|
||||||
|
@ -27,6 +25,4 @@ private:
|
||||||
util::ConcurrentMap<int, util::EmoteData> channelEmoteCache;
|
util::ConcurrentMap<int, util::EmoteData> channelEmoteCache;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace ffz
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -6,11 +6,7 @@
|
||||||
|
|
||||||
#include <QCoreApplication>
|
#include <QCoreApplication>
|
||||||
|
|
||||||
using namespace chatterino::messages;
|
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace irc {
|
|
||||||
|
|
||||||
AbstractIrcServer::AbstractIrcServer()
|
AbstractIrcServer::AbstractIrcServer()
|
||||||
{
|
{
|
||||||
|
@ -271,6 +267,4 @@ void AbstractIrcServer::forEachChannel(std::function<void(ChannelPtr)> func)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace irc
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -10,8 +10,6 @@
|
||||||
#include <mutex>
|
#include <mutex>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace irc {
|
|
||||||
|
|
||||||
class AbstractIrcServer
|
class AbstractIrcServer
|
||||||
{
|
{
|
||||||
|
@ -72,6 +70,4 @@ private:
|
||||||
// bool autoReconnect_ = false;
|
// bool autoReconnect_ = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace irc
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -1,8 +1,7 @@
|
||||||
#include "IrcAccount.hpp"
|
#include "IrcAccount.hpp"
|
||||||
|
|
||||||
// namespace chatterino {
|
// namespace chatterino {
|
||||||
// namespace providers {
|
//
|
||||||
// namespace irc {
|
|
||||||
// IrcAccount::IrcAccount(const QString &_userName, const QString &_nickName, const QString
|
// IrcAccount::IrcAccount(const QString &_userName, const QString &_nickName, const QString
|
||||||
// &_realName,
|
// &_realName,
|
||||||
// const QString &_password)
|
// const QString &_password)
|
||||||
|
@ -32,6 +31,5 @@
|
||||||
//{
|
//{
|
||||||
// return this->password;
|
// return this->password;
|
||||||
//}
|
//}
|
||||||
//} // namespace irc
|
//
|
||||||
//} // namespace providers
|
|
||||||
//} // namespace chatterino
|
//} // namespace chatterino
|
||||||
|
|
|
@ -3,8 +3,7 @@
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
|
||||||
// namespace chatterino {
|
// namespace chatterino {
|
||||||
// namespace providers {
|
//
|
||||||
// namespace irc {
|
|
||||||
// class IrcAccount
|
// class IrcAccount
|
||||||
//{
|
//{
|
||||||
// public:
|
// public:
|
||||||
|
@ -22,6 +21,5 @@
|
||||||
// QString realName;
|
// QString realName;
|
||||||
// QString password;
|
// QString password;
|
||||||
//};
|
//};
|
||||||
//} // namespace irc
|
//
|
||||||
//} // namespace providers
|
|
||||||
//} // namespace chatterino
|
//} // namespace chatterino
|
||||||
|
|
|
@ -1,11 +1,9 @@
|
||||||
#include "IrcChannel2.hpp"
|
#include "IrcChannel2.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace irc {
|
|
||||||
// IrcChannel::IrcChannel()
|
// IrcChannel::IrcChannel()
|
||||||
//{
|
//{
|
||||||
//}
|
//}
|
||||||
} // namespace irc
|
//
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -1,13 +1,11 @@
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace irc {
|
|
||||||
// class IrcChannel
|
// class IrcChannel
|
||||||
//{
|
//{
|
||||||
// public:
|
// public:
|
||||||
// IrcChannel();
|
// IrcChannel();
|
||||||
//};
|
//};
|
||||||
} // namespace irc
|
//
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
#include "IrcConnection2.hpp"
|
#include "IrcConnection2.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace irc {
|
|
||||||
|
|
||||||
IrcConnection::IrcConnection(QObject *parent)
|
IrcConnection::IrcConnection(QObject *parent)
|
||||||
: Communi::IrcConnection(parent)
|
: Communi::IrcConnection(parent)
|
||||||
|
@ -33,6 +31,4 @@ IrcConnection::IrcConnection(QObject *parent)
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace irc
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -6,8 +6,6 @@
|
||||||
#include <QTimer>
|
#include <QTimer>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace irc {
|
|
||||||
|
|
||||||
class IrcConnection : public Communi::IrcConnection
|
class IrcConnection : public Communi::IrcConnection
|
||||||
{
|
{
|
||||||
|
@ -22,6 +20,4 @@ private:
|
||||||
std::atomic<bool> recentlyReceivedMessage_{true};
|
std::atomic<bool> recentlyReceivedMessage_{true};
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace irc
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,12 +3,10 @@
|
||||||
#include <cassert>
|
#include <cassert>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace irc {
|
|
||||||
// IrcServer::IrcServer(const QString &hostname, int port)
|
// IrcServer::IrcServer(const QString &hostname, int port)
|
||||||
//{
|
//{
|
||||||
// this->initConnection();
|
// this->initConnection();
|
||||||
//}
|
//}
|
||||||
} // namespace irc
|
//
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -4,8 +4,7 @@
|
||||||
#include "providers/irc/AbstractIrcServer.hpp"
|
#include "providers/irc/AbstractIrcServer.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace irc {
|
|
||||||
// class IrcServer
|
// class IrcServer
|
||||||
//{
|
//{
|
||||||
// public:
|
// public:
|
||||||
|
@ -20,6 +19,5 @@ namespace irc {
|
||||||
// virtual void privateMessageReceived(Communi::IrcPrivateMessage *message);
|
// virtual void privateMessageReceived(Communi::IrcPrivateMessage *message);
|
||||||
// virtual void messageReceived(Communi::IrcMessage *message);
|
// virtual void messageReceived(Communi::IrcMessage *message);
|
||||||
//};
|
//};
|
||||||
} // namespace irc
|
//
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -5,13 +5,6 @@
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
|
|
||||||
static const char *ANONYMOUS_USERNAME_LABEL ATTR_UNUSED = " - anonymous - ";
|
static const char *ANONYMOUS_USERNAME_LABEL ATTR_UNUSED = " - anonymous - ";
|
||||||
|
|
||||||
namespace providers {
|
|
||||||
namespace twitch {
|
|
||||||
|
|
||||||
static const char *ANONYMOUS_USERNAME ATTR_UNUSED = "justinfan64537";
|
static const char *ANONYMOUS_USERNAME ATTR_UNUSED = "justinfan64537";
|
||||||
|
|
||||||
} // namespace twitch
|
|
||||||
} // namespace providers
|
|
||||||
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include <QString>
|
#include <QString>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace twitch {
|
|
||||||
|
|
||||||
struct EmoteValue {
|
struct EmoteValue {
|
||||||
public:
|
public:
|
||||||
|
@ -29,6 +27,4 @@ private:
|
||||||
QString _channelName;
|
QString _channelName;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace twitch
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -17,12 +17,7 @@
|
||||||
|
|
||||||
#include <unordered_set>
|
#include <unordered_set>
|
||||||
|
|
||||||
using namespace chatterino::singletons;
|
|
||||||
using namespace chatterino::messages;
|
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace twitch {
|
|
||||||
|
|
||||||
IrcMessageHandler &IrcMessageHandler::getInstance()
|
IrcMessageHandler &IrcMessageHandler::getInstance()
|
||||||
{
|
{
|
||||||
|
@ -369,6 +364,4 @@ void IrcMessageHandler::handlePartMessage(Communi::IrcMessage *message)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace twitch
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include <IrcMessage>
|
#include <IrcMessage>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace twitch {
|
|
||||||
|
|
||||||
class TwitchServer;
|
class TwitchServer;
|
||||||
|
|
||||||
|
@ -34,6 +32,4 @@ private:
|
||||||
TwitchServer &server, bool isResub, bool isAction);
|
TwitchServer &server, bool isResub, bool isAction);
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace twitch
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -17,8 +17,6 @@ using websocketpp::lib::placeholders::_1;
|
||||||
using websocketpp::lib::placeholders::_2;
|
using websocketpp::lib::placeholders::_2;
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace twitch {
|
|
||||||
|
|
||||||
static const char *pingPayload = "{\"type\":\"PING\"}";
|
static const char *pingPayload = "{\"type\":\"PING\"}";
|
||||||
|
|
||||||
|
@ -772,6 +770,4 @@ void PubSub::runThread()
|
||||||
debug::Log("Done with pubsub manager thread");
|
debug::Log("Done with pubsub manager thread");
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace twitch
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -21,8 +21,6 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace twitch {
|
|
||||||
|
|
||||||
using WebsocketClient = websocketpp::client<websocketpp::config::asio_tls_client>;
|
using WebsocketClient = websocketpp::client<websocketpp::config::asio_tls_client>;
|
||||||
using WebsocketHandle = websocketpp::connection_hdl;
|
using WebsocketHandle = websocketpp::connection_hdl;
|
||||||
|
@ -159,6 +157,4 @@ private:
|
||||||
void runThread();
|
void runThread();
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace twitch
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -3,8 +3,6 @@
|
||||||
#include "providers/twitch/PubsubHelpers.hpp"
|
#include "providers/twitch/PubsubHelpers.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace twitch {
|
|
||||||
|
|
||||||
PubSubAction::PubSubAction(const rapidjson::Value &data, const QString &_roomID)
|
PubSubAction::PubSubAction(const rapidjson::Value &data, const QString &_roomID)
|
||||||
: timestamp(std::chrono::steady_clock::now())
|
: timestamp(std::chrono::steady_clock::now())
|
||||||
|
@ -13,6 +11,4 @@ PubSubAction::PubSubAction(const rapidjson::Value &data, const QString &_roomID)
|
||||||
getCreatedByUser(data, this->source);
|
getCreatedByUser(data, this->source);
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace twitch
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
#include <cinttypes>
|
#include <cinttypes>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace twitch {
|
|
||||||
|
|
||||||
struct ActionUser {
|
struct ActionUser {
|
||||||
QString id;
|
QString id;
|
||||||
|
@ -105,6 +103,4 @@ struct ModerationStateAction : PubSubAction {
|
||||||
bool modded;
|
bool modded;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace twitch
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -4,8 +4,6 @@
|
||||||
#include "util/RapidjsonHelpers.hpp"
|
#include "util/RapidjsonHelpers.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace twitch {
|
|
||||||
|
|
||||||
const rapidjson::Value &getArgs(const rapidjson::Value &data)
|
const rapidjson::Value &getArgs(const rapidjson::Value &data)
|
||||||
{
|
{
|
||||||
|
@ -80,6 +78,4 @@ rapidjson::Document createUnlistenMessage(const std::vector<std::string> &topics
|
||||||
return msg;
|
return msg;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace twitch
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -10,8 +10,6 @@
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace twitch {
|
|
||||||
|
|
||||||
struct ActionUser;
|
struct ActionUser;
|
||||||
|
|
||||||
|
@ -58,6 +56,4 @@ void runAfter(std::shared_ptr<boost::asio::steady_timer> timer, Duration duratio
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace twitch
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -7,8 +7,6 @@
|
||||||
#include "common/UrlFetch.hpp"
|
#include "common/UrlFetch.hpp"
|
||||||
|
|
||||||
namespace chatterino {
|
namespace chatterino {
|
||||||
namespace providers {
|
|
||||||
namespace twitch {
|
|
||||||
|
|
||||||
TwitchAccount::TwitchAccount(const QString &_username, const QString &_oauthToken,
|
TwitchAccount::TwitchAccount(const QString &_username, const QString &_oauthToken,
|
||||||
const QString &_oauthClient, const QString &_userID)
|
const QString &_oauthClient, const QString &_userID)
|
||||||
|
@ -258,6 +256,4 @@ std::set<TwitchUser> TwitchAccount::getIgnores() const
|
||||||
return this->ignores;
|
return this->ignores;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace twitch
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
|
@ -27,9 +27,6 @@ enum FollowResult {
|
||||||
FollowResult_Failed,
|
FollowResult_Failed,
|
||||||
};
|
};
|
||||||
|
|
||||||
namespace providers {
|
|
||||||
namespace twitch {
|
|
||||||
|
|
||||||
class TwitchAccount : public controllers::accounts::Account
|
class TwitchAccount : public controllers::accounts::Account
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -81,6 +78,4 @@ private:
|
||||||
std::set<TwitchUser> ignores;
|
std::set<TwitchUser> ignores;
|
||||||
};
|
};
|
||||||
|
|
||||||
} // namespace twitch
|
|
||||||
} // namespace providers
|
|
||||||
} // namespace chatterino
|
} // namespace chatterino
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue