diff options
Diffstat (limited to 'Swift/Controllers/UIInterfaces/ChatWindow.h')
| -rw-r--r-- | Swift/Controllers/UIInterfaces/ChatWindow.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/Swift/Controllers/UIInterfaces/ChatWindow.h b/Swift/Controllers/UIInterfaces/ChatWindow.h index b1e2a11..0fa734c 100644 --- a/Swift/Controllers/UIInterfaces/ChatWindow.h +++ b/Swift/Controllers/UIInterfaces/ChatWindow.h | |||
| @@ -87,11 +87,19 @@ namespace Swift { | |||
| 87 | 87 | ||
| 88 | enum AckState {Pending, Received, Failed}; | 88 | enum AckState {Pending, Received, Failed}; |
| 89 | enum ReceiptState {ReceiptRequested, ReceiptReceived, ReceiptFailed}; | 89 | enum ReceiptState {ReceiptRequested, ReceiptReceived, ReceiptFailed}; |
| 90 | enum OccupantAction {Kick, Ban, MakeModerator, MakeParticipant, MakeVisitor, AddContact, ShowProfile}; | 90 | enum OccupantAction {Kick, Ban, MakeModerator, MakeParticipant, MakeVisitor, AddContact, ShowProfile}; |
| 91 | enum RoomAction {ChangeSubject, Configure, Affiliations, Destroy, Invite}; | 91 | enum RoomAction {ChangeSubject, Configure, Affiliations, Destroy, Invite}; |
| 92 | enum FileTransferState {WaitingForAccept, Negotiating, Transferring, Canceled, Finished, FTFailed}; | 92 | enum FileTransferState { |
| 93 | Initialisation, ///< Collecting information required for sending the request out. | ||
| 94 | WaitingForAccept, ///< The file transfer request was send out. | ||
| 95 | Negotiating, ///< The other party accepted the file transfer request and a suitable transfer method is negotiated. | ||
| 96 | Transferring, ///< The negotiation was successful and the file is currently transferred. | ||
| 97 | Canceled, ///< Someone actively canceled the transfer. | ||
| 98 | Finished, ///< The file was transferred successfully. | ||
| 99 | FTFailed ///< The negotiation, the transfer itself or the verification failed. | ||
| 100 | }; | ||
| 93 | enum WhiteboardSessionState {WhiteboardAccepted, WhiteboardTerminated, WhiteboardRejected}; | 101 | enum WhiteboardSessionState {WhiteboardAccepted, WhiteboardTerminated, WhiteboardRejected}; |
| 94 | enum BlockingState {BlockingUnsupported, IsBlocked, IsUnblocked}; | 102 | enum BlockingState {BlockingUnsupported, IsBlocked, IsUnblocked}; |
| 95 | enum Direction { UnknownDirection, DefaultDirection }; | 103 | enum Direction { UnknownDirection, DefaultDirection }; |
| 96 | enum MUCType { StandardMUC, ImpromptuMUC }; | 104 | enum MUCType { StandardMUC, ImpromptuMUC }; |
| 97 | enum TimestampBehaviour { KeepTimestamp, UpdateTimestamp }; | 105 | enum TimestampBehaviour { KeepTimestamp, UpdateTimestamp }; |
Swift