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 SC_MVTABDLG_HXX 25 #define SC_MVTABDLG_HXX 26 27 28 #include "address.hxx" 29 #include <vcl/dialog.hxx> 30 #include <vcl/button.hxx> 31 #include <vcl/lstbox.hxx> 32 #include <vcl/fixed.hxx> 33 34 #include <layout/layout.hxx> 35 #include <layout/layout-pre.hxx> 36 37 //------------------------------------------------------------------------ 38 39 class ScMoveTableDlg : public ModalDialog 40 { 41 public: 42 ScMoveTableDlg( Window* pParent ); 43 ~ScMoveTableDlg(); 44 45 sal_uInt16 GetSelectedDocument () const; 46 SCTAB GetSelectedTable () const; 47 sal_Bool GetCopyTable () const; 48 void SetCopyTable (sal_Bool bFlag=sal_True); 49 void EnableCopyTable (sal_Bool bFlag=sal_True); 50 51 private: 52 FixedText aFtDoc; 53 ListBox aLbDoc; 54 FixedText aFtTable; 55 ListBox aLbTable; 56 CheckBox aBtnCopy; 57 OKButton aBtnOk; 58 CancelButton aBtnCancel; 59 HelpButton aBtnHelp; 60 61 sal_uInt16 nDocument; 62 SCTAB nTable; 63 sal_Bool bCopyTable; 64 //-------------------------------------- 65 void Init (); 66 void InitDocListBox (); 67 DECL_LINK( OkHdl, void * ); 68 DECL_LINK( SelHdl, ListBox * ); 69 }; 70 71 #include <layout/layout-post.hxx> 72 73 #endif // SC_MVTABDLG_HXX 74 75 76