Branch data 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 [ + - ]: 26 : DummyPanel::DummyPanel()
36 : : {
37 : 26 : }
38 : :
39 : : //--------------------------------------------------------------------
40 : 26 : DummyPanel::~DummyPanel()
41 : : {
42 [ - + ]: 52 : }
43 : :
44 : : //--------------------------------------------------------------------
45 : 454 : IMPLEMENT_IREFERENCE( DummyPanel )
46 : :
47 : : //--------------------------------------------------------------------
48 : 0 : void DummyPanel::Activate( Window& )
49 : : {
50 : 0 : }
51 : :
52 : : //--------------------------------------------------------------------
53 : 0 : void DummyPanel::Deactivate()
54 : : {
55 : 0 : }
56 : :
57 : : //--------------------------------------------------------------------
58 : 201 : void DummyPanel::SetSizePixel( const Size& )
59 : : {
60 : 201 : }
61 : :
62 : : //--------------------------------------------------------------------
63 : 0 : ::rtl::OUString DummyPanel::GetDisplayName() const
64 : : {
65 : 0 : return ::rtl::OUString();
66 : : }
67 : :
68 : : //--------------------------------------------------------------------
69 : 0 : Image DummyPanel::GetImage() const
70 : : {
71 : 0 : return Image();
72 : : }
73 : :
74 : : //--------------------------------------------------------------------
75 : 0 : rtl::OString DummyPanel::GetHelpID() const
76 : : {
77 : 0 : return rtl::OString();
78 : : }
79 : :
80 : : //--------------------------------------------------------------------
81 : 0 : void DummyPanel::GrabFocus()
82 : : {
83 : 0 : }
84 : :
85 : : //--------------------------------------------------------------------
86 : 0 : void DummyPanel::Dispose()
87 : : {
88 : 0 : }
89 : :
90 : : //--------------------------------------------------------------------
91 : 0 : Reference< XAccessible > DummyPanel::CreatePanelAccessible( const Reference< XAccessible >& i_rParentAccessible )
92 : : {
93 : : (void)i_rParentAccessible;
94 : 0 : return NULL;
95 : : }
96 : :
97 : : //........................................................................
98 : : } // namespace svt
99 : : //........................................................................
100 : :
101 : : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|