• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/samples/grid/

Lines Matching refs:GridFrame

55     GridFrame *frame = new GridFrame;
62 // GridFrame
65 BEGIN_EVENT_TABLE( GridFrame, wxFrame )
66 EVT_MENU( ID_TOGGLEROWLABELS, GridFrame::ToggleRowLabels )
67 EVT_MENU( ID_TOGGLECOLLABELS, GridFrame::ToggleColLabels )
68 EVT_MENU( ID_TOGGLEEDIT, GridFrame::ToggleEditing )
69 EVT_MENU( ID_TOGGLEROWSIZING, GridFrame::ToggleRowSizing )
70 EVT_MENU( ID_TOGGLECOLSIZING, GridFrame::ToggleColSizing )
71 EVT_MENU( ID_TOGGLECOLMOVING, GridFrame::ToggleColMoving )
72 EVT_MENU( ID_TOGGLEGRIDSIZING, GridFrame::ToggleGridSizing )
73 EVT_MENU( ID_TOGGLEGRIDDRAGCELL, GridFrame::ToggleGridDragCell )
74 EVT_MENU( ID_TOGGLEGRIDLINES, GridFrame::ToggleGridLines )
75 EVT_MENU( ID_AUTOSIZECOLS, GridFrame::AutoSizeCols )
76 EVT_MENU( ID_CELLOVERFLOW, GridFrame::CellOverflow )
77 EVT_MENU( ID_RESIZECELL, GridFrame::ResizeCell )
78 EVT_MENU( ID_SETLABELCOLOUR, GridFrame::SetLabelColour )
79 EVT_MENU( ID_SETLABELTEXTCOLOUR, GridFrame::SetLabelTextColour )
80 EVT_MENU( ID_SETLABEL_FONT, GridFrame::SetLabelFont )
81 EVT_MENU( ID_ROWLABELHORIZALIGN, GridFrame::SetRowLabelHorizAlignment )
82 EVT_MENU( ID_ROWLABELVERTALIGN, GridFrame::SetRowLabelVertAlignment )
83 EVT_MENU( ID_COLLABELHORIZALIGN, GridFrame::SetColLabelHorizAlignment )
84 EVT_MENU( ID_COLLABELVERTALIGN, GridFrame::SetColLabelVertAlignment )
85 EVT_MENU( ID_GRIDLINECOLOUR, GridFrame::SetGridLineColour )
86 EVT_MENU( ID_INSERTROW, GridFrame::InsertRow )
87 EVT_MENU( ID_INSERTCOL, GridFrame::InsertCol )
88 EVT_MENU( ID_DELETEROW, GridFrame::DeleteSelectedRows )
89 EVT_MENU( ID_DELETECOL, GridFrame::DeleteSelectedCols )
90 EVT_MENU( ID_CLEARGRID, GridFrame::ClearGrid )
91 EVT_MENU( ID_SELCELLS, GridFrame::SelectCells )
92 EVT_MENU( ID_SELROWS, GridFrame::SelectRows )
93 EVT_MENU( ID_SELCOLS, GridFrame::SelectCols )
95 EVT_MENU( ID_SET_CELL_FG_COLOUR, GridFrame::SetCellFgColour )
96 EVT_MENU( ID_SET_CELL_BG_COLOUR, GridFrame::SetCellBgColour )
98 EVT_MENU( wxID_ABOUT, GridFrame::About )
99 EVT_MENU( wxID_EXIT, GridFrame::OnQuit )
100 EVT_MENU( ID_VTABLE, GridFrame::OnVTable)
101 EVT_MENU( ID_BUGS_TABLE, GridFrame::OnBugsTable)
102 EVT_MENU( ID_SMALL_GRID, GridFrame::OnSmallGrid)
104 EVT_MENU( ID_DESELECT_CELL, GridFrame::DeselectCell)
105 EVT_MENU( ID_DESELECT_COL, GridFrame::DeselectCol)
106 EVT_MENU( ID_DESELECT_ROW, GridFrame::DeselectRow)
107 EVT_MENU( ID_DESELECT_ALL, GridFrame::DeselectAll)
108 EVT_MENU( ID_SELECT_CELL, GridFrame::SelectCell)
109 EVT_MENU( ID_SELECT_COL, GridFrame::SelectCol)
110 EVT_MENU( ID_SELECT_ROW, GridFrame::SelectRow)
111 EVT_MENU( ID_SELECT_ALL, GridFrame::SelectAll)
112 EVT_MENU( ID_SELECT_UNSELECT, GridFrame::OnAddToSelectToggle)
113 EVT_MENU( ID_SHOW_SELECTION, GridFrame::OnShowSelection)
115 EVT_MENU( ID_SET_HIGHLIGHT_WIDTH, GridFrame::OnSetHighlightWidth)
116 EVT_MENU( ID_SET_RO_HIGHLIGHT_WIDTH, GridFrame::OnSetROHighlightWidth)
118 EVT_GRID_LABEL_LEFT_CLICK( GridFrame::OnLabelLeftClick )
119 EVT_GRID_CELL_LEFT_CLICK( GridFrame::OnCellLeftClick )
120 EVT_GRID_ROW_SIZE( GridFrame::OnRowSize )
121 EVT_GRID_COL_SIZE( GridFrame::OnColSize )
122 EVT_GRID_SELECT_CELL( GridFrame::OnSelectCell )
123 EVT_GRID_RANGE_SELECT( GridFrame::OnRangeSelected )
124 EVT_GRID_CELL_CHANGE( GridFrame::OnCellValueChanged )
125 EVT_GRID_CELL_BEGIN_DRAG( GridFrame::OnCellBeginDrag )
127 EVT_GRID_EDITOR_SHOWN( GridFrame::OnEditorShown )
128 EVT_GRID_EDITOR_HIDDEN( GridFrame::OnEditorHidden )
132 GridFrame::GridFrame()
365 GridFrame::~GridFrame()
373 void GridFrame::SetDefaults()
388 void GridFrame::ToggleRowLabels( wxCommandEvent& WXUNUSED(ev) )
401 void GridFrame::ToggleColLabels( wxCommandEvent& WXUNUSED(ev) )
414 void GridFrame::ToggleEditing( wxCommandEvent& WXUNUSED(ev) )
421 void GridFrame::ToggleRowSizing( wxCommandEvent& WXUNUSED(ev) )
428 void GridFrame::ToggleColSizing( wxCommandEvent& WXUNUSED(ev) )
434 void GridFrame::ToggleColMoving( wxCommandEvent& WXUNUSED(ev) )
440 void GridFrame::ToggleGridSizing( wxCommandEvent& WXUNUSED(ev) )
446 void GridFrame::ToggleGridDragCell( wxCommandEvent& WXUNUSED(ev) )
452 void GridFrame::ToggleGridLines( wxCommandEvent& WXUNUSED(ev) )
458 void GridFrame::OnSetHighlightWidth( wxCommandEvent& WXUNUSED(ev) )
472 void GridFrame::OnSetROHighlightWidth( wxCommandEvent& WXUNUSED(ev) )
488 void GridFrame::AutoSizeCols( wxCommandEvent& WXUNUSED(ev) )
494 void GridFrame::CellOverflow( wxCommandEvent& ev )
500 void GridFrame::ResizeCell( wxCommandEvent& ev )
509 void GridFrame::SetLabelColour( wxCommandEvent& WXUNUSED(ev) )
523 void GridFrame::SetLabelTextColour( wxCommandEvent& WXUNUSED(ev) )
536 void GridFrame::SetLabelFont( wxCommandEvent& WXUNUSED(ev) )
545 void GridFrame::SetRowLabelHorizAlignment( wxCommandEvent& WXUNUSED(ev) )
568 void GridFrame::SetRowLabelVertAlignment( wxCommandEvent& WXUNUSED(ev) )
592 void GridFrame::SetColLabelHorizAlignment( wxCommandEvent& WXUNUSED(ev) )
616 void GridFrame::SetColLabelVertAlignment( wxCommandEvent& WXUNUSED(ev) )
640 void GridFrame::SetGridLineColour( wxCommandEvent& WXUNUSED(ev) )
654 void GridFrame::InsertRow( wxCommandEvent& WXUNUSED(ev) )
660 void GridFrame::InsertCol( wxCommandEvent& WXUNUSED(ev) )
666 void GridFrame::DeleteSelectedRows( wxCommandEvent& WXUNUSED(ev) )
683 void GridFrame::DeleteSelectedCols( wxCommandEvent& WXUNUSED(ev) )
700 void GridFrame::ClearGrid( wxCommandEvent& WXUNUSED(ev) )
705 void GridFrame::SelectCells( wxCommandEvent& WXUNUSED(ev) )
710 void GridFrame::SelectRows( wxCommandEvent& WXUNUSED(ev) )
715 void GridFrame::SelectCols( wxCommandEvent& WXUNUSED(ev) )
720 void GridFrame::SetCellFgColour( wxCommandEvent& WXUNUSED(ev) )
730 void GridFrame::SetCellBgColour( wxCommandEvent& WXUNUSED(ev) )
744 void GridFrame::DeselectCell(wxCommandEvent& WXUNUSED(event))
749 void GridFrame::DeselectCol(wxCommandEvent& WXUNUSED(event))
754 void GridFrame::DeselectRow(wxCommandEvent& WXUNUSED(event))
759 void GridFrame::DeselectAll(wxCommandEvent& WXUNUSED(event))
764 void GridFrame::SelectCell(wxCommandEvent& WXUNUSED(event))
769 void GridFrame::SelectCol(wxCommandEvent& WXUNUSED(event))
774 void GridFrame::SelectRow(wxCommandEvent& WXUNUSED(event))
779 void GridFrame::SelectAll(wxCommandEvent& WXUNUSED(event))
784 void GridFrame::OnAddToSelectToggle(wxCommandEvent& event)
789 void GridFrame::OnLabelLeftClick( wxGridEvent& ev )
817 void GridFrame::OnCellLeftClick( wxGridEvent& ev )
828 void GridFrame::OnRowSize( wxGridSizeEvent& ev )
836 void GridFrame::OnColSize( wxGridSizeEvent& ev )
844 void GridFrame::OnShowSelection(wxCommandEvent& WXUNUSED(event))
921 void GridFrame::OnSelectCell( wxGridEvent& ev )
946 void GridFrame::OnRangeSelected( wxGridRangeSelectEvent& ev )
966 void GridFrame::OnCellValueChanged( wxGridEvent& ev )
977 void GridFrame::OnCellBeginDrag( wxGridEvent& ev )
985 void GridFrame::OnEditorShown( wxGridEvent& ev )
1002 void GridFrame::OnEditorHidden( wxGridEvent& ev )
1019 void GridFrame::About( wxCommandEvent& WXUNUSED(ev) )
1028 void GridFrame::OnQuit( wxCommandEvent& WXUNUSED(ev) )
1033 void GridFrame::OnBugsTable(wxCommandEvent& )
1039 void GridFrame::OnSmallGrid(wxCommandEvent& )
1050 void GridFrame::OnVTable(wxCommandEvent& )