mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
fixed the namespace comments
This commit is contained in:
parent
a0d29ebae8
commit
99524027d0
|
@ -15,9 +15,9 @@
|
|||
|
||||
#include <memory>
|
||||
|
||||
using namespace chatterino::messages;
|
||||
using namespace chatterino::messages;
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
Channel::Channel(const QString &channel)
|
||||
: _messages()
|
||||
|
@ -188,4 +188,4 @@ void Channel::reloadFfzEmotes()
|
|||
});
|
||||
}
|
||||
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
#include <boost/signals2.hpp>
|
||||
#include <memory>
|
||||
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
class Message;
|
||||
}
|
||||
|
||||
|
@ -75,6 +75,6 @@ private:
|
|||
void reloadFfzEmotes();
|
||||
};
|
||||
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // CHANNEL_H
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "channelmanager.h"
|
||||
#include "ircmanager.h"
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
ChannelManager ChannelManager::instance;
|
||||
|
||||
|
@ -119,4 +119,4 @@ void ChannelManager::removeChannel(const QString &channel)
|
|||
}
|
||||
}
|
||||
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#include "channel.h"
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
class ChannelManager
|
||||
{
|
||||
|
@ -36,6 +36,6 @@ private:
|
|||
SharedChannel _empty;
|
||||
};
|
||||
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // CHANNELS_H
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
|
||||
#include <QColor>
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
void ColorScheme::init()
|
||||
{
|
||||
|
@ -172,4 +172,4 @@ void ColorScheme::normalizeColor(QColor &color)
|
|||
|
||||
// color.setHslF(color.hueF(), s, newL);
|
||||
}
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include <QColor>
|
||||
#include <boost/signals2.hpp>
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
class ColorScheme
|
||||
{
|
||||
|
|
|
@ -65,6 +65,6 @@ private:
|
|||
QMap<TKey, TValue> _map;
|
||||
};
|
||||
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // CONCURRENTMAP_H
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
#include <QStringBuilder>
|
||||
#include <QTextStream>
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
QRegularExpression Emojis::findShortCodesRegex(":([-+\\w]+):");
|
||||
|
||||
|
|
2
emojis.h
2
emojis.h
|
@ -9,7 +9,7 @@
|
|||
#include <QString>
|
||||
#include <unordered_map>
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
class Emojis
|
||||
{
|
||||
|
|
|
@ -13,9 +13,9 @@
|
|||
|
||||
#define TWITCH_EMOTE_TEMPLATE "https://static-cdn.jtvnw.net/emoticons/v1/{id}/{scale}.0"
|
||||
|
||||
using namespace chatterino::messages;
|
||||
using namespace chatterino::messages;
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
EmoteManager EmoteManager::instance;
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
#include <QTimer>
|
||||
#include <boost/signals2.hpp>
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
class EmoteManager
|
||||
{
|
||||
public:
|
||||
|
@ -93,6 +93,6 @@ private:
|
|||
void loadFfzEmotes();
|
||||
void loadBttvEmotes();
|
||||
};
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // EMOTES_H
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#define DEFAULT_FONT "Arial"
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
FontManager FontManager::instance;
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
#include <QFont>
|
||||
#include <QFontMetrics>
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
class FontManager
|
||||
{
|
||||
|
|
|
@ -19,9 +19,9 @@
|
|||
|
||||
#include <future>
|
||||
|
||||
using namespace chatterino::messages;
|
||||
using namespace chatterino::messages;
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
IrcManager IrcManager::instance;
|
||||
|
||||
|
|
|
@ -70,6 +70,6 @@ private:
|
|||
void messageReceived(Communi::IrcMessage *message);
|
||||
void privateMessageReceived(Communi::IrcPrivateMessage *message);
|
||||
};
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // IRCMANAGER_H
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "ircuser2.h"
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
IrcUser2::IrcUser2(const QString &userName, const QString &nickName, const QString &realName,
|
||||
const QString &password)
|
||||
|
|
|
@ -22,6 +22,6 @@ private:
|
|||
QString _realName;
|
||||
QString _password;
|
||||
};
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // IRCUSER_H
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
|
||||
#include <ctime>
|
||||
|
||||
namespace chatterino {
|
||||
namespace logging {
|
||||
namespace chatterino {
|
||||
namespace logging {
|
||||
|
||||
Channel::Channel(const QString &_channelName, const QString &_baseDirectory)
|
||||
: channelName(_channelName)
|
||||
|
@ -72,5 +72,5 @@ void Channel::appendLine(const QString &line)
|
|||
this->fileHandle.flush();
|
||||
}
|
||||
|
||||
} // namespace logging
|
||||
} // namespace chatterino
|
||||
} // namespace logging
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
|
||||
#include <memory>
|
||||
|
||||
namespace chatterino {
|
||||
namespace logging {
|
||||
namespace chatterino {
|
||||
namespace logging {
|
||||
|
||||
class Channel
|
||||
{
|
||||
|
@ -33,7 +33,7 @@ private:
|
|||
QFile fileHandle;
|
||||
};
|
||||
|
||||
} // namespace logging
|
||||
} // namespace chatterino
|
||||
} // namespace logging
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // LOGGINGCHANNEL_H
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
|
||||
#include <unordered_map>
|
||||
|
||||
namespace chatterino {
|
||||
namespace logging {
|
||||
namespace chatterino {
|
||||
namespace logging {
|
||||
|
||||
static QString logBasePath;
|
||||
static QString channelBasePath;
|
||||
|
@ -96,5 +96,5 @@ std::shared_ptr<Channel> get(const QString &channelName)
|
|||
return ret;
|
||||
}
|
||||
|
||||
} // namespace logging
|
||||
} // namespace chatterino
|
||||
} // namespace logging
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -5,13 +5,13 @@
|
|||
|
||||
#include <memory>
|
||||
|
||||
namespace chatterino {
|
||||
namespace logging {
|
||||
namespace chatterino {
|
||||
namespace logging {
|
||||
|
||||
void init();
|
||||
std::shared_ptr<Channel> get(const QString &channelName);
|
||||
|
||||
} // namespace logging
|
||||
} // namespace chatterino
|
||||
} // namespace logging
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // LOGGINGMANAGER_H
|
||||
|
|
4
main.cpp
4
main.cpp
|
@ -16,8 +16,8 @@
|
|||
#include <QStandardPaths>
|
||||
#include <boost/signals2.hpp>
|
||||
|
||||
using namespace chatterino;
|
||||
using namespace chatterino::widgets;
|
||||
using namespace chatterino;
|
||||
using namespace chatterino::widgets;
|
||||
|
||||
int main(int argc, char *argv[])
|
||||
{
|
||||
|
|
|
@ -103,5 +103,5 @@ void LazyLoadedImage::gifUpdateTimout()
|
|||
|
||||
_currentPixmap = _allFrames[_currentFrame].image;
|
||||
}
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -103,7 +103,7 @@ private:
|
|||
|
||||
void gifUpdateTimout();
|
||||
};
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // LAZYLOADEDIMAGE_H
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
#include <mutex>
|
||||
#include <vector>
|
||||
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
|
||||
template <typename T>
|
||||
class LimitedQueue
|
||||
|
@ -96,7 +96,7 @@ private:
|
|||
unsigned int buffer;
|
||||
};
|
||||
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // LIMITEDQUEUE_H
|
||||
|
|
|
@ -34,7 +34,7 @@ private:
|
|||
int _offset;
|
||||
int _length;
|
||||
};
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // LIMITEDQUEUESNAPSHOT_H
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "messages/link.h"
|
||||
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
|
||||
Link::Link()
|
||||
: type(None)
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
|
||||
#include <QString>
|
||||
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
|
||||
class Link
|
||||
{
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
#include <list>
|
||||
#include <tuple>
|
||||
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
|
||||
Message::Message(const QString &text)
|
||||
: _words()
|
||||
|
@ -81,5 +81,5 @@ const QString &Message::getId() const
|
|||
return _id;
|
||||
}
|
||||
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -12,11 +12,11 @@
|
|||
#include <chrono>
|
||||
#include <memory>
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
class Channel;
|
||||
|
||||
namespace messages {
|
||||
namespace messages {
|
||||
class Message;
|
||||
|
||||
typedef std::shared_ptr<Message> SharedMessage;
|
||||
|
@ -63,7 +63,7 @@ private:
|
|||
std::vector<Word> _words;
|
||||
};
|
||||
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // MESSAGE_H
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
#include "emotemanager.h"
|
||||
#include "resources.h"
|
||||
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
|
||||
MessageBuilder::MessageBuilder()
|
||||
: _words()
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
#include "messages/message.h"
|
||||
#include <ctime>
|
||||
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
|
||||
class MessageBuilder
|
||||
{
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#ifndef MESSAGEPARSEARGS_H
|
||||
#define MESSAGEPARSEARGS_H
|
||||
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
|
||||
struct MessageParseArgs {
|
||||
public:
|
||||
|
|
|
@ -9,10 +9,10 @@
|
|||
#define MARGIN_TOP 8
|
||||
#define MARGIN_BOTTOM 8
|
||||
|
||||
using namespace chatterino::messages;
|
||||
using namespace chatterino::messages;
|
||||
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
|
||||
MessageRef::MessageRef(SharedMessage message)
|
||||
: _message(message)
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
#include <QPixmap>
|
||||
#include <memory>
|
||||
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
|
||||
class MessageRef;
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "messages/word.h"
|
||||
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
|
||||
// Image word
|
||||
Word::Word(LazyLoadedImage *image, Type type, const QString ©text, const QString &tooltip,
|
||||
|
@ -130,5 +130,5 @@ std::vector<short> &Word::getCharacterWidthCache() const
|
|||
{
|
||||
return _characterWidthCache;
|
||||
}
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
#include <QRect>
|
||||
#include <QString>
|
||||
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
|
||||
class Word
|
||||
{
|
||||
|
@ -114,7 +114,7 @@ private:
|
|||
mutable std::vector<short> _characterWidthCache;
|
||||
};
|
||||
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
} // namespace messages
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // WORD_H
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#include "messages/wordpart.h"
|
||||
#include "messages/word.h"
|
||||
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
|
||||
WordPart::WordPart(Word &word, int x, int y, int lineNumber, const QString ©Text,
|
||||
bool allowTrailingSpace)
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
#include <QRect>
|
||||
#include <QString>
|
||||
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
namespace chatterino {
|
||||
namespace messages {
|
||||
|
||||
class Word;
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
#include <QPixmap>
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
messages::LazyLoadedImage *Resources::badgeStaff(NULL);
|
||||
messages::LazyLoadedImage *Resources::badgeAdmin(NULL);
|
||||
|
|
|
@ -108,6 +108,6 @@ private:
|
|||
static messages::LazyLoadedImage *buttonBan;
|
||||
static messages::LazyLoadedImage *buttonTimeout;
|
||||
};
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // RESOURCES_H
|
||||
|
|
|
@ -72,6 +72,6 @@ private:
|
|||
T _value;
|
||||
};
|
||||
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // SETTING_H
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
#include <QDir>
|
||||
#include <QStandardPaths>
|
||||
|
||||
using namespace chatterino::messages;
|
||||
using namespace chatterino::messages;
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
SettingsManager SettingsManager::instance;
|
||||
|
||||
|
@ -131,4 +131,4 @@ SettingsSnapshot SettingsManager::createSnapshot()
|
|||
return snapshot;
|
||||
}
|
||||
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -79,6 +79,6 @@ private:
|
|||
static SettingsManager instance;
|
||||
};
|
||||
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // APPSETTINGS_H
|
||||
|
|
|
@ -28,6 +28,6 @@ public:
|
|||
private:
|
||||
std::vector<std::pair<std::reference_wrapper<BaseSetting>, QVariant>> _items;
|
||||
};
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // SETTINGSSNAPSHOT_H
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
|
||||
#include "QString"
|
||||
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
|
||||
struct EmoteValue {
|
||||
public:
|
||||
|
|
|
@ -5,10 +5,10 @@
|
|||
#include "ircmanager.h"
|
||||
#include "resources.h"
|
||||
|
||||
using namespace chatterino::messages;
|
||||
using namespace chatterino::messages;
|
||||
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
TwitchMessageBuilder::TwitchMessageBuilder()
|
||||
: MessageBuilder()
|
||||
, messageId()
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
|
||||
#include <QString>
|
||||
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
|
||||
class TwitchMessageBuilder : public messages::MessageBuilder
|
||||
{
|
||||
|
|
|
@ -8,10 +8,10 @@
|
|||
//
|
||||
//#include <QRegularExpression>
|
||||
//
|
||||
// using namespace chatterino::messages;
|
||||
// using namespace chatterino::messages;
|
||||
//
|
||||
// namespace chatterino {
|
||||
// namespace twitch {
|
||||
// namespace chatterino {
|
||||
// namespace twitch {
|
||||
// SharedMessage
|
||||
// twitchParseMessage(const Communi::IrcPrivateMessage *ircMessage,
|
||||
// Channel *channel, const MessageParseArgs &args)
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
//#include "messages/messagebuilder.h"
|
||||
//#include "messages/messageparseargs.h"
|
||||
//
|
||||
// namespace chatterino {
|
||||
// namespace twitch {
|
||||
// namespace chatterino {
|
||||
// namespace twitch {
|
||||
//}
|
||||
//}
|
||||
//
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "twitchuser.h"
|
||||
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
TwitchUser::TwitchUser(const QString &username, const QString &oauthToken,
|
||||
const QString &oauthClient)
|
||||
: IrcUser2(username, username, username, "oauth:" + oauthToken)
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
|
||||
#include <QString>
|
||||
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
namespace chatterino {
|
||||
namespace twitch {
|
||||
|
||||
class TwitchUser : public IrcUser2
|
||||
{
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#include "usermanager.h"
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
AccountManager AccountManager::instance;
|
||||
|
||||
|
@ -41,4 +41,4 @@ void AccountManager::addTwitchUser(const twitch::TwitchUser &user)
|
|||
|
||||
_twitchUsers.push_back(user);
|
||||
}
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -31,6 +31,6 @@ private:
|
|||
std::vector<twitch::TwitchUser> _twitchUsers;
|
||||
std::mutex _twitchUsersMutex;
|
||||
};
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // ACCOUNTMANAGER_H
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
|
||||
#include <functional>
|
||||
|
||||
namespace chatterino {
|
||||
namespace util {
|
||||
namespace chatterino {
|
||||
namespace util {
|
||||
|
||||
static void urlFetch(const QString &url, std::function<void(QNetworkReply &)> successCallback)
|
||||
{
|
||||
|
|
|
@ -11,10 +11,10 @@
|
|||
#include <QVBoxLayout>
|
||||
#include <boost/signals2.hpp>
|
||||
|
||||
using namespace chatterino::messages;
|
||||
using namespace chatterino::messages;
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
ChatWidget::ChatWidget(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
|
@ -198,5 +198,5 @@ ChatWidget::save()
|
|||
return tree;
|
||||
}
|
||||
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
#include <boost/property_tree/ptree.hpp>
|
||||
#include <boost/signals2/connection.hpp>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
class ChatWidget : public QWidget
|
||||
{
|
||||
|
@ -62,7 +62,7 @@ public:
|
|||
boost::property_tree::ptree save();
|
||||
};
|
||||
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // CHATWIDGET_H
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
#include <QMimeData>
|
||||
#include <QPainter>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
ChatWidgetHeader::ChatWidgetHeader(ChatWidget *parent)
|
||||
: QWidget()
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
#include <QPoint>
|
||||
#include <QWidget>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
class ChatWidget;
|
||||
|
||||
class ChatWidgetHeader : public QWidget
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
#include <QBrush>
|
||||
#include <QPainter>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
ChatWidgetHeaderButton::ChatWidgetHeaderButton(int spacing)
|
||||
: QWidget()
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
#include <QPaintEvent>
|
||||
#include <QWidget>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
class ChatWidgetHeaderButton : public QWidget
|
||||
{
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
#include <QPainter>
|
||||
#include <boost/signals2.hpp>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
ChatWidgetInput::ChatWidgetInput(ChatWidget *widget)
|
||||
: _chatWidget(widget)
|
||||
|
|
|
@ -49,7 +49,7 @@ private slots:
|
|||
void editTextChanged();
|
||||
// void editKeyPressed(QKeyEvent *event);
|
||||
};
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // CHATWIDGETINPUT_H
|
||||
|
|
|
@ -405,5 +405,5 @@ bool ChatWidgetView::tryGetMessageAt(QPoint p, std::shared_ptr<messages::Message
|
|||
|
||||
return false;
|
||||
}
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -67,7 +67,7 @@ private slots:
|
|||
update();
|
||||
}
|
||||
};
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // CHATVIEW_H
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
#include <QDebug>
|
||||
#include <QPainter>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
FancyButton::FancyButton(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
#include <QTimer>
|
||||
#include <QWidget>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
class FancyButton : public QWidget
|
||||
{
|
||||
struct ClickEffect {
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
#include "Windows.h"
|
||||
#endif
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
MainWindow::MainWindow(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
|
@ -139,5 +139,5 @@ Notebook &MainWindow::getNotebook()
|
|||
{
|
||||
return _notebook;
|
||||
}
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
#include <QMainWindow>
|
||||
#include <boost/property_tree/ptree.hpp>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
class MainWindow : public QWidget
|
||||
{
|
||||
|
@ -37,7 +37,7 @@ private:
|
|||
TitleBar _titleBar;
|
||||
};
|
||||
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // MAINWINDOW_H
|
||||
|
|
|
@ -14,8 +14,8 @@
|
|||
#include <QWidget>
|
||||
#include <boost/foreach.hpp>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
Notebook::Notebook(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
|
@ -242,5 +242,5 @@ void Notebook::loadDefaults()
|
|||
addPage();
|
||||
}
|
||||
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
#include <QWidget>
|
||||
#include <boost/property_tree/ptree.hpp>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
class Notebook : public QWidget
|
||||
{
|
||||
|
@ -61,7 +61,7 @@ public:
|
|||
void loadDefaults();
|
||||
};
|
||||
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // NOTEBOOK_H
|
||||
|
|
|
@ -7,8 +7,8 @@
|
|||
#include <QPainterPath>
|
||||
#include <QRadialGradient>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
NotebookButton::NotebookButton(QWidget *parent)
|
||||
: FancyButton(parent)
|
||||
|
|
|
@ -12,8 +12,8 @@
|
|||
#include <QWidget>
|
||||
#include <boost/foreach.hpp>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
bool NotebookPage::isDraggingSplit = false;
|
||||
ChatWidget *NotebookPage::draggingSplit = NULL;
|
||||
|
@ -334,5 +334,5 @@ boost::property_tree::ptree NotebookPage::save()
|
|||
return tree;
|
||||
}
|
||||
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -78,7 +78,7 @@ public:
|
|||
boost::property_tree::ptree save();
|
||||
};
|
||||
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // NOTEBOOKPAGE_H
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
#include <QDebug>
|
||||
#include <QPainter>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
NotebookPageDropPreview::NotebookPageDropPreview(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
|
||||
#include <QPainter>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
NotebookTab::NotebookTab(Notebook *notebook)
|
||||
: QWidget(notebook)
|
||||
|
@ -246,5 +246,5 @@ boost::property_tree::ptree NotebookTab::save()
|
|||
return tree;
|
||||
}
|
||||
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -81,7 +81,7 @@ public:
|
|||
boost::property_tree::ptree save();
|
||||
};
|
||||
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // NOTEBOOKTAB_H
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
|
||||
#define MIN_THUMB_HEIGHT 10
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
ScrollBar::ScrollBar(QWidget *widget)
|
||||
: QWidget(widget)
|
||||
|
|
|
@ -9,8 +9,8 @@
|
|||
#include <boost/signals2.hpp>
|
||||
#include <functional>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
class ScrollBar : public QWidget
|
||||
{
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#include "widgets/scrollbarhighlight.h"
|
||||
#include "colorscheme.h"
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
ScrollBarHighlight::ScrollBarHighlight(float position, int colorIndex, Style style, QString tag)
|
||||
: _position(position)
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
|
||||
#include "QString"
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
class ScrollBarHighlight
|
||||
{
|
||||
|
|
|
@ -13,8 +13,8 @@
|
|||
#include <QPalette>
|
||||
#include <QResource>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
SettingsDialog::SettingsDialog()
|
||||
: _snapshot(SettingsManager::getInstance().createSnapshot())
|
||||
|
@ -325,5 +325,5 @@ void SettingsDialog::cancelButtonClicked()
|
|||
this->close();
|
||||
}
|
||||
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -16,8 +16,8 @@
|
|||
#include <QVBoxLayout>
|
||||
#include <QWidget>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
class SettingsDialog : public QWidget
|
||||
{
|
||||
|
@ -50,7 +50,7 @@ private:
|
|||
void cancelButtonClicked();
|
||||
};
|
||||
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // SETTINGSDIALOG_H
|
||||
|
|
|
@ -71,5 +71,5 @@ void SettingsDialogTab::mousePressEvent(QMouseEvent *event)
|
|||
|
||||
_dialog->select(this);
|
||||
}
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -37,7 +37,7 @@ private:
|
|||
|
||||
bool _selected;
|
||||
};
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // SETTINGSNOTEBOOKTAB_H
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
#include "widgets/textinputdialog.h"
|
||||
#include <QSizePolicy>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
TextInputDialog::TextInputDialog(QWidget *parent)
|
||||
: QDialog(parent)
|
||||
|
|
|
@ -8,8 +8,8 @@
|
|||
#include <QString>
|
||||
#include <QVBoxLayout>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
class TextInputDialog : public QDialog
|
||||
{
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
#include "titlebar.h"
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
TitleBar::TitleBar(QWidget *parent)
|
||||
: QWidget(parent)
|
||||
{
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
|
||||
#include <QWidget>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
class TitleBar : public QWidget
|
||||
{
|
||||
public:
|
||||
|
|
|
@ -4,8 +4,8 @@
|
|||
|
||||
#include <QDebug>
|
||||
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
namespace chatterino {
|
||||
namespace widgets {
|
||||
|
||||
UserPopupWidget::UserPopupWidget(std::shared_ptr<Channel> &&channel)
|
||||
: QWidget(nullptr)
|
||||
|
@ -37,5 +37,5 @@ void UserPopupWidget::setName(const QString &name)
|
|||
_ui->lblUsername->setText(name);
|
||||
}
|
||||
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -5,15 +5,15 @@
|
|||
|
||||
#include <memory>
|
||||
|
||||
namespace Ui {
|
||||
namespace Ui {
|
||||
class UserPopup;
|
||||
}
|
||||
|
||||
namespace chatterino {
|
||||
namespace chatterino {
|
||||
|
||||
class Channel;
|
||||
|
||||
namespace widgets {
|
||||
namespace widgets {
|
||||
|
||||
class UserPopupWidget : public QWidget
|
||||
{
|
||||
|
@ -29,7 +29,7 @@ private:
|
|||
std::shared_ptr<Channel> _channel;
|
||||
};
|
||||
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
} // namespace widgets
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // USERPOPUPWIDGET_H
|
||||
|
|
|
@ -121,4 +121,4 @@ void WindowManager::save()
|
|||
boost::property_tree::write_json(settingsPath, tree);
|
||||
}
|
||||
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
|
|
@ -34,6 +34,6 @@ private:
|
|||
widgets::MainWindow *_mainWindow;
|
||||
};
|
||||
|
||||
} // namespace chatterino
|
||||
} // namespace chatterino
|
||||
|
||||
#endif // WINDOWS_H
|
||||
|
|
Loading…
Reference in a new issue