xref: /AOO41X/main/svx/source/sidebar/debug/NotYetImplementedPanel.hxx (revision ca62e2c2083b5d0995f1245bad6c2edfb455fbec)
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 #ifndef SVX_SIDEBAR_DEBUG_NOT_YET_IMPLEMENTED_PANEL_HXX
23*5d39f272SZheng Fan #define SVX_SIDEBAR_DEBUG_NOT_YET_IMPLEMENTED_PANEL_HXX
24*5d39f272SZheng Fan 
25*5d39f272SZheng Fan #include <vcl/window.hxx>
26*5d39f272SZheng Fan #include <vcl/fixed.hxx>
27*5d39f272SZheng Fan 
28*5d39f272SZheng Fan 
29*5d39f272SZheng Fan namespace svx { namespace sidebar {
30*5d39f272SZheng Fan 
31*5d39f272SZheng Fan 
32*5d39f272SZheng Fan /** Display a panel as placeholder for a not-yet-implemented panel.
33*5d39f272SZheng Fan */
34*5d39f272SZheng Fan class NotYetImplementedPanel
35*5d39f272SZheng Fan     : public Window
36*5d39f272SZheng Fan {
37*5d39f272SZheng Fan public:
38*5d39f272SZheng Fan     NotYetImplementedPanel (::Window* pParent);
39*5d39f272SZheng Fan     virtual ~NotYetImplementedPanel (void);
40*5d39f272SZheng Fan 
41*5d39f272SZheng Fan private:
42*5d39f272SZheng Fan     FixedText maMessageControl;
43*5d39f272SZheng Fan };
44*5d39f272SZheng Fan 
45*5d39f272SZheng Fan } } // end of namespace ::svx::sidebar
46*5d39f272SZheng Fan 
47*5d39f272SZheng Fan #endif
48