2000-03-02 14:41:17 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/generic/gridsel.h
|
|
|
|
// Purpose: wxGridSelection
|
|
|
|
// Author: Stefan Neis
|
|
|
|
// Modified by:
|
|
|
|
// Created: 20/02/2000
|
|
|
|
// RCS-ID: $$
|
|
|
|
// Copyright: (c) Stefan Neis
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
2000-03-02 14:41:17 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-10-03 10:28:36 -04:00
|
|
|
#ifndef _WX_GENERIC_GRIDSEL_H_
|
|
|
|
#define _WX_GENERIC_GRIDSEL_H_
|
2005-09-25 16:49:40 -04:00
|
|
|
|
2000-03-02 14:41:17 -05:00
|
|
|
#include "wx/defs.h"
|
|
|
|
|
2003-03-26 13:09:28 -05:00
|
|
|
#if wxUSE_GRID
|
2000-03-02 14:41:17 -05:00
|
|
|
|
|
|
|
#include "wx/grid.h"
|
|
|
|
|
2006-10-03 10:28:36 -04:00
|
|
|
class WXDLLIMPEXP_ADV wxGridSelection
|
|
|
|
{
|
2000-03-02 14:41:17 -05:00
|
|
|
public:
|
2000-03-03 11:44:33 -05:00
|
|
|
wxGridSelection( wxGrid * grid, wxGrid::wxGridSelectionModes sel =
|
|
|
|
wxGrid::wxGridSelectCells );
|
2000-03-02 14:41:17 -05:00
|
|
|
bool IsSelection();
|
|
|
|
bool IsInSelection ( int row, int col );
|
2000-03-04 11:35:58 -05:00
|
|
|
void SetSelectionMode(wxGrid::wxGridSelectionModes selmode);
|
2000-03-13 17:11:24 -05:00
|
|
|
wxGrid::wxGridSelectionModes GetSelectionMode() { return m_selectionMode; }
|
2000-03-10 08:57:58 -05:00
|
|
|
void SelectRow( int row,
|
2004-06-17 12:22:36 -04:00
|
|
|
bool ControlDown = false, bool ShiftDown = false,
|
|
|
|
bool AltDown = false, bool MetaDown = false );
|
2000-03-10 08:57:58 -05:00
|
|
|
void SelectCol( int col,
|
2004-06-17 12:22:36 -04:00
|
|
|
bool ControlDown = false, bool ShiftDown = false,
|
|
|
|
bool AltDown = false, bool MetaDown = false );
|
2000-03-04 18:09:37 -05:00
|
|
|
void SelectBlock( int topRow, int leftCol,
|
|
|
|
int bottomRow, int rightCol,
|
2004-06-17 12:22:36 -04:00
|
|
|
bool ControlDown = false, bool ShiftDown = false,
|
|
|
|
bool AltDown = false, bool MetaDown = false,
|
|
|
|
bool sendEvent = true );
|
2000-03-09 08:57:02 -05:00
|
|
|
void SelectCell( int row, int col,
|
2004-06-17 12:22:36 -04:00
|
|
|
bool ControlDown = false, bool ShiftDown = false,
|
|
|
|
bool AltDown = false, bool MetaDown = false,
|
|
|
|
bool sendEvent = true );
|
2000-03-09 08:57:02 -05:00
|
|
|
void ToggleCellSelection( int row, int col,
|
2004-06-17 12:22:36 -04:00
|
|
|
bool ControlDown = false,
|
|
|
|
bool ShiftDown = false,
|
|
|
|
bool AltDown = false, bool MetaDown = false );
|
2000-03-02 14:41:17 -05:00
|
|
|
void ClearSelection();
|
|
|
|
|
|
|
|
void UpdateRows( size_t pos, int numRows );
|
|
|
|
void UpdateCols( size_t pos, int numCols );
|
|
|
|
|
|
|
|
private:
|
|
|
|
int BlockContain( int topRow1, int leftCol1,
|
2000-03-03 11:44:33 -05:00
|
|
|
int bottomRow1, int rightCol1,
|
|
|
|
int topRow2, int leftCol2,
|
|
|
|
int bottomRow2, int rightCol2 );
|
2000-03-02 14:41:17 -05:00
|
|
|
// returns 1, if Block1 contains Block2,
|
|
|
|
// -1, if Block2 contains Block1,
|
|
|
|
// 0, otherwise
|
|
|
|
|
|
|
|
int BlockContainsCell( int topRow, int leftCol,
|
2000-03-03 11:44:33 -05:00
|
|
|
int bottomRow, int rightCol,
|
|
|
|
int row, int col )
|
2000-03-02 14:41:17 -05:00
|
|
|
// returns 1, if Block contains Cell,
|
|
|
|
// 0, otherwise
|
|
|
|
{
|
|
|
|
return ( topRow <= row && row <= bottomRow &&
|
2000-03-03 11:44:33 -05:00
|
|
|
leftCol <= col && col <= rightCol );
|
2000-03-02 14:41:17 -05:00
|
|
|
}
|
|
|
|
|
2000-03-03 11:44:33 -05:00
|
|
|
wxGridCellCoordsArray m_cellSelection;
|
|
|
|
wxGridCellCoordsArray m_blockSelectionTopLeft;
|
|
|
|
wxGridCellCoordsArray m_blockSelectionBottomRight;
|
|
|
|
wxArrayInt m_rowSelection;
|
|
|
|
wxArrayInt m_colSelection;
|
2000-03-02 14:41:17 -05:00
|
|
|
|
2000-03-03 11:44:33 -05:00
|
|
|
wxGrid *m_grid;
|
|
|
|
wxGrid::wxGridSelectionModes m_selectionMode;
|
2002-09-07 09:58:25 -04:00
|
|
|
|
2007-07-09 06:09:52 -04:00
|
|
|
friend class WXDLLIMPEXP_FWD_ADV wxGrid;
|
2003-01-02 18:38:11 -05:00
|
|
|
|
|
|
|
DECLARE_NO_COPY_CLASS(wxGridSelection)
|
2000-03-02 14:41:17 -05:00
|
|
|
};
|
|
|
|
|
2006-10-03 10:28:36 -04:00
|
|
|
#endif // wxUSE_GRID
|
|
|
|
#endif // _WX_GENERIC_GRIDSEL_H_
|