summaryrefslogtreecommitdiff
path: root/fpicker/source/win32/filepicker/filepickerstate.hxx
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2017-05-29 13:38:44 +0200
committerMichael Stahl <mstahl@redhat.com>2017-05-29 15:46:20 +0200
commit200f02d55c806c3ae7ce054b43e66013c508062c (patch)
tree04917633fd6df0f13993472c616804b5cd0615cd /fpicker/source/win32/filepicker/filepickerstate.hxx
parent32260c40b265b97358fc426fb9f849c243dc7dd4 (diff)
fpicker: remove legacy XP FilePicker implementation
Long live VistaFilePicker. Change-Id: I362a582a1922abad66ecfd1f5c4ce1a5a25fcd11
Diffstat (limited to 'fpicker/source/win32/filepicker/filepickerstate.hxx')
-rw-r--r--fpicker/source/win32/filepicker/filepickerstate.hxx150
1 files changed, 0 insertions, 150 deletions
diff --git a/fpicker/source/win32/filepicker/filepickerstate.hxx b/fpicker/source/win32/filepicker/filepickerstate.hxx
deleted file mode 100644
index c08ceb8a3f61..000000000000
--- a/fpicker/source/win32/filepicker/filepickerstate.hxx
+++ /dev/null
@@ -1,150 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-
-#ifndef INCLUDED_FPICKER_SOURCE_WIN32_FILEPICKER_FILEPICKERSTATE_HXX
-#define INCLUDED_FPICKER_SOURCE_WIN32_FILEPICKER_FILEPICKERSTATE_HXX
-
-#include <sal/types.h>
-#include "controlcommand.hxx"
-#include <com/sun/star/uno/Any.hxx>
-#include <com/sun/star/uno/Sequence.hxx>
-#include <rtl/ustring.hxx>
-
-#define WIN32_LEAN_AND_MEAN
-#if defined _MSC_VER
-#pragma warning(push, 1)
-#endif
-#include <windows.h>
-#if defined _MSC_VER
-#pragma warning(pop)
-#endif
-
-
-class CControlCommand;
-class CFileOpenDialog;
-
-
-// declaration
-
-
-class CFilePickerState
-{
-public:
- virtual ~CFilePickerState( );
-
- virtual void SAL_CALL setValue( sal_Int16 aControlId, sal_Int16 aControlAction, const css::uno::Any& aValue ) = 0;
-
- virtual css::uno::Any SAL_CALL getValue( sal_Int16 aControlId, sal_Int16 aControlAction ) = 0;
-
- virtual void SAL_CALL enableControl( sal_Int16 aControlId, bool bEnable ) = 0;
-
- virtual void SAL_CALL setLabel( sal_Int16 aControlId, const OUString& aLabel ) = 0;
-
- virtual OUString SAL_CALL getLabel( sal_Int16 aControlId ) = 0;
-
- virtual css::uno::Sequence< OUString > SAL_CALL getFiles( CFileOpenDialog* aFileOpenDialog ) = 0;
-
- virtual OUString SAL_CALL getDisplayDirectory( CFileOpenDialog* aFileOpenDialog ) = 0;
-};
-
-
-// this class is not thread-safe
-
-
-class CNonExecuteFilePickerState : public CFilePickerState
-{
-public:
- CNonExecuteFilePickerState( );
-
- virtual ~CNonExecuteFilePickerState( ) override;
-
- virtual void SAL_CALL setValue( sal_Int16 aControlId, sal_Int16 aControlAction, const css::uno::Any& aValue ) override;
-
- virtual css::uno::Any SAL_CALL getValue( sal_Int16 aControlId, sal_Int16 aControlAction ) override;
-
- virtual void SAL_CALL enableControl( sal_Int16 aControlId, bool bEnable ) override;
-
- virtual void SAL_CALL setLabel( sal_Int16 aControlId, const OUString& aLabel ) override;
-
- virtual OUString SAL_CALL getLabel( sal_Int16 aControlId ) override;
-
- virtual css::uno::Sequence< OUString > SAL_CALL getFiles( CFileOpenDialog* aFileOpenDialog ) override;
-
- virtual OUString SAL_CALL getDisplayDirectory( CFileOpenDialog* aFileOpenDialog ) override;
-
- void SAL_CALL reset( );
-
- CControlCommand* SAL_CALL getControlCommand( ) const;
-
-protected:
- void SAL_CALL addControlCommand( CControlCommand* aControlCommand );
-
-private:
- CControlCommand* m_FirstControlCommand;
-};
-
-
-// this class is not thread-safe
-
-
-class CExecuteFilePickerState : public CFilePickerState
-{
-public:
- explicit CExecuteFilePickerState( HWND hwndDlg = nullptr );
-
- virtual void SAL_CALL setValue( sal_Int16 aControlId, sal_Int16 aControlAction, const css::uno::Any& aValue ) override;
-
- virtual css::uno::Any SAL_CALL getValue( sal_Int16 aControlId, sal_Int16 aControlAction ) override;
-
- virtual void SAL_CALL enableControl( sal_Int16 aControlId, bool bEnable ) override;
-
- virtual void SAL_CALL setLabel( sal_Int16 aControlId, const OUString& aLabel ) override;
-
- virtual OUString SAL_CALL getLabel( sal_Int16 aControlId ) override;
-
- virtual css::uno::Sequence< OUString > SAL_CALL getFiles( CFileOpenDialog* aFileOpenDialog ) override;
-
- virtual OUString SAL_CALL getDisplayDirectory( CFileOpenDialog* aFileOpenDialog ) override;
-
- void SAL_CALL initFilePickerControls( CControlCommand* firstControlCommand );
-
- void SAL_CALL cacheControlState( HWND hwndControl, CFilePickerState* aFilePickerState );
-
- void SAL_CALL setHwnd( HWND hwndDlg );
-
-private:
-
- static inline bool SAL_CALL IsListboxControl( HWND hwndControl );
-
- static inline sal_Int16 SAL_CALL ListboxIdToListboxLabelId( sal_Int16 aListboxId );
-
- inline HWND SAL_CALL GetListboxLabelItem( sal_Int16 aControlId ) const;
-
- // returns a hwnd for a control if successful
- // if bIncludeStdCtrls is false, the standard file dialog
- // controls like OK button, etc. will not be considered
- // the function return 0 on failure
- HWND SAL_CALL GetHwndDlgItem( sal_Int16 aControlId, bool bIncludeStdCtrls = true ) const;
-
- HWND m_hwndDlg;
-};
-
-#endif
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */