2020-08-17 06:40:03 +00:00
|
|
|
#include <gtkmm.h>
|
|
|
|
#include <memory>
|
2020-08-19 05:07:55 +00:00
|
|
|
#include <string>
|
2020-08-20 01:08:57 +00:00
|
|
|
#include <algorithm>
|
2020-08-19 05:07:55 +00:00
|
|
|
#include "discord/discord.hpp"
|
|
|
|
#include "dialogs/token.hpp"
|
2020-08-31 02:55:36 +00:00
|
|
|
#include "dialogs/editmessage.hpp"
|
2020-09-21 22:47:34 +00:00
|
|
|
#include "dialogs/joinguild.hpp"
|
2020-10-12 04:36:18 +00:00
|
|
|
#include "dialogs/confirm.hpp"
|
2020-11-01 07:53:37 +00:00
|
|
|
#include "dialogs/setstatus.hpp"
|
2021-02-18 19:38:40 +00:00
|
|
|
#include "dialogs/friendpicker.hpp"
|
2021-03-22 05:30:51 +00:00
|
|
|
#include "dialogs/verificationgate.hpp"
|
2020-08-17 06:40:03 +00:00
|
|
|
#include "abaddon.hpp"
|
2021-01-15 06:37:35 +00:00
|
|
|
#include "windows/guildsettingswindow.hpp"
|
2021-02-05 04:41:53 +00:00
|
|
|
#include "windows/profilewindow.hpp"
|
2020-08-17 06:40:03 +00:00
|
|
|
|
|
|
|
#ifdef _WIN32
|
|
|
|
#pragma comment(lib, "crypt32.lib")
|
|
|
|
#endif
|
|
|
|
|
2020-08-19 05:07:55 +00:00
|
|
|
Abaddon::Abaddon()
|
2020-10-24 23:42:06 +00:00
|
|
|
: m_settings("abaddon.ini")
|
2020-11-24 01:34:09 +00:00
|
|
|
, m_emojis("res/emojis.bin")
|
2020-12-17 06:40:02 +00:00
|
|
|
, m_discord(m_settings.GetUseMemoryDB()) { // stupid but easy
|
2020-08-19 05:07:55 +00:00
|
|
|
LoadFromSettings();
|
2020-09-07 03:34:29 +00:00
|
|
|
|
2020-11-27 06:37:01 +00:00
|
|
|
// todo: set user agent for non-client(?)
|
2020-12-17 06:40:02 +00:00
|
|
|
std::string ua = m_settings.GetUserAgent();
|
2020-12-10 02:35:23 +00:00
|
|
|
m_discord.SetUserAgent(ua);
|
2020-11-27 06:37:01 +00:00
|
|
|
|
2020-09-07 03:34:29 +00:00
|
|
|
m_discord.signal_gateway_ready().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnReady));
|
|
|
|
m_discord.signal_message_create().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnMessageCreate));
|
|
|
|
m_discord.signal_message_delete().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnMessageDelete));
|
|
|
|
m_discord.signal_message_update().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnMessageUpdate));
|
|
|
|
m_discord.signal_guild_member_list_update().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnGuildMemberListUpdate));
|
2020-09-21 22:47:34 +00:00
|
|
|
m_discord.signal_guild_create().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnGuildCreate));
|
|
|
|
m_discord.signal_guild_delete().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnGuildDelete));
|
2020-10-20 00:35:10 +00:00
|
|
|
m_discord.signal_channel_delete().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnChannelDelete));
|
|
|
|
m_discord.signal_channel_update().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnChannelUpdate));
|
|
|
|
m_discord.signal_channel_create().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnChannelCreate));
|
2020-11-01 04:01:48 +00:00
|
|
|
m_discord.signal_guild_update().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnGuildUpdate));
|
2020-12-15 06:51:49 +00:00
|
|
|
m_discord.signal_reaction_add().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnReactionAdd));
|
|
|
|
m_discord.signal_reaction_remove().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnReactionRemove));
|
2021-03-22 05:30:51 +00:00
|
|
|
m_discord.signal_guild_join_request_create().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnGuildJoinRequestCreate));
|
2021-01-25 05:47:48 +00:00
|
|
|
m_discord.signal_disconnected().connect(sigc::mem_fun(*this, &Abaddon::DiscordOnDisconnect));
|
2020-12-18 06:13:31 +00:00
|
|
|
if (m_settings.GetPrefetch())
|
|
|
|
m_discord.signal_message_create().connect([this](Snowflake id) {
|
|
|
|
const auto msg = m_discord.GetMessage(id);
|
|
|
|
const auto author = m_discord.GetUser(msg->Author.ID);
|
|
|
|
if (author.has_value() && author->HasAvatar())
|
|
|
|
m_img_mgr.Prefetch(author->GetAvatarURL());
|
|
|
|
for (const auto &attachment : msg->Attachments) {
|
|
|
|
if (IsURLViewableImage(attachment.ProxyURL))
|
|
|
|
m_img_mgr.Prefetch(attachment.ProxyURL);
|
|
|
|
}
|
|
|
|
});
|
2020-08-19 05:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Abaddon::~Abaddon() {
|
|
|
|
m_settings.Close();
|
|
|
|
m_discord.Stop();
|
|
|
|
}
|
|
|
|
|
2020-09-07 04:27:41 +00:00
|
|
|
Abaddon &Abaddon::Get() {
|
|
|
|
static Abaddon instance;
|
|
|
|
return instance;
|
|
|
|
}
|
|
|
|
|
2020-08-19 05:07:55 +00:00
|
|
|
int Abaddon::StartGTK() {
|
2021-01-13 05:07:50 +00:00
|
|
|
m_gtk_app = Gtk::Application::create("com.github.uowuo.abaddon");
|
2020-08-17 06:40:03 +00:00
|
|
|
|
2020-09-03 04:47:49 +00:00
|
|
|
// tmp css stuff
|
|
|
|
m_css_provider = Gtk::CssProvider::create();
|
2020-09-04 05:37:39 +00:00
|
|
|
m_css_provider->signal_parsing_error().connect([this](const Glib::RefPtr<const Gtk::CssSection> §ion, const Glib::Error &error) {
|
2020-12-18 07:05:24 +00:00
|
|
|
Gtk::MessageDialog dlg(*m_main_window, "css failed parsing (" + error.what() + ")", false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
|
2020-09-04 05:37:39 +00:00
|
|
|
dlg.run();
|
|
|
|
});
|
2020-09-03 04:47:49 +00:00
|
|
|
|
2020-08-19 05:07:55 +00:00
|
|
|
m_main_window = std::make_unique<MainWindow>();
|
2020-09-03 06:32:28 +00:00
|
|
|
m_main_window->set_title(APP_TITLE);
|
2020-08-19 06:05:26 +00:00
|
|
|
m_main_window->UpdateComponents();
|
2020-08-17 06:40:03 +00:00
|
|
|
|
2020-11-08 05:44:26 +00:00
|
|
|
// crashes for some stupid reason if i put it somewhere else
|
2021-03-15 05:28:42 +00:00
|
|
|
SetupUserMenu();
|
2020-11-08 05:44:26 +00:00
|
|
|
|
2020-09-07 06:45:46 +00:00
|
|
|
m_main_window->signal_action_connect().connect(sigc::mem_fun(*this, &Abaddon::ActionConnect));
|
|
|
|
m_main_window->signal_action_disconnect().connect(sigc::mem_fun(*this, &Abaddon::ActionDisconnect));
|
|
|
|
m_main_window->signal_action_set_token().connect(sigc::mem_fun(*this, &Abaddon::ActionSetToken));
|
|
|
|
m_main_window->signal_action_reload_css().connect(sigc::mem_fun(*this, &Abaddon::ActionReloadCSS));
|
2020-09-21 22:47:34 +00:00
|
|
|
m_main_window->signal_action_join_guild().connect(sigc::mem_fun(*this, &Abaddon::ActionJoinGuildDialog));
|
2020-11-01 07:53:37 +00:00
|
|
|
m_main_window->signal_action_set_status().connect(sigc::mem_fun(*this, &Abaddon::ActionSetStatus));
|
2020-12-18 07:05:24 +00:00
|
|
|
m_main_window->signal_action_reload_settings().connect(sigc::mem_fun(*this, &Abaddon::ActionReloadSettings));
|
2021-02-18 19:38:40 +00:00
|
|
|
m_main_window->signal_action_add_recipient().connect(sigc::mem_fun(*this, &Abaddon::ActionAddRecipient));
|
2020-09-07 06:45:46 +00:00
|
|
|
|
2020-11-08 05:44:26 +00:00
|
|
|
m_main_window->signal_action_show_user_menu().connect(sigc::mem_fun(*this, &Abaddon::ShowUserMenu));
|
|
|
|
|
2020-11-01 04:13:52 +00:00
|
|
|
m_main_window->GetChannelList()->signal_action_channel_item_select().connect(sigc::mem_fun(*this, &Abaddon::ActionChannelOpened));
|
2020-09-21 22:47:34 +00:00
|
|
|
m_main_window->GetChannelList()->signal_action_guild_leave().connect(sigc::mem_fun(*this, &Abaddon::ActionLeaveGuild));
|
2021-01-15 06:37:35 +00:00
|
|
|
m_main_window->GetChannelList()->signal_action_guild_settings().connect(sigc::mem_fun(*this, &Abaddon::ActionGuildSettings));
|
2020-09-07 06:45:46 +00:00
|
|
|
|
|
|
|
m_main_window->GetChatWindow()->signal_action_message_delete().connect(sigc::mem_fun(*this, &Abaddon::ActionChatDeleteMessage));
|
|
|
|
m_main_window->GetChatWindow()->signal_action_message_edit().connect(sigc::mem_fun(*this, &Abaddon::ActionChatEditMessage));
|
|
|
|
m_main_window->GetChatWindow()->signal_action_chat_submit().connect(sigc::mem_fun(*this, &Abaddon::ActionChatInputSubmit));
|
|
|
|
m_main_window->GetChatWindow()->signal_action_chat_load_history().connect(sigc::mem_fun(*this, &Abaddon::ActionChatLoadHistory));
|
2020-11-01 04:13:52 +00:00
|
|
|
m_main_window->GetChatWindow()->signal_action_channel_click().connect(sigc::mem_fun(*this, &Abaddon::ActionChannelOpened));
|
2020-10-11 05:56:30 +00:00
|
|
|
m_main_window->GetChatWindow()->signal_action_insert_mention().connect(sigc::mem_fun(*this, &Abaddon::ActionInsertMention));
|
2020-12-15 06:51:49 +00:00
|
|
|
m_main_window->GetChatWindow()->signal_action_reaction_add().connect(sigc::mem_fun(*this, &Abaddon::ActionReactionAdd));
|
|
|
|
m_main_window->GetChatWindow()->signal_action_reaction_remove().connect(sigc::mem_fun(*this, &Abaddon::ActionReactionRemove));
|
2020-09-07 06:45:46 +00:00
|
|
|
|
2020-09-04 05:37:39 +00:00
|
|
|
ActionReloadCSS();
|
|
|
|
|
2020-08-17 06:40:03 +00:00
|
|
|
m_gtk_app->signal_shutdown().connect([&]() {
|
2020-08-19 05:07:55 +00:00
|
|
|
StopDiscord();
|
2020-08-17 06:40:03 +00:00
|
|
|
});
|
|
|
|
|
2020-08-19 05:07:55 +00:00
|
|
|
if (!m_settings.IsValid()) {
|
|
|
|
Gtk::MessageDialog dlg(*m_main_window, "The settings file could not be created!", false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
|
|
|
|
dlg.run();
|
|
|
|
}
|
2020-08-17 06:40:03 +00:00
|
|
|
|
2020-10-24 23:42:06 +00:00
|
|
|
if (!m_emojis.Load()) {
|
|
|
|
Gtk::MessageDialog dlg(*m_main_window, "The emoji file couldn't be loaded!", false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
|
|
|
|
dlg.run();
|
|
|
|
}
|
|
|
|
|
2020-11-20 00:18:59 +00:00
|
|
|
if (!m_discord.IsStoreValid()) {
|
|
|
|
Gtk::MessageDialog dlg(*m_main_window, "The Discord cache could not be created!", false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
|
|
|
|
dlg.run();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_main_window->show();
|
2020-08-19 05:07:55 +00:00
|
|
|
return m_gtk_app->run(*m_main_window);
|
|
|
|
}
|
2020-08-17 06:40:03 +00:00
|
|
|
|
2020-08-19 05:07:55 +00:00
|
|
|
void Abaddon::LoadFromSettings() {
|
2020-12-17 06:40:02 +00:00
|
|
|
std::string token = m_settings.GetDiscordToken();
|
2020-08-19 05:07:55 +00:00
|
|
|
if (token.size()) {
|
|
|
|
m_discord_token = token;
|
2020-08-20 01:08:57 +00:00
|
|
|
m_discord.UpdateToken(m_discord_token);
|
2020-08-19 05:07:55 +00:00
|
|
|
}
|
2020-08-17 06:40:03 +00:00
|
|
|
}
|
|
|
|
|
2020-08-19 05:07:55 +00:00
|
|
|
void Abaddon::StartDiscord() {
|
2020-08-17 06:40:03 +00:00
|
|
|
m_discord.Start();
|
|
|
|
}
|
|
|
|
|
2020-08-19 05:07:55 +00:00
|
|
|
void Abaddon::StopDiscord() {
|
|
|
|
m_discord.Stop();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Abaddon::IsDiscordActive() const {
|
|
|
|
return m_discord.IsStarted();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string Abaddon::GetDiscordToken() const {
|
|
|
|
return m_discord_token;
|
|
|
|
}
|
|
|
|
|
2020-09-21 22:47:34 +00:00
|
|
|
DiscordClient &Abaddon::GetDiscordClient() {
|
|
|
|
std::scoped_lock<std::mutex> guard(m_mutex);
|
|
|
|
return m_discord;
|
|
|
|
}
|
|
|
|
|
2020-08-19 05:13:36 +00:00
|
|
|
const DiscordClient &Abaddon::GetDiscordClient() const {
|
|
|
|
std::scoped_lock<std::mutex> guard(m_mutex);
|
|
|
|
return m_discord;
|
|
|
|
}
|
|
|
|
|
2020-09-07 03:34:29 +00:00
|
|
|
void Abaddon::DiscordOnReady() {
|
2020-08-19 06:05:26 +00:00
|
|
|
m_main_window->UpdateComponents();
|
2020-08-19 05:13:36 +00:00
|
|
|
}
|
|
|
|
|
2020-09-07 03:34:29 +00:00
|
|
|
void Abaddon::DiscordOnMessageCreate(Snowflake id) {
|
2020-08-21 04:42:46 +00:00
|
|
|
m_main_window->UpdateChatNewMessage(id);
|
|
|
|
}
|
|
|
|
|
2020-09-07 03:34:29 +00:00
|
|
|
void Abaddon::DiscordOnMessageDelete(Snowflake id, Snowflake channel_id) {
|
2020-08-29 05:14:07 +00:00
|
|
|
m_main_window->UpdateChatMessageDeleted(id, channel_id);
|
|
|
|
}
|
|
|
|
|
2020-09-07 03:34:29 +00:00
|
|
|
void Abaddon::DiscordOnMessageUpdate(Snowflake id, Snowflake channel_id) {
|
2020-09-20 05:12:54 +00:00
|
|
|
m_main_window->UpdateChatMessageUpdated(id, channel_id);
|
2020-08-31 00:24:02 +00:00
|
|
|
}
|
|
|
|
|
2020-09-07 03:34:29 +00:00
|
|
|
void Abaddon::DiscordOnGuildMemberListUpdate(Snowflake guild_id) {
|
2020-09-05 04:55:06 +00:00
|
|
|
m_main_window->UpdateMembers();
|
|
|
|
}
|
|
|
|
|
2021-03-22 05:30:51 +00:00
|
|
|
void Abaddon::DiscordOnGuildCreate(const GuildData &guild) {
|
|
|
|
m_main_window->UpdateChannelsNewGuild(guild.ID);
|
2020-09-21 22:47:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Abaddon::DiscordOnGuildDelete(Snowflake guild_id) {
|
2020-10-14 03:56:00 +00:00
|
|
|
m_main_window->UpdateChannelsRemoveGuild(guild_id);
|
2020-09-21 22:47:34 +00:00
|
|
|
}
|
|
|
|
|
2020-10-20 00:35:10 +00:00
|
|
|
void Abaddon::DiscordOnChannelDelete(Snowflake channel_id) {
|
|
|
|
m_main_window->UpdateChannelsRemoveChannel(channel_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Abaddon::DiscordOnChannelUpdate(Snowflake channel_id) {
|
|
|
|
m_main_window->UpdateChannelsUpdateChannel(channel_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Abaddon::DiscordOnChannelCreate(Snowflake channel_id) {
|
|
|
|
m_main_window->UpdateChannelsCreateChannel(channel_id);
|
|
|
|
}
|
|
|
|
|
2020-11-01 04:01:48 +00:00
|
|
|
void Abaddon::DiscordOnGuildUpdate(Snowflake guild_id) {
|
|
|
|
m_main_window->UpdateChannelsUpdateGuild(guild_id);
|
|
|
|
}
|
|
|
|
|
2020-12-15 06:51:49 +00:00
|
|
|
void Abaddon::DiscordOnReactionAdd(Snowflake message_id, const Glib::ustring ¶m) {
|
|
|
|
m_main_window->UpdateChatReactionAdd(message_id, param);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Abaddon::DiscordOnReactionRemove(Snowflake message_id, const Glib::ustring ¶m) {
|
|
|
|
m_main_window->UpdateChatReactionAdd(message_id, param);
|
|
|
|
}
|
|
|
|
|
2021-03-22 05:30:51 +00:00
|
|
|
// this will probably cause issues when actual applications are rolled out but that doesn't seem like it will happen for a while
|
|
|
|
void Abaddon::DiscordOnGuildJoinRequestCreate(const GuildJoinRequestCreateData &data) {
|
|
|
|
if (data.Status == GuildApplicationStatus::STARTED) {
|
|
|
|
ShowGuildVerificationGateDialog(data.GuildID);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-25 05:47:48 +00:00
|
|
|
void Abaddon::DiscordOnDisconnect(bool is_reconnecting, GatewayCloseCode close_code) {
|
|
|
|
m_main_window->UpdateComponents();
|
|
|
|
if (close_code == GatewayCloseCode::AuthenticationFailed) {
|
|
|
|
Gtk::MessageDialog dlg(*m_main_window, "Discord rejected your token", false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
|
|
|
|
dlg.run();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-04 06:28:48 +00:00
|
|
|
const SettingsManager &Abaddon::GetSettings() const {
|
|
|
|
return m_settings;
|
|
|
|
}
|
|
|
|
|
2021-01-15 06:37:35 +00:00
|
|
|
Glib::RefPtr<Gtk::CssProvider> Abaddon::GetStyleProvider() {
|
|
|
|
return m_css_provider;
|
|
|
|
}
|
|
|
|
|
2020-11-08 05:44:26 +00:00
|
|
|
void Abaddon::ShowUserMenu(const GdkEvent *event, Snowflake id, Snowflake guild_id) {
|
|
|
|
m_shown_user_menu_id = id;
|
|
|
|
m_shown_user_menu_guild_id = guild_id;
|
|
|
|
|
2021-01-17 04:48:19 +00:00
|
|
|
const auto guild = m_discord.GetGuild(guild_id);
|
2020-11-08 05:44:26 +00:00
|
|
|
const auto me = m_discord.GetUserData().ID;
|
2021-01-17 04:48:19 +00:00
|
|
|
const auto user = m_discord.GetMember(id, guild_id);
|
|
|
|
|
|
|
|
for (const auto child : m_user_menu_roles_submenu->get_children())
|
|
|
|
delete child;
|
|
|
|
if (guild.has_value() && user.has_value()) {
|
2021-01-25 06:12:16 +00:00
|
|
|
const auto roles = user->GetSortedRoles();
|
|
|
|
m_user_menu_roles->set_visible(roles.size() > 0);
|
|
|
|
for (const auto role : roles) {
|
2021-01-17 04:48:19 +00:00
|
|
|
auto *item = Gtk::manage(new Gtk::MenuItem(role.Name));
|
|
|
|
if (role.Color != 0) {
|
|
|
|
Gdk::RGBA color;
|
|
|
|
color.set_red(((role.Color & 0xFF0000) >> 16) / 255.0);
|
|
|
|
color.set_green(((role.Color & 0x00FF00) >> 8) / 255.0);
|
|
|
|
color.set_blue(((role.Color & 0x0000FF) >> 0) / 255.0);
|
|
|
|
color.set_alpha(1.0);
|
|
|
|
item->override_color(color);
|
|
|
|
}
|
|
|
|
item->show();
|
|
|
|
m_user_menu_roles_submenu->append(*item);
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
m_user_menu_roles->set_visible(false);
|
|
|
|
|
2020-11-09 02:30:50 +00:00
|
|
|
if (me == id) {
|
2021-01-25 06:12:16 +00:00
|
|
|
m_user_menu_ban->set_visible(false);
|
|
|
|
m_user_menu_kick->set_visible(false);
|
|
|
|
m_user_menu_open_dm->set_visible(false);
|
2020-11-09 02:30:50 +00:00
|
|
|
} else {
|
|
|
|
const bool has_kick = m_discord.HasGuildPermission(me, guild_id, Permission::KICK_MEMBERS);
|
|
|
|
const bool has_ban = m_discord.HasGuildPermission(me, guild_id, Permission::BAN_MEMBERS);
|
|
|
|
const bool can_manage = m_discord.CanManageMember(guild_id, me, id);
|
|
|
|
|
2021-01-25 06:12:16 +00:00
|
|
|
m_user_menu_kick->set_visible(has_kick && can_manage);
|
|
|
|
m_user_menu_ban->set_visible(has_ban && can_manage);
|
|
|
|
m_user_menu_open_dm->set_visible(true);
|
2020-11-09 02:30:50 +00:00
|
|
|
}
|
2020-11-08 05:44:26 +00:00
|
|
|
|
2021-02-18 17:45:14 +00:00
|
|
|
m_user_menu_remove_recipient->hide();
|
|
|
|
if (me != id) {
|
|
|
|
const auto channel_id = m_main_window->GetChatActiveChannel();
|
|
|
|
const auto channel = m_discord.GetChannel(channel_id);
|
2021-02-18 19:36:58 +00:00
|
|
|
if (channel.has_value() && channel->Type == ChannelType::GROUP_DM && me == *channel->OwnerID)
|
2021-02-18 17:45:14 +00:00
|
|
|
m_user_menu_remove_recipient->show();
|
|
|
|
}
|
|
|
|
|
2020-11-08 05:44:26 +00:00
|
|
|
m_user_menu->popup_at_pointer(event);
|
|
|
|
}
|
|
|
|
|
2021-03-22 05:30:51 +00:00
|
|
|
void Abaddon::ShowGuildVerificationGateDialog(Snowflake guild_id) {
|
|
|
|
VerificationGateDialog dlg(*m_main_window, guild_id);
|
|
|
|
if (dlg.run() == Gtk::RESPONSE_OK) {
|
|
|
|
const auto cb = [this](bool success) {
|
|
|
|
if (!success) {
|
|
|
|
Gtk::MessageDialog dlg(*m_main_window, "Failed to accept the verification gate.", false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
|
|
|
|
dlg.run();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
m_discord.AcceptVerificationGate(guild_id, dlg.GetVerificationGate(), cb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-15 05:28:42 +00:00
|
|
|
void Abaddon::SetupUserMenu() {
|
|
|
|
m_user_menu = Gtk::manage(new Gtk::Menu);
|
|
|
|
m_user_menu_insert_mention = Gtk::manage(new Gtk::MenuItem("Insert Mention"));
|
|
|
|
m_user_menu_ban = Gtk::manage(new Gtk::MenuItem("Ban"));
|
|
|
|
m_user_menu_kick = Gtk::manage(new Gtk::MenuItem("Kick"));
|
|
|
|
m_user_menu_copy_id = Gtk::manage(new Gtk::MenuItem("Copy ID"));
|
|
|
|
m_user_menu_open_dm = Gtk::manage(new Gtk::MenuItem("Open DM"));
|
|
|
|
m_user_menu_roles = Gtk::manage(new Gtk::MenuItem("Roles"));
|
|
|
|
m_user_menu_info = Gtk::manage(new Gtk::MenuItem("View Profile"));
|
|
|
|
m_user_menu_remove_recipient = Gtk::manage(new Gtk::MenuItem("Remove From Group"));
|
|
|
|
m_user_menu_roles_submenu = Gtk::manage(new Gtk::Menu);
|
|
|
|
m_user_menu_roles->set_submenu(*m_user_menu_roles_submenu);
|
|
|
|
m_user_menu_insert_mention->signal_activate().connect(sigc::mem_fun(*this, &Abaddon::on_user_menu_insert_mention));
|
|
|
|
m_user_menu_ban->signal_activate().connect(sigc::mem_fun(*this, &Abaddon::on_user_menu_ban));
|
|
|
|
m_user_menu_kick->signal_activate().connect(sigc::mem_fun(*this, &Abaddon::on_user_menu_kick));
|
|
|
|
m_user_menu_copy_id->signal_activate().connect(sigc::mem_fun(*this, &Abaddon::on_user_menu_copy_id));
|
|
|
|
m_user_menu_open_dm->signal_activate().connect(sigc::mem_fun(*this, &Abaddon::on_user_menu_open_dm));
|
|
|
|
m_user_menu_remove_recipient->signal_activate().connect(sigc::mem_fun(*this, &Abaddon::on_user_menu_remove_recipient));
|
|
|
|
m_user_menu_info->signal_activate().connect([this]() {
|
|
|
|
auto *window = new ProfileWindow(m_shown_user_menu_id);
|
|
|
|
ManageHeapWindow(window);
|
|
|
|
window->show();
|
|
|
|
});
|
|
|
|
|
|
|
|
m_user_menu_remove_recipient->override_color(Gdk::RGBA("#BE3C3D"));
|
|
|
|
|
|
|
|
m_user_menu->append(*m_user_menu_info);
|
|
|
|
m_user_menu->append(*m_user_menu_insert_mention);
|
|
|
|
m_user_menu->append(*Gtk::manage(new Gtk::SeparatorMenuItem));
|
|
|
|
m_user_menu->append(*m_user_menu_ban);
|
|
|
|
m_user_menu->append(*m_user_menu_kick);
|
|
|
|
m_user_menu->append(*Gtk::manage(new Gtk::SeparatorMenuItem));
|
|
|
|
m_user_menu->append(*m_user_menu_open_dm);
|
|
|
|
m_user_menu->append(*m_user_menu_roles);
|
|
|
|
m_user_menu->append(*Gtk::manage(new Gtk::SeparatorMenuItem));
|
|
|
|
m_user_menu->append(*m_user_menu_remove_recipient);
|
|
|
|
m_user_menu->append(*Gtk::manage(new Gtk::SeparatorMenuItem));
|
|
|
|
m_user_menu->append(*m_user_menu_copy_id);
|
|
|
|
|
|
|
|
m_user_menu->show_all();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Abaddon::ManageHeapWindow(Gtk::Window *window) {
|
|
|
|
window->signal_hide().connect([this, window]() {
|
|
|
|
delete window;
|
|
|
|
// for some reason if ShowUserMenu is called multiple times with events across windows
|
|
|
|
// and one of the windows is closed, then it throws errors when the menu is opened again
|
|
|
|
// i dont think this is my fault so this semi-hacky solution will have to do
|
|
|
|
delete m_user_menu;
|
|
|
|
SetupUserMenu();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-11-08 05:44:26 +00:00
|
|
|
void Abaddon::on_user_menu_insert_mention() {
|
|
|
|
ActionInsertMention(m_shown_user_menu_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Abaddon::on_user_menu_ban() {
|
|
|
|
ActionBanMember(m_shown_user_menu_id, m_shown_user_menu_guild_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Abaddon::on_user_menu_kick() {
|
|
|
|
ActionKickMember(m_shown_user_menu_id, m_shown_user_menu_guild_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Abaddon::on_user_menu_copy_id() {
|
|
|
|
Gtk::Clipboard::get()->set_text(std::to_string(m_shown_user_menu_id));
|
|
|
|
}
|
|
|
|
|
2020-11-08 06:23:50 +00:00
|
|
|
void Abaddon::on_user_menu_open_dm() {
|
|
|
|
const auto existing = m_discord.FindDM(m_shown_user_menu_id);
|
|
|
|
if (existing.has_value())
|
|
|
|
ActionChannelOpened(*existing);
|
|
|
|
else
|
2021-02-15 07:26:50 +00:00
|
|
|
m_discord.CreateDM(m_shown_user_menu_id, [this](bool success, Snowflake channel_id) {
|
|
|
|
if (success) {
|
|
|
|
// give the gateway a little window to send CHANNEL_CREATE
|
|
|
|
auto cb = [this, channel_id] {
|
|
|
|
ActionChannelOpened(channel_id);
|
|
|
|
};
|
|
|
|
Glib::signal_timeout().connect_once(sigc::track_obj(cb, *this), 200);
|
|
|
|
}
|
|
|
|
});
|
2020-11-08 06:23:50 +00:00
|
|
|
}
|
|
|
|
|
2021-02-18 17:45:14 +00:00
|
|
|
void Abaddon::on_user_menu_remove_recipient() {
|
|
|
|
m_discord.RemoveGroupDMRecipient(m_main_window->GetChatActiveChannel(), m_shown_user_menu_id);
|
|
|
|
}
|
|
|
|
|
2020-08-17 06:40:03 +00:00
|
|
|
void Abaddon::ActionConnect() {
|
|
|
|
if (!m_discord.IsStarted())
|
2020-08-19 05:07:55 +00:00
|
|
|
StartDiscord();
|
2020-08-19 06:05:26 +00:00
|
|
|
m_main_window->UpdateComponents();
|
2020-08-19 05:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Abaddon::ActionDisconnect() {
|
|
|
|
if (m_discord.IsStarted())
|
|
|
|
StopDiscord();
|
2020-09-07 06:45:46 +00:00
|
|
|
m_channels_history_loaded.clear();
|
|
|
|
m_channels_history_loading.clear();
|
|
|
|
m_channels_requested.clear();
|
|
|
|
m_oldest_listed_message.clear();
|
2020-09-03 06:32:28 +00:00
|
|
|
m_main_window->set_title(APP_TITLE);
|
2020-08-19 06:05:26 +00:00
|
|
|
m_main_window->UpdateComponents();
|
2020-08-19 05:07:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Abaddon::ActionSetToken() {
|
|
|
|
TokenDialog dlg(*m_main_window);
|
|
|
|
auto response = dlg.run();
|
|
|
|
if (response == Gtk::RESPONSE_OK) {
|
|
|
|
m_discord_token = dlg.GetToken();
|
2020-08-20 01:08:57 +00:00
|
|
|
m_discord.UpdateToken(m_discord_token);
|
2020-08-19 06:05:26 +00:00
|
|
|
m_main_window->UpdateComponents();
|
2020-08-19 05:07:55 +00:00
|
|
|
m_settings.SetSetting("discord", "token", m_discord_token);
|
|
|
|
}
|
2020-08-17 06:40:03 +00:00
|
|
|
}
|
|
|
|
|
2020-09-21 22:47:34 +00:00
|
|
|
void Abaddon::ActionJoinGuildDialog() {
|
|
|
|
JoinGuildDialog dlg(*m_main_window);
|
|
|
|
auto response = dlg.run();
|
|
|
|
if (response == Gtk::RESPONSE_OK) {
|
|
|
|
auto code = dlg.GetCode();
|
|
|
|
m_discord.JoinGuild(code);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-01 04:13:52 +00:00
|
|
|
void Abaddon::ActionChannelOpened(Snowflake id) {
|
2020-09-12 07:17:34 +00:00
|
|
|
if (id == m_main_window->GetChatActiveChannel()) return;
|
|
|
|
|
2020-12-10 08:50:40 +00:00
|
|
|
const auto channel = m_discord.GetChannel(id);
|
2020-11-01 22:15:34 +00:00
|
|
|
if (channel->Type == ChannelType::GUILD_TEXT || channel->Type == ChannelType::GUILD_NEWS)
|
2020-12-10 08:50:40 +00:00
|
|
|
m_main_window->set_title(std::string(APP_TITLE) + " - #" + *channel->Name);
|
2020-09-05 04:55:06 +00:00
|
|
|
else {
|
|
|
|
std::string display;
|
2020-12-14 08:05:16 +00:00
|
|
|
const auto recipients = channel->GetDMRecipients();
|
|
|
|
if (recipients.size() > 1)
|
|
|
|
display = std::to_string(recipients.size()) + " users";
|
2021-02-18 17:45:14 +00:00
|
|
|
else if (recipients.size() == 1)
|
2020-12-14 08:05:16 +00:00
|
|
|
display = recipients[0].Username;
|
2021-02-18 17:45:14 +00:00
|
|
|
else
|
|
|
|
display = "Empty group";
|
2020-09-05 04:55:06 +00:00
|
|
|
m_main_window->set_title(std::string(APP_TITLE) + " - " + display);
|
|
|
|
}
|
2020-08-20 07:19:16 +00:00
|
|
|
m_main_window->UpdateChatActiveChannel(id);
|
|
|
|
if (m_channels_requested.find(id) == m_channels_requested.end()) {
|
2020-09-04 04:48:38 +00:00
|
|
|
m_discord.FetchMessagesInChannel(id, [this, id](const std::vector<Snowflake> &msgs) {
|
2020-10-06 01:37:07 +00:00
|
|
|
if (msgs.size() > 0)
|
2020-09-04 04:48:38 +00:00
|
|
|
m_oldest_listed_message[id] = msgs.back();
|
2020-08-28 22:21:08 +00:00
|
|
|
|
2020-10-06 01:37:07 +00:00
|
|
|
m_main_window->UpdateChatWindowContents();
|
2020-08-20 07:19:16 +00:00
|
|
|
m_channels_requested.insert(id);
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
m_main_window->UpdateChatWindowContents();
|
|
|
|
}
|
2021-03-22 05:30:51 +00:00
|
|
|
|
|
|
|
if (channel->Type != ChannelType::DM && channel->Type != ChannelType::GROUP_DM) {
|
|
|
|
m_discord.SendLazyLoad(id);
|
|
|
|
|
|
|
|
const auto request = m_discord.GetGuildApplication(*channel->GuildID);
|
|
|
|
if (request.has_value() && request->ApplicationStatus == GuildApplicationStatus::STARTED)
|
|
|
|
ShowGuildVerificationGateDialog(*channel->GuildID);
|
|
|
|
}
|
2020-08-20 07:19:16 +00:00
|
|
|
}
|
|
|
|
|
2020-08-28 22:21:08 +00:00
|
|
|
void Abaddon::ActionChatLoadHistory(Snowflake id) {
|
|
|
|
if (m_channels_history_loaded.find(id) != m_channels_history_loaded.end())
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (m_channels_history_loading.find(id) != m_channels_history_loading.end())
|
|
|
|
return;
|
|
|
|
|
2020-09-14 04:17:58 +00:00
|
|
|
Snowflake before_id = m_main_window->GetChatOldestListedMessage();
|
|
|
|
auto knownset = m_discord.GetMessagesForChannel(id);
|
|
|
|
std::vector<Snowflake> knownvec(knownset.begin(), knownset.end());
|
|
|
|
std::sort(knownvec.begin(), knownvec.end());
|
|
|
|
auto latest = std::find_if(knownvec.begin(), knownvec.end(), [&before_id](Snowflake x) -> bool { return x == before_id; });
|
|
|
|
int distance = std::distance(knownvec.begin(), latest);
|
|
|
|
|
|
|
|
if (distance >= 50) {
|
|
|
|
m_main_window->UpdateChatPrependHistory(std::vector<Snowflake>(knownvec.begin() + distance - 50, knownvec.begin() + distance));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-08-28 22:21:08 +00:00
|
|
|
m_channels_history_loading.insert(id);
|
|
|
|
|
2020-09-04 04:48:38 +00:00
|
|
|
m_discord.FetchMessagesInChannelBefore(id, m_oldest_listed_message[id], [this, id](const std::vector<Snowflake> &msgs) {
|
2020-08-28 22:21:08 +00:00
|
|
|
m_channels_history_loading.erase(id);
|
|
|
|
|
|
|
|
if (msgs.size() == 0) {
|
|
|
|
m_channels_history_loaded.insert(id);
|
|
|
|
} else {
|
2020-09-04 04:48:38 +00:00
|
|
|
m_oldest_listed_message[id] = msgs.back();
|
2020-08-28 22:21:08 +00:00
|
|
|
m_main_window->UpdateChatPrependHistory(msgs);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-03-14 22:59:52 +00:00
|
|
|
void Abaddon::ActionChatInputSubmit(std::string msg, Snowflake channel, Snowflake referenced_message) {
|
2020-09-04 05:03:43 +00:00
|
|
|
if (msg.substr(0, 7) == "/shrug " || msg == "/shrug")
|
|
|
|
msg = msg.substr(6) + "\xC2\xAF\x5C\x5F\x28\xE3\x83\x84\x29\x5F\x2F\xC2\xAF"; // this is important
|
2021-03-14 22:59:52 +00:00
|
|
|
if (referenced_message.IsValid())
|
|
|
|
m_discord.SendChatMessage(msg, channel, referenced_message);
|
|
|
|
else
|
|
|
|
m_discord.SendChatMessage(msg, channel);
|
2020-08-22 02:25:23 +00:00
|
|
|
}
|
|
|
|
|
2020-08-30 06:00:56 +00:00
|
|
|
void Abaddon::ActionChatDeleteMessage(Snowflake channel_id, Snowflake id) {
|
|
|
|
m_discord.DeleteMessage(channel_id, id);
|
|
|
|
}
|
|
|
|
|
2020-08-31 02:55:36 +00:00
|
|
|
void Abaddon::ActionChatEditMessage(Snowflake channel_id, Snowflake id) {
|
2020-11-24 01:34:09 +00:00
|
|
|
const auto msg = m_discord.GetMessage(id);
|
2020-08-31 02:55:36 +00:00
|
|
|
EditMessageDialog dlg(*m_main_window);
|
2020-11-11 04:53:00 +00:00
|
|
|
dlg.SetContent(msg->Content);
|
2020-08-31 02:55:36 +00:00
|
|
|
auto response = dlg.run();
|
|
|
|
if (response == Gtk::RESPONSE_OK) {
|
|
|
|
auto new_content = dlg.GetContent();
|
|
|
|
m_discord.EditMessage(channel_id, id, new_content);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-06 06:25:19 +00:00
|
|
|
void Abaddon::ActionInsertMention(Snowflake id) {
|
|
|
|
m_main_window->InsertChatInput("<@" + std::to_string(id) + ">");
|
|
|
|
}
|
|
|
|
|
2020-09-21 22:47:34 +00:00
|
|
|
void Abaddon::ActionLeaveGuild(Snowflake id) {
|
2020-10-12 04:36:18 +00:00
|
|
|
ConfirmDialog dlg(*m_main_window);
|
2020-12-09 01:59:41 +00:00
|
|
|
const auto guild = m_discord.GetGuild(id);
|
|
|
|
if (guild.has_value())
|
2020-10-12 22:17:53 +00:00
|
|
|
dlg.SetConfirmText("Are you sure you want to leave " + guild->Name + "?");
|
2020-10-12 04:36:18 +00:00
|
|
|
auto response = dlg.run();
|
|
|
|
if (response == Gtk::RESPONSE_OK)
|
|
|
|
m_discord.LeaveGuild(id);
|
2020-09-21 22:47:34 +00:00
|
|
|
}
|
|
|
|
|
2020-10-12 22:17:53 +00:00
|
|
|
void Abaddon::ActionKickMember(Snowflake user_id, Snowflake guild_id) {
|
|
|
|
ConfirmDialog dlg(*m_main_window);
|
2020-11-20 00:18:59 +00:00
|
|
|
const auto user = m_discord.GetUser(user_id);
|
|
|
|
if (user.has_value())
|
2020-10-12 22:17:53 +00:00
|
|
|
dlg.SetConfirmText("Are you sure you want to kick " + user->Username + "#" + user->Discriminator + "?");
|
|
|
|
auto response = dlg.run();
|
|
|
|
if (response == Gtk::RESPONSE_OK)
|
|
|
|
m_discord.KickUser(user_id, guild_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Abaddon::ActionBanMember(Snowflake user_id, Snowflake guild_id) {
|
|
|
|
ConfirmDialog dlg(*m_main_window);
|
2020-11-20 00:18:59 +00:00
|
|
|
const auto user = m_discord.GetUser(user_id);
|
|
|
|
if (user.has_value())
|
2020-10-12 22:17:53 +00:00
|
|
|
dlg.SetConfirmText("Are you sure you want to ban " + user->Username + "#" + user->Discriminator + "?");
|
|
|
|
auto response = dlg.run();
|
|
|
|
if (response == Gtk::RESPONSE_OK)
|
|
|
|
m_discord.BanUser(user_id, guild_id);
|
|
|
|
}
|
|
|
|
|
2020-11-01 07:53:37 +00:00
|
|
|
void Abaddon::ActionSetStatus() {
|
|
|
|
SetStatusDialog dlg(*m_main_window);
|
|
|
|
const auto response = dlg.run();
|
|
|
|
if (response != Gtk::RESPONSE_OK || !m_discord.IsStarted()) return;
|
|
|
|
const auto status = dlg.GetStatusType();
|
|
|
|
const auto activity_type = dlg.GetActivityType();
|
|
|
|
const auto activity_name = dlg.GetActivityName();
|
2021-01-26 07:40:50 +00:00
|
|
|
if (activity_name == "") {
|
|
|
|
m_discord.UpdateStatus(status, false);
|
|
|
|
} else {
|
|
|
|
ActivityData activity;
|
|
|
|
activity.Name = activity_name;
|
|
|
|
activity.Type = activity_type;
|
|
|
|
m_discord.UpdateStatus(status, false, activity);
|
|
|
|
}
|
2020-11-01 07:53:37 +00:00
|
|
|
}
|
|
|
|
|
2020-12-15 06:51:49 +00:00
|
|
|
void Abaddon::ActionReactionAdd(Snowflake id, const Glib::ustring ¶m) {
|
|
|
|
m_discord.AddReaction(id, param);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Abaddon::ActionReactionRemove(Snowflake id, const Glib::ustring ¶m) {
|
|
|
|
m_discord.RemoveReaction(id, param);
|
|
|
|
}
|
|
|
|
|
2021-01-15 06:37:35 +00:00
|
|
|
void Abaddon::ActionGuildSettings(Snowflake id) {
|
2021-02-05 04:41:53 +00:00
|
|
|
auto window = new GuildSettingsWindow(id);
|
2021-03-15 05:28:42 +00:00
|
|
|
ManageHeapWindow(window);
|
2021-01-15 06:37:35 +00:00
|
|
|
window->show();
|
|
|
|
}
|
|
|
|
|
2021-02-18 19:38:40 +00:00
|
|
|
void Abaddon::ActionAddRecipient(Snowflake channel_id) {
|
|
|
|
FriendPickerDialog dlg(*m_main_window);
|
|
|
|
auto response = dlg.run();
|
|
|
|
if (response == Gtk::RESPONSE_OK) {
|
|
|
|
auto user_id = dlg.GetUserID();
|
|
|
|
m_discord.AddGroupDMRecipient(channel_id, user_id);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-18 03:55:41 +00:00
|
|
|
bool Abaddon::ShowConfirm(const Glib::ustring &prompt, Gtk::Window *window) {
|
|
|
|
ConfirmDialog dlg(window != nullptr ? *window : *m_main_window);
|
|
|
|
dlg.SetConfirmText(prompt);
|
|
|
|
return dlg.run() == Gtk::RESPONSE_OK;
|
|
|
|
}
|
|
|
|
|
2020-12-18 07:05:24 +00:00
|
|
|
void Abaddon::ActionReloadSettings() {
|
|
|
|
m_settings.Reload();
|
|
|
|
}
|
|
|
|
|
2020-09-03 04:47:49 +00:00
|
|
|
void Abaddon::ActionReloadCSS() {
|
2020-09-04 05:37:39 +00:00
|
|
|
try {
|
|
|
|
Gtk::StyleContext::remove_provider_for_screen(Gdk::Screen::get_default(), m_css_provider);
|
2020-12-18 07:05:24 +00:00
|
|
|
m_css_provider->load_from_path(m_settings.GetMainCSS());
|
2020-09-04 05:37:39 +00:00
|
|
|
Gtk::StyleContext::add_provider_for_screen(Gdk::Screen::get_default(), m_css_provider, GTK_STYLE_PROVIDER_PRIORITY_APPLICATION);
|
|
|
|
} catch (Glib::Error &e) {
|
2020-12-18 07:05:24 +00:00
|
|
|
Gtk::MessageDialog dlg(*m_main_window, "css failed to load (" + e.what() + ")", false, Gtk::MESSAGE_ERROR, Gtk::BUTTONS_OK, true);
|
2020-09-04 05:37:39 +00:00
|
|
|
dlg.run();
|
|
|
|
}
|
2020-09-03 04:47:49 +00:00
|
|
|
}
|
|
|
|
|
2020-09-12 07:17:34 +00:00
|
|
|
ImageManager &Abaddon::GetImageManager() {
|
|
|
|
return m_img_mgr;
|
2020-09-10 22:28:42 +00:00
|
|
|
}
|
|
|
|
|
2020-10-24 23:42:06 +00:00
|
|
|
EmojiResource &Abaddon::GetEmojis() {
|
|
|
|
return m_emojis;
|
|
|
|
}
|
|
|
|
|
2020-08-17 06:40:03 +00:00
|
|
|
int main(int argc, char **argv) {
|
2021-02-26 04:59:16 +00:00
|
|
|
#if defined(_WIN32) && defined(_MSC_VER)
|
|
|
|
TCHAR buf[2] { 0 };
|
|
|
|
GetEnvironmentVariableA("GTK_CSD", buf, sizeof(buf));
|
|
|
|
if (buf[0] != '1')
|
|
|
|
SetEnvironmentVariableA("GTK_CSD", "0");
|
|
|
|
#endif
|
2020-08-20 07:19:16 +00:00
|
|
|
Gtk::Main::init_gtkmm_internals(); // why???
|
2020-09-07 04:27:41 +00:00
|
|
|
return Abaddon::Get().StartGTK();
|
2020-08-17 06:40:03 +00:00
|
|
|
}
|