finalcut/src/include/final/fpoint.h

171 lines
5.8 KiB
C
Raw Normal View History

2017-11-04 07:03:53 +01:00
/***********************************************************************
* fpoint.h - Point with an x and y coordinate *
* *
* This file is part of the Final Cut widget toolkit *
* *
2020-04-13 12:40:11 +02:00
* Copyright 2014-2020 Markus Gans *
2017-11-04 07:03:53 +01:00
* *
* The Final Cut is free software; you can redistribute it and/or *
* modify it under the terms of the GNU Lesser General Public License *
* as published by the Free Software Foundation; either version 3 of *
* the License, or (at your option) any later version. *
* *
* The Final Cut is distributed in the hope that it will be useful, *
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
* GNU Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with this program. If not, see *
* <http://www.gnu.org/licenses/>. *
***********************************************************************/
/* Standalone class
*
*
*
* FPoint
*
*/
2015-05-23 13:35:12 +02:00
#ifndef FPOINT_H
#define FPOINT_H
2015-05-23 13:35:12 +02:00
#if !defined (USE_FINAL_H) && !defined (COMPILE_FINAL_CUT)
#error "Only <final/final.h> can be included directly."
#endif
2018-04-16 02:24:37 +02:00
#include <iostream>
2019-10-05 23:20:07 +02:00
#include "final/fstring.h"
namespace finalcut
{
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
// class FPoint
//----------------------------------------------------------------------
class FPoint
{
2017-09-11 03:06:02 +02:00
public:
// Constructors
FPoint () = default;
2020-04-13 12:40:11 +02:00
FPoint (const FPoint&); // copy constructor
FPoint (FPoint&&) noexcept; // move constructor
2017-09-11 03:06:02 +02:00
FPoint (int, int);
// Destructor
virtual ~FPoint();
// Overloaded operators
FPoint& operator = (const FPoint&);
2020-04-13 12:40:11 +02:00
FPoint& operator = (FPoint&&) noexcept;
2017-09-11 03:06:02 +02:00
FPoint& operator += (const FPoint&);
FPoint& operator -= (const FPoint&);
// Accessors
2019-10-05 23:20:07 +02:00
virtual const FString getClassName();
int getX() const;
int getY() const;
void setX (int);
void setY (int);
void setPoint (const FPoint&);
void setPoint (int, int);
2017-09-11 03:06:02 +02:00
// Inquiry
2019-10-05 23:20:07 +02:00
bool isOrigin() const;
2017-09-11 03:06:02 +02:00
// Point references
2019-10-05 23:20:07 +02:00
int& x_ref();
int& y_ref();
2017-09-11 03:06:02 +02:00
// Methods
void move (int, int);
void move (const FPoint&);
2017-09-11 03:06:02 +02:00
private:
// Data members
int xpos{0};
int ypos{0};
// Friend operator functions
friend bool operator == (const FPoint&, const FPoint&);
friend bool operator != (const FPoint&, const FPoint&);
friend FPoint operator + (const FPoint&, const FPoint&);
friend FPoint operator - (const FPoint&, const FPoint&);
friend FPoint operator - (const FPoint&);
friend std::ostream& operator << (std::ostream&, const FPoint&);
friend std::istream& operator >> (std::istream&, FPoint&);
2015-05-23 13:35:12 +02:00
};
// FPoint inline functions
2017-08-11 10:50:39 +02:00
//----------------------------------------------------------------------
inline FPoint::FPoint (const FPoint& p) // copy constructor
: xpos(p.xpos)
, ypos(p.ypos)
{ }
//----------------------------------------------------------------------
2020-04-13 12:40:11 +02:00
inline FPoint::FPoint (FPoint&& p) noexcept // move constructor
: xpos(p.xpos)
, ypos(p.ypos)
{ p.xpos = p.ypos = 0; }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
inline FPoint::FPoint (int x, int y)
: xpos(x)
, ypos(y)
2015-09-20 05:44:50 +02:00
{ }
2015-05-23 13:35:12 +02:00
//----------------------------------------------------------------------
2019-10-05 23:20:07 +02:00
inline const FString FPoint::getClassName()
{ return "FPoint"; }
//----------------------------------------------------------------------
inline int FPoint::getX() const
{ return xpos; }
//----------------------------------------------------------------------
inline int FPoint::getY() const
{ return ypos; }
//----------------------------------------------------------------------
inline void FPoint::setPoint (const FPoint& p)
{ setPoint(p.xpos, p.ypos); }
//----------------------------------------------------------------------
inline int& FPoint::x_ref()
{ return xpos; }
//----------------------------------------------------------------------
inline int& FPoint::y_ref()
{ return ypos; }
// FPoint non-member operators
//----------------------------------------------------------------------
inline bool operator == (const FPoint& p1, const FPoint& p2)
{ return p1.xpos == p2.xpos && p1.ypos == p2.ypos; }
//----------------------------------------------------------------------
inline bool operator != (const FPoint& p1, const FPoint& p2)
{ return p1.xpos != p2.xpos || p1.ypos != p2.ypos; }
//----------------------------------------------------------------------
inline FPoint operator + (const FPoint& p1, const FPoint& p2)
{ return FPoint(p1.xpos + p2.xpos, p1.ypos + p2.ypos); }
//----------------------------------------------------------------------
inline FPoint operator - (const FPoint& p1, const FPoint& p2)
{ return FPoint(p1.xpos - p2.xpos, p1.ypos - p2.ypos); }
//----------------------------------------------------------------------
inline FPoint operator - (const FPoint& p)
{ return FPoint(-p.xpos, -p.ypos); }
} // namespace finalcut
#endif // FPOINT_H