summaryrefslogtreecommitdiff
path: root/include/vcl/abstdlg.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'include/vcl/abstdlg.hxx')
-rw-r--r--include/vcl/abstdlg.hxx7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/vcl/abstdlg.hxx b/include/vcl/abstdlg.hxx
index 25b28c7d5510..da45dbe2f13a 100644
--- a/include/vcl/abstdlg.hxx
+++ b/include/vcl/abstdlg.hxx
@@ -26,13 +26,18 @@
namespace vcl { class Window; }
class ResId;
class Dialog;
+class Bitmap;
class VCL_DLLPUBLIC VclAbstractDialog
{
public:
virtual ~VclAbstractDialog();
-
virtual short Execute() = 0;
+
+ // Screenshot interface
+ virtual std::vector<OUString> getAllPageUIXMLDescriptions() const;
+ virtual void selectPageByUIXMLDescription(const OUString& rUIXMLDescription);
+ virtual Bitmap createScreenshot() const;
};
class VCL_DLLPUBLIC VclAbstractDialog2