kill multi repo support: BuildDirs and gbuild.mk, GNUmakefile.mk
[LibreOffice.git] / embedserv / source / inc / iipaobj.hxx
blobe0d38ea3348dd9d454ddf9f438f239a191dce74b
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*************************************************************************
4 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
6 * Copyright 2000, 2010 Oracle and/or its affiliates.
8 * OpenOffice.org - a multi-platform office productivity suite
10 * This file is part of OpenOffice.org.
12 * OpenOffice.org is free software: you can redistribute it and/or modify
13 * it under the terms of the GNU Lesser General Public License version 3
14 * only, as published by the Free Software Foundation.
16 * OpenOffice.org is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU Lesser General Public License version 3 for more details
20 * (a copy is included in the LICENSE file that accompanied this code).
22 * You should have received a copy of the GNU Lesser General Public License
23 * version 3 along with OpenOffice.org. If not, see
24 * <http://www.openoffice.org/license.html>
25 * for a copy of the LGPLv3 License.
27 ************************************************************************/
29 #ifndef _IIPAOBJ_HXX_
30 #define _IIPAOBJ_HXX_
31 #if defined(_MSC_VER) && (_MSC_VER > 1310)
32 #pragma warning(disable : 4917 4555)
33 #endif
35 #include "stdafx.h"
36 #include <oleidl.h>
38 #include <osl/interlck.h>
39 #include <rtl/ref.hxx>
40 class EmbedDocument_Impl;
41 class DocumentHolder;
43 class CIIAObj
44 : public IOleInPlaceActiveObject
47 public:
49 CIIAObj( DocumentHolder * );
50 virtual ~CIIAObj();
52 /* IUnknown methods */
53 STDMETHODIMP QueryInterface(REFIID, LPVOID FAR * ppvObj);
54 STDMETHODIMP_(ULONG) AddRef(void);
55 STDMETHODIMP_(ULONG) Release(void);
57 /* IOleInPlaceActiveObject methods */
58 STDMETHODIMP GetWindow(HWND *);
59 STDMETHODIMP ContextSensitiveHelp(BOOL);
60 STDMETHODIMP TranslateAccelerator(LPMSG);
61 STDMETHODIMP OnFrameWindowActivate(BOOL);
62 STDMETHODIMP OnDocWindowActivate(BOOL);
63 STDMETHODIMP ResizeBorder(LPCRECT, LPOLEINPLACEUIWINDOW
64 , BOOL);
65 STDMETHODIMP EnableModeless(BOOL);
68 private:
70 oslInterlockedCount m_refCount;
71 ::rtl::Reference< DocumentHolder > m_rDocHolder;
75 #endif
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */