Numworks Epsilon  1.4.1
Graphing Calculator Operating System
selectable_table_view_data_source.h
Go to the documentation of this file.
1 #ifndef ESCHER_SELECTABLE_TABLE_VIEW_DATA_SOURCE_H
2 #define ESCHER_SELECTABLE_TABLE_VIEW_DATA_SOURCE_H
3 
5 
7 
9 public:
11  int selectedRow();
12  int selectedColumn();
13  void selectRow(int j);
14  void selectColumn(int i);
15  void selectCellAtLocation(int i, int j);
16 private:
17  int m_selectedCellX;
18  int m_selectedCellY;
19 };
20 
21 #endif