summaryrefslogtreecommitdiff
path: root/svtools/inc/uitest/uiobject.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'svtools/inc/uitest/uiobject.hxx')
-rw-r--r--svtools/inc/uitest/uiobject.hxx51
1 files changed, 0 insertions, 51 deletions
diff --git a/svtools/inc/uitest/uiobject.hxx b/svtools/inc/uitest/uiobject.hxx
index ff169749bf1a..16a137da7c7c 100644
--- a/svtools/inc/uitest/uiobject.hxx
+++ b/svtools/inc/uitest/uiobject.hxx
@@ -10,59 +10,8 @@
#include <memory>
#include <vcl/uitest/uiobject.hxx>
-class SvTreeListBox;
-class SvTreeListEntry;
class SvSimpleTable;
-class TreeListUIObject : public WindowUIObject
-{
-public:
- TreeListUIObject(const VclPtr<SvTreeListBox>& xTreeList);
-
- virtual StringMap get_state() override;
-
- static std::unique_ptr<UIObject> create(vcl::Window* pWindow);
-
- virtual void execute(const OUString& rAction,
- const StringMap& rParameters) override;
-
- virtual std::unique_ptr<UIObject> get_child(const OUString& rID) override;
-
- virtual std::set<OUString> get_children() const override;
-
-protected:
-
- virtual OUString get_name() const override;
-
-private:
-
- VclPtr<SvTreeListBox> mxTreeList;
-};
-
-class TreeListEntryUIObject : public UIObject
-{
-public:
-
- TreeListEntryUIObject(const VclPtr<SvTreeListBox>& xTreeList, SvTreeListEntry* pEntry);
-
- virtual StringMap get_state() override;
-
- virtual void execute(const OUString& rAction,
- const StringMap& rParameters) override;
-
- virtual std::unique_ptr<UIObject> get_child(const OUString& rID) override;
-
- virtual std::set<OUString> get_children() const override;
-
- virtual OUString get_type() const override;
-
-private:
-
- VclPtr<SvTreeListBox> mxTreeList;
-
- SvTreeListEntry* const mpEntry;
-};
-
class SimpleTableUIObject : public TreeListUIObject
{
public: