cid#1640468 Dereference after null check
[LibreOffice.git] / sd / source / ui / sidebar / MasterPageContainerFiller.hxx
blobb08452ab681bf00716db429de09d38e496221559
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 #pragma once
22 #include <memory>
23 #include "MasterPageContainer.hxx"
24 #include "MasterPageDescriptor.hxx"
25 #include <tools/AsynchronousTask.hxx>
27 namespace sd
29 class TemplateScanner;
30 class TemplateEntry;
33 namespace sd::sidebar
35 /** Fill a MasterPageContainer with information about the available master
36 pages. These are provided by one default page and from the existing
37 Impress templates. This is done asynchronously.
39 class MasterPageContainerFiller : public ::sd::tools::AsynchronousTask
41 public:
42 class ContainerAdapter
44 public:
45 virtual MasterPageContainer::Token
46 PutMasterPage(const SharedMasterPageDescriptor& rpDescriptor)
47 = 0;
48 /** This method is called when all Impress templates have been added
49 to the container via the PutMasterPage() method.
51 virtual void FillingDone() = 0;
53 protected:
54 ~ContainerAdapter() {}
57 explicit MasterPageContainerFiller(ContainerAdapter& rContainerAdapter);
58 virtual ~MasterPageContainerFiller();
60 /** Run the next step of the task. After HasNextStep() returns false
61 this method should ignore further calls.
63 virtual void RunNextStep() override;
65 /** Return <TRUE/> when there is at least one more step to execute.
66 When the task has been executed completely then <FALSE/> is
67 returned.
69 virtual bool HasNextStep() override;
71 private:
72 ContainerAdapter& mrContainerAdapter;
73 // Remember what the next step has to do.
74 enum State
76 INITIALIZE_TEMPLATE_SCANNER,
77 SCAN_TEMPLATE,
78 ADD_TEMPLATE,
79 ERROR,
80 DONE
81 } meState;
82 ::std::unique_ptr<TemplateScanner> mpScannerTask;
83 const TemplateEntry* mpLastAddedEntry;
84 int mnIndex;
86 State ScanTemplate();
87 State AddTemplate();
90 } // end of namespace sd::sidebar
92 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */