bump product version to 6.3.0.0.beta1
[LibreOffice.git] / sd / source / ui / slidesorter / model / SlsPageEnumerationProvider.cxx
blob29fd7a1baa4faf2e88406853caa29b3f623714bf
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
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/.
9 * This file incorporates work covered by the following license notice:
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 .
20 #include <model/SlsPageEnumerationProvider.hxx>
21 #include <model/SlsPageEnumeration.hxx>
22 #include <model/SlsPageDescriptor.hxx>
24 namespace sd { namespace slidesorter { namespace model {
26 namespace {
28 class AllPagesPredicate
30 public:
31 bool operator() (const SharedPageDescriptor&) const
33 return true;
37 class SelectedPagesPredicate
39 public:
40 bool operator() (const SharedPageDescriptor& rpDescriptor)
42 return rpDescriptor->HasState(PageDescriptor::ST_Selected);
46 class VisiblePagesPredicate
48 public:
49 bool operator() (const SharedPageDescriptor& rpDescriptor)
51 return rpDescriptor->HasState(PageDescriptor::ST_Visible);
57 PageEnumeration PageEnumerationProvider::CreateAllPagesEnumeration (
58 const SlideSorterModel& rModel)
60 return PageEnumeration::Create(rModel, AllPagesPredicate());
63 PageEnumeration PageEnumerationProvider::CreateSelectedPagesEnumeration (
64 const SlideSorterModel& rModel)
66 return PageEnumeration::Create(
67 rModel,
68 SelectedPagesPredicate());
71 PageEnumeration PageEnumerationProvider::CreateVisiblePagesEnumeration (
72 const SlideSorterModel& rModel)
74 return PageEnumeration::Create(
75 rModel,
76 VisiblePagesPredicate());
79 } } } // end of namespace ::sd::slidesorter::model
81 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */