xref: /aoo42x/main/sd/source/ui/inc/SidebarPanelId.hxx (revision 7a32b0c8)
122de8995SAndre Fischer /**************************************************************
222de8995SAndre Fischer  *
322de8995SAndre Fischer  * Licensed to the Apache Software Foundation (ASF) under one
422de8995SAndre Fischer  * or more contributor license agreements.  See the NOTICE file
522de8995SAndre Fischer  * distributed with this work for additional information
622de8995SAndre Fischer  * regarding copyright ownership.  The ASF licenses this file
722de8995SAndre Fischer  * to you under the Apache License, Version 2.0 (the
822de8995SAndre Fischer  * "License"); you may not use this file except in compliance
922de8995SAndre Fischer  * with the License.  You may obtain a copy of the License at
1022de8995SAndre Fischer  *
1122de8995SAndre Fischer  *   http://www.apache.org/licenses/LICENSE-2.0
1222de8995SAndre Fischer  *
1322de8995SAndre Fischer  * Unless required by applicable law or agreed to in writing,
1422de8995SAndre Fischer  * software distributed under the License is distributed on an
1522de8995SAndre Fischer  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
1622de8995SAndre Fischer  * KIND, either express or implied.  See the License for the
1722de8995SAndre Fischer  * specific language governing permissions and limitations
1822de8995SAndre Fischer  * under the License.
1922de8995SAndre Fischer  *
2022de8995SAndre Fischer  *************************************************************/
2122de8995SAndre Fischer 
22*7a32b0c8SAndre Fischer #ifndef SD_SIDEBAR_PANEL_ID_HXX
23*7a32b0c8SAndre Fischer #define SD_SIDEBAR_PANEL_ID_HXX
2422de8995SAndre Fischer 
25*7a32b0c8SAndre Fischer namespace rtl
26*7a32b0c8SAndre Fischer {
27*7a32b0c8SAndre Fischer     class OUString;
28*7a32b0c8SAndre Fischer }
2922de8995SAndre Fischer 
3022de8995SAndre Fischer 
31*7a32b0c8SAndre Fischer namespace sd { namespace sidebar {
3222de8995SAndre Fischer 
33*7a32b0c8SAndre Fischer /** List of top level panels that can be shown in the task pane.
3422de8995SAndre Fischer */
35*7a32b0c8SAndre Fischer enum PanelId
3622de8995SAndre Fischer {
37*7a32b0c8SAndre Fischer     PID__START = 0,
38*7a32b0c8SAndre Fischer     PID_UNKNOWN = PID__START,
39*7a32b0c8SAndre Fischer     PID_MASTER_PAGES_ALL,
40*7a32b0c8SAndre Fischer     PID_MASTER_PAGES_RECENT,
41*7a32b0c8SAndre Fischer     PID_MASTER_PAGES_USED,
42*7a32b0c8SAndre Fischer     PID_LAYOUT,
43*7a32b0c8SAndre Fischer     PID_TABLE_DESIGN,
44*7a32b0c8SAndre Fischer     PID_ANIMATION_SCHEMES,
45*7a32b0c8SAndre Fischer     PID_CUSTOM_ANIMATION,
46*7a32b0c8SAndre Fischer     PID_SLIDE_TRANSITION,
47*7a32b0c8SAndre Fischer     PID__END = PID_SLIDE_TRANSITION
4822de8995SAndre Fischer };
4922de8995SAndre Fischer 
50*7a32b0c8SAndre Fischer } } // namespace sd::sidebar
5122de8995SAndre Fischer 
5222de8995SAndre Fischer 
5322de8995SAndre Fischer #endif
54