summaryrefslogtreecommitdiff
path: root/dbaccess/source/ui/inc/callbacks.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'dbaccess/source/ui/inc/callbacks.hxx')
-rw-r--r--dbaccess/source/ui/inc/callbacks.hxx10
1 files changed, 9 insertions, 1 deletions
diff --git a/dbaccess/source/ui/inc/callbacks.hxx b/dbaccess/source/ui/inc/callbacks.hxx
index 8ce83ec2edb9..d55edc6a63cb 100644
--- a/dbaccess/source/ui/inc/callbacks.hxx
+++ b/dbaccess/source/ui/inc/callbacks.hxx
@@ -30,9 +30,15 @@ struct ExecuteDropEvent;
namespace comphelper { class OInterfaceContainerHelper2; }
+namespace vcl
+{
+ class Window;
+}
+
namespace weld
{
class TreeIter;
+ class TreeView;
}
namespace dbaui
@@ -91,7 +97,9 @@ namespace dbaui
This selection is used for filling a ContextMenuExecuteEvent event for the given
control.
*/
- virtual css::uno::Any getCurrentSelection( Control& _rControl ) const = 0;
+ virtual css::uno::Any getCurrentSelection(weld::TreeView& rControl) const = 0;
+
+ virtual vcl::Window* getMenuParent(weld::TreeView& rControl) const = 0;
protected:
~IContextMenuProvider() {}