Line data Source code
1 : /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2 : /*
3 : * This file is part of the LibreOffice project.
4 : *
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/.
8 : *
9 : * This file incorporates work covered by the following license notice:
10 : *
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 .
18 : */
19 : #ifndef DBAUI_TABLEFIELDCONTROL_HXX
20 : #define DBAUI_TABLEFIELDCONTROL_HXX
21 :
22 : #include "FieldDescControl.hxx"
23 :
24 : namespace dbaui
25 : {
26 : class OTableEditorCtrl;
27 : class OTableDesignHelpBar;
28 : //==================================================================
29 : // OTableFieldControl
30 : //==================================================================
31 0 : class OTableFieldControl : public OFieldDescControl
32 : {
33 : OTableEditorCtrl* GetCtrl() const;
34 : protected:
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;
42 :
43 : virtual ::com::sun::star::lang::Locale GetLocale() const;
44 :
45 : virtual TOTypeInfoSP getTypeInfo(sal_Int32 _nPos);
46 : virtual const OTypeInfoMap* getTypeInfo() const;
47 : virtual sal_Bool isAutoIncrementValueEnabled() const;
48 : virtual ::rtl::OUString getAutoIncrementValue() const;
49 :
50 : public:
51 : OTableFieldControl( Window* pParent, OTableDesignHelpBar* pHelpBar);
52 :
53 0 : String BoolStringPersistent(const String& rUIString) const { return OFieldDescControl::BoolStringPersistent(rUIString); }
54 0 : String BoolStringUI(const String& rPersistentString) const { return OFieldDescControl::BoolStringUI(rPersistentString); }
55 :
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();
58 : };
59 : }
60 : #endif // DBAUI_TABLEFIELDCONTROL_HXX
61 :
62 :
63 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|