InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IDatabaseObserver.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: John Dance
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // Copyright 1997-2010 Adobe Systems Incorporated. All rights reserved.
16 //
17 // NOTICE: Adobe permits you to use, modify, and distribute this file in accordance
18 // with the terms of the Adobe license agreement accompanying it. If you have received
19 // this file from a source other than Adobe, then your use, modification, or
20 // distribution of it requires the prior written permission of Adobe.
21 //
22 //========================================================================================
23 
24 #ifndef __IDATABASEOBSERVER__
25 #define __IDATABASEOBSERVER__
26 
27 #include "IPMUnknown.h"
28 
29 class IDataBase;
30 
48 class IDatabaseObserver : public IPMUnknown {
49 public:
50 
57  enum Observable {
58  kWatchDirties = 1,
63  kWatchAll = 0xffffffff
64  };
65 
72  virtual void SetDirty(IDataBase *db, UID id, ClassID clsID, ImplementationID tag, const bool16 dbModified) = 0;
73 
79  virtual void NewUID(IDataBase *db, UID id, ClassID clsID) = 0;
80 
86  virtual void DeleteUID(IDataBase *db, UID id, ClassID clsID) = 0;
87 
93  virtual void UndeleteUID(IDataBase *db, UID id, ClassID clsID) = 0;
94 
99  virtual void DestroyDeletedUID(IDataBase *db, UID id) = 0;
100 
104  virtual void BeginTransaction(IDataBase *db) = 0;
105 
109  virtual void EndTransaction(IDataBase *db) = 0;
110 
115  virtual void SetModified(IDataBase *db, bool16 modified) = 0;
116 
120  virtual void AttachedTo(IDataBase* db) = 0;
121 
125  virtual uint32 GetEventClassesToObserve() = 0;
126 };
127 
128 #endif // __IDATABASEOBSERVER__