prep for chat_gui refactor

This commit is contained in:
Green Sky 2024-04-20 17:57:11 +02:00
parent 29fd1bfb62
commit 52278f6726
No known key found for this signature in database
11 changed files with 17 additions and 19 deletions

View File

@ -52,14 +52,14 @@ add_executable(tomato
./sdl_clipboard_utils.hpp
./sdl_clipboard_utils.cpp
./file_selector.hpp
./file_selector.cpp
./chat_gui/file_selector.hpp
./chat_gui/file_selector.cpp
./send_image_popup.hpp
./send_image_popup.cpp
./chat_gui/send_image_popup.hpp
./chat_gui/send_image_popup.cpp
./settings_window.hpp
./settings_window.cpp
./chat_gui/settings_window.hpp
./chat_gui/settings_window.cpp
./tox_ui_utils.hpp
./tox_ui_utils.cpp

View File

@ -1,10 +1,10 @@
#include "./send_image_popup.hpp"
#include "./image_loader_sdl_bmp.hpp"
#include "./image_loader_stb.hpp"
#include "./image_loader_webp.hpp"
#include "./image_loader_qoi.hpp"
#include "./image_loader_sdl_image.hpp"
#include "../image_loader_sdl_bmp.hpp"
#include "../image_loader_stb.hpp"
#include "../image_loader_webp.hpp"
#include "../image_loader_qoi.hpp"
#include "../image_loader_sdl_image.hpp"
#include <imgui/imgui.h>

View File

@ -5,8 +5,8 @@
#include <memory>
#include <vector>
#include "./image_loader.hpp"
#include "./texture_cache.hpp"
#include "../image_loader.hpp"
#include "../texture_cache.hpp"
struct SendImagePopup {
TextureUploaderI& _tu;

View File

@ -1,7 +1,5 @@
#include "./chat_gui4.hpp"
#include "./file_selector.hpp"
#include <solanaceae/message3/components.hpp>
#include <solanaceae/tox_messages/components.hpp>
#include <solanaceae/contact/components.hpp>

View File

@ -7,8 +7,8 @@
#include "./texture_cache.hpp"
#include "./tox_avatar_loader.hpp"
#include "./message_image_loader.hpp"
#include "./file_selector.hpp"
#include "./send_image_popup.hpp"
#include "./chat_gui/file_selector.hpp"
#include "./chat_gui/send_image_popup.hpp"
#include <entt/container/dense_map.hpp>

View File

@ -28,7 +28,7 @@
#include "./message_image_loader.hpp"
#include "./chat_gui4.hpp"
#include "./settings_window.hpp"
#include "./chat_gui/settings_window.hpp"
#include "./tox_ui_utils.hpp"
#include "./tox_dht_cap_histo.hpp"
#include "./tox_friend_faux_offline_messaging.hpp"

View File

@ -2,7 +2,7 @@
#include "./screen.hpp"
#include "./file_selector.hpp"
#include "./chat_gui/file_selector.hpp"
#include <vector>
#include <string>