18dcb2a10SAndre Fischer /************************************************************** 28dcb2a10SAndre Fischer * 38dcb2a10SAndre Fischer * Licensed to the Apache Software Foundation (ASF) under one 48dcb2a10SAndre Fischer * or more contributor license agreements. See the NOTICE file 58dcb2a10SAndre Fischer * distributed with this work for additional information 68dcb2a10SAndre Fischer * regarding copyright ownership. The ASF licenses this file 78dcb2a10SAndre Fischer * to you under the Apache License, Version 2.0 (the 88dcb2a10SAndre Fischer * "License"); you may not use this file except in compliance 98dcb2a10SAndre Fischer * with the License. You may obtain a copy of the License at 108dcb2a10SAndre Fischer * 118dcb2a10SAndre Fischer * http://www.apache.org/licenses/LICENSE-2.0 128dcb2a10SAndre Fischer * 138dcb2a10SAndre Fischer * Unless required by applicable law or agreed to in writing, 148dcb2a10SAndre Fischer * software distributed under the License is distributed on an 158dcb2a10SAndre Fischer * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 168dcb2a10SAndre Fischer * KIND, either express or implied. See the License for the 178dcb2a10SAndre Fischer * specific language governing permissions and limitations 188dcb2a10SAndre Fischer * under the License. 198dcb2a10SAndre Fischer * 208dcb2a10SAndre Fischer *************************************************************/ 21*facb16e7SArmin Le Grand 22*facb16e7SArmin Le Grand #ifndef SVX_SIDEBAR_LINE_STYLE_VALUE_SET_HXX 23*facb16e7SArmin Le Grand #define SVX_SIDEBAR_LINE_STYLE_VALUE_SET_HXX 24*facb16e7SArmin Le Grand 258dcb2a10SAndre Fischer /* 268dcb2a10SAndre Fischer #include <sfx2/sidebar/propertypanel.hrc> 278dcb2a10SAndre Fischer #include <sfx2/sidebar/Theme.hxx> 288dcb2a10SAndre Fischer #include <sfx2/sidebar/ControlFactory.hxx> 298dcb2a10SAndre Fischer #include <LinePropertyPanel.hxx> 308dcb2a10SAndre Fischer #include <LinePropertyPanel.hrc> 318dcb2a10SAndre Fischer #include <svx/dialogs.hrc> 328dcb2a10SAndre Fischer #include <svx/dialmgr.hxx> 338dcb2a10SAndre Fischer #include <sfx2/objsh.hxx> 348dcb2a10SAndre Fischer #include <sfx2/bindings.hxx> 358dcb2a10SAndre Fischer #include <sfx2/dispatch.hxx> 368dcb2a10SAndre Fischer #include <svx/xlnclit.hxx> 378dcb2a10SAndre Fischer #include <svx/xtable.hxx> 388dcb2a10SAndre Fischer #include <svx/xdash.hxx> 398dcb2a10SAndre Fischer #include <svx/drawitem.hxx> 408dcb2a10SAndre Fischer #include <svx/svxitems.hrc> 418dcb2a10SAndre Fischer #include <unotools/pathoptions.hxx> 428dcb2a10SAndre Fischer #include <unotools/viewoptions.hxx> 438dcb2a10SAndre Fischer #include <comphelper/processfactory.hxx> 448dcb2a10SAndre Fischer #include <i18npool/mslangid.hxx> 458dcb2a10SAndre Fischer #include <svx/xlineit0.hxx> 468dcb2a10SAndre Fischer #include <svx/xlndsit.hxx> 478dcb2a10SAndre Fischer #include <vcl/svapp.hxx> 488dcb2a10SAndre Fischer #include <svx/xlnwtit.hxx> 498dcb2a10SAndre Fischer #include <vcl/lstbox.hxx> 508dcb2a10SAndre Fischer #include <svx/tbxcolorupdate.hxx> 518dcb2a10SAndre Fischer #include <vcl/toolbox.hxx> 528dcb2a10SAndre Fischer #include <svx/xlntrit.hxx> 538dcb2a10SAndre Fischer #include <svx/xlnstit.hxx> 548dcb2a10SAndre Fischer #include <svx/xlnedit.hxx> 558dcb2a10SAndre Fischer #include <svx/xlncapit.hxx> 568dcb2a10SAndre Fischer #include <svx/xlinjoit.hxx> 578dcb2a10SAndre Fischer #include <svx/sidebar/PopupControl.hxx> 588dcb2a10SAndre Fischer */ 598dcb2a10SAndre Fischer #include <svtools/valueset.hxx> 608dcb2a10SAndre Fischer 618dcb2a10SAndre Fischer namespace svx { namespace sidebar { 628dcb2a10SAndre Fischer 638dcb2a10SAndre Fischer class LineStyleValueSet 648dcb2a10SAndre Fischer : public ValueSet 658dcb2a10SAndre Fischer { 668dcb2a10SAndre Fischer public: 678dcb2a10SAndre Fischer LineStyleValueSet (Window* pParent, const ResId& rResId); 688dcb2a10SAndre Fischer virtual ~LineStyleValueSet (void); 698dcb2a10SAndre Fischer 708dcb2a10SAndre Fischer void SetFirstSelect(bool bSel); 718dcb2a10SAndre Fischer void SetFirstString(XubString str); 728dcb2a10SAndre Fischer 738dcb2a10SAndre Fischer virtual void UserDraw( const UserDrawEvent& rUDEvt ); 748dcb2a10SAndre Fischer 758dcb2a10SAndre Fischer private: 768dcb2a10SAndre Fischer VirtualDevice* pVDev; 778dcb2a10SAndre Fischer bool mbSelectFirst; 788dcb2a10SAndre Fischer XubString strNone; 798dcb2a10SAndre Fischer }; 808dcb2a10SAndre Fischer 818dcb2a10SAndre Fischer } } // end of namespace svx::sidebar 82*facb16e7SArmin Le Grand 83*facb16e7SArmin Le Grand #endif 84*facb16e7SArmin Le Grand 85*facb16e7SArmin Le Grand // eof 86