~ubuntu-branches/ubuntu/karmic/kst/karmic

« back to all changes in this revision

Viewing changes to kst/src/extensions/js/bind_arrow.h

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-28 15:16:16 UTC
  • mfrom: (1.2.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080628151616-9hvxg0nmnlkmyz4y
Tags: 1.6.0-1
* New upstream release.
* Change B-D to libnetcdf-dev.
* Add dh_icons call.  Closes: #457853.
* Bump Standards-Version to 3.8.0.
* Bump debhelper dependency for dh_icons.

Show diffs side-by-side

added added

removed removed

Lines of Context:
57
57
    int methodCount() const;
58
58
    int propertyCount() const;
59
59
 
 
60
    /* @property boolean fromArrow
 
61
       @description True if the arrow has an arrow at the start point.
 
62
    */
 
63
    void setFromArrow(KJS::ExecState *exec, const KJS::Value& value);
 
64
    KJS::Value fromArrow(KJS::ExecState *exec) const;
 
65
 
 
66
    /* @property boolean toArrow
 
67
       @description True if the arrow has an arrow at the end point.
 
68
    */
 
69
    void setToArrow(KJS::ExecState *exec, const KJS::Value& value);
 
70
    KJS::Value toArrow(KJS::ExecState *exec) const;
 
71
 
 
72
    /* @property number fromArrowScaling
 
73
       @description Scale size of the arrow at the start point.
 
74
    */
 
75
    void setFromArrowScaling(KJS::ExecState *exec, const KJS::Value& value);
 
76
    KJS::Value fromArrowScaling(KJS::ExecState *exec) const;
 
77
 
 
78
    /* @property number toArrowScaling
 
79
       @description Scale size of the arrow at the end point.
 
80
    */
 
81
    void setToArrowScaling(KJS::ExecState *exec, const KJS::Value& value);
 
82
    KJS::Value toArrowScaling(KJS::ExecState *exec) const;
 
83
 
60
84
  protected:
61
85
    KstBindArrow(int id, const char *name = 0L);
62
86
    void addBindings(KJS::ExecState *exec, KJS::Object& obj);
63
87
    static KstBindViewObject *bindFactory(KJS::ExecState *exec, KstViewObjectPtr obj);
64
88
};
65
89
 
66
 
 
67
90
#endif
68
91
 
69
 
// vim: ts=2 sw=2 et