Code

6bfcab59b6599597b68d08666a6ef1a266d11359
[inkscape.git] / src / jabber_whiteboard / inkboard-document.h
1 /**
2  * Inkscape::Whiteboard::InkboardDocument - Inkboard document implementation
3  *
4  * Authors:
5  * David Yip <yipdw@rose-hulman.edu>
6  *
7  * Copyright (c) 2005 Authors
8  *
9  * Released under GNU GPL, read the file 'COPYING' for more information
10  */
12 #ifndef __INKSCAPE_WHITEBOARD_INKBOARDDOCUMENT_H__
13 #define __INKSCAPE_WHITEBOARD_INKBOARDDOCUMENT_H__
15 #include <glibmm.h>
17 #include "document.h"
18 #include "xml/document.h"
19 #include "xml/simple-node.h"
20 #include "xml/node-observer.h"
21 #include "jabber_whiteboard/defines.h"
22 #include "jabber_whiteboard/keynode.h"
23 #include "jabber_whiteboard/session-manager.h"
25 namespace Inkscape {
27 namespace Whiteboard {
29 class InkboardDocument : public XML::SimpleNode,
30                          public XML::Document,
31                          public XML::NodeObserver
32 {
33 public:
34         
35     explicit InkboardDocument(int code, State::SessionType sessionType, Glib::ustring const& to);
37     XML::NodeType type() const
38     {
39         return Inkscape::XML::DOCUMENT_NODE;
40     }
42     State::SessionState state;
43     KeyNodeTable *tracker;
45     void setRecipient(Glib::ustring const& val);
46     Glib::ustring getRecipient() const;
48     void setSessionId(Glib::ustring const& val);
49     Glib::ustring getSessionId() const;
51     void startSessionNegotiation();
52     void terminateSession();
54     void recieve(Message::Wrapper &wrapper, Pedro::Element* data);
55     bool send(const Glib::ustring &destJid, Message::Wrapper &mwrapper, 
56             Message::Message &message);
58     void sendDocument(Inkscape::XML::Node* root);
60     bool handleOutgoingState(Message::Wrapper &wrapper,Glib::ustring const& message);
61     bool handleIncomingState(Message::Wrapper &wrapper,Pedro::Element* data);
63     bool handleState(State::SessionState expectedState, 
64             State::SessionState newstate);
66     void handleChange(Message::Wrapper &wrapper, Pedro::Element* data);
68     NodeObserver *logger() { return this; }
70     // 
71     // XML::Session methods
72     // 
73     bool inTransaction() 
74     {
75         return _in_transaction;
76     }
78     void beginTransaction();
79     void rollback();
80     void commit();
82     XML::Event* commitUndoable();
84     XML::Node* createElement(char const* name);
85     XML::Node* createTextNode(char const* content);
86     XML::Node* createComment(char const* content);
87     XML::Node* createPI(char const *target, char const* content);
89     //
90     // XML::NodeObserver methods
91     //
92     void notifyChildAdded(Inkscape::XML::Node &parent, Inkscape::XML::Node &child, Inkscape::XML::Node *prev);
94     void notifyChildRemoved(Inkscape::XML::Node &parent, Inkscape::XML::Node &child, Inkscape::XML::Node *prev);
96     void notifyChildOrderChanged(Inkscape::XML::Node &parent, Inkscape::XML::Node &child,
97                                  Inkscape::XML::Node *old_prev, Inkscape::XML::Node *new_prev);
99     void notifyContentChanged(Inkscape::XML::Node &node,
100                               Util::ptr_shared<char> old_content,
101                               Util::ptr_shared<char> new_content);
103     void notifyAttributeChanged(Inkscape::XML::Node &node, GQuark name,
104                                 Util::ptr_shared<char> old_value,
105                                 Util::ptr_shared<char> new_value);
107     /* Functions below are defined in inkboard-node.cpp */
108     Glib::ustring addNodeToTracker(Inkscape::XML::Node* node);
109     Message::Message composeNewMessage(Inkscape::XML::Node *node);
111     void changeConfigure(Glib::ustring target, unsigned int version,
112             Glib::ustring attribute, Glib::ustring value);
114     void changeNew(Glib::ustring target, Glib::ustring, 
115             signed int index, Pedro::Element* data);
117     void changeConfigureText(Glib::ustring target, unsigned int version,
118             Glib::ustring text);
120 protected:
121         /**
122          * Copy constructor.
123          * 
124          * \param orig Instance to copy.
125          */
126         InkboardDocument(InkboardDocument const& orig) :
127                 XML::Node(), XML::SimpleNode(orig),
128                 XML::Document(), XML::NodeObserver(),
129                 recipient(orig.recipient), _in_transaction(false)
130         {
131                 _initBindings();
132         }
134         XML::SimpleNode* _duplicate(XML::Document* /*xml_doc*/) const
135         {
136                 return new InkboardDocument(*this);
137         }
139 private:
140     void _initBindings();
142     SessionManager      *sm;
144     State::SessionType  sessionType;
146     Glib::ustring sessionId;
147     Glib::ustring recipient;
149     bool _in_transaction;
150 };
156 #endif
158 /*
159   Local Variables:
160   mode:c++
161   c-file-style:"stroustrup"
162   c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
163   indent-tabs-mode:nil
164   fill-column:99
165   End:
166 */
167 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :