1 /************************************************************** 2 * 3 * Licensed to the Apache Software Foundation (ASF) under one 4 * or more contributor license agreements. See the NOTICE file 5 * distributed with this work for additional information 6 * regarding copyright ownership. The ASF licenses this file 7 * to you under the Apache License, Version 2.0 (the 8 * "License"); you may not use this file except in compliance 9 * with the License. You may obtain a copy of the License at 10 * 11 * http://www.apache.org/licenses/LICENSE-2.0 12 * 13 * Unless required by applicable law or agreed to in writing, 14 * software distributed under the License is distributed on an 15 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 * KIND, either express or implied. See the License for the 17 * specific language governing permissions and limitations 18 * under the License. 19 * 20 *************************************************************/ 21 22 23 24 #ifndef _MULTMRK_HXX 25 #define _MULTMRK_HXX 26 27 28 #include <svx/stddlg.hxx> 29 30 #ifndef _FIXED_HXX //autogen 31 #include <vcl/fixed.hxx> 32 #endif 33 #include <svtools/stdctrl.hxx> 34 35 #ifndef _LSTBOX_HXX //autogen 36 #include <vcl/lstbox.hxx> 37 #endif 38 #include <vcl/fixed.hxx> 39 40 #ifndef _BUTTON_HXX //autogen 41 #include <vcl/button.hxx> 42 #endif 43 44 class SwTOXMgr; 45 46 /*-------------------------------------------------------------------- 47 Beschreibung: Markierung fuer Verzeichniseintrag einfuegen 48 --------------------------------------------------------------------*/ 49 50 class SwMultiTOXMarkDlg : public SvxStandardDialog 51 { 52 DECL_LINK( SelectHdl, ListBox * ); 53 54 FixedLine aTOXFL; 55 FixedText aEntryFT; 56 FixedInfo aTextFT; 57 FixedText aTOXFT; 58 ListBox aTOXLB; 59 OKButton aOkBT; 60 CancelButton aCancelBT; 61 62 SwTOXMgr &rMgr; 63 sal_uInt16 nPos; 64 65 void Apply(); 66 public: 67 SwMultiTOXMarkDlg( Window* pParent, SwTOXMgr &rTOXMgr ); 68 ~SwMultiTOXMarkDlg(); 69 }; 70 71 72 #endif // _MULTMRK_HXX 73 74