InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
IAutoActivateFontPref.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner:
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 // ___________________
15 //
16 // ADOBE CONFIDENTIAL
17 //
18 // Copyright 2013 Adobe Systems Incorporated
19 // All Rights Reserved.
20 //
21 // NOTICE: All information contained herein is, and remains
22 // the property of Adobe Systems Incorporated and its suppliers,
23 // if any. The intellectual and technical concepts contained
24 // herein are proprietary to Adobe Systems Incorporated and its
25 // suppliers and are protected by all applicable intellectual property
26 // laws, including trade secret and copyright laws.
27 // Dissemination of this information or reproduction of this material
28 // is strictly forbidden unless prior written permission is obtained
29 // from Adobe Systems Incorporated.
30 //
31 //========================================================================================
32 
33 #include "IPMUnknown.h"
34 #include "FontUsageDialogID.h"
35 
37 {
38 public:
39  enum { kDefaultIID = IID_IAUTOACTIVATEFONTPREFS};
40 
41  virtual const bool16 GetAutoActivatePref() = 0;
42  virtual void SetAutoActivatePref(const bool16 ) = 0;
43  virtual const bool16 GetAutoActivateShowDialog() = 0;
44  virtual void SetAutoActivateShowDialog(const bool16 showDialog) = 0;
45  virtual const bool16 GetThresholdShowDialog() = 0;
46  virtual void SetThresholdShowDialog(const bool16 showDialog) = 0;
47 };
48 
49