diff options
Diffstat (limited to 'dw/widget.hh')
-rw-r--r-- | dw/widget.hh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/dw/widget.hh b/dw/widget.hh index d045ffc2..bfbf1e91 100644 --- a/dw/widget.hh +++ b/dw/widget.hh @@ -105,6 +105,11 @@ private: Widget *parent; /** + * \brief ... + */ + Widget *quasiParent; + + /** * \brief The generating widget, NULL for top-level widgets, or if * not set; in the latter case, the effective generator (see * getGenerator) is the parent. @@ -390,6 +395,7 @@ public: inline bool wasAllocated () { return flags & WAS_ALLOCATED; } void setParent (Widget *parent); + void setQuasiParent (Widget *quasiParent); void setGenerator (Widget *generator) { this->generator = generator; } |