/* -*- 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 . */ #ifndef INCLUDED_SC_SOURCE_UI_INC_INSCODLG_HXX #define INCLUDED_SC_SOURCE_UI_INC_INSCODLG_HXX #include #include #include "scui_def.hxx" class ScInsertContentsDlg : public weld::GenericDialogController { public: ScInsertContentsDlg( weld::Window* pParent, const OUString* pStrTitle ); virtual ~ScInsertContentsDlg() override; InsertDeleteFlags GetInsContentsCmdBits() const; ScPasteFunc GetFormulaCmdBits() const; bool IsSkipEmptyCells() const; bool IsTranspose() const; bool IsLink() const; InsCellCmd GetMoveMode() const; void SetOtherDoc( bool bSet ); void SetFillMode( bool bSet ); void SetChangeTrack( bool bSet ); void SetCellShiftDisabled( CellShiftDisabledFlags nDisable ); private: bool bOtherDoc; bool bFillMode; bool bChangeTrack; bool bMoveDownDisabled; bool bMoveRightDisabled; bool bUsedShortCut; InsertDeleteFlags nShortCutInsContentsCmdBits; bool bShortCutTranspose; std::unique_ptr mxBtnInsAll; std::unique_ptr mxBtnInsStrings; std::unique_ptr mxBtnInsNumbers; std::unique_ptr mxBtnInsDateTime; std::unique_ptr mxBtnInsFormulas; std::unique_ptr mxBtnInsNotes; std::unique_ptr mxBtnInsAttrs; std::unique_ptr mxBtnInsObjects; std::unique_ptr mxBtnSkipEmptyCells; std::unique_ptr mxBtnTranspose; std::unique_ptr mxBtnLink; std::unique_ptr mxRbNoOp; std::unique_ptr mxRbAdd; std::unique_ptr mxRbSub; std::unique_ptr mxRbMul; std::unique_ptr mxRbDiv; std::unique_ptr mxRbMoveNone; std::unique_ptr mxRbMoveDown; std::unique_ptr mxRbMoveRight; std::unique_ptr mxBtnShortCutPasteValuesOnly; std::unique_ptr mxBtnShortCutPasteValuesFormats; std::unique_ptr mxBtnShortCutPasteTranspose; static bool bPreviousAllCheck; static InsertDeleteFlags nPreviousChecks; static InsertContentsFlags nPreviousChecks2; static ScPasteFunc nPreviousFormulaChecks; static sal_uInt16 nPreviousMoveMode; // enum InsCellCmd void DisableChecks( bool bInsAllChecked ); void TestModes(); // Handler DECL_LINK( InsAllHdl, weld::ToggleButton&, void ); DECL_LINK( LinkBtnHdl, weld::ToggleButton&, void ); DECL_LINK( ShortCutHdl, weld::Button&, void ); }; #endif // INCLUDED_SC_SOURCE_UI_INC_INSCODLG_HXX /* vim:set shiftwidth=4 softtabstop=4 expandtab: */