Home
last modified time | relevance | path

Searched refs:ChatRoom (Results 1 – 25 of 83) sorted by relevance

1234

/dports/net-im/profanity/profanity-0.11.1/src/xmpp/
H A Dmuc.c77 } ChatRoom; typedef
84 static void _free_room(ChatRoom* room);
216 ChatRoom* new_room = malloc(sizeof(ChatRoom)); in muc_join()
253 ChatRoom* chat_room = g_hash_table_lookup(rooms, room); in muc_requires_config()
264 ChatRoom* chat_room = g_hash_table_lookup(rooms, room); in muc_set_requires_config()
273 ChatRoom* chat_room = g_hash_table_lookup(rooms, room); in muc_set_features()
296 ChatRoom* chat_room = g_hash_table_lookup(rooms, room); in muc_active()
303 ChatRoom* chat_room = g_hash_table_lookup(rooms, room); in muc_autojoin()
314 ChatRoom* chat_room = g_hash_table_lookup(rooms, room); in muc_set_subject()
328 ChatRoom* chat_room = g_hash_table_lookup(rooms, room); in muc_subject()
[all …]
/dports/emulators/citra/citra-ac98458e0/src/citra_qt/multiplayer/
H A Dchat_room.cpp156 ChatRoom::ChatRoom(QWidget* parent) : QWidget(parent), ui(std::make_unique<Ui::ChatRoom>()) { in ChatRoom() function in ChatRoom
184 connect(this, &ChatRoom::ChatReceived, this, &ChatRoom::OnChatReceive); in ChatRoom()
185 connect(this, &ChatRoom::StatusMessageReceived, this, &ChatRoom::OnStatusMessageReceive); in ChatRoom()
198 ChatRoom::~ChatRoom() = default;
204 void ChatRoom::RetranslateUi() { in RetranslateUi()
208 void ChatRoom::Clear() { in Clear()
247 void ChatRoom::Disable() { in Disable()
252 void ChatRoom::Enable() { in Enable()
317 void ChatRoom::OnSendChat() { in OnSendChat()
349 void ChatRoom::UpdateIconDisplay() { in UpdateIconDisplay()
[all …]
H A Dchat_room.h16 class ChatRoom; variable
28 class ChatRoom : public QWidget {
32 explicit ChatRoom(QWidget* parent);
37 ~ChatRoom();
65 std::unique_ptr<Ui::ChatRoom> ui;
/dports/emulators/citra-qt5/citra-ac98458e0/src/citra_qt/multiplayer/
H A Dchat_room.cpp156 ChatRoom::ChatRoom(QWidget* parent) : QWidget(parent), ui(std::make_unique<Ui::ChatRoom>()) { in ChatRoom() function in ChatRoom
184 connect(this, &ChatRoom::ChatReceived, this, &ChatRoom::OnChatReceive); in ChatRoom()
185 connect(this, &ChatRoom::StatusMessageReceived, this, &ChatRoom::OnStatusMessageReceive); in ChatRoom()
198 ChatRoom::~ChatRoom() = default;
204 void ChatRoom::RetranslateUi() { in RetranslateUi()
208 void ChatRoom::Clear() { in Clear()
247 void ChatRoom::Disable() { in Disable()
252 void ChatRoom::Enable() { in Enable()
317 void ChatRoom::OnSendChat() { in OnSendChat()
349 void ChatRoom::UpdateIconDisplay() { in UpdateIconDisplay()
[all …]
H A Dchat_room.h16 class ChatRoom; variable
28 class ChatRoom : public QWidget {
32 explicit ChatRoom(QWidget* parent);
37 ~ChatRoom();
65 std::unique_ptr<Ui::ChatRoom> ui;
/dports/www/py-nevow/Nevow-0.14.0/nevow/test/
H A Dtest_howtolistings.py187 from chatthing.chatterbox import ChatterElement, ChatRoom
189 cb = ChatterElement(ChatRoom())
206 cb = ChatterElement(ChatRoom())
217 from chatthing.chatterbox import ChatRoom
220 cr = ChatRoom()
238 from chatthing.chatterbox import ChatRoom
239 cr = ChatRoom()
261 from chatthing.chatterbox import ChatRoom
262 cb = ChatRoom().makeChatter()
273 from chatthing.chatterbox import ChatRoom
[all …]
/dports/net-im/jicofo/jicofo-ec1b29e/src/main/java/org/jitsi/impl/protocol/xmpp/
H A DOperationSetMultiUserChatImpl.java75 public List<ChatRoom> getCurrentlyJoinedChatRooms() in getCurrentlyJoinedChatRooms()
95 public ChatRoom createChatRoom(String roomName, in createChatRoom()
133 public ChatRoom findRoom(String roomName) in findRoom()
140 ChatRoom room = rooms.get(roomName); in findRoom()
H A DOperationSetMeetToolsImpl.java44 public void sendPresenceExtension(ChatRoom chatRoom, in sendPresenceExtension()
51 public void removePresenceExtension(ChatRoom chatRoom, in removePresenceExtension()
58 public void setPresenceStatus(ChatRoom chatRoom, String statusMessage) in setPresenceStatus()
/dports/net-im/jicofo/jicofo-ec1b29e/src/test/java/mock/
H A DMockJitsiMeetTools.java49 public void sendPresenceExtension(ChatRoom chatRoom, in sendPresenceExtension()
57 ChatRoom chatRoom, ExtensionElement packetExtension) in removePresenceExtension()
63 public void setPresenceStatus(ChatRoom chatRoom, String statusName) in setPresenceStatus()
/dports/net-im/jicofo/jicofo-ec1b29e/src/test/java/mock/muc/
H A DMockMultiUserChatOpSet.java76 public List<ChatRoom> getCurrentlyJoinedChatRooms() in getCurrentlyJoinedChatRooms()
90 public ChatRoom createChatRoom(String roomName, in createChatRoom()
125 public ChatRoom findRoom(String roomName) in findRoom()
135 ChatRoom room = createChatRoom(roomName, null); in findRoom()
H A DMockMucShare.java86 private void broadcastMemberJoined(ChatRoom chatRoom, in broadcastMemberJoined()
102 private void broadcastMemberLeft(ChatRoom chatRoom, in broadcastMemberLeft()
H A DMockRoomMember.java77 public ChatRoom getChatRoom() in getChatRoom()
/dports/www/py-nevow/Nevow-0.14.0/doc/howto/chattutorial/part01/
H A Dindex.rst14 there's another object involved (a ``ChatRoom``); and we'll have to run
126 "Echo" application: the ``ChatRoom`` object. We need this object for the
145 case, we make one of the methods of ``ChatRoom`` a factory for
147 though, we append it to the list of instances that the ``ChatRoom`` is
179 define right after the ``ChatRoom`` class. What is this? This is how we
193 object, but we have the ``ChatRoom`` object which is responsible for
199 - creating a singleton of ``ChatRoom`` (via the "magic" of Python
202 ``ChatterElement`` instance *and* add itself to the ``ChatRoom``.
205 "Echo" version. This is because of the ``ChatRoom`` code we discussed
/dports/www/py-nevow/Nevow-0.14.0/doc/howto/chattutorial/part01/listings/chatthing/
H A Dchatterbox.py5 class ChatRoom(object): class
24 chat = ChatRoom().makeChatter
/dports/net/linphone/linphoneqt-4.1.1/src/components/core/
H A DCoreHandlers.hpp49 void isComposingChanged (const std::shared_ptr<linphone::ChatRoom> &chatRoom);
90 const std::shared_ptr<linphone::ChatRoom> &room
107 const std::shared_ptr<linphone::ChatRoom> &room,
H A DCoreHandlers.cpp126 const shared_ptr<linphone::ChatRoom> &room in onIsComposingReceived()
149 const shared_ptr<linphone::ChatRoom> &, in onMessageReceived() argument
/dports/devel/py-gevent/gevent-21.8.0/examples/webchat/chat/
H A Dviews.py10 class ChatRoom(object): class
51 room = ChatRoom()
/dports/net/linphone/linphoneqt-4.1.1/src/components/chat/
H A DChatModel.hpp138 void handleIsComposingChanged (const std::shared_ptr<linphone::ChatRoom> &chatRoom);
144 std::shared_ptr<linphone::ChatRoom> mChatRoom;
/dports/net/py-errbot/errbot-6.1.8/errbot/core_plugins/
H A DchatRoom.plug2 Name = ChatRoom
/dports/net-im/jicofo/jicofo-ec1b29e/src/main/java/org/jitsi/jicofo/jigasi/
H A DTranscriberManager.java58 private ChatRoom chatRoom;
92 ChatRoom chatRoom, in TranscriberManager()
/dports/net-im/jicofo/jicofo-ec1b29e/src/main/java/org/jitsi/jicofo/
H A DChatRoomRoleAndPresence.java63 private final ChatRoom chatRoom;
95 ChatRoom chatRoom) in ChatRoomRoleAndPresence()
/dports/net-im/jicofo/jicofo-ec1b29e/src/main/java/org/jitsi/protocol/xmpp/
H A DChatRoom2.java34 extends ChatRoom
/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/odoo/addons/website_jitsi/models/
H A Dchat_room.py9 class ChatRoom(models.Model): class
/dports/net-im/kopete/kopete-21.12.3/protocols/oscar/liboscar/
H A Doscarmessage.h79 ChatRoom = 0x0008, enumerator
/dports/net/linphone/linphoneqt-4.1.1/src/components/sip-addresses/
H A DSipAddressesModel.hpp89 void handlerIsComposingChanged (const std::shared_ptr<linphone::ChatRoom> &chatRoom);

1234