Branch data Line data Source code
1 : : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : : /*************************************************************************
3 : : *
4 : : * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
5 : : *
6 : : * Copyright 2000, 2010 Oracle and/or its affiliates.
7 : : *
8 : : * OpenOffice.org - a multi-platform office productivity suite
9 : : *
10 : : * This file is part of OpenOffice.org.
11 : : *
12 : : * OpenOffice.org is free software: you can redistribute it and/or modify
13 : : * it under the terms of the GNU Lesser General Public License version 3
14 : : * only, as published by the Free Software Foundation.
15 : : *
16 : : * OpenOffice.org is distributed in the hope that it will be useful,
17 : : * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 : : * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 : : * GNU Lesser General Public License version 3 for more details
20 : : * (a copy is included in the LICENSE file that accompanied this code).
21 : : *
22 : : * You should have received a copy of the GNU Lesser General Public License
23 : : * version 3 along with OpenOffice.org. If not, see
24 : : * <http://www.openoffice.org/license.html>
25 : : * for a copy of the LGPLv3 License.
26 : : *
27 : : ************************************************************************/
28 : :
29 : : #ifndef _SVTOOLS_IMAGEMGR_HXX
30 : : #define _SVTOOLS_IMAGEMGR_HXX
31 : :
32 : : #include "svtools/svtdllapi.h"
33 : : #include "sal/types.h"
34 : :
35 : : class Image;
36 : : class String;
37 : : class INetURLObject;
38 : :
39 : : namespace svtools {
40 : :
41 : : struct VolumeInfo
42 : : {
43 : : sal_Bool m_bIsVolume;
44 : : sal_Bool m_bIsRemote;
45 : : sal_Bool m_bIsRemoveable;
46 : : sal_Bool m_bIsFloppy;
47 : : sal_Bool m_bIsCompactDisc;
48 : :
49 : 0 : VolumeInfo() :
50 : : m_bIsVolume ( sal_False ),
51 : : m_bIsRemote ( sal_False ),
52 : : m_bIsRemoveable ( sal_False ),
53 : : m_bIsFloppy ( sal_False ),
54 : 0 : m_bIsCompactDisc( sal_False ) {}
55 : :
56 : 0 : VolumeInfo( sal_Bool _bIsVolume,
57 : : sal_Bool _bIsRemote,
58 : : sal_Bool _bIsRemoveable,
59 : : sal_Bool _bIsFloppy,
60 : : sal_Bool _bIsCompactDisc ) :
61 : : m_bIsVolume ( _bIsVolume ),
62 : : m_bIsRemote ( _bIsRemote ),
63 : : m_bIsRemoveable ( _bIsRemoveable ),
64 : : m_bIsFloppy ( _bIsFloppy ),
65 : 0 : m_bIsCompactDisc( _bIsCompactDisc ) {}
66 : : };
67 : :
68 : : }
69 : :
70 : : class SvFileInformationManager
71 : : {
72 : : private:
73 : : SVT_DLLPRIVATE static String GetDescription_Impl( const INetURLObject& rObject, sal_Bool bDetectFolder );
74 : :
75 : : public:
76 : : SVT_DLLPUBLIC static Image GetImage( const INetURLObject& rURL, sal_Bool bBig = sal_False );
77 : : SVT_DLLPUBLIC static Image GetFileImage( const INetURLObject& rURL, sal_Bool bBig = sal_False );
78 : : SVT_DLLPUBLIC static Image GetImageNoDefault( const INetURLObject& rURL, sal_Bool bBig = sal_False );
79 : : SVT_DLLPUBLIC static Image GetFolderImage( const svtools::VolumeInfo& rInfo, sal_Bool bBig = sal_False );
80 : :
81 : : SVT_DLLPUBLIC static String GetDescription( const INetURLObject& rObject );
82 : : SVT_DLLPUBLIC static String GetFileDescription( const INetURLObject& rObject );
83 : : SVT_DLLPUBLIC static String GetFolderDescription( const svtools::VolumeInfo& rInfo );
84 : : };
85 : :
86 : : #endif
87 : :
88 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|