/* -*- 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 SC_SOLVEROPTIONS_HXX #define SC_SOLVEROPTIONS_HXX #include #include #include #include #include #include #include #include namespace com { namespace sun { namespace star { namespace beans { struct PropertyValue; } } } } class ScSolverOptionsDialog : public ModalDialog { ListBox* m_pLbEngine; SvxCheckListBox* m_pLbSettings; PushButton* m_pBtnEdit; SvLBoxButtonData* mpCheckButtonData; com::sun::star::uno::Sequence maImplNames; com::sun::star::uno::Sequence maDescriptions; OUString maEngine; com::sun::star::uno::Sequence maProperties; DECL_LINK( EngineSelectHdl, void* ); DECL_LINK( SettingsSelHdl, void* ); DECL_LINK( SettingsDoubleClickHdl, void* ); DECL_LINK( ButtonHdl, PushButton* ); void ReadFromComponent(); void FillListBox(); void EditOption(); public: ScSolverOptionsDialog( Window* pParent, const com::sun::star::uno::Sequence& rImplNames, const com::sun::star::uno::Sequence& rDescriptions, const OUString& rEngine, const com::sun::star::uno::Sequence& rProperties ); ~ScSolverOptionsDialog(); const OUString& GetEngine() const; const com::sun::star::uno::Sequence& GetProperties(); }; class ScSolverIntegerDialog : public ModalDialog { VclFrame* m_pFrame; NumericField* m_pNfValue; public: ScSolverIntegerDialog( Window * pParent ); void SetOptionName( const OUString& rName ); void SetValue( sal_Int32 nValue ); sal_Int32 GetValue() const; }; class ScSolverValueDialog : public ModalDialog { VclFrame* m_pFrame; Edit* m_pEdValue; public: ScSolverValueDialog( Window * pParent ); void SetOptionName( const OUString& rName ); void SetValue( double fValue ); double GetValue() const; }; #endif /* vim:set shiftwidth=4 softtabstop=4 expandtab: */