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 : #ifndef BASCTL_DOCEVENTNOTIFIER_HXX
21 : #define BASCTL_DOCEVENTNOTIFIER_HXX
22 :
23 : #include <com/sun/star/frame/XModel.hpp>
24 :
25 : #include <rtl/ref.hxx>
26 :
27 : #include <boost/noncopyable.hpp>
28 :
29 :
30 : namespace basctl
31 : {
32 :
33 :
34 : class ScriptDocument;
35 :
36 :
37 : //= DocumentEventListener
38 :
39 0 : class SAL_NO_VTABLE DocumentEventListener : ::boost::noncopyable
40 : {
41 : public:
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;
51 :
52 : virtual ~DocumentEventListener();
53 : };
54 :
55 :
56 : //= DocumentEventNotifier
57 :
58 : /** allows registering at theGlobalEventBroadcaster for global document events
59 : */
60 : class DocumentEventNotifier
61 : {
62 : public:
63 : /** create a notifier instance which notifies about events of all documents in the whole application
64 : */
65 : DocumentEventNotifier (DocumentEventListener&);
66 :
67 : /** creates a notifier instance which notifies about events at a single document
68 : */
69 : DocumentEventNotifier (DocumentEventListener&, com::sun::star::uno::Reference<com::sun::star::frame::XModel> const& rxDocument);
70 :
71 : ~DocumentEventNotifier();
72 :
73 : public:
74 : void dispose();
75 :
76 : private:
77 : class Impl;
78 : rtl::Reference<Impl> m_pImpl;
79 : };
80 :
81 :
82 : } // namespace basctl
83 :
84 :
85 : #endif // BASCTL_DOCEVENTNOTIFIER_HXX
86 :
87 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|