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

  1. #ifndef K3DSDK_PLUGIN_FACTORY_COLLECTION_H
  2. #define K3DSDK_PLUGIN_FACTORY_COLLECTION_H
  3.  
  4. // K-3D
  5. // Copyright (c) 1995-2004, 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.     \brief Declares plugin_factory_collection, an implementation of iplugin_factory_collection that can load plugin factories from shared libraries
  25.     \author Tim Shead (tshead@k-3d.com)
  26. */
  27.  
  28. #include "iplugin_factory_collection.h"
  29. #include "module.h"
  30. #include "signal_system.h"
  31.  
  32. #include <string>
  33.  
  34. namespace k3d
  35. {
  36.  
  37. namespace filesystem { class path; }
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40. // plugin_factory_collection
  41.  
  42. /// Provides an implementation of iplugin_factory_collection that can load plugin factories from shared libraries
  43. class plugin_factory_collection :
  44.     public iplugin_factory_collection
  45. {
  46. public:
  47.     plugin_factory_collection();
  48.     ~plugin_factory_collection();
  49.  
  50.     enum load_proxy_t
  51.     {
  52.         LOAD_PROXIES,
  53.         IGNORE_PROXIES
  54.     };
  55.  
  56.     /// Connects a signal emitted to display human-readable progress messages while loading plugin modules
  57.     sigc::connection connect_message_signal(const sigc::slot<void, const std::string&>& Slot);
  58.  
  59.     /// Binds a statically-linked plugin module
  60.     void bind_module(const std::string& ModuleName, register_plugins_entry_point RegisterPlugins);
  61.     /// Loads a single plugin module
  62.     void load_module(const filesystem::path& Path, const load_proxy_t LoadProxies);
  63.     /// Loads plugin modules from a directory, optionally descending recursively into subdirectories
  64.     void load_modules(const filesystem::path& Path, const bool Recursive, const load_proxy_t LoadProxies);
  65.     /// Loads plugin modules from zero-to-many directories, optionally descending recursively into each directory
  66.     void load_modules(const std::string& Paths, const bool Recursive, const load_proxy_t LoadProxies);
  67.  
  68.     // iplugin_factory_collection implementation
  69.     const factories_t& factories();
  70.  
  71. private:
  72.     plugin_factory_collection(const plugin_factory_collection&);
  73.     plugin_factory_collection& operator=(const plugin_factory_collection&);
  74.  
  75.     struct implementation;
  76.     implementation* const m_implementation;
  77. };
  78.  
  79. } // namespace k3d
  80.  
  81. #endif // !K3DSDK_PLUGIN_FACTORY_COLLECTION_H
  82.  
  83.