1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
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 .
19 #ifndef DBAUI_TABLEFIELDCONTROL_HXX
20 #define DBAUI_TABLEFIELDCONTROL_HXX
22 #include "FieldDescControl.hxx"
26 class OTableEditorCtrl
;
27 class OTableDesignHelpBar
;
28 //==================================================================
30 //==================================================================
31 class OTableFieldControl
: public OFieldDescControl
33 OTableEditorCtrl
* GetCtrl() const;
35 virtual void ActivateAggregate( EControlType eType
);
36 virtual void DeactivateAggregate( EControlType eType
);
37 // Sind von den abgeleiteten Klassen zu impl.
38 virtual void CellModified(long nRow
, sal_uInt16 nColId
);
39 virtual sal_Bool
IsReadOnly();
40 virtual void SetModified(sal_Bool bModified
);
41 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::util::XNumberFormatter
> GetFormatter() const;
43 virtual ::com::sun::star::lang::Locale
GetLocale() const;
45 virtual TOTypeInfoSP
getTypeInfo(sal_Int32 _nPos
);
46 virtual const OTypeInfoMap
* getTypeInfo() const;
47 virtual sal_Bool
isAutoIncrementValueEnabled() const;
48 virtual OUString
getAutoIncrementValue() const;
51 OTableFieldControl( Window
* pParent
, OTableDesignHelpBar
* pHelpBar
);
53 String
BoolStringPersistent(const String
& rUIString
) const { return OFieldDescControl::BoolStringPersistent(rUIString
); }
54 String
BoolStringUI(const String
& rPersistentString
) const { return OFieldDescControl::BoolStringUI(rPersistentString
); }
56 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XDatabaseMetaData
> getMetaData();
57 virtual ::com::sun::star::uno::Reference
< ::com::sun::star::sdbc::XConnection
> getConnection();
60 #endif // DBAUI_TABLEFIELDCONTROL_HXX
63 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */