dolphin/Externals/wxWidgets3/include/wx/position.h
Soren Jorvang d14efe561b Import r67258 of the wxWidgets trunk, which I expect will before
long become wxWidgets 2.9.2, which in turn is expected to be the
last 2.9 release before the 3.0 stable release.

Since the full wxWidgets distribution is rather large, I have
imported only the parts that we use, on a subdirectory basis:

art
include/wx/*.*
include/wx/aui
include/wx/cocoa
include/wx/generic
include/wx/gtk
include/wx/meta
include/wx/msw
include/wx/osx
include/wx/persist
include/wx/private
include/wx/protocol
include/wx/unix
src/aui
src/common
src/generic
src/gtk
src/msw
src/osx
src/unix


git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7380 8ced0084-cf51-0410-be5f-012b33b47a6e
2011-03-20 18:05:19 +00:00

60 lines
2.2 KiB
C++

/////////////////////////////////////////////////////////////////////////////
// Name: wx/position.h
// Purpose: Common structure and methods for positional information.
// Author: Vadim Zeitlin, Robin Dunn, Brad Anderson, Bryan Petty
// Created: 2007-03-13
// RCS-ID: $Id: position.h 64943 2010-07-13 13:29:58Z VZ $
// Copyright: (c) 2007 The wxWidgets Team
// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
#ifndef _WX_POSITION_H_
#define _WX_POSITION_H_
#include "wx/gdicmn.h"
class WXDLLIMPEXP_CORE wxPosition
{
public:
wxPosition() : m_row(0), m_column(0) {}
wxPosition(int row, int col) : m_row(row), m_column(col) {}
// default copy ctor and assignment operator are okay.
int GetRow() const { return m_row; }
int GetColumn() const { return m_column; }
int GetCol() const { return GetColumn(); }
void SetRow(int row) { m_row = row; }
void SetColumn(int column) { m_column = column; }
void SetCol(int column) { SetColumn(column); }
bool operator==(const wxPosition& p) const
{ return m_row == p.m_row && m_column == p.m_column; }
bool operator!=(const wxPosition& p) const
{ return !(*this == p); }
wxPosition& operator+=(const wxPosition& p)
{ m_row += p.m_row; m_column += p.m_column; return *this; }
wxPosition& operator-=(const wxPosition& p)
{ m_row -= p.m_row; m_column -= p.m_column; return *this; }
wxPosition& operator+=(const wxSize& s)
{ m_row += s.y; m_column += s.x; return *this; }
wxPosition& operator-=(const wxSize& s)
{ m_row -= s.y; m_column -= s.x; return *this; }
wxPosition operator+(const wxPosition& p) const
{ return wxPosition(m_row + p.m_row, m_column + p.m_column); }
wxPosition operator-(const wxPosition& p) const
{ return wxPosition(m_row - p.m_row, m_column - p.m_column); }
wxPosition operator+(const wxSize& s) const
{ return wxPosition(m_row + s.y, m_column + s.x); }
wxPosition operator-(const wxSize& s) const
{ return wxPosition(m_row - s.y, m_column - s.x); }
private:
int m_row;
int m_column;
};
#endif // _WX_POSITION_H_