Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #include "SlsGenericPageCache.hxx"
22 : #include "SlsRequestFactory.hxx"
23 : #include "cache/SlsPageCache.hxx"
24 : #include "model/SlideSorterModel.hxx"
25 :
26 : using namespace ::com::sun::star;
27 :
28 :
29 : namespace sd { namespace slidesorter { namespace cache {
30 :
31 :
32 : //===== PageCache =============================================================
33 :
34 0 : PageCache::PageCache (
35 : const Size& rPreviewSize,
36 : const bool bDoSuperSampling,
37 : const SharedCacheContext& rpCacheContext)
38 : : mpImplementation(
39 : new GenericPageCache(
40 : rPreviewSize,
41 : bDoSuperSampling,
42 0 : rpCacheContext))
43 : {
44 0 : }
45 :
46 :
47 :
48 :
49 0 : PageCache::~PageCache (void)
50 : {
51 0 : }
52 :
53 :
54 :
55 :
56 0 : void PageCache::ChangeSize (
57 : const Size& rPreviewSize,
58 : const bool bDoSuperSampling)
59 : {
60 0 : mpImplementation->ChangePreviewSize(rPreviewSize, bDoSuperSampling);
61 0 : }
62 :
63 :
64 :
65 :
66 0 : Bitmap PageCache::GetPreviewBitmap (
67 : const CacheKey aKey,
68 : const bool bResize)
69 : {
70 0 : return mpImplementation->GetPreviewBitmap(aKey, bResize);
71 : }
72 :
73 :
74 :
75 :
76 0 : Bitmap PageCache::GetMarkedPreviewBitmap (
77 : const CacheKey aKey,
78 : const bool bResize)
79 : {
80 0 : return mpImplementation->GetMarkedPreviewBitmap(aKey, bResize);
81 : }
82 :
83 :
84 :
85 :
86 0 : void PageCache::SetMarkedPreviewBitmap (
87 : const CacheKey aKey,
88 : const Bitmap& rMarkedBitmap)
89 : {
90 0 : mpImplementation->SetMarkedPreviewBitmap(aKey, rMarkedBitmap);
91 0 : }
92 :
93 :
94 :
95 :
96 0 : void PageCache::RequestPreviewBitmap (const CacheKey aKey)
97 : {
98 0 : return mpImplementation->RequestPreviewBitmap(aKey);
99 : }
100 :
101 :
102 :
103 :
104 0 : void PageCache::InvalidatePreviewBitmap (
105 : const CacheKey aKey,
106 : const bool bRequestPreview)
107 : {
108 0 : if (mpImplementation->InvalidatePreviewBitmap(aKey) && bRequestPreview)
109 0 : RequestPreviewBitmap(aKey);
110 0 : }
111 :
112 :
113 :
114 :
115 0 : void PageCache::InvalidateCache (const bool bUpdateCache)
116 : {
117 0 : mpImplementation->InvalidateCache(bUpdateCache);
118 0 : }
119 :
120 :
121 :
122 :
123 0 : void PageCache::SetPreciousFlag (
124 : const CacheKey aKey,
125 : const bool bIsPrecious)
126 : {
127 0 : mpImplementation->SetPreciousFlag(aKey, bIsPrecious);
128 0 : }
129 :
130 :
131 :
132 :
133 0 : void PageCache::Pause (void)
134 : {
135 0 : mpImplementation->Pause();
136 0 : }
137 :
138 :
139 :
140 :
141 0 : void PageCache::Resume (void)
142 : {
143 0 : mpImplementation->Resume();
144 0 : }
145 :
146 :
147 : } } } // end of namespace ::sd::slidesorter::cache
148 :
149 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|