update dev300-m58
[ooovba.git] / sd / source / ui / inc / fuinsert.hxx
bloba3e140655386c5acfa2bb562cdecfa9965ca82ab
1 /*************************************************************************
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * Copyright 2008 by Sun Microsystems, Inc.
7 * OpenOffice.org - a multi-platform office productivity suite
9 * $RCSfile: fuinsert.hxx,v $
10 * $Revision: 1.7 $
12 * This file is part of OpenOffice.org.
14 * OpenOffice.org is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU Lesser General Public License version 3
16 * only, as published by the Free Software Foundation.
18 * OpenOffice.org is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU Lesser General Public License version 3 for more details
22 * (a copy is included in the LICENSE file that accompanied this code).
24 * You should have received a copy of the GNU Lesser General Public License
25 * version 3 along with OpenOffice.org. If not, see
26 * <http://www.openoffice.org/license.html>
27 * for a copy of the LGPLv3 License.
29 ************************************************************************/
31 #ifndef SD_FU_INSERT_HXX
32 #define SD_FU_INSERT_HXX
34 #include "fupoor.hxx"
36 namespace sd {
38 class FuInsertGraphic
39 : public FuPoor
41 public:
42 TYPEINFO();
44 static FunctionReference Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq );
45 virtual void DoExecute( SfxRequest& rReq );
47 private:
49 FuInsertGraphic (
50 ViewShell* pViewSh,
51 ::sd::Window* pWin,
52 ::sd::View* pView,
53 SdDrawDocument* pDoc,
54 SfxRequest& rReq);
58 /************************************************************************/
60 class FuInsertClipboard
61 : public FuPoor
63 public:
64 TYPEINFO();
66 static FunctionReference Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq );
67 virtual void DoExecute( SfxRequest& rReq );
69 private:
70 FuInsertClipboard (
71 ViewShell* pViewSh,
72 ::sd::Window* pWin,
73 ::sd::View* pView,
74 SdDrawDocument* pDoc,
75 SfxRequest& rReq);
79 /************************************************************************/
81 class FuInsertOLE
82 : public FuPoor
84 public:
85 TYPEINFO();
87 static FunctionReference Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq );
88 virtual void DoExecute( SfxRequest& rReq );
90 private:
91 FuInsertOLE (
92 ViewShell* pViewSh,
93 ::sd::Window* pWin,
94 ::sd::View* pView,
95 SdDrawDocument* pDoc,
96 SfxRequest& rReq);
99 /************************************************************************/
101 class FuInsertAVMedia
102 : public FuPoor
104 public:
105 TYPEINFO();
107 static FunctionReference Create( ViewShell* pViewSh, ::sd::Window* pWin, ::sd::View* pView, SdDrawDocument* pDoc, SfxRequest& rReq );
108 virtual void DoExecute( SfxRequest& rReq );
110 private:
111 FuInsertAVMedia (
112 ViewShell* pViewSh,
113 ::sd::Window* pWin,
114 ::sd::View* pView,
115 SdDrawDocument* pDoc,
116 SfxRequest& rReq);
120 } // end of namespace sd
122 #endif