1*ff12d537SAndre Fischer /************************************************************** 2*ff12d537SAndre Fischer * 3*ff12d537SAndre Fischer * Licensed to the Apache Software Foundation (ASF) under one 4*ff12d537SAndre Fischer * or more contributor license agreements. See the NOTICE file 5*ff12d537SAndre Fischer * distributed with this work for additional information 6*ff12d537SAndre Fischer * regarding copyright ownership. The ASF licenses this file 7*ff12d537SAndre Fischer * to you under the Apache License, Version 2.0 (the 8*ff12d537SAndre Fischer * "License"); you may not use this file except in compliance 9*ff12d537SAndre Fischer * with the License. You may obtain a copy of the License at 10*ff12d537SAndre Fischer * 11*ff12d537SAndre Fischer * http://www.apache.org/licenses/LICENSE-2.0 12*ff12d537SAndre Fischer * 13*ff12d537SAndre Fischer * Unless required by applicable law or agreed to in writing, 14*ff12d537SAndre Fischer * software distributed under the License is distributed on an 15*ff12d537SAndre Fischer * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*ff12d537SAndre Fischer * KIND, either express or implied. See the License for the 17*ff12d537SAndre Fischer * specific language governing permissions and limitations 18*ff12d537SAndre Fischer * under the License. 19*ff12d537SAndre Fischer * 20*ff12d537SAndre Fischer *************************************************************/ 21*ff12d537SAndre Fischer 22*ff12d537SAndre Fischer #ifndef SFX_SIDEBAR_PANEL_DESCRIPTOR_HXX 23*ff12d537SAndre Fischer #define SFX_SIDEBAR_PANEL_DESCRIPTOR_HXX 24*ff12d537SAndre Fischer 25*ff12d537SAndre Fischer #include "Context.hxx" 26*ff12d537SAndre Fischer 27*ff12d537SAndre Fischer #include <boost/shared_ptr.hpp> 28*ff12d537SAndre Fischer 29*ff12d537SAndre Fischer 30*ff12d537SAndre Fischer namespace sfx2 { namespace sidebar { 31*ff12d537SAndre Fischer 32*ff12d537SAndre Fischer class PanelDescriptor 33*ff12d537SAndre Fischer { 34*ff12d537SAndre Fischer public: 35*ff12d537SAndre Fischer ::rtl::OUString msTitle; 36*ff12d537SAndre Fischer sal_Bool mbIsTitleBarOptional; 37*ff12d537SAndre Fischer ::rtl::OUString msId; 38*ff12d537SAndre Fischer ::rtl::OUString msDeckId; 39*ff12d537SAndre Fischer ::rtl::OUString msHelpURL; 40*ff12d537SAndre Fischer ::std::vector<Context> maContexts; 41*ff12d537SAndre Fischer ::rtl::OUString msLayout; 42*ff12d537SAndre Fischer ::rtl::OUString msImplementationURL; 43*ff12d537SAndre Fischer 44*ff12d537SAndre Fischer PanelDescriptor (void); 45*ff12d537SAndre Fischer PanelDescriptor (const PanelDescriptor& rPanelDescriptor); 46*ff12d537SAndre Fischer ~PanelDescriptor (void); 47*ff12d537SAndre Fischer }; 48*ff12d537SAndre Fischer typedef ::boost::shared_ptr<PanelDescriptor> SharedPanelDescriptor; 49*ff12d537SAndre Fischer 50*ff12d537SAndre Fischer } } // end of namespace sfx2::sidebar 51*ff12d537SAndre Fischer 52*ff12d537SAndre Fischer #endif 53