CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Public Attributes | Private Member Functions | Private Attributes
DataAdderTableManager Class Reference
Inheritance diagram for DataAdderTableManager:
FWTableManagerBase

Public Member Functions

FWTableCellRendererBasecellRenderer (int iSortedRowNumber, int iCol) const override
 
 DataAdderTableManager (FWJobMetadataManager *manager)
 
std::vector< std::string > getTitles () const override
 returns the title names for each column More...
 
void implSort (int col, bool sortOrder) override
 Called by 'sort' method to actually handle the sorting of the rows. Arguments are the same as 'sort'. More...
 
int numberOfColumns () const override
 Number of columns in the table. More...
 
int numberOfRows () const override
 Number of rows in the table. More...
 
void reset ()
 
virtual bool rowIsSelected (int row) const
 
int selectedRow () const
 
void setSelection (int row, int mask)
 
virtual void sortWithFilter (const char *filter)
 
virtual const std::string title () const
 
int unsortedRowNumber (int iSortedRowNumber) const override
 when passed the index to the sorted order of the rows it returns the original row number from the underlying data More...
 
- Public Member Functions inherited from FWTableManagerBase
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...
 
 ClassDefOverride (FWTableManagerBase, 0)
 
void dataChanged ()
 Classes which inherit from FWTableManagerBase must call this when their underlying data changes. More...
 
 FWTableManagerBase ()
 
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 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...
 
void visualPropertiesChanged ()
 Classes which inherit from FWTableManagerBase must call this when how the data is shown (e.g. color) changes. More...
 
 ~FWTableManagerBase () override
 

Public Attributes

sigc::signal< void, int > indexSelected_
 

Private Member Functions

void changeSelection (int iRow)
 

Private Attributes

std::string m_filter
 
FWJobMetadataManagerm_manager
 
FWTextTableCellRenderer m_renderer
 
std::vector< int > m_row_to_index
 
int m_selectedRow
 

Additional Inherited Members

Detailed Description

Definition at line 70 of file FWGUIEventDataAdder.cc.

Constructor & Destructor Documentation

DataAdderTableManager::DataAdderTableManager ( FWJobMetadataManager manager)
inline

Definition at line 72 of file FWGUIEventDataAdder.cc.

References reset().

Member Function Documentation

FWTableCellRendererBase* DataAdderTableManager::cellRenderer ( int  iSortedRowNumber,
int  iCol 
) const
inlineoverridevirtual

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

Implements FWTableManagerBase.

Definition at line 101 of file FWGUIEventDataAdder.cc.

References data, dataForColumn(), m_manager, m_renderer, m_row_to_index, m_selectedRow, FWTextTableCellRenderer::setData(), AlCaHLTBitMon_QueryRunRegistry::string, and FWJobMetadataManager::usableData().

101  {
102  if (static_cast<int>(m_row_to_index.size()) > iSortedRowNumber) {
103  int unsortedRow = m_row_to_index[iSortedRowNumber];
104  const FWJobMetadataManager::Data &data = (m_manager->usableData())[unsortedRow];
105 
106  m_renderer.setData(dataForColumn(data, iCol), m_selectedRow == unsortedRow);
107  } else {
108  m_renderer.setData(std::string(), false);
109  }
110  return &m_renderer;
111  }
FWTextTableCellRenderer m_renderer
std::vector< int > m_row_to_index
std::vector< Data > & usableData()
void setData(const std::string &, bool isSelected)
static const std::string & dataForColumn(const FWJobMetadataManager::Data &iData, int iCol)
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
FWJobMetadataManager * m_manager
void DataAdderTableManager::changeSelection ( int  iRow)
inlineprivate

Definition at line 140 of file FWGUIEventDataAdder.cc.

References indexSelected_, m_selectedRow, and FWTableManagerBase::visualPropertiesChanged().

Referenced by reset(), and setSelection().

140  {
141  if (iRow != m_selectedRow) {
142  m_selectedRow = iRow;
143  if (-1 == iRow) {
144  indexSelected_(-1);
145  } else {
146  indexSelected_(iRow);
147  }
149  }
150  }
sigc::signal< void, int > indexSelected_
void visualPropertiesChanged()
Classes which inherit from FWTableManagerBase must call this when how the data is shown (e...
std::vector<std::string> DataAdderTableManager::getTitles ( ) const
inlineoverridevirtual

returns the title names for each column

Implements FWTableManagerBase.

Definition at line 90 of file FWGUIEventDataAdder.cc.

References kNColumns.

90  {
91  std::vector<std::string> returnValue;
92  returnValue.reserve(kNColumns);
93  returnValue.push_back("Purpose");
94  returnValue.push_back("Module Label");
95  returnValue.push_back("Product Instance Label");
96  returnValue.push_back("Process Name");
97  returnValue.push_back("C++ Class");
98  return returnValue;
99  }
static const unsigned int kNColumns
void DataAdderTableManager::implSort ( int  iCol,
bool  iSortOrder 
)
overridevirtual

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

Implements FWTableManagerBase.

Definition at line 306 of file FWGUIEventDataAdder.cc.

References m_filter, m_manager, m_row_to_index, FWTableManagerBase::sortOrder(), and FWJobMetadataManager::usableData().

306  {
307  doSort(column, m_filter.c_str(), sortOrder, m_manager->usableData(), m_row_to_index);
308 }
bool sortOrder(void)
The current sort order for the table.
std::vector< int > m_row_to_index
std::vector< Data > & usableData()
FWJobMetadataManager * m_manager
int DataAdderTableManager::numberOfColumns ( ) const
inlineoverridevirtual

Number of columns in the table.

Implements FWTableManagerBase.

Definition at line 75 of file FWGUIEventDataAdder.cc.

References kNColumns.

75 { return kNColumns; }
static const unsigned int kNColumns
int DataAdderTableManager::numberOfRows ( ) const
inlineoverridevirtual

Number of rows in the table.

Implements FWTableManagerBase.

Definition at line 74 of file FWGUIEventDataAdder.cc.

References m_row_to_index.

74 { return m_row_to_index.size(); }
std::vector< int > m_row_to_index
void DataAdderTableManager::reset ( void  )
inline

Definition at line 128 of file FWGUIEventDataAdder.cc.

References changeSelection(), FWTableManagerBase::dataChanged(), mps_fire::i, m_manager, m_row_to_index, and FWJobMetadataManager::usableData().

Referenced by DataAdderTableManager(), and FWGUIEventDataAdder::metadataUpdatedSlot().

128  {
129  changeSelection(-1);
130  m_row_to_index.clear();
131  m_row_to_index.reserve(m_manager->usableData().size());
132  for (unsigned int i = 0; i < m_manager->usableData().size(); ++i) {
133  m_row_to_index.push_back(i);
134  }
135  dataChanged();
136  }
std::vector< int > m_row_to_index
void dataChanged()
Classes which inherit from FWTableManagerBase must call this when their underlying data changes...
std::vector< Data > & usableData()
FWJobMetadataManager * m_manager
virtual bool DataAdderTableManager::rowIsSelected ( int  row) const
inlinevirtual

Definition at line 126 of file FWGUIEventDataAdder.cc.

References m_selectedRow.

126 { return m_selectedRow == row; }
int DataAdderTableManager::selectedRow ( ) const
inline

Definition at line 124 of file FWGUIEventDataAdder.cc.

References m_selectedRow.

void DataAdderTableManager::setSelection ( int  row,
int  mask 
)
inline

Definition at line 113 of file FWGUIEventDataAdder.cc.

References changeSelection(), and m_selectedRow.

Referenced by FWGUIEventDataAdder::rowClicked().

113  {
114  if (mask == 4) {
115  if (row == m_selectedRow) {
116  row = -1;
117  }
118  }
119  changeSelection(row);
120  }
virtual void DataAdderTableManager::sortWithFilter ( const char *  filter)
inlinevirtual

Updates the table using the passed filter. Notice that in this case we reset the sorting and show results by those best matching the filter.

Definition at line 81 of file FWGUIEventDataAdder.cc.

References FWTableManagerBase::dataChanged(), alcazmumu_cfi::filter, m_filter, FWTableManagerBase::sort(), and FWTableManagerBase::sortOrder().

Referenced by FWGUIEventDataAdder::updateFilterString().

81  {
82  m_filter = filter;
83  sort(-1, sortOrder());
84  dataChanged();
85  }
bool sortOrder(void)
The current sort order for the table.
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 const std::string DataAdderTableManager::title ( ) const
inlinevirtual

Definition at line 122 of file FWGUIEventDataAdder.cc.

122 { return "Viewable Collections"; }
int DataAdderTableManager::unsortedRowNumber ( int  iSortedRowNumber) const
inlineoverridevirtual

when passed the index to the sorted order of the rows it returns the original row number from the underlying data

Implements FWTableManagerBase.

Definition at line 87 of file FWGUIEventDataAdder.cc.

References m_row_to_index.

87 { return m_row_to_index[iSortedRowNumber]; }
std::vector< int > m_row_to_index

Member Data Documentation

sigc::signal<void, int> DataAdderTableManager::indexSelected_

Definition at line 137 of file FWGUIEventDataAdder.cc.

Referenced by changeSelection(), and FWGUIEventDataAdder::createWindow().

std::string DataAdderTableManager::m_filter
private

Definition at line 154 of file FWGUIEventDataAdder.cc.

Referenced by implSort(), and sortWithFilter().

FWJobMetadataManager* DataAdderTableManager::m_manager
private

Definition at line 151 of file FWGUIEventDataAdder.cc.

Referenced by cellRenderer(), implSort(), and reset().

FWTextTableCellRenderer DataAdderTableManager::m_renderer
mutableprivate

Definition at line 155 of file FWGUIEventDataAdder.cc.

Referenced by cellRenderer().

std::vector<int> DataAdderTableManager::m_row_to_index
private
int DataAdderTableManager::m_selectedRow
private