Version: 3.1.0
wxGBPosition Class Reference

#include <wx/gbsizer.h>

Detailed Description

This class represents the position of an item in a virtual grid of rows and columns managed by a wxGridBagSizer.

Library:  wxCore
Category:  Window Layout

Public Member Functions

 wxGBPosition ()
 Default constructor, setting the row and column to (0,0).
 
 wxGBPosition (int row, int col)
 Construct a new wxGBPosition, setting the row and column.
 
int GetCol () const
 Get the current column value.
 
int GetRow () const
 Get the current row value.
 
void SetCol (int col)
 Set a new column value.
 
void SetRow (int row)
 Set a new row value.
 
bool operator!= (const wxGBPosition &p) const
 Compare inequality of two wxGBPositions.
 
bool operator== (const wxGBPosition &p) const
 Compare equality of two wxGBPositions.
 

Constructor & Destructor Documentation

wxGBPosition::wxGBPosition ( )

Default constructor, setting the row and column to (0,0).

wxGBPosition::wxGBPosition ( int  row,
int  col 
)

Construct a new wxGBPosition, setting the row and column.

Member Function Documentation

int wxGBPosition::GetCol ( ) const

Get the current column value.

int wxGBPosition::GetRow ( ) const

Get the current row value.

bool wxGBPosition::operator!= ( const wxGBPosition p) const

Compare inequality of two wxGBPositions.

bool wxGBPosition::operator== ( const wxGBPosition p) const

Compare equality of two wxGBPositions.

void wxGBPosition::SetCol ( int  col)

Set a new column value.

void wxGBPosition::SetRow ( int  row)

Set a new row value.