Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
5 : * This Source Code Form is subject to the terms of the Mozilla Public
6 : * License, v. 2.0. If a copy of the MPL was not distributed with this
7 : * file, You can obtain one at http://mozilla.org/MPL/2.0/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
11 : * Licensed to the Apache Software Foundation (ASF) under one or more
12 : * contributor license agreements. See the NOTICE file distributed
13 : * with this work for additional information regarding copyright
14 : * ownership. The ASF licenses this file to you under the Apache
15 : * License, Version 2.0 (the "License"); you may not use this file
16 : * except in compliance with the License. You may obtain a copy of
17 : * the License at http://www.apache.org/licenses/LICENSE-2.0 .
18 : */
19 :
20 :
21 : #include "dummypanel.hxx"
22 :
23 :
24 : namespace svt
25 : {
26 :
27 :
28 : using ::com::sun::star::uno::Reference;
29 : using ::com::sun::star::accessibility::XAccessible;
30 :
31 :
32 : //= DummyPanel
33 :
34 :
35 0 : DummyPanel::DummyPanel()
36 : {
37 0 : }
38 :
39 :
40 0 : DummyPanel::~DummyPanel()
41 : {
42 0 : }
43 :
44 :
45 0 : void DummyPanel::Activate( vcl::Window& )
46 : {
47 0 : }
48 :
49 :
50 0 : void DummyPanel::Deactivate()
51 : {
52 0 : }
53 :
54 :
55 0 : void DummyPanel::SetSizePixel( const Size& )
56 : {
57 0 : }
58 :
59 :
60 0 : OUString DummyPanel::GetDisplayName() const
61 : {
62 0 : return OUString();
63 : }
64 :
65 :
66 0 : Image DummyPanel::GetImage() const
67 : {
68 0 : return Image();
69 : }
70 :
71 :
72 0 : OString DummyPanel::GetHelpID() const
73 : {
74 0 : return OString();
75 : }
76 :
77 :
78 0 : void DummyPanel::GrabFocus()
79 : {
80 0 : }
81 :
82 :
83 0 : void DummyPanel::Dispose()
84 : {
85 0 : }
86 :
87 :
88 0 : Reference< XAccessible > DummyPanel::CreatePanelAccessible( const Reference< XAccessible >& i_rParentAccessible )
89 : {
90 : (void)i_rParentAccessible;
91 0 : return NULL;
92 : }
93 :
94 :
95 : } // namespace svt
96 :
97 :
98 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|