Changeset 846 for trunk/src/activeqt/container/qaxwidget.cpp
- Timestamp:
- May 5, 2011, 5:36:53 AM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
- Property svn:mergeinfo changed
/branches/vendor/nokia/qt/4.7.2 (added) merged: 845 /branches/vendor/nokia/qt/current merged: 844 /branches/vendor/nokia/qt/4.6.3 removed
- Property svn:mergeinfo changed
-
trunk/src/activeqt/container/qaxwidget.cpp
r769 r846 1 1 /**************************************************************************** 2 2 ** 3 ** Copyright (C) 201 0Nokia Corporation and/or its subsidiary(-ies).3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies). 4 4 ** All rights reserved. 5 5 ** Contact: Nokia Corporation (qt-info@nokia.com) … … 78 78 79 79 // missing interface from win32api 80 #if defined(Q_CC_GNU) 81 # if !defined(IOleInPlaceObjectWindowless) 82 # undef INTERFACE 83 # define INTERFACE IOleInPlaceObjectWindowless 84 DECLARE_INTERFACE_(IOleInPlaceObjectWindowless,IOleInPlaceObject) 85 { 86 STDMETHOD(QueryInterface)(THIS_ REFIID,PVOID*) PURE; 87 STDMETHOD_(ULONG,AddRef)(THIS) PURE; 88 STDMETHOD_(ULONG,Release)(THIS) PURE; 89 STDMETHOD(GetWindow)(THIS_ HWND*) PURE; 90 STDMETHOD(ContextSensitiveHelp)(THIS_ BOOL) PURE; 91 STDMETHOD(InPlaceDeactivate)(THIS) PURE; 92 STDMETHOD(UIDeactivate)(THIS) PURE; 93 STDMETHOD(SetObjectRects)(THIS_ LPCRECT,LPCRECT) PURE; 94 STDMETHOD(ReactivateAndUndo)(THIS) PURE; 95 STDMETHOD(OnWindowMessage)(THIS_ UINT, WPARAM, LPARAM, LRESULT*) PURE; 96 STDMETHOD(GetDropTarget)(THIS_ IDropTarget**) PURE; 97 }; 98 # endif 80 #if defined(Q_CC_GNU) && !defined(__MINGW64_VERSION_MAJOR) 81 DECLARE_INTERFACE_(IOleInPlaceObjectWindowless,IOleInPlaceObject) 82 { 83 STDMETHOD(QueryInterface)(THIS_ REFIID,PVOID*) PURE; 84 STDMETHOD_(ULONG,AddRef)(THIS) PURE; 85 STDMETHOD_(ULONG,Release)(THIS) PURE; 86 STDMETHOD(GetWindow)(THIS_ HWND*) PURE; 87 STDMETHOD(ContextSensitiveHelp)(THIS_ BOOL) PURE; 88 STDMETHOD(InPlaceDeactivate)(THIS) PURE; 89 STDMETHOD(UIDeactivate)(THIS) PURE; 90 STDMETHOD(SetObjectRects)(THIS_ LPCRECT,LPCRECT) PURE; 91 STDMETHOD(ReactivateAndUndo)(THIS) PURE; 92 STDMETHOD(OnWindowMessage)(THIS_ UINT, WPARAM, LPARAM, LRESULT*) PURE; 93 STDMETHOD(GetDropTarget)(THIS_ IDropTarget**) PURE; 94 }; 99 95 #endif 100 96 … … 1013 1009 } 1014 1010 // ActiveQt based in-processes-servers will handle the event properly, so 1015 // we don t need to send this key event to the host.1011 // we don't need to send this key event to the host. 1016 1012 return S_OK; 1017 1013 }
Note:
See TracChangeset
for help on using the changeset viewer.