InDesign SDK  20.5
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
DVPanelView.h
1 //========================================================================================
2 //
3 // $File$
4 //
5 // Owner: Dave Burnard
6 //
7 // $Author$
8 //
9 // $DateTime$
10 //
11 // $Revision$
12 //
13 // $Change$
14 //
15 // ADOBE CONFIDENTIAL
16 //
17 // Copyright 1997-2008 Adobe Systems Incorporated. All rights reserved.
18 //
19 // NOTICE: All information contained herein is, and remains
20 // the property of Adobe Systems Incorporated and its suppliers,
21 // if any. The intellectual and technical concepts contained
22 // herein are proprietary to Adobe Systems Incorporated and its
23 // suppliers and may be covered by U.S. and Foreign Patents,
24 // patents in process, and are protected by trade secret or copyright law.
25 // Dissemination of this information or reproduction of this material
26 // is strictly forbidden unless prior written permission is obtained
27 // from Adobe Systems Incorporated.
28 //
29 //========================================================================================
30 
31 #ifndef __DVPanelView__
32 #define __DVPanelView__
33 
34 
35 #include "DVBasePanelView.h"
36 
37 #ifdef DV_WIDGET_BUILD
38 #endif
39 
44 class DV_ DVPanelView : public DVBasePanelView
45 {
46  typedef DVBasePanelView inherited;
47 public:
48  DVPanelView(IPMUnknown *boss) ;
49  virtual ~DVPanelView();
50 
51  virtual void DoPostCreate();
52 
53 private:
54  void Draw(IViewPort* viewPort, SysRgn updateRgn); // not supported by DVPanelView
55 };
56 
62 {
63  typedef DVBasePanelView inherited;
64 public:
66  virtual ~AGMDrawnPanelView();
67 
68  virtual void Draw(IViewPort* viewPort, SysRgn updateRgn); // supported by AGMDrawnPanelView
69  virtual void DoPostCreate();
70 };
71 
72 
73 #endif
74