refactor big contact
This commit is contained in:
33
src/chat_gui/contact_list.hpp
Normal file
33
src/chat_gui/contact_list.hpp
Normal file
@@ -0,0 +1,33 @@
|
||||
#pragma once
|
||||
|
||||
#include "./texture_cache_defs.hpp"
|
||||
|
||||
#include "./theme.hpp"
|
||||
|
||||
#include <solanaceae/contact/contact_model3.hpp>
|
||||
|
||||
enum class ThemeCol_Contact {
|
||||
request_incoming,
|
||||
request_outgoing,
|
||||
|
||||
avatar_online_direct,
|
||||
avatar_online_cloud,
|
||||
avatar_offline,
|
||||
};
|
||||
|
||||
// returns true if clicked, if selectable, will highlight on hover and respect selected
|
||||
// TODO: refine
|
||||
// +------+
|
||||
// | | *Name (Alias?)
|
||||
// |Avatar| Satus Message <-- richpresence interface?
|
||||
// | | user status (online/away/busy)-direct/relayed / offline <-- last text?
|
||||
// +------+
|
||||
bool renderContactBig(
|
||||
const Theme& th,
|
||||
ContactTextureCache& contact_tc,
|
||||
const Contact3Handle c,
|
||||
const bool unread = false,
|
||||
const bool selectable = false,
|
||||
const bool selected = false
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user