Home
last modified time | relevance | path

Searched refs:coreIdHandler (Results 1 – 5 of 5) sorted by relevance

/dports/net-im/qTox/qTox-1.17.4/src/model/
H A Dsessionchatlog.h36 SessionChatLog(const ICoreIdHandler& coreIdHandler);
37 SessionChatLog(ChatLogIdx initialIdx, const ICoreIdHandler& coreIdHandler);
67 const ICoreIdHandler& coreIdHandler;
H A Dsessionchatlog.cpp110 SessionChatLog::SessionChatLog(const ICoreIdHandler& coreIdHandler) in SessionChatLog() argument
111 : coreIdHandler(coreIdHandler) in SessionChatLog()
117 SessionChatLog::SessionChatLog(ChatLogIdx initialIdx, const ICoreIdHandler& coreIdHandler) in SessionChatLog() argument
118 : coreIdHandler(coreIdHandler) in SessionChatLog()
378 items.emplace(messageIdx, ChatLogItem(coreIdHandler.getSelfPublicKey(), chatLogMessage)); in onMessageSent()
H A Dchathistory.cpp73 ChatHistory::ChatHistory(Friend& f_, History* history_, const ICoreIdHandler& coreIdHandler, in ChatHistory() argument
78 , coreIdHandler(coreIdHandler) in ChatHistory()
79 , sessionChatLog(getInitialChatLogIdx(), coreIdHandler) in ChatHistory()
269 auto selfPk = coreIdHandler.getSelfPublicKey().toString(); in onMessageSent()
277 auto username = coreIdHandler.getUsername(); in onMessageSent()
H A Dchathistory.h35 ChatHistory(Friend& f_, History* history_, const ICoreIdHandler& coreIdHandler,
68 const ICoreIdHandler& coreIdHandler; variable
/dports/net-im/qTox/qTox-1.17.4/test/model/
H A Dgroupmessagedispatcher_test.cpp192 std::unique_ptr<MockCoreIdHandler> coreIdHandler; member in TestGroupMessageDispatcher
212 coreIdHandler = std::unique_ptr<MockCoreIdHandler>(new MockCoreIdHandler()); in init()
214 new Group(0, GroupId(0), "TestGroup", false, "me", *groupQuery, *coreIdHandler)); in init()
220 new GroupMessageDispatcher(*g, *messageProcessor, *coreIdHandler, *messageSender, in init()