summaryrefslogtreecommitdiff
path: root/include/sfx2/recentdocsview.hxx
blob: 9cb77d35e1b5f7f89be78461db2c2bcea9101569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/* -*- 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/.
 */

#ifndef __SFX2_RECENTDOCSVIEW_HXX__
#define __SFX2_RECENTDOCSVIEW_HXX__

#include <sfx2/thumbnailview.hxx>
#include <sfx2/recentdocsviewitem.hxx>

#include <com/sun/star/frame/XFrame.hpp>
#include <com/sun/star/frame/XDispatchProvider.hpp>
#include <com/sun/star/frame/XDispatch.hpp>

struct LoadRecentFile
{
    ::com::sun::star::util::URL                                                 aTargetURL;
    ::com::sun::star::uno::Sequence< ::com::sun::star::beans::PropertyValue >   aArgSeq;
    ::com::sun::star::uno::Reference< ::com::sun::star::frame::XDispatch >      xDispatch;
};

enum APPLICATION_FILTER
{
    FILTER_NONE,
    FILTER_WRITER,
    FILTER_CALC,
    FILTER_IMPRESS,
    FILTER_DRAW,
    FILTER_DATABASE,
    FILTER_MATH,
};

class SFX2_DLLPUBLIC RecentDocsView :   protected ::comphelper::OBaseMutex,
                                        public ThumbnailView
{
public:
    RecentDocsView( Window* pParent );
    virtual ~RecentDocsView();

    void insertItem(const OUString &rURL, const OUString &rTitle);
    void loadRecentDocs();

    void SetThumbnailSize(long thumbnailSize);
    long GetThumbnailSize() const;
    void SetFilter(APPLICATION_FILTER filter);

    static bool isFilteredExtension(APPLICATION_FILTER filter, const OUString &rExt);
    static BitmapEx getDefaultThumbnail(const OUString &rURL);

    DECL_STATIC_LINK( RecentDocsView, ExecuteHdl_Impl, LoadRecentFile* );

protected:
    virtual void OnItemDblClicked(ThumbnailViewItem *pItem);

    bool isUnfilteredFile(const OUString &rURL) const;

    APPLICATION_FILTER mFilter;

    long    mnItemMaxSize;
    long    mnTextHeight;
    long    mnItemPadding;
    long    mnItemMaxTextLength;
};

#endif  // __SFX2_RECENTDOCSVIEW_HXX__

/* vim:set shiftwidth=4 softtabstop=4 expandtab: */