InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IPasteboardColorsData.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Rich Gartland
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 __IPasteboardColorsData__
25 #define __IPasteboardColorsData__
26 
27 #include "IPMUnknown.h"
28 #include "SpreadID.h"
29 
34 {
35 public:
36  enum { kDefaultIID = IID_IPASTEBOARDCOLORSDATA }; // for UseDefaultIID()
37 
44  virtual void Set( int32 iPasteboardColorIndex,
45  int32 iPreviewBackgroundColorIndex,
46  int32 iBleedColorIndex,
47  int32 iSlugColorIndex) = 0;
48 
52  virtual void SetPasteboardColorIndex(int32 val) = 0;
53 
57  virtual void SetPreviewBackgroundColorIndex(int32 val) = 0;
58 
62  virtual void SetBleedColorIndex(int32 val) = 0;
63 
67  virtual void SetSlugColorIndex(int32 val) = 0;
68 
72  virtual const int32 GetPasteboardColorIndex() const = 0;
73 
77  virtual const int32 GetPreviewBackgroundColorIndex() const = 0;
78 
82  virtual const int32 GetBleedColorIndex() const = 0;
83 
87  virtual const int32 GetSlugColorIndex() const = 0;
88 
93  virtual void SetDataMatchPreviewColorToTheme(bool16) = 0;
94 
99  virtual bool16 GetDataMatchPreviewColorToTheme() = 0;
100 
101 };
102 
103 
104 
105 
106 #endif // __IPasteboardColorsData__