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

  1. #ifndef K3DSDK_BITMAP_SINK_H
  2. #define K3DSDK_BITMAP_SINK_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. #include "bitmap.h"
  24. #include "data.h"
  25. #include "ibitmap_sink.h"
  26. #include "k3d-i18n-config.h"
  27.  
  28. namespace k3d
  29. {
  30.  
  31. template<typename derived_t>
  32. class bitmap_sink :
  33.     public ibitmap_sink
  34. {
  35. public:
  36.     iproperty& bitmap_sink_input()
  37.     {
  38.         return m_input_bitmap;
  39.     }
  40.  
  41.     sigc::slot<void, ihint*> make_input_changed_slot()
  42.     {
  43.         return sigc::mem_fun(*this, &bitmap_sink<derived_t>::input_changed);
  44.     }
  45.  
  46. protected:
  47.     bitmap_sink() :
  48.         m_input_bitmap(
  49.             init_owner(*static_cast<derived_t*>(this))
  50.             + init_name("input_bitmap")
  51.             + init_label(_("Input Bitmap"))
  52.             + init_description(_("Input bitmap"))
  53.             + init_value<bitmap*>(0))
  54.     {
  55.         m_input_bitmap.changed_signal().connect(make_input_changed_slot());
  56.     }
  57.  
  58.     k3d_data(bitmap*, data::immutable_name, data::change_signal, data::no_undo, data::local_storage, data::no_constraint, data::read_only_property, data::no_serialization) m_input_bitmap;
  59.  
  60. private:
  61.     void input_changed(k3d::ihint* Hint)
  62.     {
  63.         on_input_changed(Hint);
  64.     }
  65.  
  66.     virtual void on_input_changed(k3d::ihint*) = 0;
  67. };
  68.  
  69. } // namespace k3d
  70.  
  71. #endif // !K3DSDK_BITMAP_SINK_H
  72.  
  73.