diff options
Diffstat (limited to 'include/vcl/weld.hxx')
-rw-r--r-- | include/vcl/weld.hxx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/vcl/weld.hxx b/include/vcl/weld.hxx index e4524a4dc9b5..29167234a31c 100644 --- a/include/vcl/weld.hxx +++ b/include/vcl/weld.hxx @@ -1253,11 +1253,20 @@ public: const OUString* pIconName, TreeIter* pRet) = 0; + virtual void insert(int pos, const OUString* pStr, const OUString* pId, + const VirtualDevice* pIcon, TreeIter* pRet) + = 0; + void append(const OUString& rId, const OUString& rStr, const OUString& rImage) { insert(-1, &rStr, &rId, &rImage, nullptr); } + void append(const OUString& rId, const OUString& rStr, const VirtualDevice* pImage) + { + insert(-1, &rStr, &rId, pImage, nullptr); + } + void connect_selection_changed(const Link<IconView&, void>& rLink) { m_aSelectionChangeHdl = rLink; |