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

99 lines
3.6 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 .
*/
#ifndef INCLUDED_DBACCESS_SOURCE_UI_INC_CONNECTIONLINE_HXX
#define INCLUDED_DBACCESS_SOURCE_UI_INC_CONNECTIONLINE_HXX
2001-02-28 09:09:17 +00:00
#include <tools/gen.hxx>
#include "ConnectionLineData.hxx"
#include <functional>
2001-02-28 09:09:17 +00:00
class OutputDevice;
namespace dbaui
{
// ConnData ---------->* ConnLineData
// ^1 ^1
// | |
// Conn ---------->* ConnLine
/*
the class OConnectionLine represents the graphical line between the to two windows
**/
class OTableConnection;
class OConnectionLine
{
OTableConnection* m_pTabConn;
OConnectionLineDataRef m_pData;
2001-02-28 09:09:17 +00:00
Point m_aSourceConnPos,
m_aDestConnPos;
Point m_aSourceDescrLinePos,
m_aDestDescrLinePos;
public:
OConnectionLine( OTableConnection* pConn, OConnectionLineDataRef pLineData );
2001-02-28 09:09:17 +00:00
OConnectionLine( const OConnectionLine& rLine );
virtual ~OConnectionLine();
OConnectionLine& operator=( const OConnectionLine& rLine );
2001-02-28 09:09:17 +00:00
Rectangle GetBoundingRect();
sal_Bool RecalcLine();
2001-02-28 09:09:17 +00:00
void Draw( OutputDevice* pOutDev );
bool CheckHit( const Point& rMousePos ) const;
OUString GetSourceFieldName() const { return m_pData->GetSourceFieldName(); }
OUString GetDestFieldName() const { return m_pData->GetDestFieldName(); }
2001-02-28 09:09:17 +00:00
sal_Bool IsValid() const;
2001-02-28 09:09:17 +00:00
Rectangle GetSourceTextPos() const;
Rectangle GetDestTextPos() const;
OConnectionLineDataRef GetData() const { return m_pData; }
Point getMidPoint() const;
2001-02-28 09:09:17 +00:00
};
/// unary_function Functor object for class OConnectionLine returntype is void
/// draws a connectionline object on outputdevice
struct TConnectionLineDrawFunctor : ::std::unary_function<OConnectionLine*,void>
{
OutputDevice* pDevice;
TConnectionLineDrawFunctor(OutputDevice* _pDevice)
{
pDevice = _pDevice;
}
inline void operator()(OConnectionLine* _pLine)
{
_pLine->Draw(pDevice);
}
};
/// binary_function Functor object for class OConnectionLine returntype is bool
/// checks if the point is on connectionline
struct TConnectionLineCheckHitFunctor : ::std::binary_function<OConnectionLine*,Point,bool>
{
inline bool operator()(const OConnectionLine* lhs,const Point& rhs) const
{
return lhs->CheckHit(rhs);
}
};
2001-02-28 09:09:17 +00:00
}
#endif // INCLUDED_DBACCESS_SOURCE_UI_INC_CONNECTIONLINE_HXX
2010-10-27 12:33:13 +01:00
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */