1*1d2dbeb0SAndrew Rist /************************************************************** 2cdf0e10cSrcweir * 3*1d2dbeb0SAndrew Rist * Licensed to the Apache Software Foundation (ASF) under one 4*1d2dbeb0SAndrew Rist * or more contributor license agreements. See the NOTICE file 5*1d2dbeb0SAndrew Rist * distributed with this work for additional information 6*1d2dbeb0SAndrew Rist * regarding copyright ownership. The ASF licenses this file 7*1d2dbeb0SAndrew Rist * to you under the Apache License, Version 2.0 (the 8*1d2dbeb0SAndrew Rist * "License"); you may not use this file except in compliance 9*1d2dbeb0SAndrew Rist * with the License. You may obtain a copy of the License at 10cdf0e10cSrcweir * 11*1d2dbeb0SAndrew Rist * http://www.apache.org/licenses/LICENSE-2.0 12cdf0e10cSrcweir * 13*1d2dbeb0SAndrew Rist * Unless required by applicable law or agreed to in writing, 14*1d2dbeb0SAndrew Rist * software distributed under the License is distributed on an 15*1d2dbeb0SAndrew Rist * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16*1d2dbeb0SAndrew Rist * KIND, either express or implied. See the License for the 17*1d2dbeb0SAndrew Rist * specific language governing permissions and limitations 18*1d2dbeb0SAndrew Rist * under the License. 19cdf0e10cSrcweir * 20*1d2dbeb0SAndrew Rist *************************************************************/ 21*1d2dbeb0SAndrew Rist 22*1d2dbeb0SAndrew Rist 23cdf0e10cSrcweir #ifndef _CHANGEDB_HXX 24cdf0e10cSrcweir #define _CHANGEDB_HXX 25cdf0e10cSrcweir 26cdf0e10cSrcweir 27cdf0e10cSrcweir #ifndef _BITMAP_HXX //autogen 28cdf0e10cSrcweir #include <vcl/bitmap.hxx> 29cdf0e10cSrcweir #endif 30cdf0e10cSrcweir #ifndef _BUTTON_HXX //autogen 31cdf0e10cSrcweir #include <vcl/button.hxx> 32cdf0e10cSrcweir #endif 33cdf0e10cSrcweir #ifndef _FIXED_HXX //autogen 34cdf0e10cSrcweir #include <vcl/fixed.hxx> 35cdf0e10cSrcweir #endif 36cdf0e10cSrcweir #include <svtools/stdctrl.hxx> 37cdf0e10cSrcweir #include <svtools/svtreebx.hxx> 38cdf0e10cSrcweir #include <svx/stddlg.hxx> 39cdf0e10cSrcweir #include "dbtree.hxx" 40cdf0e10cSrcweir #include <vcl/fixed.hxx> 41cdf0e10cSrcweir 42cdf0e10cSrcweir class SwFldMgr; 43cdf0e10cSrcweir class SwView; 44cdf0e10cSrcweir class SwWrtShell; 45cdf0e10cSrcweir struct SwDBData; 46cdf0e10cSrcweir 47cdf0e10cSrcweir /*-------------------------------------------------------------------- 48cdf0e10cSrcweir Beschreibung: Datenbank an Feldern austauschen 49cdf0e10cSrcweir --------------------------------------------------------------------*/ 50cdf0e10cSrcweir 51cdf0e10cSrcweir class SwChangeDBDlg: public SvxStandardDialog 52cdf0e10cSrcweir { 53cdf0e10cSrcweir FixedLine aDBListFL; 54cdf0e10cSrcweir FixedText aUsedDBFT; 55cdf0e10cSrcweir FixedText aAvailDBFT; 56cdf0e10cSrcweir SvTreeListBox aUsedDBTLB; 57cdf0e10cSrcweir SwDBTreeList aAvailDBTLB; 58cdf0e10cSrcweir PushButton aAddDBPB; 59cdf0e10cSrcweir FixedInfo aDescFT; 60cdf0e10cSrcweir FixedText aDocDBTextFT; 61cdf0e10cSrcweir FixedText aDocDBNameFT; 62cdf0e10cSrcweir OKButton aOKBT; 63cdf0e10cSrcweir CancelButton aCancelBT; 64cdf0e10cSrcweir HelpButton aHelpBT; 65cdf0e10cSrcweir // PushButton aChangeBT; 66cdf0e10cSrcweir 67cdf0e10cSrcweir ImageList aImageList; 68cdf0e10cSrcweir ImageList aImageListHC; 69cdf0e10cSrcweir 70cdf0e10cSrcweir SwWrtShell *pSh; 71cdf0e10cSrcweir SwFldMgr *pMgr; 72cdf0e10cSrcweir 73cdf0e10cSrcweir DECL_LINK(TreeSelectHdl, SvTreeListBox* pBox = 0); 74cdf0e10cSrcweir DECL_LINK(ButtonHdl, Button* pBtn); 75cdf0e10cSrcweir DECL_LINK(AddDBHdl, PushButton*); 76cdf0e10cSrcweir 77cdf0e10cSrcweir virtual void Apply(); 78cdf0e10cSrcweir void UpdateFlds(); 79cdf0e10cSrcweir void FillDBPopup(); 80cdf0e10cSrcweir SvLBoxEntry* Insert(const String& rDBName); 81cdf0e10cSrcweir void ShowDBName(const SwDBData& rDBData); 82cdf0e10cSrcweir 83cdf0e10cSrcweir public: 84cdf0e10cSrcweir SwChangeDBDlg(SwView& rVw); 85cdf0e10cSrcweir ~SwChangeDBDlg(); 86cdf0e10cSrcweir }; 87cdf0e10cSrcweir 88cdf0e10cSrcweir #endif 89