summaryrefslogtreecommitdiff
path: root/include/sfx2/templateabstractview.hxx
blob: d85e45a21f526650254ce54336b0e7a3538ed8dc (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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
/* -*- 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 INCLUDED_SFX2_TEMPLATEABSTRACTVIEW_HXX
#define INCLUDED_SFX2_TEMPLATEABSTRACTVIEW_HXX

#include <sfx2/templateproperties.hxx>
#include <sfx2/thumbnailview.hxx>
#include <vcl/button.hxx>
#include <vcl/fixed.hxx>

//template thumbnail item defines
#define TEMPLATE_ITEM_MAX_WIDTH 160
#define TEMPLATE_ITEM_MAX_HEIGHT 148
#define TEMPLATE_ITEM_PADDING 5
#define TEMPLATE_ITEM_MAX_TEXT_LENGTH 20
#define TEMPLATE_ITEM_THUMBNAIL_MAX_HEIGHT 96

//template thumbnail height with a subtitle
#define TEMPLATE_ITEM_MAX_HEIGHT_SUB 160

//template thumbnail image defines
#define TEMPLATE_THUMBNAIL_MAX_HEIGHT TEMPLATE_ITEM_THUMBNAIL_MAX_HEIGHT - 2*TEMPLATE_ITEM_PADDING
#define TEMPLATE_THUMBNAIL_MAX_WIDTH TEMPLATE_ITEM_MAX_WIDTH - 2*TEMPLATE_ITEM_PADDING

class SfxDocumentTemplates;

enum class FILTER_APPLICATION
{
    NONE,
    WRITER,
    CALC,
    IMPRESS,
    DRAW
};

// Display template items depending on the generator application
class ViewFilter_Application
{
public:

    ViewFilter_Application (FILTER_APPLICATION App)
        : mApp(App)
    {}

    virtual ~ViewFilter_Application () {}

    bool operator () (const ThumbnailViewItem *pItem);

    static bool isFilteredExtension(FILTER_APPLICATION filter, const OUString &rExt);
    bool isValid (const OUString& rPath) const;

protected:

    FILTER_APPLICATION mApp;
};

class ViewFilter_Keyword
{
public:

    ViewFilter_Keyword (const OUString &rKeyword)
        : maKeyword(rKeyword)
    {}

    bool operator () (const ThumbnailViewItem *pItem);

private:

    OUString maKeyword;
};

class SFX2_DLLPUBLIC TemplateAbstractView : public ThumbnailView
{
public:

    TemplateAbstractView(vcl::Window *pParent, WinBits nWinStyle, bool bDisableTransientChildren);
    TemplateAbstractView(vcl::Window* pParent);

    virtual ~TemplateAbstractView();
    virtual void dispose() SAL_OVERRIDE;

    void insertItem (const TemplateItemProperties &rTemplate);

    // Fill view with new item list
    void insertItems (const std::vector<TemplateItemProperties> &rTemplates);

    // Fill view with template folders thumbnails
    virtual void Populate () { }

    virtual void reload () { }

    virtual void showRootRegion () = 0;

    virtual void showRegion (ThumbnailViewItem *pItem) = 0;

    virtual sal_uInt16 createRegion (const OUString &rName) = 0;

    // Return if we can have regions inside the current region
    virtual bool isNestedRegionAllowed () const = 0;

    // Return if we can import templates to the current region
    virtual bool isImportAllowed () const = 0;

    sal_uInt16 getCurRegionId () const { return mnCurRegionId;}

    const OUString& getCurRegionName () const { return maCurRegionName;}

    // Check if the root region is visible or not.
    bool isNonRootRegionVisible () const { return mnCurRegionId > 0;}

    void setOpenRegionHdl(const Link<> &rLink);

    void setOpenTemplateHdl (const Link<> &rLink);

    static BitmapEx scaleImg (const BitmapEx &rImg, long width, long height);

    static BitmapEx getDefaultThumbnail( const OUString& rPath );

    static BitmapEx fetchThumbnail (const OUString &msURL, long width, long height);

protected:

    DECL_LINK(ShowRootRegionHdl, void*);

    virtual void OnItemDblClicked(ThumbnailViewItem *pItem) SAL_OVERRIDE;

    virtual void Paint( vcl::RenderContext& rRenderContext, const Rectangle& rRect ) SAL_OVERRIDE;

protected:

    sal_uInt16 mnCurRegionId;
    OUString maCurRegionName;

    VclPtr<PushButton> maAllButton;
    VclPtr<FixedText>  maFTName;

    Link<> maOpenRegionHdl;
    Link<> maOpenTemplateHdl;
};

#endif // INCLUDED_SFX2_TEMPLATEABSTRACTVIEW_HXX

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