2006-01-08 16:50:02 -05:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: wx/dataview.h
|
|
|
|
// Purpose: wxDataViewCtrl base classes
|
|
|
|
// Author: Robert Roebling
|
|
|
|
// Modified by:
|
|
|
|
// Created: 08.01.06
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Copyright: (c) Robert Roebling
|
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
#ifndef _WX_DATAVIEW_H_BASE_
|
|
|
|
#define _WX_DATAVIEW_H_BASE_
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
|
|
|
|
#if wxUSE_DATAVIEWCTRL
|
|
|
|
|
2006-02-21 12:35:19 -05:00
|
|
|
#include "wx/control.h"
|
|
|
|
#include "wx/textctrl.h"
|
|
|
|
#include "wx/bitmap.h"
|
2006-02-21 13:12:44 -05:00
|
|
|
#include "wx/variant.h"
|
2006-02-21 12:35:19 -05:00
|
|
|
|
2006-03-20 11:37:24 -05:00
|
|
|
|
|
|
|
#if defined(__WXGTK20__)
|
|
|
|
// for testing
|
2007-04-19 08:47:47 -04:00
|
|
|
// #define wxUSE_GENERICDATAVIEWCTRL 1
|
2006-03-20 11:37:24 -05:00
|
|
|
#elif defined(__WXMAC__)
|
|
|
|
#define wxUSE_GENERICDATAVIEWCTRL 1
|
|
|
|
#else
|
|
|
|
#define wxUSE_GENERICDATAVIEWCTRL 1
|
|
|
|
#endif
|
|
|
|
|
2006-01-08 16:50:02 -05:00
|
|
|
// ----------------------------------------------------------------------------
|
2006-03-27 09:01:33 -05:00
|
|
|
// wxDataViewCtrl flags
|
2006-01-08 16:50:02 -05:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2006-02-21 12:35:19 -05:00
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxDataViewCtrl globals
|
|
|
|
// ----------------------------------------------------------------------------
|
2006-01-08 16:50:02 -05:00
|
|
|
|
2006-05-17 21:22:06 -04:00
|
|
|
class WXDLLIMPEXP_ADV wxDataViewModel;
|
|
|
|
class WXDLLIMPEXP_ADV wxDataViewListModel;
|
|
|
|
class WXDLLIMPEXP_ADV wxDataViewCtrl;
|
|
|
|
class WXDLLIMPEXP_ADV wxDataViewColumn;
|
2006-10-03 11:24:03 -04:00
|
|
|
class WXDLLIMPEXP_ADV wxDataViewRenderer;
|
2006-02-21 19:19:04 -05:00
|
|
|
|
2006-05-17 21:22:06 -04:00
|
|
|
extern WXDLLIMPEXP_DATA_ADV(const wxChar) wxDataViewCtrlNameStr[];
|
2006-01-08 16:50:02 -05:00
|
|
|
|
2007-02-17 07:32:38 -05:00
|
|
|
// the default width of new (text) columns:
|
|
|
|
#define wxDVC_DEFAULT_WIDTH 80
|
|
|
|
|
|
|
|
// the default width of new toggle columns:
|
|
|
|
#define wxDVC_TOGGLE_DEFAULT_WIDTH 30
|
|
|
|
|
2007-02-23 02:57:46 -05:00
|
|
|
// the default minimal width of the columns:
|
|
|
|
#define wxDVC_DEFAULT_MINWIDTH 30
|
|
|
|
|
|
|
|
// the default alignment of wxDataViewRenderers:
|
|
|
|
#define wxDVR_DEFAULT_ALIGNMENT (wxALIGN_LEFT|wxALIGN_TOP)
|
|
|
|
|
2007-02-17 07:32:38 -05:00
|
|
|
|
2006-03-27 09:01:33 -05:00
|
|
|
// ---------------------------------------------------------
|
2006-02-21 12:35:19 -05:00
|
|
|
// wxDataViewModel
|
2006-03-27 09:01:33 -05:00
|
|
|
// ---------------------------------------------------------
|
2006-02-21 12:35:19 -05:00
|
|
|
|
2007-02-17 07:32:38 -05:00
|
|
|
class WXDLLIMPEXP_ADV wxDataViewModel: public wxObjectRefData
|
2006-02-21 12:35:19 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxDataViewModel() { }
|
2006-03-27 09:01:33 -05:00
|
|
|
|
2006-02-21 12:35:19 -05:00
|
|
|
protected:
|
2007-02-17 07:32:38 -05:00
|
|
|
// the user should not delete this class directly: he should use DecRef() instead!
|
|
|
|
virtual ~wxDataViewModel() { }
|
2006-02-21 12:35:19 -05:00
|
|
|
};
|
|
|
|
|
2006-03-27 09:01:33 -05:00
|
|
|
// ---------------------------------------------------------
|
2006-02-21 12:35:19 -05:00
|
|
|
// wxDataViewListModelNotifier
|
2006-03-27 09:01:33 -05:00
|
|
|
// ---------------------------------------------------------
|
2006-02-21 12:35:19 -05:00
|
|
|
|
2006-05-17 21:22:06 -04:00
|
|
|
class WXDLLIMPEXP_ADV wxDataViewListModelNotifier: public wxObject
|
2006-02-21 12:35:19 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxDataViewListModelNotifier() { }
|
2007-04-24 14:00:14 -04:00
|
|
|
virtual ~wxDataViewListModelNotifier() { m_owner = NULL; }
|
2006-03-27 09:01:33 -05:00
|
|
|
|
2006-02-21 12:35:19 -05:00
|
|
|
virtual bool RowAppended() = 0;
|
|
|
|
virtual bool RowPrepended() = 0;
|
2006-10-03 07:09:06 -04:00
|
|
|
virtual bool RowInserted( unsigned int before ) = 0;
|
|
|
|
virtual bool RowDeleted( unsigned int row ) = 0;
|
|
|
|
virtual bool RowChanged( unsigned int row ) = 0;
|
|
|
|
virtual bool ValueChanged( unsigned int col, unsigned int row ) = 0;
|
|
|
|
virtual bool RowsReordered( unsigned int *new_order ) = 0;
|
2006-02-21 12:35:19 -05:00
|
|
|
virtual bool Cleared() = 0;
|
2006-03-27 09:01:33 -05:00
|
|
|
|
2006-02-28 10:04:25 -05:00
|
|
|
void SetOwner( wxDataViewListModel *owner ) { m_owner = owner; }
|
|
|
|
wxDataViewListModel *GetOwner() { return m_owner; }
|
2006-03-27 09:01:33 -05:00
|
|
|
|
2006-02-28 10:04:25 -05:00
|
|
|
private:
|
|
|
|
wxDataViewListModel *m_owner;
|
2006-02-21 13:12:44 -05:00
|
|
|
};
|
2006-02-21 12:35:19 -05:00
|
|
|
|
2006-03-27 09:01:33 -05:00
|
|
|
// ---------------------------------------------------------
|
2006-02-21 12:35:19 -05:00
|
|
|
// wxDataViewListModel
|
2006-03-27 09:01:33 -05:00
|
|
|
// ---------------------------------------------------------
|
2006-02-21 12:35:19 -05:00
|
|
|
|
2006-05-17 21:22:06 -04:00
|
|
|
class WXDLLIMPEXP_ADV wxDataViewViewingColumn: public wxObject
|
2006-02-28 10:04:25 -05:00
|
|
|
{
|
|
|
|
public:
|
2006-10-03 07:09:06 -04:00
|
|
|
wxDataViewViewingColumn( wxDataViewColumn *view_column, unsigned int model_column )
|
2006-02-28 10:04:25 -05:00
|
|
|
{
|
|
|
|
m_viewColumn = view_column;
|
|
|
|
m_modelColumn = model_column;
|
|
|
|
}
|
2006-03-27 09:01:33 -05:00
|
|
|
|
2006-02-28 10:04:25 -05:00
|
|
|
wxDataViewColumn *m_viewColumn;
|
2006-10-03 07:39:08 -04:00
|
|
|
unsigned int m_modelColumn;
|
2006-02-28 10:04:25 -05:00
|
|
|
};
|
|
|
|
|
2006-05-17 21:22:06 -04:00
|
|
|
class WXDLLIMPEXP_ADV wxDataViewListModel: public wxDataViewModel
|
2006-02-21 12:35:19 -05:00
|
|
|
{
|
2007-02-17 07:32:38 -05:00
|
|
|
friend class WXDLLIMPEXP_ADV wxDataViewCtrl;
|
|
|
|
friend class WXDLLIMPEXP_ADV wxDataViewCtrlBase;
|
|
|
|
friend class WXDLLIMPEXP_ADV wxDataViewSortedListModel;
|
|
|
|
friend class WXDLLIMPEXP_ADV wxDataViewColumnBase;
|
|
|
|
friend class WXDLLIMPEXP_ADV wxGtkDataViewListModelNotifier;
|
|
|
|
|
2006-02-21 12:35:19 -05:00
|
|
|
public:
|
|
|
|
wxDataViewListModel();
|
|
|
|
|
2007-02-23 02:57:46 -05:00
|
|
|
virtual unsigned int GetRowCount() const = 0;
|
|
|
|
virtual unsigned int GetColumnCount() const = 0;
|
2007-02-17 07:32:38 -05:00
|
|
|
|
2006-02-23 08:34:15 -05:00
|
|
|
// return type as reported by wxVariant
|
2007-02-23 02:57:46 -05:00
|
|
|
virtual wxString GetColumnType( unsigned int col ) const = 0;
|
2007-02-17 07:32:38 -05:00
|
|
|
|
2006-02-23 08:34:15 -05:00
|
|
|
// get value into a wxVariant
|
2007-02-23 02:57:46 -05:00
|
|
|
virtual void GetValue( wxVariant &variant, unsigned int col, unsigned int row ) const = 0;
|
2007-02-17 07:32:38 -05:00
|
|
|
|
2006-02-23 08:34:15 -05:00
|
|
|
// set value, call ValueChanged() afterwards!
|
2007-04-24 05:36:48 -04:00
|
|
|
virtual bool SetValue( const wxVariant &variant, unsigned int col, unsigned int row ) = 0;
|
2006-02-21 12:35:19 -05:00
|
|
|
|
|
|
|
// delegated notifiers
|
2006-02-28 05:47:28 -05:00
|
|
|
virtual bool RowAppended();
|
|
|
|
virtual bool RowPrepended();
|
2006-10-03 07:09:06 -04:00
|
|
|
virtual bool RowInserted( unsigned int before );
|
|
|
|
virtual bool RowDeleted( unsigned int row );
|
|
|
|
virtual bool RowChanged( unsigned int row );
|
|
|
|
virtual bool ValueChanged( unsigned int col, unsigned int row );
|
|
|
|
virtual bool RowsReordered( unsigned int *new_order );
|
2006-02-28 05:47:28 -05:00
|
|
|
virtual bool Cleared();
|
2006-02-27 08:09:41 -05:00
|
|
|
|
2007-02-17 07:32:38 -05:00
|
|
|
protected:
|
|
|
|
// the user should not delete this class directly: he should use DecRef() instead!
|
|
|
|
virtual ~wxDataViewListModel();
|
|
|
|
|
2006-03-27 09:01:33 -05:00
|
|
|
// Used internally
|
2006-10-07 10:15:53 -04:00
|
|
|
void AddViewingColumn( wxDataViewColumn *view_column, unsigned int model_column );
|
|
|
|
void RemoveViewingColumn( wxDataViewColumn *column );
|
2006-03-27 09:01:33 -05:00
|
|
|
|
2006-10-07 10:15:53 -04:00
|
|
|
void AddNotifier( wxDataViewListModelNotifier *notifier );
|
|
|
|
void RemoveNotifier( wxDataViewListModelNotifier *notifier );
|
2006-03-27 09:01:33 -05:00
|
|
|
|
2006-02-28 10:04:25 -05:00
|
|
|
wxList m_notifiers;
|
|
|
|
wxList m_viewingColumns;
|
2006-02-21 12:35:19 -05:00
|
|
|
};
|
|
|
|
|
2007-02-17 07:32:38 -05:00
|
|
|
|
|
|
|
|
2006-03-27 09:01:33 -05:00
|
|
|
// ---------------------------------------------------------
|
2006-02-28 05:47:28 -05:00
|
|
|
// wxDataViewSortedListModel
|
2006-03-27 09:01:33 -05:00
|
|
|
// ---------------------------------------------------------
|
2006-02-28 05:47:28 -05:00
|
|
|
|
|
|
|
typedef int (wxCALLBACK *wxDataViewListModelCompare)
|
2006-10-03 07:09:06 -04:00
|
|
|
(unsigned int row1, unsigned int row2, unsigned int col, wxDataViewListModel* model );
|
2006-02-28 05:47:28 -05:00
|
|
|
|
2007-02-23 02:57:46 -05:00
|
|
|
WX_DEFINE_SORTED_USER_EXPORTED_ARRAY_SIZE_T(unsigned int,
|
|
|
|
wxDataViewSortedIndexArray, WXDLLIMPEXP_ADV);
|
2006-02-28 05:47:28 -05:00
|
|
|
|
2006-05-17 21:22:06 -04:00
|
|
|
class WXDLLIMPEXP_ADV wxDataViewSortedListModel: public wxDataViewListModel
|
2006-02-28 05:47:28 -05:00
|
|
|
{
|
2007-02-17 07:32:38 -05:00
|
|
|
friend class wxDataViewSortedListModelNotifier;
|
|
|
|
|
2006-02-28 05:47:28 -05:00
|
|
|
public:
|
|
|
|
wxDataViewSortedListModel( wxDataViewListModel *child );
|
|
|
|
virtual ~wxDataViewSortedListModel();
|
|
|
|
|
2006-10-06 05:50:45 -04:00
|
|
|
void SetAscending( bool ascending ) { m_ascending = ascending; }
|
2007-02-23 02:57:46 -05:00
|
|
|
bool IsAscending() const { return m_ascending; }
|
|
|
|
|
|
|
|
virtual unsigned int GetRowCount() const;
|
|
|
|
virtual unsigned int GetColumnCount() const;
|
2006-10-06 05:50:45 -04:00
|
|
|
|
2006-02-28 05:47:28 -05:00
|
|
|
// return type as reported by wxVariant
|
2007-02-23 02:57:46 -05:00
|
|
|
virtual wxString GetColumnType( unsigned int col ) const;
|
|
|
|
|
2006-02-28 05:47:28 -05:00
|
|
|
// get value into a wxVariant
|
2007-02-23 02:57:46 -05:00
|
|
|
virtual void GetValue( wxVariant &variant, unsigned int col, unsigned int row ) const;
|
|
|
|
|
2006-02-28 05:47:28 -05:00
|
|
|
// set value, call ValueChanged() afterwards!
|
2007-04-24 05:36:48 -04:00
|
|
|
virtual bool SetValue( const wxVariant &variant, unsigned int col, unsigned int row );
|
2006-02-28 05:47:28 -05:00
|
|
|
|
2006-09-25 17:11:14 -04:00
|
|
|
// called from user
|
2006-02-28 05:47:28 -05:00
|
|
|
virtual bool RowAppended();
|
|
|
|
virtual bool RowPrepended();
|
2006-10-03 07:09:06 -04:00
|
|
|
virtual bool RowInserted( unsigned int before );
|
|
|
|
virtual bool RowDeleted( unsigned int row );
|
|
|
|
virtual bool RowChanged( unsigned int row );
|
|
|
|
virtual bool ValueChanged( unsigned int col, unsigned int row );
|
|
|
|
virtual bool RowsReordered( unsigned int *new_order );
|
2006-02-28 05:47:28 -05:00
|
|
|
virtual bool Cleared();
|
|
|
|
|
2006-09-25 17:11:14 -04:00
|
|
|
// called if child's notifiers are called
|
|
|
|
bool ChildRowAppended();
|
|
|
|
bool ChildRowPrepended();
|
2006-10-03 07:09:06 -04:00
|
|
|
bool ChildRowInserted( unsigned int before );
|
|
|
|
bool ChildRowDeleted( unsigned int row );
|
|
|
|
bool ChildRowChanged( unsigned int row );
|
|
|
|
bool ChildValueChanged( unsigned int col, unsigned int row );
|
|
|
|
bool ChildRowsReordered( unsigned int *new_order );
|
2006-09-25 17:11:14 -04:00
|
|
|
bool ChildCleared();
|
2006-03-01 05:49:06 -05:00
|
|
|
|
2006-02-28 10:04:25 -05:00
|
|
|
virtual void Resort();
|
2007-04-24 14:00:14 -04:00
|
|
|
|
|
|
|
void DetachChild();
|
2006-02-28 10:04:25 -05:00
|
|
|
|
2006-02-28 05:47:28 -05:00
|
|
|
private:
|
2006-10-06 05:50:45 -04:00
|
|
|
bool m_ascending;
|
2006-02-28 05:47:28 -05:00
|
|
|
wxDataViewListModel *m_child;
|
|
|
|
wxDataViewSortedIndexArray m_array;
|
2006-03-01 05:49:06 -05:00
|
|
|
wxDataViewListModelNotifier *m_notifierOnChild;
|
2006-10-06 05:50:45 -04:00
|
|
|
|
|
|
|
void InitStatics(); // BAD
|
2006-02-28 05:47:28 -05:00
|
|
|
};
|
|
|
|
|
2007-04-17 08:08:10 -04:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxDataViewEditorCtrlEvtHandler
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxDataViewEditorCtrlEvtHandler: public wxEvtHandler
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxDataViewEditorCtrlEvtHandler( wxControl *editor, wxDataViewRenderer *owner );
|
|
|
|
|
|
|
|
void AcceptChangesAndFinish();
|
2007-04-19 08:47:47 -04:00
|
|
|
void SetFocusOnIdle( bool focus = true ) { m_focusOnIdle = focus; }
|
2007-04-17 08:08:10 -04:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void OnChar( wxKeyEvent &event );
|
|
|
|
void OnKillFocus( wxFocusEvent &event );
|
2007-04-19 08:47:47 -04:00
|
|
|
void OnIdle( wxIdleEvent &event );
|
2007-04-17 08:08:10 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
wxDataViewRenderer *m_owner;
|
|
|
|
wxControl *m_editorCtrl;
|
|
|
|
bool m_finished;
|
2007-04-19 08:47:47 -04:00
|
|
|
bool m_focusOnIdle;
|
2007-04-17 08:08:10 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_EVENT_TABLE()
|
|
|
|
};
|
|
|
|
|
2006-03-27 09:01:33 -05:00
|
|
|
// ---------------------------------------------------------
|
2006-10-03 11:24:03 -04:00
|
|
|
// wxDataViewRendererBase
|
2006-03-27 09:01:33 -05:00
|
|
|
// ---------------------------------------------------------
|
2006-02-21 19:19:04 -05:00
|
|
|
|
2006-02-22 21:04:46 -05:00
|
|
|
enum wxDataViewCellMode
|
2006-02-21 19:19:04 -05:00
|
|
|
{
|
2006-02-22 21:04:46 -05:00
|
|
|
wxDATAVIEW_CELL_INERT,
|
|
|
|
wxDATAVIEW_CELL_ACTIVATABLE,
|
|
|
|
wxDATAVIEW_CELL_EDITABLE
|
2006-02-21 19:19:04 -05:00
|
|
|
};
|
|
|
|
|
2006-02-22 21:04:46 -05:00
|
|
|
enum wxDataViewCellRenderState
|
|
|
|
{
|
|
|
|
wxDATAVIEW_CELL_SELECTED = 1,
|
|
|
|
wxDATAVIEW_CELL_PRELIT = 2,
|
|
|
|
wxDATAVIEW_CELL_INSENSITIVE = 4,
|
|
|
|
wxDATAVIEW_CELL_FOCUSED = 8
|
|
|
|
};
|
|
|
|
|
2006-10-03 11:24:03 -04:00
|
|
|
class WXDLLIMPEXP_ADV wxDataViewRendererBase: public wxObject
|
2006-02-22 21:04:46 -05:00
|
|
|
{
|
|
|
|
public:
|
2007-02-23 02:57:46 -05:00
|
|
|
wxDataViewRendererBase( const wxString &varianttype,
|
|
|
|
wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT,
|
|
|
|
int alignment = wxDVR_DEFAULT_ALIGNMENT );
|
2006-02-22 21:04:46 -05:00
|
|
|
|
2007-02-23 02:57:46 -05:00
|
|
|
virtual bool Validate( wxVariant& WXUNUSED(value) )
|
|
|
|
{ return true; }
|
2006-03-27 09:01:33 -05:00
|
|
|
|
2006-02-22 21:04:46 -05:00
|
|
|
void SetOwner( wxDataViewColumn *owner ) { m_owner = owner; }
|
|
|
|
wxDataViewColumn* GetOwner() { return m_owner; }
|
2006-03-27 09:01:33 -05:00
|
|
|
|
2007-02-23 02:57:46 -05:00
|
|
|
// renderer properties:
|
|
|
|
|
|
|
|
virtual bool SetValue( const wxVariant& WXUNUSED(value) ) = 0;
|
|
|
|
virtual bool GetValue( wxVariant& WXUNUSED(value) ) const = 0;
|
|
|
|
|
|
|
|
wxString GetVariantType() const { return m_variantType; }
|
|
|
|
|
|
|
|
virtual void SetMode( wxDataViewCellMode mode ) = 0;
|
|
|
|
virtual wxDataViewCellMode GetMode() const = 0;
|
|
|
|
|
|
|
|
// NOTE: Set/GetAlignment do not take/return a wxAlignment enum but
|
|
|
|
// rather an "int"; that's because for rendering cells it's allowed
|
|
|
|
// to combine alignment flags (e.g. wxALIGN_LEFT|wxALIGN_BOTTOM)
|
|
|
|
virtual void SetAlignment( int align ) = 0;
|
|
|
|
virtual int GetAlignment() const = 0;
|
2007-04-16 08:45:25 -04:00
|
|
|
|
2007-04-17 08:08:10 -04:00
|
|
|
// in-place editing
|
|
|
|
virtual bool HasEditorCtrl()
|
|
|
|
{ return false; }
|
2007-04-19 21:40:13 -04:00
|
|
|
virtual wxControl* CreateEditorCtrl(wxWindow * WXUNUSED(parent),
|
|
|
|
wxRect WXUNUSED(labelRect),
|
|
|
|
const wxVariant& WXUNUSED(value))
|
2007-04-17 08:08:10 -04:00
|
|
|
{ return NULL; }
|
2007-04-19 21:40:13 -04:00
|
|
|
virtual bool GetValueFromEditorCtrl(wxControl * WXUNUSED(editor),
|
|
|
|
wxVariant& WXUNUSED(value))
|
2007-04-17 08:08:10 -04:00
|
|
|
{ return false; }
|
|
|
|
|
|
|
|
virtual bool StartEditing( unsigned int row, wxRect labelRect );
|
|
|
|
virtual void CancelEditing();
|
|
|
|
virtual bool FinishEditing();
|
|
|
|
|
|
|
|
wxControl *GetEditorCtrl() { return m_editorCtrl; }
|
|
|
|
|
2006-02-23 08:34:15 -05:00
|
|
|
protected:
|
2006-02-22 21:04:46 -05:00
|
|
|
wxString m_variantType;
|
|
|
|
wxDataViewColumn *m_owner;
|
2007-04-17 08:08:10 -04:00
|
|
|
wxControl *m_editorCtrl;
|
|
|
|
unsigned int m_row; // for m_editorCtrl
|
2006-02-22 21:04:46 -05:00
|
|
|
|
2007-02-23 02:57:46 -05:00
|
|
|
// internal utility:
|
|
|
|
const wxDataViewCtrl* GetView() const;
|
|
|
|
|
2006-02-22 21:04:46 -05:00
|
|
|
protected:
|
2006-10-03 11:24:03 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewRendererBase)
|
2006-02-22 21:04:46 -05:00
|
|
|
};
|
|
|
|
|
2006-03-27 09:01:33 -05:00
|
|
|
// ---------------------------------------------------------
|
2006-02-22 21:04:46 -05:00
|
|
|
// wxDataViewColumnBase
|
2006-03-27 09:01:33 -05:00
|
|
|
// ---------------------------------------------------------
|
2006-02-22 21:04:46 -05:00
|
|
|
|
2006-02-21 19:19:04 -05:00
|
|
|
enum wxDataViewColumnFlags
|
|
|
|
{
|
|
|
|
wxDATAVIEW_COL_RESIZABLE = 1,
|
|
|
|
wxDATAVIEW_COL_SORTABLE = 2,
|
|
|
|
wxDATAVIEW_COL_HIDDEN = 4
|
|
|
|
};
|
|
|
|
|
2006-05-17 21:22:06 -04:00
|
|
|
class WXDLLIMPEXP_ADV wxDataViewColumnBase: public wxObject
|
2006-02-21 19:19:04 -05:00
|
|
|
{
|
|
|
|
public:
|
2007-02-17 07:32:38 -05:00
|
|
|
wxDataViewColumnBase( const wxString &title, wxDataViewRenderer *renderer,
|
|
|
|
unsigned int model_column, int width = wxDVC_DEFAULT_WIDTH,
|
|
|
|
wxAlignment align = wxALIGN_CENTER,
|
|
|
|
int flags = wxDATAVIEW_COL_RESIZABLE );
|
|
|
|
wxDataViewColumnBase( const wxBitmap &bitmap, wxDataViewRenderer *renderer,
|
|
|
|
unsigned int model_column, int width = wxDVC_DEFAULT_WIDTH,
|
|
|
|
wxAlignment align = wxALIGN_CENTER,
|
|
|
|
int flags = wxDATAVIEW_COL_RESIZABLE );
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxDataViewColumnBase();
|
2006-02-21 19:19:04 -05:00
|
|
|
|
2007-02-23 02:57:46 -05:00
|
|
|
// setters:
|
2006-04-27 07:33:56 -04:00
|
|
|
|
2007-02-23 02:57:46 -05:00
|
|
|
virtual void SetTitle( const wxString &title ) = 0;
|
2006-10-05 15:35:23 -04:00
|
|
|
virtual void SetAlignment( wxAlignment align ) = 0;
|
2006-10-06 05:50:45 -04:00
|
|
|
virtual void SetSortable( bool sortable ) = 0;
|
2007-02-23 02:57:46 -05:00
|
|
|
virtual void SetResizeable( bool resizeable ) = 0;
|
|
|
|
virtual void SetHidden( bool hidden ) = 0;
|
2006-10-05 15:35:23 -04:00
|
|
|
virtual void SetSortOrder( bool ascending ) = 0;
|
2007-02-23 02:57:46 -05:00
|
|
|
virtual void SetFlags( int flags );
|
|
|
|
virtual void SetOwner( wxDataViewCtrl *owner )
|
|
|
|
{ m_owner = owner; }
|
|
|
|
virtual void SetBitmap( const wxBitmap &bitmap )
|
|
|
|
{ m_bitmap=bitmap; }
|
2006-10-05 15:06:21 -04:00
|
|
|
|
2007-02-23 02:57:46 -05:00
|
|
|
virtual void SetMinWidth( int minWidth ) = 0;
|
|
|
|
virtual void SetWidth( int width ) = 0;
|
2006-03-27 09:01:33 -05:00
|
|
|
|
|
|
|
|
2007-02-23 02:57:46 -05:00
|
|
|
// getters:
|
2006-04-27 07:33:56 -04:00
|
|
|
|
2007-02-23 02:57:46 -05:00
|
|
|
virtual wxString GetTitle() const = 0;
|
|
|
|
virtual wxAlignment GetAlignment() const = 0;
|
2007-02-17 07:32:38 -05:00
|
|
|
virtual int GetWidth() const = 0;
|
2007-02-23 02:57:46 -05:00
|
|
|
virtual int GetMinWidth() const = 0;
|
2006-04-27 07:33:56 -04:00
|
|
|
|
2007-02-23 02:57:46 -05:00
|
|
|
virtual int GetFlags() const;
|
|
|
|
|
|
|
|
virtual bool IsSortable() const = 0;
|
|
|
|
virtual bool IsResizeable() const = 0;
|
|
|
|
virtual bool IsHidden() const = 0;
|
|
|
|
virtual bool IsSortOrderAscending() const = 0;
|
|
|
|
|
|
|
|
const wxBitmap &GetBitmap() const { return m_bitmap; }
|
|
|
|
unsigned int GetModelColumn() const { return m_model_column; }
|
|
|
|
|
|
|
|
wxDataViewCtrl *GetOwner() { return m_owner; }
|
|
|
|
wxDataViewRenderer* GetRenderer() { return m_renderer; }
|
|
|
|
|
|
|
|
protected:
|
2006-10-03 11:24:03 -04:00
|
|
|
wxDataViewRenderer *m_renderer;
|
2006-02-22 21:04:46 -05:00
|
|
|
int m_model_column;
|
2006-10-05 15:06:21 -04:00
|
|
|
wxBitmap m_bitmap;
|
2006-02-22 21:04:46 -05:00
|
|
|
wxDataViewCtrl *m_owner;
|
2006-02-21 19:19:04 -05:00
|
|
|
|
|
|
|
protected:
|
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewColumnBase)
|
|
|
|
};
|
|
|
|
|
2006-03-27 09:01:33 -05:00
|
|
|
// ---------------------------------------------------------
|
2006-02-21 12:35:19 -05:00
|
|
|
// wxDataViewCtrlBase
|
2006-03-27 09:01:33 -05:00
|
|
|
// ---------------------------------------------------------
|
2006-02-21 12:35:19 -05:00
|
|
|
|
2006-04-19 04:31:35 -04:00
|
|
|
#define wxDV_SINGLE 0x0000 // for convenience
|
2007-02-23 02:57:46 -05:00
|
|
|
#define wxDV_MULTIPLE 0x0001 // can select multiple items
|
|
|
|
|
|
|
|
#define wxDV_NO_HEADER 0x0002 // column titles not visible
|
|
|
|
#define wxDV_HORIZ_RULES 0x0004 // light horizontal rules between rows
|
|
|
|
#define wxDV_VERT_RULES 0x0008 // light vertical rules between columns
|
2006-04-19 04:31:35 -04:00
|
|
|
|
2006-05-17 21:22:06 -04:00
|
|
|
class WXDLLIMPEXP_ADV wxDataViewCtrlBase: public wxControl
|
2006-02-21 12:35:19 -05:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxDataViewCtrlBase();
|
2006-09-05 16:47:48 -04:00
|
|
|
virtual ~wxDataViewCtrlBase();
|
2006-03-27 09:01:33 -05:00
|
|
|
|
2006-02-21 15:52:05 -05:00
|
|
|
virtual bool AssociateModel( wxDataViewListModel *model );
|
|
|
|
wxDataViewListModel* GetModel();
|
2006-03-27 09:01:33 -05:00
|
|
|
|
2006-10-05 15:06:21 -04:00
|
|
|
// short cuts
|
2006-10-07 10:15:53 -04:00
|
|
|
bool AppendTextColumn( const wxString &label, unsigned int model_column,
|
2007-02-17 07:32:38 -05:00
|
|
|
wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1,
|
|
|
|
wxAlignment align = wxALIGN_CENTER,
|
|
|
|
int flags = wxDATAVIEW_COL_RESIZABLE );
|
2006-10-07 10:15:53 -04:00
|
|
|
bool AppendToggleColumn( const wxString &label, unsigned int model_column,
|
2007-02-17 07:32:38 -05:00
|
|
|
wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_TOGGLE_DEFAULT_WIDTH,
|
|
|
|
wxAlignment align = wxALIGN_CENTER,
|
|
|
|
int flags = wxDATAVIEW_COL_RESIZABLE );
|
2006-10-07 10:15:53 -04:00
|
|
|
bool AppendProgressColumn( const wxString &label, unsigned int model_column,
|
2007-02-17 07:32:38 -05:00
|
|
|
wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_DEFAULT_WIDTH,
|
|
|
|
wxAlignment align = wxALIGN_CENTER,
|
|
|
|
int flags = wxDATAVIEW_COL_RESIZABLE );
|
2006-10-07 10:15:53 -04:00
|
|
|
bool AppendDateColumn( const wxString &label, unsigned int model_column,
|
2007-02-17 07:32:38 -05:00
|
|
|
wxDataViewCellMode mode = wxDATAVIEW_CELL_ACTIVATABLE, int width = -1,
|
|
|
|
wxAlignment align = wxALIGN_CENTER,
|
|
|
|
int flags = wxDATAVIEW_COL_RESIZABLE );
|
2006-10-07 10:15:53 -04:00
|
|
|
bool AppendBitmapColumn( const wxString &label, unsigned int model_column,
|
2007-02-17 07:32:38 -05:00
|
|
|
wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1,
|
|
|
|
wxAlignment align = wxALIGN_CENTER,
|
|
|
|
int flags = wxDATAVIEW_COL_RESIZABLE );
|
2006-10-07 10:15:53 -04:00
|
|
|
bool AppendTextColumn( const wxBitmap &label, unsigned int model_column,
|
2007-02-17 07:32:38 -05:00
|
|
|
wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1,
|
|
|
|
wxAlignment align = wxALIGN_CENTER,
|
|
|
|
int flags = wxDATAVIEW_COL_RESIZABLE );
|
2006-10-07 10:15:53 -04:00
|
|
|
bool AppendToggleColumn( const wxBitmap &label, unsigned int model_column,
|
2007-02-17 07:32:38 -05:00
|
|
|
wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_TOGGLE_DEFAULT_WIDTH,
|
|
|
|
wxAlignment align = wxALIGN_CENTER,
|
|
|
|
int flags = wxDATAVIEW_COL_RESIZABLE );
|
2006-10-07 10:15:53 -04:00
|
|
|
bool AppendProgressColumn( const wxBitmap &label, unsigned int model_column,
|
2007-02-17 07:32:38 -05:00
|
|
|
wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = wxDVC_DEFAULT_WIDTH,
|
|
|
|
wxAlignment align = wxALIGN_CENTER,
|
|
|
|
int flags = wxDATAVIEW_COL_RESIZABLE );
|
2006-10-07 10:15:53 -04:00
|
|
|
bool AppendDateColumn( const wxBitmap &label, unsigned int model_column,
|
2007-02-17 07:32:38 -05:00
|
|
|
wxDataViewCellMode mode = wxDATAVIEW_CELL_ACTIVATABLE, int width = -1,
|
|
|
|
wxAlignment align = wxALIGN_CENTER,
|
|
|
|
int flags = wxDATAVIEW_COL_RESIZABLE );
|
2006-10-07 10:15:53 -04:00
|
|
|
bool AppendBitmapColumn( const wxBitmap &label, unsigned int model_column,
|
2007-02-17 07:32:38 -05:00
|
|
|
wxDataViewCellMode mode = wxDATAVIEW_CELL_INERT, int width = -1,
|
|
|
|
wxAlignment align = wxALIGN_CENTER,
|
|
|
|
int flags = wxDATAVIEW_COL_RESIZABLE );
|
2006-10-05 15:06:21 -04:00
|
|
|
|
2006-03-27 09:01:33 -05:00
|
|
|
virtual bool AppendColumn( wxDataViewColumn *col );
|
2007-02-23 02:57:46 -05:00
|
|
|
|
|
|
|
virtual unsigned int GetColumnCount() const;
|
|
|
|
|
2006-10-03 07:09:06 -04:00
|
|
|
virtual bool DeleteColumn( unsigned int pos );
|
2006-02-21 19:19:04 -05:00
|
|
|
virtual bool ClearColumns();
|
2006-10-03 07:09:06 -04:00
|
|
|
virtual wxDataViewColumn* GetColumn( unsigned int pos );
|
2006-03-27 09:01:33 -05:00
|
|
|
|
2006-10-03 07:39:08 -04:00
|
|
|
virtual void SetSelection( int row ) = 0; // -1 for unselect
|
|
|
|
inline void ClearSelection() { SetSelection( -1 ); }
|
2006-10-03 13:28:19 -04:00
|
|
|
virtual void Unselect( unsigned int row ) = 0;
|
2006-10-03 07:39:08 -04:00
|
|
|
virtual void SetSelectionRange( unsigned int from, unsigned int to ) = 0;
|
|
|
|
virtual void SetSelections( const wxArrayInt& aSelections) = 0;
|
|
|
|
|
|
|
|
virtual bool IsSelected( unsigned int row ) const = 0;
|
|
|
|
virtual int GetSelection() const = 0;
|
|
|
|
virtual int GetSelections(wxArrayInt& aSelections) const = 0;
|
|
|
|
|
2006-02-21 12:35:19 -05:00
|
|
|
private:
|
2006-02-21 15:52:05 -05:00
|
|
|
wxDataViewListModel *m_model;
|
2006-02-21 19:19:04 -05:00
|
|
|
wxList m_cols;
|
2007-04-19 08:47:47 -04:00
|
|
|
|
2006-02-21 12:35:19 -05:00
|
|
|
protected:
|
2006-02-21 14:55:58 -05:00
|
|
|
DECLARE_DYNAMIC_CLASS_NO_COPY(wxDataViewCtrlBase)
|
2006-02-21 12:35:19 -05:00
|
|
|
};
|
2006-01-08 16:50:02 -05:00
|
|
|
|
2006-10-03 09:23:31 -04:00
|
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
// wxDataViewEvent - the event class for the wxDataViewCtrl notifications
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
2006-10-03 17:51:05 -04:00
|
|
|
class WXDLLIMPEXP_ADV wxDataViewEvent : public wxNotifyEvent
|
2006-10-03 09:23:31 -04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
wxDataViewEvent(wxEventType commandType = wxEVT_NULL, int winid = 0)
|
|
|
|
: wxNotifyEvent(commandType, winid),
|
|
|
|
m_col(-1),
|
|
|
|
m_row(-1),
|
|
|
|
m_model(NULL),
|
|
|
|
m_value(wxNullVariant),
|
2006-10-06 05:50:45 -04:00
|
|
|
m_editCancelled(false),
|
|
|
|
m_column(NULL)
|
2006-10-03 09:23:31 -04:00
|
|
|
{ }
|
|
|
|
|
|
|
|
wxDataViewEvent(const wxDataViewEvent& event)
|
|
|
|
: wxNotifyEvent(event),
|
|
|
|
m_col(event.m_col),
|
|
|
|
m_row(event.m_col),
|
|
|
|
m_model(event.m_model),
|
|
|
|
m_value(event.m_value),
|
2006-10-06 05:50:45 -04:00
|
|
|
m_editCancelled(event.m_editCancelled),
|
|
|
|
m_column(event.m_column)
|
2006-10-03 09:23:31 -04:00
|
|
|
{ }
|
|
|
|
|
|
|
|
int GetColumn() const { return m_col; }
|
|
|
|
void SetColumn( int col ) { m_col = col; }
|
2007-02-23 02:57:46 -05:00
|
|
|
|
2006-10-03 09:23:31 -04:00
|
|
|
int GetRow() const { return m_row; }
|
|
|
|
void SetRow( int row ) { m_row = row; }
|
2007-02-23 02:57:46 -05:00
|
|
|
|
2006-10-03 09:23:31 -04:00
|
|
|
wxDataViewModel* GetModel() const { return m_model; }
|
|
|
|
void SetModel( wxDataViewModel *model ) { m_model = model; }
|
2007-02-23 02:57:46 -05:00
|
|
|
|
2006-10-03 09:23:31 -04:00
|
|
|
const wxVariant &GetValue() const { return m_value; }
|
|
|
|
void SetValue( const wxVariant &value ) { m_value = value; }
|
|
|
|
|
2006-10-06 05:50:45 -04:00
|
|
|
// for wxEVT_DATAVIEW_COLUMN_HEADER_CLICKED only
|
|
|
|
void SetDataViewColumn( wxDataViewColumn *col ) { m_column = col; }
|
2007-02-23 02:57:46 -05:00
|
|
|
wxDataViewColumn *GetDataViewColumn() const { return m_column; }
|
2006-10-06 05:50:45 -04:00
|
|
|
|
2006-10-03 09:23:31 -04:00
|
|
|
// was label editing canceled? (for wxEVT_COMMAND_DATVIEW_END_LABEL_EDIT only)
|
|
|
|
bool IsEditCancelled() const { return m_editCancelled; }
|
|
|
|
void SetEditCanceled(bool editCancelled) { m_editCancelled = editCancelled; }
|
|
|
|
|
|
|
|
virtual wxEvent *Clone() const { return new wxDataViewEvent(*this); }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
int m_col;
|
|
|
|
int m_row;
|
|
|
|
wxDataViewModel *m_model;
|
|
|
|
wxVariant m_value;
|
|
|
|
bool m_editCancelled;
|
2006-10-06 05:50:45 -04:00
|
|
|
wxDataViewColumn *m_column;
|
2006-10-03 09:23:31 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxDataViewEvent)
|
|
|
|
};
|
|
|
|
|
|
|
|
BEGIN_DECLARE_EVENT_TYPES()
|
2006-10-10 13:35:49 -04:00
|
|
|
DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ROW_SELECTED, -1)
|
|
|
|
DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_ROW_ACTIVATED, -1)
|
|
|
|
DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_CLICK, -1)
|
|
|
|
DECLARE_EXPORTED_EVENT_TYPE(WXDLLIMPEXP_ADV, wxEVT_COMMAND_DATAVIEW_COLUMN_HEADER_RIGHT_CLICK, -1)
|
2006-10-03 09:23:31 -04:00
|
|
|
END_DECLARE_EVENT_TYPES()
|
|
|
|
|
|
|
|
typedef void (wxEvtHandler::*wxDataViewEventFunction)(wxDataViewEvent&);
|
|
|
|
|
|
|
|
#define wxDataViewEventHandler(func) \
|
|
|
|
(wxObjectEventFunction)(wxEventFunction)wxStaticCastEvent(wxDataViewEventFunction, &func)
|
|
|
|
|
|
|
|
#define wx__DECLARE_DATAVIEWEVT(evt, id, fn) \
|
|
|
|
wx__DECLARE_EVT1(wxEVT_COMMAND_DATAVIEW_ ## evt, id, wxDataViewEventHandler(fn))
|
|
|
|
|
|
|
|
#define EVT_DATAVIEW_ROW_SELECTED(id, fn) wx__DECLARE_DATAVIEWEVT(ROW_SELECTED, id, fn)
|
2006-10-04 09:23:20 -04:00
|
|
|
#define EVT_DATAVIEW_ROW_ACTIVATED(id, fn) wx__DECLARE_DATAVIEWEVT(ROW_ACTIVATED, id, fn)
|
2006-10-06 05:50:45 -04:00
|
|
|
#define EVT_DATAVIEW_COLUMN_HEADER_CLICK(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_HEADER_CLICK, id, fn)
|
|
|
|
#define EVT_DATAVIEW_COLUMN_HEADER_RIGHT_CLICKED(id, fn) wx__DECLARE_DATAVIEWEVT(COLUMN_HEADER_RIGHT_CLICK, id, fn)
|
2006-10-03 09:23:31 -04:00
|
|
|
|
|
|
|
|
2006-03-20 11:37:24 -05:00
|
|
|
#if defined(wxUSE_GENERICDATAVIEWCTRL)
|
|
|
|
#include "wx/generic/dataview.h"
|
|
|
|
#elif defined(__WXGTK20__)
|
2006-01-08 16:50:02 -05:00
|
|
|
#include "wx/gtk/dataview.h"
|
|
|
|
#elif defined(__WXMAC__)
|
2006-04-27 07:33:56 -04:00
|
|
|
// TODO
|
|
|
|
// #include "wx/mac/dataview.h"
|
2006-01-08 16:50:02 -05:00
|
|
|
#else
|
|
|
|
#include "wx/generic/dataview.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // wxUSE_DATAVIEWCTRL
|
|
|
|
|
|
|
|
#endif
|
|
|
|
// _WX_DATAVIEW_H_BASE_
|