Gtk-WARNING gtktreestore.c:1047: Invalid column number 1 added to iter
[LibreOffice.git] / dbaccess / source / ui / inc / TableRow.hxx
blob4f34a94bf58e9cf6a4b2ca34afd2a55f7c55def1
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 .
19 #pragma once
21 #include <tools/long.hxx>
22 #include "TypeInfo.hxx"
24 class SvStream;
26 namespace dbaui
28 class OFieldDescription;
29 class OTableRow
31 private:
32 OFieldDescription* m_pActFieldDescr;
33 sal_Int32 m_nPos;
34 bool m_bReadOnly;
35 bool m_bOwnsDescriptions;
37 protected:
38 public:
39 OTableRow();
40 OTableRow( const OTableRow& rRow, tools::Long nPosition = -1 );
41 ~OTableRow();
43 OFieldDescription* GetActFieldDescr() const { return m_pActFieldDescr; }
44 bool isValid() const { return GetActFieldDescr() != nullptr; }
46 void SetFieldType( const TOTypeInfoSP& _pType, bool _bForce = false );
48 void SetPrimaryKey( bool bSet );
49 bool IsPrimaryKey() const;
51 /** returns the current position in the table.
52 @return
53 the current position in the table
55 sal_Int32 GetPos() const { return m_nPos; }
56 void SetPos(sal_Int32 _nPos) { m_nPos = _nPos; }
58 /** set the row readonly
59 @param _bRead
60 if <TRUE/> then the row is readonly, otherwise not
62 void SetReadOnly( bool _bRead=true ){ m_bReadOnly = _bRead; }
64 /** returns if the row is readonly
65 @return
66 <TRUE/> if readonly, otherwise <FALSE/>
68 bool IsReadOnly() const { return m_bReadOnly; }
70 friend SvStream& WriteOTableRow( SvStream& rStr,const OTableRow& _rRow );
71 friend SvStream& ReadOTableRow( SvStream& rStr, OTableRow& _rRow );
76 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */