mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-06-30 18:43:55 -07:00
PB: everything compiles except for deck storage
This commit is contained in:
parent
695fde7541
commit
d5c628966f
51 changed files with 659 additions and 628 deletions
|
|
@ -6,8 +6,8 @@
|
|||
class AbstractClient;
|
||||
class ChatView;
|
||||
class QLineEdit;
|
||||
class Event_Message;
|
||||
class ProtocolResponse;
|
||||
class Event_UserMessage;
|
||||
class Response;
|
||||
|
||||
class TabMessage : public Tab {
|
||||
Q_OBJECT
|
||||
|
|
@ -25,7 +25,7 @@ signals:
|
|||
private slots:
|
||||
void sendMessage();
|
||||
void actLeave();
|
||||
void messageSent(ProtocolResponse *response);
|
||||
void messageSent(const Response &response);
|
||||
public:
|
||||
TabMessage(TabSupervisor *_tabSupervisor, AbstractClient *_client, const QString &_ownName, const QString &_userName);
|
||||
~TabMessage();
|
||||
|
|
@ -34,7 +34,7 @@ public:
|
|||
QString getUserName() const { return userName; }
|
||||
QString getTabText() const { return tr("Talking to %1").arg(userName); }
|
||||
|
||||
void processMessageEvent(Event_Message *event);
|
||||
void processUserMessageEvent(const Event_UserMessage &event);
|
||||
void processUserLeft();
|
||||
void processUserJoined();
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue