InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IRelinkDialogOptions.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: lance bushore
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 __IRelinkDialogOptions_h__
25 #define __IRelinkDialogOptions_h__
26 
27 #include "IPMUnknown.h"
28 #include "ImportExportUIID.h"
29 
34 {
35  public:
36  /* Default IID to be used by UseDefaultIID() */
37  enum { kDefaultIID = IID_IRELINKDIALOGOPTIONS };
38 
40  virtual void SetSearchForMissing(bool search) = 0;
42  virtual bool GetSearchForMissing() const = 0;
44  virtual void EnableSearchForMissing(bool enable) = 0;
46  virtual bool IsSearchForMissingEnabled() const = 0;
47 
49  virtual void SetShowFilterPrefs(bool show) = 0;
51  virtual bool GetShowFilterPrefs() const = 0;
53  virtual void EnableShowFilterPrefs(bool enable) = 0;
55  virtual bool IsShowFilterPrefsEnabled() const = 0;
56 
58  virtual void SetUserSkippedThisLink(bool skipped) = 0;
60  virtual bool GetUserSkippedThisLink() const = 0;
62  virtual void SetShowSkipButton(bool yesNo) = 0;
64  virtual bool GetShowSkipButton(void) const = 0;
65 
67  virtual void SetRelinkCloudButtonClicked(bool clicked) = 0;
69  virtual bool GetRelinkCloudButtonClicked() const = 0;
71  virtual void SetShowPreview(bool yesNo) = 0;
73  virtual bool GetShowPreview(void) const = 0;
74 };
75 
76 #endif //__IRelinkDialogOptions_h__
77