solanaceae_contact/solanaceae/contact/components.hpp

61 lines
862 B
C++

#pragma once
#include "./contact_model3.hpp"
#include <string>
// fwd
struct ContactModel3I;
namespace Contact::Components {
struct TagSelfWeak {};
struct TagSelfStrong {};
struct TagBig {};
// self counterpart
struct Self {
Contact3 self;
};
// TODO: rename to SubOf?
struct BigParent {
Contact3 parent;
};
struct ParentOf {
std::vector<Contact3> subs;
};
// TODO: this is very hacky
// maybe refwrapper?
using ContactModel = ContactModel3I*;
struct Name {
std::string name;
};
// (display)alias
// avatar
// status
struct ConnectionState {
enum State {
disconnected,
direct, // tox udp-direct?
cloud, // tox tcp-relayed / most messengers ?
} state = disconnected;
};
// status message
struct StatusMessage {
std::string msg;
};
// last seen (not disconnected?)
};
#include "./components_id.inl"