/* -*- 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 . */ #pragma once #include "adminpages.hxx" #include #include namespace dbaui { struct BooleanSettingDesc; // SpecialSettingsPage // implements the "Special Settings" page of the advanced database settings class SpecialSettingsPage final : public OGenericAdministrationPage { std::unique_ptr m_xIsSQL92Check; std::unique_ptr m_xAppendTableAlias; std::unique_ptr m_xAsBeforeCorrelationName; std::unique_ptr m_xEnableOuterJoin; std::unique_ptr m_xIgnoreDriverPrivileges; std::unique_ptr m_xParameterSubstitution; std::unique_ptr m_xSuppressVersionColumn; std::unique_ptr m_xCatalog; std::unique_ptr m_xSchema; std::unique_ptr m_xIndexAppendix; std::unique_ptr m_xDosLineEnds; std::unique_ptr m_xCheckRequiredFields; std::unique_ptr m_xIgnoreCurrency; std::unique_ptr m_xEscapeDateTime; std::unique_ptr m_xPrimaryKeySupport; std::unique_ptr m_xRespectDriverResultSetType; std::unique_ptr m_xBooleanComparisonModeLabel; std::unique_ptr m_xBooleanComparisonMode; std::unique_ptr m_xMaxRowScanLabel; std::unique_ptr m_xMaxRowScan; std::map m_aTriStates; std::vector< BooleanSettingDesc > m_aBooleanSettings; bool m_bHasBooleanComparisonMode; bool m_bHasMaxRowScan; public: DECL_LINK(OnToggleHdl, weld::Toggleable&, void); DECL_LINK(OnTriStateToggleHdl, weld::Toggleable&, void); virtual bool FillItemSet ( SfxItemSet* _rCoreAttrs ) override; SpecialSettingsPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& _rCoreAttrs, const DataSourceMetaData& _rDSMeta); virtual ~SpecialSettingsPage() override; private: // OGenericAdministrationPage overridables virtual void implInitControls (const SfxItemSet& _rSet, bool _bSaveValue ) override; // OGenericAdministrationPage::fillControls virtual void fillControls(std::vector< std::unique_ptr >& _rControlList) override; // OGenericAdministrationPage::fillWindows virtual void fillWindows(std::vector< std::unique_ptr >& _rControlList) override; DECL_LINK(BooleanComparisonSelectHdl, weld::ComboBox&, void); }; // GeneratedValuesPage class GeneratedValuesPage final : public OGenericAdministrationPage { std::unique_ptr m_xAutoRetrievingEnabled; std::unique_ptr m_xGrid; std::unique_ptr m_xAutoIncrementLabel; std::unique_ptr m_xAutoIncrement; std::unique_ptr m_xAutoRetrievingLabel; std::unique_ptr m_xAutoRetrieving; public: virtual bool FillItemSet (SfxItemSet* _rCoreAttrs) override; GeneratedValuesPage(weld::Container* pPage, weld::DialogController* pController, const SfxItemSet& _rCoreAttrs); virtual ~GeneratedValuesPage() override; private: DECL_LINK(OnAutoToggleHdl, weld::Toggleable&, void); // subclasses must override this, but it isn't pure virtual virtual void implInitControls(const SfxItemSet& _rSet, bool _bSaveValue) override; // OGenericAdministrationPage::fillControls virtual void fillControls(std::vector< std::unique_ptr >& _rControlList) override; // OGenericAdministrationPage::fillWindows virtual void fillWindows(std::vector< std::unique_ptr >& _rControlList) override; }; } /* vim:set shiftwidth=4 softtabstop=4 expandtab: */