Files
libreoffice/dbaccess/source/ui/inc/TableDesignControl.hxx

92 lines
3.2 KiB
C++
Raw Normal View History

2010-10-27 12:33:13 +01:00
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
2012-06-14 17:39:53 +01:00
/*
* This file is part of the LibreOffice project.
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* This file incorporates work covered by the following license notice:
*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed
* with this work for additional information regarding copyright
* ownership. The ASF licenses this file to you under the Apache
* License, Version 2.0 (the "License"); you may not use this file
* except in compliance with the License. You may obtain a copy of
* the License at http://www.apache.org/licenses/LICENSE-2.0 .
*/
2001-02-14 13:37:35 +00:00
#ifndef DBAUI_TABLEDESIGNCONTROL_HXX
#define DBAUI_TABLEDESIGNCONTROL_HXX
#include <svtools/tabbar.hxx>
#include <svtools/editbrowsebox.hxx>
2001-02-14 13:37:35 +00:00
#include "IClipBoardTest.hxx"
#include "TypeInfo.hxx"
2001-02-14 13:37:35 +00:00
namespace dbaui
{
class OTableDesignView;
class OTableRowView : public ::svt::EditBrowseBox, public IClipboardTest
2001-02-14 13:37:35 +00:00
{
friend class OTableDesignUndoAct;
protected:
long m_nDataPos; ///< currently needed row
long m_nCurrentPos; ///< current position of selected column
2001-02-14 13:37:35 +00:00
private:
sal_uInt16 m_nCurUndoActId;
2001-02-14 13:37:35 +00:00
protected:
sal_Bool m_bCurrentModified;
sal_Bool m_bUpdatable;
sal_Bool m_bClipboardFilled;
2001-02-14 13:37:35 +00:00
public:
OTableRowView(Window* pParent);
virtual ~OTableRowView();
virtual void SetCellData( long nRow, sal_uInt16 nColId, const TOTypeInfoSP& _pTypeInfo ) = 0;
virtual void SetCellData( long nRow, sal_uInt16 nColId, const ::com::sun::star::uno::Any& _rNewData ) = 0;
virtual ::com::sun::star::uno::Any GetCellData( long nRow, sal_uInt16 nColId ) = 0;
virtual void SetControlText( long nRow, sal_uInt16 nColId, const OUString& rText ) = 0;
virtual OUString GetControlText( long nRow, sal_uInt16 nColId ) = 0;
2001-02-14 13:37:35 +00:00
virtual OTableDesignView* GetView() const = 0;
sal_uInt16 GetCurUndoActId(){ return m_nCurUndoActId; }
2001-02-14 13:37:35 +00:00
// IClipboardTest
virtual void cut();
virtual void copy();
virtual void paste();
2001-02-14 13:37:35 +00:00
protected:
void Paste( long nRow );
2001-08-14 06:56:01 +00:00
virtual void CopyRows() = 0;
virtual void DeleteRows() = 0;
virtual void InsertRows( long nRow ) = 0;
virtual void InsertNewRows( long nRow ) = 0;
virtual sal_Bool IsPrimaryKeyAllowed( long nRow ) = 0;
virtual sal_Bool IsInsertNewAllowed( long nRow ) = 0;
virtual sal_Bool IsDeleteAllowed( long nRow ) = 0;
2001-02-14 13:37:35 +00:00
virtual sal_Bool IsUpdatable() const {return m_bUpdatable;}
virtual void SetUpdatable( sal_Bool bUpdate=sal_True );
2001-02-14 13:37:35 +00:00
virtual RowStatus GetRowStatus(long nRow) const;
virtual void KeyInput(const KeyEvent& rEvt);
virtual void Command( const CommandEvent& rEvt );
virtual void Init();
};
}
#endif
2001-02-14 13:37:35 +00:00
2010-10-27 12:33:13 +01:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */