LibreOffice Module dbaccess (master) 1
TableRow.hxx
Go to the documentation of this file.
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#pragma once
20
21#include <tools/long.hxx>
22#include "TypeInfo.hxx"
23
24class SvStream;
25
26namespace dbaui
27{
28 class OFieldDescription;
30 {
31 private:
33 sal_Int32 m_nPos;
36
37 protected:
38 public:
39 OTableRow();
40 OTableRow( const OTableRow& rRow, tools::Long nPosition = -1 );
41 ~OTableRow();
42
44 bool isValid() const { return GetActFieldDescr() != nullptr; }
45
46 void SetFieldType( const TOTypeInfoSP& _pType, bool _bForce = false );
47
48 void SetPrimaryKey( bool bSet );
49 bool IsPrimaryKey() const;
50
55 sal_Int32 GetPos() const { return m_nPos; }
56 void SetPos(sal_Int32 _nPos) { m_nPos = _nPos; }
57
62 void SetReadOnly( bool _bRead=true ){ m_bReadOnly = _bRead; }
63
68 bool IsReadOnly() const { return m_bReadOnly; }
69
70 friend SvStream& WriteOTableRow( SvStream& rStr,const OTableRow& _rRow );
71 friend SvStream& ReadOTableRow( SvStream& rStr, OTableRow& _rRow );
72 };
73
74}
75
76/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
bool isValid() const
Definition: TableRow.hxx:44
void SetPrimaryKey(bool bSet)
Definition: TableRow.cxx:59
void SetReadOnly(bool _bRead=true)
set the row readonly
Definition: TableRow.hxx:62
friend SvStream & ReadOTableRow(SvStream &rStr, OTableRow &_rRow)
Definition: TableRow.cxx:128
OFieldDescription * GetActFieldDescr() const
Definition: TableRow.hxx:43
sal_Int32 m_nPos
Definition: TableRow.hxx:33
friend SvStream & WriteOTableRow(SvStream &rStr, const OTableRow &_rRow)
Definition: TableRow.cxx:90
void SetPos(sal_Int32 _nPos)
Definition: TableRow.hxx:56
bool IsPrimaryKey() const
Definition: TableRow.cxx:65
void SetFieldType(const TOTypeInfoSP &_pType, bool _bForce=false)
Definition: TableRow.cxx:70
sal_Int32 GetPos() const
returns the current position in the table.
Definition: TableRow.hxx:55
bool m_bOwnsDescriptions
Definition: TableRow.hxx:35
OFieldDescription * m_pActFieldDescr
Definition: TableRow.hxx:32
bool IsReadOnly() const
returns if the row is readonly
Definition: TableRow.hxx:68
std::shared_ptr< OTypeInfo > TOTypeInfoSP
Definition: TypeInfo.hxx:99
long Long
sal_Int32 _nPos