diff options
author | Szymon Kłos <eszkadev@gmail.com> | 2015-06-04 16:39:44 +0200 |
---|---|---|
committer | Szymon Kłos <eszkadev@gmail.com> | 2015-07-16 09:52:46 +0200 |
commit | a736dc21c53513fd7b90c217a5271316a8351407 (patch) | |
tree | 1d56fb0b22d7f048aff7b3ab3da7d9035f65d134 /include/svtools | |
parent | c9934f5b46922bd10406ec7e7687c87ed7153680 (diff) |
added fields for name and filters
Change-Id: I758bb4e1009c44aad7f4f5d3d0e07939b9962ce5
Diffstat (limited to 'include/svtools')
-rw-r--r-- | include/svtools/RemoteFilesDialog.hxx | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/svtools/RemoteFilesDialog.hxx b/include/svtools/RemoteFilesDialog.hxx index 2ad82af1f4ae..0ae497f2de1e 100644 --- a/include/svtools/RemoteFilesDialog.hxx +++ b/include/svtools/RemoteFilesDialog.hxx @@ -21,6 +21,7 @@ #include <vcl/vclptr.hxx> #include <svtools/fileview.hxx> +#include <svtools/treelistentry.hxx> #include <officecfg/Office/Common.hxx> #include <com/sun/star/uno/Sequence.hxx> @@ -71,6 +72,8 @@ private: VclPtr<Edit> m_pPath_ed; VclPtr<SvtFileView> m_pFileView; VclPtr<FileViewContainer> m_pContainer; + VclPtr<ListBox> m_pFilter_lb; + VclPtr<Edit> m_pName_ed; std::vector<ServicePtr> m_aServices; @@ -79,6 +82,8 @@ private: /* If failure returns < 0 */ int GetSelectedServicePos(); + OUString getCurrentFilter(); + void OpenURL( OUString sURL ); DECL_LINK ( AddServiceHdl, void * ); @@ -86,6 +91,7 @@ private: DECL_LINK_TYPED ( EditServiceMenuHdl, MenuButton *, void ); DECL_LINK( DoubleClickHdl, void * ); + DECL_LINK( SelectHdl, void * ); }; #endif // INCLUDED_SVTOOLS_REMOTEFILESDIALOG_HXX |