summaryrefslogtreecommitdiff
path: root/svtools/inc
diff options
context:
space:
mode:
authorDirk Völzke <dv@openoffice.org>2001-07-17 11:43:22 +0000
committerDirk Völzke <dv@openoffice.org>2001-07-17 11:43:22 +0000
commit4ee5ff2d1c68fd7bd5d71496636ad0bc0f618944 (patch)
tree118d09e8749576017a619330c25c9adcc9bd909d /svtools/inc
parent844f527bc9455e0a1809a05192de7b9a958dd7d8 (diff)
#88655# Added class QueryDeleteDlg_Impl
Diffstat (limited to 'svtools/inc')
-rw-r--r--svtools/inc/fileview.hxx33
1 files changed, 31 insertions, 2 deletions
diff --git a/svtools/inc/fileview.hxx b/svtools/inc/fileview.hxx
index 6d11249a8725..883a830e3370 100644
--- a/svtools/inc/fileview.hxx
+++ b/svtools/inc/fileview.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fileview.hxx,v $
*
- * $Revision: 1.4 $
+ * $Revision: 1.5 $
*
- * last change: $Author: dv $ $Date: 2001-07-13 13:36:24 $
+ * last change: $Author: dv $ $Date: 2001-07-17 12:43:22 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -67,6 +67,9 @@
#include <vcl/ctrl.hxx>
#include <vcl/image.hxx>
+#include <vcl/fixed.hxx>
+#include <vcl/button.hxx>
+#include <vcl/dialog.hxx>
// class SvtFileView -----------------------------------------------------
@@ -139,5 +142,31 @@ struct SvtContentEntry
mbIsFolder( bIsFolder ), maURL( rURL ) {}
};
+namespace svtools {
+// QueryDeleteDlg_Impl
+
+class QueryDeleteDlg_Impl : public ModalDialog
+{
+ FixedText _aEntryLabel;
+ FixedText _aEntry;
+
+ FixedText _aQueryMsg;
+
+ PushButton _aYesButton;
+ PushButton _aNoButton;
+ CancelButton _aCancelButton;
+
+private:
+
+ DECL_STATIC_LINK( QueryDeleteDlg_Impl, ClickLink, PushButton* );
+
+public:
+
+ QueryDeleteDlg_Impl( Window* pParent,
+ const String& rName );
+};
+
+}
+
#endif // _SVT_FILEVIEW_HXX