/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ /* * This file is part of the LibreOffice project. * * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * This file incorporates work covered by the following license notice: * * 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 . */ #undef SC_DLLIMPLEMENTATION //------------------------------------------------------------------ #include "dapitype.hxx" #include "scresid.hxx" #include "sc.hrc" #include "dapitype.hrc" using namespace com::sun::star; using ::rtl::OUString; //------------------------------------------------------------------------- ScDataPilotSourceTypeDlg::ScDataPilotSourceTypeDlg( Window* pParent, sal_Bool bEnableExternal ) : ModalDialog ( pParent, ScResId( RID_SCDLG_DAPITYPE ) ), // aFlFrame ( this, ScResId( FL_FRAME ) ), aBtnSelection ( this, ScResId( BTN_SELECTION ) ), aBtnNamedRange ( this, ScResId( BTN_NAMED_RANGE ) ), aBtnDatabase ( this, ScResId( BTN_DATABASE ) ), aBtnExternal ( this, ScResId( BTN_EXTERNAL ) ), aLbNamedRange ( this, ScResId( LB_NAMED_RANGE ) ), aBtnOk ( this, ScResId( BTN_OK ) ), aBtnCancel ( this, ScResId( BTN_CANCEL ) ), aBtnHelp ( this, ScResId( BTN_HELP ) ) { aBtnSelection.SetClickHdl( LINK(this, ScDataPilotSourceTypeDlg, RadioClickHdl) ); aBtnNamedRange.SetClickHdl( LINK(this, ScDataPilotSourceTypeDlg, RadioClickHdl) ); aBtnDatabase.SetClickHdl( LINK(this, ScDataPilotSourceTypeDlg, RadioClickHdl) ); aBtnExternal.SetClickHdl( LINK(this, ScDataPilotSourceTypeDlg, RadioClickHdl) ); if (!bEnableExternal) aBtnExternal.Disable(); aBtnSelection.Check(); // Disabled unless at least one named range exists. aLbNamedRange.Disable(); aBtnNamedRange.Disable(); FreeResource(); } ScDataPilotSourceTypeDlg::~ScDataPilotSourceTypeDlg() { } bool ScDataPilotSourceTypeDlg::IsDatabase() const { return aBtnDatabase.IsChecked(); } bool ScDataPilotSourceTypeDlg::IsExternal() const { return aBtnExternal.IsChecked(); } bool ScDataPilotSourceTypeDlg::IsNamedRange() const { return aBtnNamedRange.IsChecked(); } OUString ScDataPilotSourceTypeDlg::GetSelectedNamedRange() const { sal_uInt16 nPos = aLbNamedRange.GetSelectEntryPos(); return aLbNamedRange.GetEntry(nPos); } void ScDataPilotSourceTypeDlg::AppendNamedRange(const OUString& rName) { aLbNamedRange.InsertEntry(rName); if (aLbNamedRange.GetEntryCount() == 1) { // Select position 0 only for the first time. aLbNamedRange.SelectEntryPos(0); aBtnNamedRange.Enable(); } } IMPL_LINK( ScDataPilotSourceTypeDlg, RadioClickHdl, RadioButton*, pBtn ) { aLbNamedRange.Enable(pBtn == &aBtnNamedRange); return 0; } //------------------------------------------------------------------------- ScDataPilotServiceDlg::ScDataPilotServiceDlg( Window* pParent, const uno::Sequence& rServices ) : ModalDialog ( pParent, ScResId( RID_SCDLG_DAPISERVICE ) ), // aFlFrame ( this, ScResId( FL_FRAME ) ), aFtService ( this, ScResId( FT_SERVICE ) ), aLbService ( this, ScResId( LB_SERVICE ) ), aFtSource ( this, ScResId( FT_SOURCE ) ), aEdSource ( this, ScResId( ED_SOURCE ) ), aFtName ( this, ScResId( FT_NAME ) ), aEdName ( this, ScResId( ED_NAME ) ), aFtUser ( this, ScResId( FT_USER ) ), aEdUser ( this, ScResId( ED_USER ) ), aFtPasswd ( this, ScResId( FT_PASSWD ) ), aEdPasswd ( this, ScResId( ED_PASSWD ) ), aBtnOk ( this, ScResId( BTN_OK ) ), aBtnCancel ( this, ScResId( BTN_CANCEL ) ), aBtnHelp ( this, ScResId( BTN_HELP ) ) { long nCount = rServices.getLength(); const rtl::OUString* pArray = rServices.getConstArray(); for (long i=0; i