home *** CD-ROM | disk | FTP | other *** search
/ Hackers Magazine 57 / CdHackersMagazineNr57.iso / Software / Multimedia / k3d-setup-0.7.11.0.exe / include / k3d / k3dsdk / node.h < prev    next >
Encoding:
C/C++ Source or Header  |  2008-11-30  |  2.5 KB  |  84 lines

  1. #ifndef K3DSDK_NODE_H
  2. #define K3DSDK_NODE_H
  3.  
  4. // K-3D
  5. // Copyright (c) 1995-2008, Timothy M. Shead
  6. //
  7. // Contact: tshead@k-3d.com
  8. //
  9. // This program is free software; you can redistribute it and/or
  10. // modify it under the terms of the GNU General Public
  11. // License as published by the Free Software Foundation; either
  12. // version 2 of the License, or (at your option) any later version.
  13. //
  14. // This program is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  17. // General Public License for more details.
  18. //
  19. // You should have received a copy of the GNU General Public
  20. // License along with this program; if not, write to the Free Software
  21. // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  22.  
  23. /** \file
  24.     \author Tim Shead (tshead@k-3d.com)
  25. */
  26.  
  27. #include "data.h"
  28. #include "idocument.h"
  29. #include "inode.h"
  30. #include "ipersistent.h"
  31. #include "metadata.h"
  32. #include "persistent_property_collection.h"
  33. #include "property_collection.h"
  34. #include "result.h"
  35.  
  36. namespace k3d
  37. {
  38.  
  39. class iplugin_factory;
  40.  
  41. /// Implements the minimum functionality required of any K-3D node.  You should derive document plugins from node and override
  42. /// the default method implementations and/or implement additional interfaces as-needed.
  43. class node :
  44.     public inode,
  45.     public ipersistent,
  46.     public property_collection,
  47.     public persistent_property_collection,
  48.     public metadata::storage,
  49.     public sigc::trackable
  50. {
  51. public:
  52.     node(iplugin_factory& Factory, idocument& Document);
  53.     virtual ~node();
  54.  
  55.     void set_name(const std::string Name);
  56.     const std::string name();
  57.     idocument& document();
  58.     iplugin_factory& factory();
  59.     deleted_signal_t& deleted_signal();
  60.     name_changed_signal_t& name_changed_signal();
  61.  
  62.     void save(xml::element& Element, const ipersistent::save_context& Context);
  63.     void load(xml::element& Element, const ipersistent::load_context& Context);
  64.  
  65. private:
  66.     void on_deleted();
  67.  
  68.     /// Stores the factory that created this node
  69.     iplugin_factory& m_factory;
  70.     /// Stores the Document that owns this node
  71.     idocument& m_document;
  72.     /// Stores the name for this node
  73.     k3d_data(std::string, data::immutable_name, data::change_signal, data::with_undo, data::local_storage, data::no_constraint, data::writable_property, data::no_serialization) m_name;
  74.     /// Used to signal observers when this node is deleted
  75.     deleted_signal_t m_deleted_signal;
  76.     /// Used to signal observers when this node's name changes
  77.     name_changed_signal_t m_name_changed_signal;
  78. };
  79.  
  80. } // namespace k3d
  81.  
  82. #endif // !K3DSDK_NODE_H
  83.  
  84.