1*5d39f272SZheng Fan /**************************************************************
2*5d39f272SZheng Fan  *
3*5d39f272SZheng Fan  * Licensed to the Apache Software Foundation (ASF) under one
4*5d39f272SZheng Fan  * or more contributor license agreements.  See the NOTICE file
5*5d39f272SZheng Fan  * distributed with this work for additional information
6*5d39f272SZheng Fan  * regarding copyright ownership.  The ASF licenses this file
7*5d39f272SZheng Fan  * to you under the Apache License, Version 2.0 (the
8*5d39f272SZheng Fan  * "License"); you may not use this file except in compliance
9*5d39f272SZheng Fan  * with the License.  You may obtain a copy of the License at
10*5d39f272SZheng Fan  *
11*5d39f272SZheng Fan  *   http://www.apache.org/licenses/LICENSE-2.0
12*5d39f272SZheng Fan  *
13*5d39f272SZheng Fan  * Unless required by applicable law or agreed to in writing,
14*5d39f272SZheng Fan  * software distributed under the License is distributed on an
15*5d39f272SZheng Fan  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16*5d39f272SZheng Fan  * KIND, either express or implied.  See the License for the
17*5d39f272SZheng Fan  * specific language governing permissions and limitations
18*5d39f272SZheng Fan  * under the License.
19*5d39f272SZheng Fan  *
20*5d39f272SZheng Fan  *************************************************************/
21*5d39f272SZheng Fan 
22*5d39f272SZheng Fan #include "precompiled_svx.hxx"
23*5d39f272SZheng Fan 
24*5d39f272SZheng Fan #include "NotYetImplementedPanel.hxx"
25*5d39f272SZheng Fan 
26*5d39f272SZheng Fan namespace svx { namespace sidebar {
27*5d39f272SZheng Fan 
NotYetImplementedPanel(::Window * pParent)28*5d39f272SZheng Fan NotYetImplementedPanel::NotYetImplementedPanel (::Window* pParent)
29*5d39f272SZheng Fan     : Window(pParent, 0),
30*5d39f272SZheng Fan       maMessageControl(this, 0)
31*5d39f272SZheng Fan {
32*5d39f272SZheng Fan     maMessageControl.SetPosSizePixel(5,5, 250,15);
33*5d39f272SZheng Fan     maMessageControl.SetText(::rtl::OUString(RTL_CONSTASCII_USTRINGPARAM("not yet implemented")));
34*5d39f272SZheng Fan 
35*5d39f272SZheng Fan     maMessageControl.Show();
36*5d39f272SZheng Fan     Show();
37*5d39f272SZheng Fan }
38*5d39f272SZheng Fan 
39*5d39f272SZheng Fan 
40*5d39f272SZheng Fan 
41*5d39f272SZheng Fan 
~NotYetImplementedPanel(void)42*5d39f272SZheng Fan NotYetImplementedPanel::~NotYetImplementedPanel (void)
43*5d39f272SZheng Fan {
44*5d39f272SZheng Fan }
45*5d39f272SZheng Fan 
46*5d39f272SZheng Fan 
47*5d39f272SZheng Fan 
48*5d39f272SZheng Fan 
49*5d39f272SZheng Fan } } // end of namespace ::svx::sidebar
50