1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 25 #ifndef SC_FUINSERT_HXX 26 #define SC_FUINSERT_HXX 27 28 #include "fupoor.hxx" 29 30 class FuInsertGraphic : public FuPoor 31 { 32 public: 33 FuInsertGraphic( ScTabViewShell* pViewSh, Window* pWin, ScDrawView* pView, 34 SdrModel* pDoc, SfxRequest& rReq); 35 virtual ~FuInsertGraphic(); 36 37 virtual void Activate(); // Function aktivieren 38 virtual void Deactivate(); // Function deaktivieren 39 }; 40 41 /************************************************************************/ 42 43 class FuInsertOLE : public FuPoor 44 { 45 public: 46 FuInsertOLE( ScTabViewShell* pViewSh, Window* pWin, ScDrawView* pView, 47 SdrModel* pDoc, SfxRequest& rReq); 48 virtual ~FuInsertOLE(); 49 50 virtual void Activate(); // Function aktivieren 51 virtual void Deactivate(); // Function deaktivieren 52 }; 53 54 /************************************************************************/ 55 56 class FuInsertChart : public FuPoor 57 { 58 public: 59 FuInsertChart( ScTabViewShell* pViewSh, Window* pWin, ScDrawView* pView, 60 SdrModel* pDoc, SfxRequest& rReq); 61 virtual ~FuInsertChart(); 62 63 virtual void Activate(); // Function aktivieren 64 virtual void Deactivate(); // Function deaktivieren 65 }; 66 67 /************************************************************************/ 68 69 class FuInsertMedia : public FuPoor 70 { 71 public: 72 FuInsertMedia( ScTabViewShell* pViewSh, Window* pWin, ScDrawView* pView, 73 SdrModel* pDoc, SfxRequest& rReq); 74 virtual ~FuInsertMedia(); 75 76 virtual void Activate(); // Function aktivieren 77 virtual void Deactivate(); // Function deaktivieren 78 }; 79 80 #endif // _SD_FUINSERT_HXX 81 82