summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorDirk Völzke <dv@openoffice.org>2001-07-13 12:36:24 +0000
committerDirk Völzke <dv@openoffice.org>2001-07-13 12:36:24 +0000
commit8477731949c84ca543006baca3494f455a9527bf (patch)
treeb313e69f1722f0c940011a0ecb0a902f5dcf0b23 /svtools
parent2fe3e15eb9cb90c14b34180b4dfd8567db9ba13d (diff)
#89496# Moved member variables to class SvtFileView_Impl
Diffstat (limited to 'svtools')
-rw-r--r--svtools/inc/fileview.hxx21
1 files changed, 9 insertions, 12 deletions
diff --git a/svtools/inc/fileview.hxx b/svtools/inc/fileview.hxx
index 399da49b6c62..6d11249a8725 100644
--- a/svtools/inc/fileview.hxx
+++ b/svtools/inc/fileview.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: fileview.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: pb $ $Date: 2001-07-05 12:46:04 $
+ * last change: $Author: dv $ $Date: 2001-07-13 13:36:24 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -79,28 +79,25 @@
#define FILEVIEW_SHOW_ALL 0x0070
class ViewTabListBox_Impl;
+class SvtFileView_Impl;
class SvLBoxEntry;
+class HeaderBar;
class SvtFileView : public Control
{
private:
- ViewTabListBox_Impl* mpView;
- sal_Bool mbOnlyFolder;
- sal_Bool mbAutoResize;
- String maViewURL;
- String maAllFilter;
- String maCurrentFilter;
- Image maFolderImage;
- Link maOpenDoneLink;
+ SvtFileView_Impl* mpImp;
void OpenFolder( const ::com::sun::star::uno::Sequence< ::rtl::OUString >& aContents );
+ DECL_LINK( HeaderSelect_Impl, HeaderBar * );
+
public:
SvtFileView( Window* pParent, const ResId& rResId, sal_Bool bOnlyFolder, sal_Bool bMultiSelection );
SvtFileView( Window* pParent, const ResId& rResId, sal_Int8 nFlags );
~SvtFileView();
- const String& GetViewURL() const { return maViewURL; }
+ const String& GetViewURL() const;
String GetURL( SvLBoxEntry* pEntry ) const;
String GetCurrentURL() const;
@@ -122,7 +119,7 @@ public:
void SetSelectHdl( const Link& rHdl );
void SetDoubleClickHdl( const Link& rHdl );
- void SetOpenDoneHdl( const Link& rHdl ) { maOpenDoneLink = rHdl; }
+ void SetOpenDoneHdl( const Link& rHdl );
ULONG GetSelectionCount() const;
SvLBoxEntry* FirstSelected() const;