CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Protected Member Functions | Private Attributes
FWTableManagerBase Class Referenceabstract

#include <Fireworks/TableWidget/interface/FWTableManagerBase.h>

Inheritance diagram for FWTableManagerBase:
DataAdderTableManager FWAdapterHeaderTableManager FWAdapterRowHeaderTableManager FWCollectionSummaryTableManager FWGeometryTableManagerBase FWPSetTableManager FWTableViewTableManager FWTriggerTableViewTableManager

Public Member Functions

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. More...
 
virtual void buttonReleasedInRowHeader (Int_t row, Event_t *event, Int_t relX, Int_t relY)
 
virtual bool cellDataIsSortable () const
 
virtual unsigned int cellHeight () const
 require all cells to be the same height More...
 
virtual FWTableCellRendererBasecellRenderer (int iSortedRowNumber, int iCol) const =0
 
 ClassDef (FWTableManagerBase, 0)
 
void dataChanged ()
 Classes which inherit from FWTableManagerBase must call this when their underlying data changes. More...
 
 FWTableManagerBase ()
 
virtual std::vector< std::string > getTitles () const =0
 returns the title names for each column More...
 
virtual bool hasLabelHeaders () const
 
virtual bool hasRowHeaders () const
 Returns 'true' if this table has row headers. Defaults return value is false. More...
 
virtual std::vector< unsigned int > maxWidthForColumns () const
 for each column in the table this returns the present maximum width for that column More...
 
virtual int numberOfColumns () const =0
 Number of columns in the table. More...
 
virtual int numberOfRows () const =0
 Number of rows in the table. More...
 
virtual FWTableCellRendererBaserowHeader (int iSortedRowNumber) const
 Returns the renderer for the row header for the sorted row number iSortedRowNumber. More...
 
void sort (int iCol, bool iSortOrder)
 Call to have table sorted on values in column iCol with the sort order being descending if iSortOrder is 'true'. More...
 
int sortColumn (void)
 The current sort column. More...
 
bool sortOrder (void)
 The current sort order for the table. More...
 
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 underlying data More...
 
void visualPropertiesChanged ()
 Classes which inherit from FWTableManagerBase must call this when how the data is shown (e.g. color) changes. More...
 
virtual ~FWTableManagerBase ()
 

Protected Member Functions

virtual void implSort (int iCol, bool iSortOrder)=0
 Called by 'sort' method to actually handle the sorting of the rows. Arguments are the same as 'sort'. More...
 

Private Attributes

int m_sortColumn
 
bool m_sortOrder
 

Detailed Description

Description: Base class for classes that work as interfaces that translate underlying data into a table form

Usage: Classes which inherit from FWTableManagerBase are used as adapters to allow external data to be shown in tabular form via the FWTableWidget. The table is made of three parts 1) The column headers: Each column is described by a 'title' and the title is drawn in the column header 2) The body: the actual data of the table laid out in rows and columns 3) the row headers: optional identifier for a row. If given, the row header will always be visible on the screen if any part of the row is visible

The FWTableWidget actually draws the cells in the table by asking the FWTableManagerBase for a FWTableCellRendererBase for a particular cell. The renderer will then be asked to draw the cell into the appropriate part of the graphics window. Therfore it is the FWTableManagerBase's responsibility to create FWTableCellRendererBases which are appropriate for the data to be shown in each cell of the table. See the documentation of FWTableCellRendererBase for further information.

FWTableManagerBase must also be able to sort the rows of data based on the values in a specified column.

Definition at line 44 of file FWTableManagerBase.h.

Constructor & Destructor Documentation

FWTableManagerBase::FWTableManagerBase ( )

Definition at line 31 of file FWTableManagerBase.cc.

31  :
32 m_sortColumn(-1),
33 m_sortOrder(false)
34 {
35 }
FWTableManagerBase::~FWTableManagerBase ( )
virtual

Definition at line 42 of file FWTableManagerBase.cc.

43 {
44 }

Member Function Documentation

void FWTableManagerBase::buttonPressedInRowHeader ( Int_t  row,
Event_t *  event,
Int_t  relX,
Int_t  relY 
)
virtual

Called if mouse button pressed in Row Header, defaults is to do nothing.

Definition at line 137 of file FWTableManagerBase.cc.

138 {
139 }
void FWTableManagerBase::buttonReleasedInRowHeader ( Int_t  row,
Event_t *  event,
Int_t  relX,
Int_t  relY 
)
virtual
virtual bool FWTableManagerBase::cellDataIsSortable ( ) const
inlinevirtual

Reimplemented in FWGeometryTableManagerBase, and FWPSetTableManager.

Definition at line 83 of file FWTableManagerBase.h.

References funct::true.

Referenced by FWTableWidget::FWTableWidget().

83 { return true ; }
unsigned int FWTableManagerBase::cellHeight ( ) const
virtual

require all cells to be the same height

Definition at line 88 of file FWTableManagerBase.cc.

References cellRenderer(), hasRowHeaders(), FWTableCellRendererBase::height(), and rowHeader().

Referenced by FWTabularWidget::dataChanged(), FWTabularWidget::FWTabularWidget(), FWPSetTableManager::maxWidthForColumns(), and FWPSetTableManager::setSelection().

89 {
91  if(cr) {
92  return cr->height();
93  }
94  if(hasRowHeaders()) {
95  cr = rowHeader(0);
96  if(cr) {
97  return cr->height();
98  }
99  }
100  return 0;
101 }
virtual FWTableCellRendererBase * cellRenderer(int iSortedRowNumber, int iCol) const =0
virtual UInt_t height() const =0
returns the minimum height of the cell to which the renderer is representing
virtual FWTableCellRendererBase * rowHeader(int iSortedRowNumber) const
Returns the renderer for the row header for the sorted row number iSortedRowNumber.
virtual bool hasRowHeaders() const
Returns &#39;true&#39; if this table has row headers. Defaults return value is false.
virtual FWTableCellRendererBase* FWTableManagerBase::cellRenderer ( int  iSortedRowNumber,
int  iCol 
) const
pure virtual
Returns the particular renderer used to handle the requested cell.  Arguments:

iSortedRowNumber: the row number from the present sort (i.e. the cell number of the view) iCol: the column number of the cell. The returned value must be used immediately and not held onto since the same Renderer can be used for subsequent calls

Implemented in DataAdderTableManager, FWPSetTableManager, FWGeometryTableManager, FWOverlapTableManager, FWTableViewTableManager, FWCollectionSummaryTableManager, FWTriggerTableViewTableManager, FWAdapterHeaderTableManager, and FWAdapterRowHeaderTableManager.

Referenced by cellHeight(), FWTabularWidget::DoRedraw(), FWTabularWidget::HandleButton(), and maxWidthForColumns().

FWTableManagerBase::ClassDef ( FWTableManagerBase  ,
 
)
void FWTableManagerBase::dataChanged ( void  )
virtual std::vector<std::string> FWTableManagerBase::getTitles ( ) const
pure virtual
bool FWTableManagerBase::hasLabelHeaders ( ) const
virtual

Definition at line 122 of file FWTableManagerBase.cc.

123 {
124  return true;
125 }
bool FWTableManagerBase::hasRowHeaders ( ) const
virtual

Returns 'true' if this table has row headers. Defaults return value is false.

Reimplemented in FWTableViewTableManager, and FWCollectionSummaryTableManager.

Definition at line 127 of file FWTableManagerBase.cc.

Referenced by cellHeight().

128 {
129  return false;
130 }
virtual void FWTableManagerBase::implSort ( int  iCol,
bool  iSortOrder 
)
protectedpure virtual

Called by 'sort' method to actually handle the sorting of the rows. Arguments are the same as 'sort'.

Implemented in FWGeometryTableManagerBase, FWPSetTableManager, DataAdderTableManager, FWTableViewTableManager, FWCollectionSummaryTableManager, FWTriggerTableViewTableManager, FWAdapterHeaderTableManager, and FWAdapterRowHeaderTableManager.

Referenced by dataChanged(), and sort().

std::vector< unsigned int > FWTableManagerBase::maxWidthForColumns ( ) const
virtual

for each column in the table this returns the present maximum width for that column

Reimplemented in FWPSetTableManager.

Definition at line 103 of file FWTableManagerBase.cc.

References cellRenderer(), cuy::col, bookConverter::max, numberOfColumns(), numberOfRows(), FWTableCellRendererBase::width(), and create_public_lumi_plots::width.

Referenced by FWTabularWidget::dataChanged(), FWTabularWidget::FWTabularWidget(), and FWPSetTableManager::maxWidthForColumns().

104 {
105  std::vector<unsigned int> returnValue;
106  returnValue.reserve(numberOfColumns());
107  const int numCols= numberOfColumns();
108  const int numRows = numberOfRows();
109  for(int col = 0; col < numCols; ++col) {
110  unsigned int max = 0;
111  for(int row=0; row < numRows; ++row) {
112  unsigned int width = cellRenderer(row,col)->width();
113  if(width > max) {
114  max = width;
115  }
116  }
117  returnValue.push_back(max);
118  }
119  return returnValue;
120 }
virtual int numberOfColumns() const =0
Number of columns in the table.
virtual UInt_t width() const =0
returns the minimum width of the cell to which the renderer is representing
virtual int numberOfRows() const =0
Number of rows in the table.
virtual FWTableCellRendererBase * cellRenderer(int iSortedRowNumber, int iCol) const =0
int col
Definition: cuy.py:1008
virtual int FWTableManagerBase::numberOfColumns ( ) const
pure virtual
virtual int FWTableManagerBase::numberOfRows ( ) const
pure virtual
FWTableCellRendererBase * FWTableManagerBase::rowHeader ( int  iSortedRowNumber) const
virtual

Returns the renderer for the row header for the sorted row number iSortedRowNumber.

Reimplemented in FWTableViewTableManager, and FWCollectionSummaryTableManager.

Definition at line 131 of file FWTableManagerBase.cc.

Referenced by cellHeight(), and FWAdapterRowHeaderTableManager::cellRenderer().

132 {
133  return 0;
134 }
void FWTableManagerBase::sort ( int  iCol,
bool  iSortOrder 
)

Call to have table sorted on values in column iCol with the sort order being descending if iSortOrder is 'true'.

Definition at line 62 of file FWTableManagerBase.cc.

References cuy::col, implSort(), m_sortColumn, m_sortOrder, numberOfColumns(), sortOrder(), and visualPropertiesChanged().

Referenced by FWGUIEventDataAdder::metadataUpdatedSlot(), FWTableWidget::sort(), and DataAdderTableManager::sortWithFilter().

63 {
64  if(col <= numberOfColumns()) {
65  m_sortColumn = col;
69  }
70 }
virtual int numberOfColumns() const =0
Number of columns in the table.
bool sortOrder(void)
The current sort order for 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 visualPropertiesChanged()
Classes which inherit from FWTableManagerBase must call this when how the data is shown (e...
int col
Definition: cuy.py:1008
int FWTableManagerBase::sortColumn ( void  )
inline

The current sort column.

Definition at line 108 of file FWTableManagerBase.h.

References m_sortColumn.

108 { return m_sortColumn; }
bool FWTableManagerBase::sortOrder ( void  )
inline

The current sort order for the table.

Definition at line 105 of file FWTableManagerBase.h.

References m_sortOrder.

Referenced by FWAdapterHeaderTableManager::implSort(), DataAdderTableManager::implSort(), sort(), and DataAdderTableManager::sortWithFilter().

105 { return m_sortOrder; }
virtual int FWTableManagerBase::unsortedRowNumber ( int  iSortedRowNumber) const
pure virtual
void FWTableManagerBase::visualPropertiesChanged ( )

Classes which inherit from FWTableManagerBase must call this when how the data is shown (e.g. color) changes.

Definition at line 80 of file FWTableManagerBase.cc.

Referenced by DataAdderTableManager::changeSelection(), FWGeometryTableManagerBase::firstColumnClicked(), FWPSetTableManager::FWPSetTableManager(), FWGeometryTableManagerBase::redrawTable(), FWPSetTableManager::setExpanded(), FWPSetTableManager::setSelection(), and sort().

81 {
82  Emit("visualPropertiesChanged()");
83 }

Member Data Documentation

int FWTableManagerBase::m_sortColumn
private

Definition at line 120 of file FWTableManagerBase.h.

Referenced by dataChanged(), sort(), and sortColumn().

bool FWTableManagerBase::m_sortOrder
private

Definition at line 121 of file FWTableManagerBase.h.

Referenced by dataChanged(), sort(), and sortOrder().