Version 6.1.0.2, tag libreoffice-6.1.0.2
[LibreOffice.git] / basctl / source / inc / doceventnotifier.hxx
blob664330d97733afdd4cf1945aba1b99c697e74bd1
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 #ifndef INCLUDED_BASCTL_SOURCE_INC_DOCEVENTNOTIFIER_HXX
21 #define INCLUDED_BASCTL_SOURCE_INC_DOCEVENTNOTIFIER_HXX
23 #include <com/sun/star/frame/XModel.hpp>
25 #include <rtl/ref.hxx>
28 namespace basctl
32 class ScriptDocument;
35 class SAL_NO_VTABLE DocumentEventListener
37 public:
38 DocumentEventListener(const DocumentEventListener&) = delete;
39 const DocumentEventListener& operator=(const DocumentEventListener&) = delete;
40 DocumentEventListener() = default;
42 virtual void onDocumentCreated( const ScriptDocument& _rDocument ) = 0;
43 virtual void onDocumentOpened( const ScriptDocument& _rDocument ) = 0;
44 virtual void onDocumentSave( const ScriptDocument& _rDocument ) = 0;
45 virtual void onDocumentSaveDone( const ScriptDocument& _rDocument ) = 0;
46 virtual void onDocumentSaveAs( const ScriptDocument& _rDocument ) = 0;
47 virtual void onDocumentSaveAsDone( const ScriptDocument& _rDocument ) = 0;
48 virtual void onDocumentClosed( const ScriptDocument& _rDocument ) = 0;
49 virtual void onDocumentTitleChanged( const ScriptDocument& _rDocument ) = 0;
50 virtual void onDocumentModeChanged( const ScriptDocument& _rDocument ) = 0;
52 virtual ~DocumentEventListener();
56 /** allows registering at theGlobalEventBroadcaster for global document events
58 class DocumentEventNotifier
60 public:
61 /** create a notifier instance which notifies about events of all documents in the whole application
63 DocumentEventNotifier (DocumentEventListener&);
65 /** creates a notifier instance which notifies about events at a single document
67 DocumentEventNotifier (DocumentEventListener&, css::uno::Reference<css::frame::XModel> const& rxDocument);
69 ~DocumentEventNotifier();
71 public:
72 void dispose();
74 private:
75 class Impl;
76 rtl::Reference<Impl> m_pImpl;
80 } // namespace basctl
83 #endif // INCLUDED_BASCTL_SOURCE_INC_DOCEVENTNOTIFIER_HXX
85 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */