Code

Extensions. Check element now search in the extension directory (see Bug #668895...
[inkscape.git] / src / jabber_whiteboard / message-tags.cpp
1 /**
2  * Whiteboard session manager
3  * Message tags
4  * 
5  * Authors:
6  * David Yip <yipdw@rose-hulman.edu>
7  *
8  * Copyright (c) 2005 Authors
9  *
10  * Released under GNU GPL, read the file 'COPYING' for more information
11  */
13 #include "jabber_whiteboard/message-tags.h"
15 namespace Inkscape {
17 namespace Whiteboard {
19 const char* MESSAGE_CHANGE =            "inkboard:change";
20 const char* MESSAGE_NEWOBJ =            "inkboard:new";
21 const char* MESSAGE_DELETE =            "inkboard:delete";
22 const char* MESSAGE_DOCUMENT =          "inkboard:document";
23 const char* MESSAGE_NODECONTENT =       "inkboard:node-content";
24 const char* MESSAGE_ORDERCHANGE =       "inkboard:order-change";
25 const char* MESSAGE_COMMIT =            "inkboard:commit";
26 const char* MESSAGE_UNDO =                      "inkboard:undo";
27 const char* MESSAGE_REDO =                      "inkboard:redo";
28 const char* MESSAGE_DOCBEGIN =          "inkboard:document-begin";
29 const char* MESSAGE_DOCEND =            "inkboard:document-end";
30 const char* MESSAGE_OBJKEY =            "objid";
31 const char* MESSAGE_ID =                        "id";
32 const char* MESSAGE_KEY =                       "key";
33 const char* MESSAGE_OLDVAL =            "old";
34 const char* MESSAGE_NEWVAL =            "new";
35 const char* MESSAGE_NAME =                      "name";
36 const char* MESSAGE_ISINTERACTIVE =     "interactive";
37 const char* MESSAGE_DATA =                      "data";
38 const char* MESSAGE_PARENT =            "parent";
39 const char* MESSAGE_CHILD =                     "child";
40 const char* MESSAGE_REF =                       "ref";
41 const char* MESSAGE_CONTENT     =               "content";
42 const char* MESSAGE_REPEATABLE =        "repeatable";
43 const char* MESSAGE_CHATROOM =          "chatroom";
45 const char* MESSAGE_TYPE =                      "inkboard-type";
46 const char* MESSAGE_NODETYPE =          "node-type";
47 const char* MESSAGE_FROM =                      "from";
48 const char* MESSAGE_TO =                        "to";
49 const char* MESSAGE_BODY =                      "body";
50 const char* MESSAGE_QUEUE =                     "queue";
51 const char* MESSAGE_SEQNUM =            "sequence-number";
52 const char* MESSAGE_PROTOCOL_VER =      "inkboard-protocol";
54 }
56 }
58 /*
59   Local Variables:
60   mode:c++
61   c-file-style:"stroustrup"
62   c-file-offsets:((innamespace . 0)(inline-open . 0))
63   indent-tabs-mode:nil
64   fill-column:99
65   End:
66 */
67 // vim: filetype=c++:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :