summaryrefslogtreecommitdiff
path: root/padmin/source/progress.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'padmin/source/progress.hxx')
-rw-r--r--padmin/source/progress.hxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/padmin/source/progress.hxx b/padmin/source/progress.hxx
index 50449ac6d520..6f767099d083 100644
--- a/padmin/source/progress.hxx
+++ b/padmin/source/progress.hxx
@@ -2,7 +2,7 @@
/*************************************************************************
*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
- *
+ *
* Copyright 2000, 2010 Oracle and/or its affiliates.
*
* OpenOffice.org - a multi-platform office productivity suite
@@ -39,26 +39,26 @@ namespace padmin {
class ProgressDialog : public ModelessDialog
{
- FixedText maOperation;
- FixedText maFilename;
- FixedText maProgressTxt;
- CancelButton maCancelButton;
- ProgressBar maProgressBar;
-
+ FixedText maOperation;
+ FixedText maFilename;
+ FixedText maProgressTxt;
+ CancelButton maCancelButton;
+ ProgressBar maProgressBar;
+
int mnMax, mnMin;
BOOL mbCanceled;
-
+
public:
ProgressDialog( Window*, BOOL bCancelable = TRUE, int nMin = 0, int nMax = 100 );
~ProgressDialog();
-
+
DECL_LINK( ClickBtnHdl, Button* );
-
+
void setValue( int nValue );
void setRange( int nMin, int nMax ) { mnMin = nMin; mnMax = nMax; }
void startOperation( const String& );
void setFilename( const String& );
-
+
BOOL isCanceled() { return mbCanceled; }
};