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