Home
last modified time | relevance | path

Searched refs:chatterino (Results 1 – 25 of 498) sorted by relevance

12345678910>>...20

/dports/net-im/chatterino2/chatterino2-2.3.4/src/controllers/highlights/
H A DHighlightPhrase.hpp15 namespace chatterino { namespace
103 chatterino::HighlightPhrase constructError() in constructError()
111 struct Serialize<chatterino::HighlightPhrase> {
121 chatterino::rj::set(ret, "regex", value.isRegex(), a); in get()
124 chatterino::rj::set(ret, "color", in get()
132 struct Deserialize<chatterino::HighlightPhrase> {
152 chatterino::rj::getSafe(value, "pattern", _pattern); in get()
154 chatterino::rj::getSafe(value, "alert", _hasAlert); in get()
155 chatterino::rj::getSafe(value, "sound", _hasSound); in get()
156 chatterino::rj::getSafe(value, "regex", _isRegex); in get()
[all …]
H A DHighlightBadge.hpp11 namespace chatterino { namespace
70 struct Serialize<chatterino::HighlightBadge> {
76 chatterino::rj::set(ret, "name", value.badgeName(), a); in get()
78 chatterino::rj::set(ret, "alert", value.hasAlert(), a); in get()
79 chatterino::rj::set(ret, "sound", value.hasSound(), a); in get()
81 chatterino::rj::set(ret, "color", in get()
89 struct Deserialize<chatterino::HighlightBadge> {
107 chatterino::rj::getSafe(value, "name", _name); in get()
109 chatterino::rj::getSafe(value, "alert", _hasAlert); in get()
110 chatterino::rj::getSafe(value, "sound", _hasSound); in get()
[all …]
H A DHighlightBlacklistUser.hpp12 namespace chatterino { namespace
73 struct Serialize<chatterino::HighlightBlacklistUser> {
74 static rapidjson::Value get(const chatterino::HighlightBlacklistUser &value, in get()
79 chatterino::rj::set(ret, "pattern", value.getPattern(), a); in get()
80 chatterino::rj::set(ret, "regex", value.isRegex(), a); in get()
87 struct Deserialize<chatterino::HighlightBlacklistUser> {
88 static chatterino::HighlightBlacklistUser get(const rapidjson::Value &value, in get()
97 return chatterino::HighlightBlacklistUser(pattern, isRegex); in get()
100 chatterino::rj::getSafe(value, "pattern", pattern); in get()
101 chatterino::rj::getSafe(value, "regex", isRegex); in get()
[all …]
/dports/net-im/chatterino2/chatterino2-2.3.4/src/controllers/ignores/
H A DIgnorePhrase.hpp16 namespace chatterino { namespace
142 struct Serialize<chatterino::IgnorePhrase> {
148 chatterino::rj::set(ret, "pattern", value.getPattern(), a); in get()
149 chatterino::rj::set(ret, "regex", value.isRegex(), a); in get()
150 chatterino::rj::set(ret, "isBlock", value.isBlock(), a); in get()
159 struct Deserialize<chatterino::IgnorePhrase> {
166 return chatterino::IgnorePhrase( in get()
178 chatterino::rj::getSafe(value, "pattern", _pattern); in get()
179 chatterino::rj::getSafe(value, "regex", _isRegex); in get()
180 chatterino::rj::getSafe(value, "isBlock", _isBlock); in get()
[all …]
/dports/net-im/chatterino2/chatterino2-2.3.4/src/controllers/nicknames/
H A DNickname.hpp13 namespace chatterino { namespace
43 struct Serialize<chatterino::Nickname> {
44 static rapidjson::Value get(const chatterino::Nickname &value, in get()
49 chatterino::rj::set(ret, "name", value.name(), a); in get()
50 chatterino::rj::set(ret, "replace", value.replace(), a); in get()
57 struct Deserialize<chatterino::Nickname> {
58 static chatterino::Nickname get(const rapidjson::Value &value, in get()
64 return chatterino::Nickname(QString(), QString()); in get()
70 chatterino::rj::getSafe(value, "name", _name); in get()
71 chatterino::rj::getSafe(value, "replace", _replace); in get()
[all …]
/dports/net-im/chatterino2/chatterino2-2.3.4/src/controllers/filters/
H A DFilterRecord.hpp16 namespace chatterino { namespace
83 struct Serialize<chatterino::FilterRecordPtr> {
84 static rapidjson::Value get(const chatterino::FilterRecordPtr &value, in get()
89 chatterino::rj::set(ret, "name", value->getName(), a); in get()
90 chatterino::rj::set(ret, "filter", value->getFilter(), a); in get()
91 chatterino::rj::set(ret, "id", in get()
99 struct Deserialize<chatterino::FilterRecordPtr> {
112 chatterino::rj::getSafe(value, "name", _name); in get()
113 chatterino::rj::getSafe(value, "filter", _filter); in get()
114 chatterino::rj::getSafe(value, "id", _id); in get()
[all …]
/dports/net-im/chatterino2/chatterino2-2.3.4/src/controllers/commands/
H A DCommand.hpp8 namespace chatterino { namespace
26 struct Serialize<chatterino::Command> {
27 static rapidjson::Value get(const chatterino::Command &value, in get()
32 chatterino::rj::set(ret, "name", value.name, a); in get()
33 chatterino::rj::set(ret, "func", value.func, a); in get()
40 struct Deserialize<chatterino::Command> {
41 static chatterino::Command get(const rapidjson::Value &value, in get()
44 chatterino::Command command; in get()
52 if (!chatterino::rj::getSafe(value, "name", command.name)) in get()
57 if (!chatterino::rj::getSafe(value, "func", command.func)) in get()
/dports/net-im/chatterino2/chatterino2-2.3.4/src/controllers/moderationactions/
H A DModerationAction.hpp11 namespace chatterino { namespace
42 struct Serialize<chatterino::ModerationAction> {
43 static rapidjson::Value get(const chatterino::ModerationAction &value, in get()
48 chatterino::rj::set(ret, "pattern", value.getAction(), a); in get()
55 struct Deserialize<chatterino::ModerationAction> {
56 static chatterino::ModerationAction get(const rapidjson::Value &value, in get()
62 return chatterino::ModerationAction(QString()); in get()
67 chatterino::rj::getSafe(value, "pattern", pattern); in get()
69 return chatterino::ModerationAction(pattern); in get()
/dports/net-im/chatterino2/chatterino2-2.3.4/resources/qss/
H A Dsettings.qss11 chatterino--ComboBox {
28 chatterino--SettingsDialog chatterino--SettingsDialogTab {
33 chatterino--SettingsPage #generalSettingsScrollContent {
37 chatterino--PageHeader {
41 chatterino--TitleLabel {
47 chatterino--SubtitleLabel {
53 chatterino--DescriptionLabel {
57 chatterino--NavigationLabel {
/dports/net-im/chatterino2/chatterino2-2.3.4/.CI/
H A DCreateDMG.sh3 if [ -d bin/chatterino.app ] && [ ! -d chatterino.app ]; then
5 mv bin/chatterino.app chatterino.app
9 $Qt5_DIR/bin/macdeployqt chatterino.app
17 dmgbuild --settings ./../.CI/dmg-settings.py -D app=./chatterino.app Chatterino2 chatterino-osx.dmg
H A DCreateUbuntuDeb.sh4 if [ ! -f ./bin/chatterino ] || [ ! -x ./bin/chatterino ]; then
20 Package: chatterino
25 Description: Testing out chatterino as a Ubuntu package
H A DCreateAppImage.sh5 if [ ! -f ./bin/chatterino ] || [ ! -x ./bin/chatterino ]; then
20 ldd ./bin/chatterino
27 cp "$chatterino_dir"/resources/icon.png ./appdir/chatterino.png
/dports/net-im/chatterino2/chatterino2-2.3.4/
H A DREADME.md1 ![alt text](https://fourtf.com/img/chatterino-icon-64.png)
2chatterino?include_prereleases)](https://chocolatey.org/packages/chatterino) [![Flatpak Package](h…
6 The Chatterino 2 wiki can be found [here](https://wiki.chatterino.com).
7 Contribution guidelines can be found [here](https://wiki.chatterino.com/Contributing%20for%20Develo…
11 Current releases are available at [https://chatterino.com](https://chatterino.com).
12 …ws users can also install Chatterino [from Chocolatey](https://chocolatey.org/packages/chatterino).
63 …used to generate project information daily and is available [here](https://doxygen.chatterino.com).
H A Dappveyor.yml37 …qmake ../chatterino.pro DEFINES+="CHATTERINO_NIGHTLY_VERSION_STRING=\\\"'$s%dateOfBuild% '$$system…
43 …windeployqt release/chatterino.exe --release --no-compiler-runtime --no-translations --no-opengl-s…
45 cp release/chatterino.exe Chatterino2/
49 7z a chatterino-windows-x86-64.zip Chatterino2/
51 - path: build/chatterino-windows-x86-64.zip
52 name: chatterino
61 artifact: build/chatterino-windows-x86-64.zip
H A D_.travis.yml70 - /usr/local/opt/qt/bin/macdeployqt chatterino.app -dmg
72 - hdiutil attach chatterino.dmg
73 - cp -r /Volumes/chatterino/chatterino.app app/
76 --volicon ../resources/chatterino.icns \
80 chatterino-osx.dmg app/"
95 file: "chatterino-osx.dmg"
H A DBUILDING_ON_WINDOWS.md85 1. Open the `chatterino.pro` file by double-clicking it, or by opening it via Qt Creator.
95 … folder under `C:\Users\example\src`, e.g. `C:\Users\example\src\build-chatterino-Desktop_Qt_5_15_…
97 - Note that if you are building chatterino purely for usage, not for development, it is recommended…
102 If you build chatterino, the result directories will contain a `chatterino.exe` file in the `$OUTPU…
108 …tput directory with Windows Explorer, e.g. `C:\Users\example\src\build-chatterino-Desktop_Qt_5_15_…
110 3. Delete all files except the `chatterino.exe` file. You should be left with a directory only con…
113 cd C:\Users\example\src\build-chatterino-Desktop_Qt_5_15_2_MSVC2019_64bit-Release\release
114 C:\Qt\5.15.2\msvc2019_64\bin\windeployqt.exe chatterino.exe
123 …irectory will now be populated with all the required files to make the chatterino build standalone.
/dports/net-im/chatterino2/chatterino2-2.3.4/tests/src/
H A DChatterSet.cpp8 chatterino::ChatterSet set; in TEST()
28 chatterino::ChatterSet set; in TEST()
38 for (auto i = 0; i < chatterino::ChatterSet::chatterLimit - 1; ++i) in TEST()
55 chatterino::ChatterSet set; in TEST()
65 for (auto i = 0; i < chatterino::ChatterSet::chatterLimit - 1; ++i) in TEST()
77 for (auto i = 0; i < chatterino::ChatterSet::chatterLimit - 1; ++i) in TEST()
H A Dmain.cpp23 using namespace chatterino;
31 chatterino::NetworkManager::init(); in main()
36 chatterino::NetworkManager::deinit(); in main()
/dports/net-im/chatterino2/chatterino2-2.3.4/.github/workflows/
H A Dbuild.yml97 cp release/chatterino.exe Chatterino2/
111 cp bin/chatterino.exe Chatterino2/
120 path: build/chatterino-windows-x86-64.zip
236 path: build/chatterino-osx.dmg
289 name: chatterino-osx-5.15.2-qmake.dmg
294 name: chatterino-osx-5.15.2-cmake.dmg
311 asset_name: chatterino-windows-x86-64.zip
370 asset_path: ./macos/chatterino-osx.dmg
371 asset_name: chatterino-osx.dmg
380 asset_path: ./macos-cmake/chatterino-osx.dmg
[all …]
/dports/net-im/chatterino2/chatterino2-2.3.4/src/providers/twitch/
H A DTwitchUser.hpp12 namespace chatterino { namespace
45 struct Deserialize<chatterino::TwitchUser> {
46 static chatterino::TwitchUser get(const rapidjson::Value &value, in get()
49 using namespace chatterino; in get()
/dports/net-im/chatterino2/chatterino2-2.3.4/resources/
H A Dcom.chatterino.chatterino.desktop6 Exec=chatterino
7 Icon=chatterino
10 StartupWMClass=chatterino
/dports/net-im/chatterino2/chatterino2-2.3.4/src/common/
H A DAliases.hpp8 namespace chatterino { \
23 struct hash<chatterino::name> { \
24 size_t operator()(const chatterino::name &s) const \
/dports/net-im/chatterino2/chatterino2-2.3.4/src/widgets/listview/
H A DGenericListItem.hpp8 namespace chatterino { namespace
49 Q_DECLARE_METATYPE(chatterino::GenericListItem *);
/dports/net-im/chatterino2/chatterino2-2.3.4/src/
H A DRunGui.cpp31 namespace chatterino { namespace
196 chatterino::NetworkManager::init(); in runGui()
197 chatterino::Updates::instance().checkForUpdates(); in runGui()
228 chatterino::NetworkManager::deinit(); in runGui()
/dports/net-im/chatterino2/chatterino2-2.3.4/.github/ISSUE_TEMPLATE/
H A Dz_browser_extension.md7 Issues for the extension are tracked here: https://github.com/chatterino/chatterino-browser-ext

12345678910>>...20