Searched defs:bool (Results 1 - 7 of 7) sorted by relevance

/inkscape/src/live_effects/parameter/
H A Dbool.h28 bool default_value = false,
29 bool no_widget = false);
34 virtual bool param_readSVGValue(const gchar * strvalue);
37 void param_setValue(bool newvalue);
40 bool get_value() const { return value; };
42 inline operator bool() const { return value; };
48 bool value;
49 bool defvalue;
50 bool hide_widget;
H A Dtogglebutton.h33 bool default_value = false,
42 virtual bool param_readSVGValue(const gchar * strvalue);
45 void param_setValue(bool newvalue);
48 bool get_value() const { return value; };
50 inline operator bool() const { return value; };
60 bool value;
61 bool defvalue;
/inkscape/src/util/
H A Dforward-pointer-iterator.h47 bool operator==(Self const &other) const {
50 bool operator!=(Self const &other) const {
64 operator bool() const { return _p != NULL; }
H A Dlist.h37 bool is_empty(List<T> const &list);
67 operator bool() const { return this->_cell; }
72 bool operator==(List const &other) const {
75 bool operator!=(List const &other) const {
91 friend bool is_empty<>(List const &);
146 friend bool is_empty<>(List const &);
164 operator bool() const { return this->_cell; }
169 bool operator==(List const &other) const {
172 bool operator!=(List const &other) const {
188 friend bool is_empt
[all...]
H A Dshare.h35 operator bool() const { return _obj; }
69 bool operator==(ptr_shared<T1> const &other) const {
74 bool operator!=(ptr_shared<T1> const &other) const {
79 bool operator>(ptr_shared<T1> const &other) const {
84 bool operator<(ptr_shared<T1> const &other) const {
/inkscape/src/2geom/
H A Dsweeper.h156 bool operator<(Event const &other) const { return coord < other.coord; }
157 bool operator==(Event const &other) const { return coord == other.coord; }
158 operator bool() const { return !IS_NAN(coord); }
/inkscape/src/ui/tool/
H A Dnode.h103 bool isDegenerate() const { return _degenerate; } // True if the handle is retracted, i.e. has zero length.
105 virtual void setVisible(bool);
124 virtual bool _eventHandler(Inkscape::UI::Tools::ToolBase *event_context, GdkEvent *event);
126 virtual bool grabbed(GdkEventMotion *event);
128 virtual bool clicked(GdkEventButton *event);
132 virtual bool _hasDragTips() const { return true; }
141 bool _degenerate; // True if the handle is retracted, i.e. has zero length. This is used often internally so it makes sense to cache this
152 static bool _drag_out;
181 void setType(NodeType type, bool update_handles = true);
183 void showHandles(bool
[all...]

Completed in 32 milliseconds