CMS 3D CMS Logo

FWTableManagerBase.h
Go to the documentation of this file.
1 #ifndef Fireworks_TableWidget_FWTableManagerBase_h
2 #define Fireworks_TableWidget_FWTableManagerBase_h
3 // -*- C++ -*-
4 //
5 // Package: TableWidget
6 // Class : FWTableManagerBase
7 //
28 //
29 // Original Author: Chris Jones
30 // Created: Mon Feb 2 16:40:52 EST 2009
31 //
32 
33 // system include files
34 #include <vector>
35 #include <string>
36 #include "TQObject.h"
37 #include "GuiTypes.h"
38 
39 // user include files
40 
41 // forward declarations
43 
44 class FWTableManagerBase : public TQObject
45 {
46 
47  public:
49  ~FWTableManagerBase() override;
50 
51  // ---------- const member functions ---------------------
53  virtual int numberOfRows() const = 0;
55  virtual int numberOfColumns() const = 0;
56 
58  virtual std::vector<std::string> getTitles() const = 0;
59 
61  virtual int unsortedRowNumber(int iSortedRowNumber) const = 0;
62 
68  virtual FWTableCellRendererBase* cellRenderer(int iSortedRowNumber, int iCol) const =0;
69 
71  virtual unsigned int cellHeight() const;
72 
74  virtual std::vector<unsigned int> maxWidthForColumns() const;
75 
76  virtual bool hasLabelHeaders() const ;
77 
79  virtual bool hasRowHeaders() const ;
81  virtual FWTableCellRendererBase* rowHeader(int iSortedRowNumber) const ;
82 
83  virtual bool cellDataIsSortable() const { return true ; }
84 
85 
87  virtual void buttonPressedInRowHeader(Int_t row, Event_t* event, Int_t relX, Int_t relY);
88  virtual void buttonReleasedInRowHeader(Int_t row, Event_t* event, Int_t relX, Int_t relY);
89 
90  // ---------- static member functions --------------------
91 
92  // ---------- member functions ---------------------------
94  void sort(int iCol, bool iSortOrder);
95 
97  void dataChanged(); //*SIGNAL*
98 
100  void visualPropertiesChanged(); //*SIGNAL*
101 
103 
105  bool sortOrder(void) { return m_sortOrder; }
106 
108  int sortColumn(void) { return m_sortColumn; }
109 
110  protected:
112  virtual void implSort(int iCol, bool iSortOrder) = 0;
113 
114  private:
115  //FWTableManagerBase(const FWTableManagerBase&); // stop default
116 
117  //const FWTableManagerBase& operator=(const FWTableManagerBase&); // stop default
118 
119  // ---------- member data --------------------------------
122 };
123 
124 
125 #endif
virtual bool cellDataIsSortable() const
bool sortOrder(void)
The current sort order for the table.
virtual FWTableCellRendererBase * cellRenderer(int iSortedRowNumber, int iCol) const =0
virtual int numberOfRows() const =0
Number of rows in the table.
virtual void implSort(int iCol, bool iSortOrder)=0
Called by &#39;sort&#39; method to actually handle the sorting of the rows. Arguments are the same as &#39;sort&#39;...
void sort(int iCol, bool iSortOrder)
Call to have table sorted on values in column iCol with the sort order being descending if iSortOrder...
void dataChanged()
Classes which inherit from FWTableManagerBase must call this when their underlying data changes...
virtual std::vector< unsigned int > maxWidthForColumns() const
for each column in the table this returns the present maximum width for that column ...
virtual bool hasLabelHeaders() const
virtual int numberOfColumns() const =0
Number of columns in the table.
virtual std::vector< std::string > getTitles() const =0
returns the title names for each column
virtual void buttonReleasedInRowHeader(Int_t row, Event_t *event, Int_t relX, Int_t relY)
virtual void buttonPressedInRowHeader(Int_t row, Event_t *event, Int_t relX, Int_t relY)
Called if mouse button pressed in Row Header, defaults is to do nothing.
virtual int unsortedRowNumber(int iSortedRowNumber) const =0
when passed the index to the sorted order of the rows it returns the original row number from the und...
ClassDefOverride(FWTableManagerBase, 0)
~FWTableManagerBase() override
void visualPropertiesChanged()
Classes which inherit from FWTableManagerBase must call this when how the data is shown (e...
virtual unsigned int cellHeight() const
require all cells to be the same height
virtual FWTableCellRendererBase * rowHeader(int iSortedRowNumber) const
Returns the renderer for the row header for the sorted row number iSortedRowNumber.
Definition: event.py:1
virtual bool hasRowHeaders() const
Returns &#39;true&#39; if this table has row headers. Defaults return value is false.
int sortColumn(void)
The current sort column.