xref: /AOO41X/main/sd/source/ui/slidesorter/controller/SlsSlideFunction.cxx (revision e1fcf41eedfef39e911a97493b064ccc3bd8fbf4)
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 // MARKER(update_precomp.py): autogen include statement, do not remove
25 #include "precompiled_sd.hxx"
26 
27 #include "controller/SlsSlideFunction.hxx"
28 
29 #include "SlideSorter.hxx"
30 #include "controller/SlideSorterController.hxx"
31 #include "view/SlideSorterView.hxx"
32 #include "model/SlideSorterModel.hxx"
33 
34 
35 namespace sd { namespace slidesorter { namespace controller {
36 
37 TYPEINIT1(SlideFunction, FuPoor);
38 
39 
40 SlideFunction::SlideFunction (
41     SlideSorter& rSlideSorter,
42     SfxRequest& rRequest)
43     : FuPoor (
44         rSlideSorter.GetViewShell(),
45         rSlideSorter.GetContentWindow().get(),
46         &rSlideSorter.GetView(),
47         rSlideSorter.GetModel().GetDocument(),
48         rRequest)
49 {
50 }
51 
52 void SlideFunction::ScrollStart (void)
53 {
54 }
55 
56 void SlideFunction::ScrollEnd (void)
57 {
58 }
59 
60 sal_Bool SlideFunction::MouseMove(const MouseEvent& )
61 {
62 	return sal_False;
63 }
64 
65 sal_Bool SlideFunction::MouseButtonUp(const MouseEvent& )
66 {
67 	return sal_False;
68 
69 }
70 
71 sal_Bool SlideFunction::MouseButtonDown(const MouseEvent& )
72 {
73 	return sal_False;
74 }
75 
76 } } } // end of namespace ::sd::slidesorter::controller
77