]> git.saurik.com Git - wxWidgets.git/blob - src/msw/ole/oleutils.cpp
Fixed event arg in notebook.h, #ifdefed out some functions in oleutils that
[wxWidgets.git] / src / msw / ole / oleutils.cpp
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: ole/oleutils.cpp
3 // Purpose: implementation of OLE helper functions
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 19.02.98
7 // RCS-ID: $Id$
8 // Copyright: (c) 1998 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
11
12 // ============================================================================
13 // Declarations
14 // ============================================================================
15
16 // ----------------------------------------------------------------------------
17 // headers
18 // ----------------------------------------------------------------------------
19
20 #ifdef __GNUG__
21 #pragma implementation "oleutils.h"
22 #endif
23
24 // For compilers that support precompilation, includes "wx.h".
25 #define IN_WX_MAIN_CPP
26 #include "wx/wxprec.h"
27
28 #if defined(__BORLANDC__)
29 #pragma hdrstop
30 #endif
31
32 #include <wx/setup.h>
33
34 #if USE_DRAG_AND_DROP
35
36 #include <wx/log.h>
37
38 #include <windows.h>
39
40 // OLE
41 #include <wx/msw/ole/uuid.h>
42 #include <wx/msw/ole/oleutils.h>
43
44 #ifndef __BORLANDC__
45 #include <docobj.h>
46 #endif
47
48 // ============================================================================
49 // Implementation
50 // ============================================================================
51
52 // return TRUE if the iid is in the array
53 bool IsIidFromList(REFIID riid, const IID *aIids[], size_t nCount)
54 {
55 for ( size_t i = 0; i < nCount; i++ ) {
56 if ( riid == *aIids[i] )
57 return TRUE;
58 }
59
60 return FALSE;
61 }
62
63 // ----------------------------------------------------------------------------
64 // Debug support
65 // ----------------------------------------------------------------------------
66
67 #if defined(__DEBUG__) && defined(_MSC_VER) && (_MSC_VER > 1000)
68 const char *GetIidName(REFIID riid)
69 {
70 // an association between symbolic name and numeric value of an IID
71 struct KNOWN_IID {
72 const IID *pIid;
73 const char *szName;
74 };
75
76 // construct the table containing all known interfaces
77 #define ADD_KNOWN_IID(name) { &IID_I##name, #name }
78
79 static const KNOWN_IID aKnownIids[] = {
80 ADD_KNOWN_IID(AdviseSink),
81 ADD_KNOWN_IID(AdviseSink2),
82 ADD_KNOWN_IID(BindCtx),
83 ADD_KNOWN_IID(ClassFactory),
84 ADD_KNOWN_IID(ContinueCallback),
85 ADD_KNOWN_IID(EnumOleDocumentViews),
86 ADD_KNOWN_IID(OleCommandTarget),
87 ADD_KNOWN_IID(OleDocument),
88 ADD_KNOWN_IID(OleDocumentSite),
89 ADD_KNOWN_IID(OleDocumentView),
90 ADD_KNOWN_IID(Print),
91 ADD_KNOWN_IID(DataAdviseHolder),
92 ADD_KNOWN_IID(DataObject),
93 ADD_KNOWN_IID(Debug),
94 ADD_KNOWN_IID(DebugStream),
95 ADD_KNOWN_IID(DfReserved1),
96 ADD_KNOWN_IID(DfReserved2),
97 ADD_KNOWN_IID(DfReserved3),
98 ADD_KNOWN_IID(Dispatch),
99 ADD_KNOWN_IID(DropSource),
100 ADD_KNOWN_IID(DropTarget),
101 ADD_KNOWN_IID(EnumCallback),
102 ADD_KNOWN_IID(EnumFORMATETC),
103 ADD_KNOWN_IID(EnumGeneric),
104 ADD_KNOWN_IID(EnumHolder),
105 ADD_KNOWN_IID(EnumMoniker),
106 ADD_KNOWN_IID(EnumOLEVERB),
107 ADD_KNOWN_IID(EnumSTATDATA),
108 ADD_KNOWN_IID(EnumSTATSTG),
109 ADD_KNOWN_IID(EnumString),
110 ADD_KNOWN_IID(EnumUnknown),
111 ADD_KNOWN_IID(EnumVARIANT),
112 ADD_KNOWN_IID(ExternalConnection),
113 ADD_KNOWN_IID(InternalMoniker),
114 ADD_KNOWN_IID(LockBytes),
115 ADD_KNOWN_IID(Malloc),
116 ADD_KNOWN_IID(Marshal),
117 ADD_KNOWN_IID(MessageFilter),
118 ADD_KNOWN_IID(Moniker),
119 ADD_KNOWN_IID(OleAdviseHolder),
120 ADD_KNOWN_IID(OleCache),
121 ADD_KNOWN_IID(OleCache2),
122 ADD_KNOWN_IID(OleCacheControl),
123 ADD_KNOWN_IID(OleClientSite),
124 ADD_KNOWN_IID(OleContainer),
125 ADD_KNOWN_IID(OleInPlaceActiveObject),
126 ADD_KNOWN_IID(OleInPlaceFrame),
127 ADD_KNOWN_IID(OleInPlaceObject),
128 ADD_KNOWN_IID(OleInPlaceSite),
129 ADD_KNOWN_IID(OleInPlaceUIWindow),
130 ADD_KNOWN_IID(OleItemContainer),
131 ADD_KNOWN_IID(OleLink),
132 ADD_KNOWN_IID(OleManager),
133 ADD_KNOWN_IID(OleObject),
134 ADD_KNOWN_IID(OlePresObj),
135 ADD_KNOWN_IID(OleWindow),
136 ADD_KNOWN_IID(PSFactory),
137 ADD_KNOWN_IID(ParseDisplayName),
138 ADD_KNOWN_IID(Persist),
139 ADD_KNOWN_IID(PersistFile),
140 ADD_KNOWN_IID(PersistStorage),
141 ADD_KNOWN_IID(PersistStream),
142 ADD_KNOWN_IID(ProxyManager),
143 ADD_KNOWN_IID(RootStorage),
144 ADD_KNOWN_IID(RpcChannel),
145 ADD_KNOWN_IID(RpcProxy),
146 ADD_KNOWN_IID(RpcStub),
147 ADD_KNOWN_IID(RunnableObject),
148 ADD_KNOWN_IID(RunningObjectTable),
149 ADD_KNOWN_IID(StdMarshalInfo),
150 ADD_KNOWN_IID(Storage),
151 ADD_KNOWN_IID(Stream),
152 ADD_KNOWN_IID(StubManager),
153 ADD_KNOWN_IID(Unknown),
154 ADD_KNOWN_IID(ViewObject),
155 ADD_KNOWN_IID(ViewObject2),
156 };
157
158 // don't clobber preprocessor name space
159 #undef ADD_KNOWN_IID
160
161 // try to find the interface in the table
162 for ( uint ui = 0; ui < WXSIZEOF(aKnownIids); ui++ ) {
163 if ( riid == *aKnownIids[ui].pIid ) {
164 return aKnownIids[ui].szName;
165 }
166 }
167
168 // unknown IID, just transform to string
169 static Uuid s_uuid;
170 s_uuid.Set(riid);
171 return s_uuid;
172 }
173
174 void wxLogQueryInterface(const char *szInterface, REFIID riid)
175 {
176 wxLogTrace("%s::QueryInterface (iid = %s)", szInterface, GetIidName(riid));
177 }
178
179 void wxLogAddRef(const char *szInterface, ULONG cRef)
180 {
181 wxLogTrace("After %s::AddRef: m_cRef = %d", szInterface, cRef + 1);
182 }
183
184 void wxLogRelease(const char *szInterface, ULONG cRef)
185 {
186 wxLogTrace("After %s::Release: m_cRef = %d", szInterface, cRef - 1);
187 }
188
189 #endif //DEBUG
190
191 #endif
192 // USE_DRAG_AND_DROP