[cluttermm/cluttermm-1.2] Added refreturn & constversions of set_key, start, and get_timeline to Animator.
- From: Chris Kühl <chriskuehl src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [cluttermm/cluttermm-1.2] Added refreturn & constversions of set_key, start, and get_timeline to Animator.
- Date: Thu, 3 Feb 2011 14:32:48 +0000 (UTC)
commit 0960fa508f616e826dc19518d4cb80285ea8a592
Author: Chris Kühl <chrisk openismus com>
Date: Mon Jan 31 03:17:47 2011 +0100
Added refreturn & constversions of set_key, start, and get_timeline to Animator.
* clutter/src/animator.hg:
ChangeLog | 6 ++++++
clutter/src/animator.hg | 9 ++++++---
2 files changed, 12 insertions(+), 3 deletions(-)
---
diff --git a/ChangeLog b/ChangeLog
index d87a499..4d6bf4f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,11 @@
2011-01-31 Chris Kühl <chrisk openismus com>
+ Added refreturn & constversions of set_key, start, and get_timeline to Animator.
+
+ * clutter/src/animator.hg:
+
+2011-01-31 Chris Kühl <chrisk openismus com>
+
Added refreturn & constversions to get_pointer_[actor|stage] in InputDevice.
* clutter/src/input-device.hg:
diff --git a/clutter/src/animator.hg b/clutter/src/animator.hg
index 0bdbf27..21b4595 100644
--- a/clutter/src/animator.hg
+++ b/clutter/src/animator.hg
@@ -40,15 +40,18 @@ public:
_WRAP_CREATE()
_IGNORE(clutter_animator_set)
- _WRAP_METHOD(Glib::RefPtr<Animator> set_key(const Glib::RefPtr<Glib::Object>& object, const Glib::ustring& property_name, guint mode, double progress, const Glib::ValueBase& value), clutter_animator_set_key)
+ _WRAP_METHOD(Glib::RefPtr<Animator> set_key(const Glib::RefPtr<Glib::Object>& object, const Glib::ustring& property_name, guint mode, double progress, const Glib::ValueBase& value), clutter_animator_set_key, refreturn)
+ _WRAP_METHOD(Glib::RefPtr<const Animator> set_key(const Glib::RefPtr<Glib::Object>& object, const Glib::ustring& property_name, guint mode, double progress, const Glib::ValueBase& value) const, clutter_animator_set_key, refreturn, constversion)
_WRAP_METHOD(void remove_key(const Glib::RefPtr<Glib::Object>& object, const Glib::ustring& property_name, double progress), clutter_animator_remove_key)
// TODO: _WRAP_METHOD(std::vector<Glib::RefPtr<Animator> > get_keys(const Glib::RefPtr<Glib::Object>& object, const std::string &property_name, double progress), clutter_animator_get_keys)
_IGNORE(clutter_animator_get_keys)
- _WRAP_METHOD(Glib::RefPtr<Timeline> start(), clutter_animator_start)
+ _WRAP_METHOD(Glib::RefPtr<Timeline> start(), clutter_animator_start, refreturn)
+ _WRAP_METHOD(Glib::RefPtr<const Timeline> start() const, clutter_animator_start, refreturn, constversion)
_WRAP_METHOD(bool compute_value(const Glib::RefPtr<Glib::Object>& object, const Glib::ustring& property_name, double progress, Glib::ValueBase& value), clutter_animator_compute_value)
_WRAP_METHOD(void set_timeline(const Glib::RefPtr<Timeline>& timeline), clutter_animator_set_timeline)
- _WRAP_METHOD(Glib::RefPtr<Timeline> get_timeline() const, clutter_animator_get_timeline)
+ _WRAP_METHOD(Glib::RefPtr<Timeline> get_timeline() const, clutter_animator_get_timeline, refreturn)
+ _WRAP_METHOD(Glib::RefPtr<const Timeline> get_timeline() const, clutter_animator_get_timeline, refreturn, constversion)
_WRAP_METHOD(void set_duration(guint duration), clutter_animator_set_duration)
_WRAP_METHOD(guint get_duration() const, clutter_animator_get_duration)
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]