/************************************************************** * * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * *************************************************************/ #ifndef SC_INSTBDLG_HXX #define SC_INSTBDLG_HXX #include "address.hxx" #ifndef _BUTTON_HXX //autogen #include #endif #ifndef _GROUP_HXX //autogen #include #endif #ifndef _LSTBOX_HXX //autogen #include #endif #ifndef _EDIT_HXX //autogen #include #endif #ifndef _FIXED_HXX //autogen #include #endif #ifndef _DIALOG_HXX //autogen #include #endif #include #include #include "expftext.hxx" #include #include class ScViewData; class ScDocument; class ScDocShell; namespace sfx2 { class DocumentInserter; } namespace sfx2 { class FileDialogHelper; } //------------------------------------------------------------------------ class ScInsertTableDlg : public ModalDialog { public: ScInsertTableDlg( Window* pParent, ScViewData& rViewData, SCTAB nTabCount, bool bFromFile ); ~ScInsertTableDlg(); virtual short Execute(); // ueberladen, um Dialog-Parent zu setzen sal_Bool GetTablesFromFile() { return aBtnFromFile.IsChecked(); } sal_Bool GetTablesAsLink() { return aBtnLink.IsChecked(); } const String* GetFirstTable( sal_uInt16* pN = NULL ); const String* GetNextTable( sal_uInt16* pN = NULL ); ScDocShell* GetDocShellTables() { return pDocShTables; } sal_Bool IsTableBefore() { return aBtnBefore.IsChecked(); } SCTAB GetTableCount() { return nTableCount;} private: FixedLine aFlPos; RadioButton aBtnBefore; RadioButton aBtnBehind; FixedLine aFlTable; RadioButton aBtnNew; RadioButton aBtnFromFile; FixedText aFtCount; NumericField aNfCount; FixedText aFtName; Edit aEdName; MultiListBox aLbTables; ScExpandedFixedText aFtPath; PushButton aBtnBrowse; CheckBox aBtnLink; OKButton aBtnOk; CancelButton aBtnCancel; HelpButton aBtnHelp; Timer aBrowseTimer; ScViewData& rViewData; ScDocument& rDoc; ScDocShell* pDocShTables; sfx2::DocumentInserter* pDocInserter; SfxObjectShellRef aDocShTablesRef; bool bMustClose; sal_uInt16 nSelTabIndex; // fuer GetFirstTable() / GetNextTable() String aStrCurSelTable; SCTAB nTableCount; #ifdef SC_INSTBDLG_CXX void Init_Impl( bool bFromFile ); void SetNewTable_Impl(); void SetFromTo_Impl(); void FillTables_Impl( ScDocument* pSrcDoc ); void DoEnable_Impl(); DECL_LINK( BrowseHdl_Impl, PushButton* ); DECL_LINK( ChoiceHdl_Impl, RadioButton* ); DECL_LINK( SelectHdl_Impl, MultiListBox* ); DECL_LINK( CountHdl_Impl, NumericField* ); DECL_LINK( DoEnterHdl, PushButton* ); DECL_LINK( BrowseTimeoutHdl, Timer* ); DECL_LINK( DialogClosedHdl, sfx2::FileDialogHelper* ); #endif }; #include #endif // SC_INSTBDLG_HXX