tdf#130857 qt weld: Support mail merge "Server Auth" dialog
[LibreOffice.git] / connectivity / source / inc / ado / AKey.hxx
blob5ec3fa972b12bf1cd96b017fee97640f5c2ce74f
1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 /*
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
20 #pragma once
22 #include <sdbcx/VKey.hxx>
23 #include <com/sun/star/sdbc/XDatabaseMetaData.hpp>
24 #include <ado/Awrapadox.hxx>
26 namespace connectivity::ado
28 typedef sdbcx::OKey OKey_ADO;
30 class OConnection;
31 class OAdoKey : public OKey_ADO
33 WpADOKey m_aKey;
34 OConnection* m_pConnection;
35 protected:
36 void fillPropertyValues();
37 virtual void SAL_CALL setFastPropertyValue_NoBroadcast(sal_Int32 nHandle,const css::uno::Any& rValue) override;
38 public:
39 virtual void refreshColumns() override;
40 public:
41 OAdoKey(bool _bCase,OConnection* _pConnection,ADOKey* _pKey);
42 OAdoKey(bool _bCase,OConnection* _pConnection);
44 WpADOKey getImpl() const { return m_aKey;}
45 // map the update/delete rules
46 static RuleEnum Map2Rule(sal_Int32 _eNum);
47 static sal_Int32 MapRule(const RuleEnum& _eNum);
49 // map the keytypes
50 static sal_Int32 MapKeyRule(const KeyTypeEnum& _eNum);
51 static KeyTypeEnum Map2KeyRule(sal_Int32 _eNum);
55 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */