CanvasPattern.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. // Copyright (c) 2011 LearnBoost <tj@learnboost.com>
  2. #pragma once
  3. #include <cairo.h>
  4. #include <nan.h>
  5. #include <v8.h>
  6. /*
  7. * Canvas types.
  8. */
  9. typedef enum {
  10. NO_REPEAT, // match CAIRO_EXTEND_NONE
  11. REPEAT, // match CAIRO_EXTEND_REPEAT
  12. REPEAT_X, // needs custom processing
  13. REPEAT_Y // needs custom processing
  14. } repeat_type_t;
  15. extern const cairo_user_data_key_t *pattern_repeat_key;
  16. class Pattern: public Nan::ObjectWrap {
  17. public:
  18. static Nan::Persistent<v8::FunctionTemplate> constructor;
  19. static Nan::Persistent<v8::Function> _DOMMatrix;
  20. static void Initialize(Nan::ADDON_REGISTER_FUNCTION_ARGS_TYPE target);
  21. static NAN_METHOD(New);
  22. static NAN_METHOD(SaveExternalModules);
  23. static NAN_METHOD(SetTransform);
  24. static repeat_type_t get_repeat_type_for_cairo_pattern(cairo_pattern_t *pattern);
  25. Pattern(cairo_surface_t *surface, repeat_type_t repeat);
  26. inline cairo_pattern_t *pattern(){ return _pattern; }
  27. private:
  28. ~Pattern();
  29. cairo_pattern_t *_pattern;
  30. repeat_type_t _repeat;
  31. };