This is the long-awaited monster commit, bringing you a redesigned core arch and...
[quassel.git] / src / common / syncableobject.h
index 4ce8c91..04ba44b 100644 (file)
@@ -37,10 +37,11 @@ class SyncableObject : public QObject {
     /** The default implementation takes dynamic properties as well as getters that have
      *  names starting with "init" and stores them in a QVariantMap. Override this method in
      *  derived classes in order to store the object state in a custom form.
-     *  \Note: This is used by SignalProxy to transmit the state of the object to clients
+     *  \note  This is used by SignalProxy to transmit the state of the object to clients
      *         that request the initial object state. Later updates use a different mechanism
      *         and assume that the state is completely covered by properties and init* getters.
      *         DO NOT OVERRIDE THIS unless you know exactly what you do!
+     *
      *  \return The object's state in a QVariantMap
      */
     virtual QVariantMap toVariantMap();
@@ -50,9 +51,20 @@ class SyncableObject : public QObject {
      */
     virtual void fromVariantMap(const QVariantMap &map);
 
+    virtual bool isInitialized() const;
+
+  public slots:
+    virtual void setInitialized();
+
+  signals:
+    void initDone();
+    void updatedRemotely();
+
   private:
     bool setInitValue(const QString &property, const QVariant &value);
 
+    bool _initialized;
+
 };
 
 #endif