CMS 3D CMS Logo

List of all members | Public Member Functions | Protected Member Functions | Private Member Functions | Private Attributes
FWCollectionSummaryTableManager Class Reference

#include <Fireworks/Core/interface/FWCollectionSummaryTableManager.h>

Inheritance diagram for FWCollectionSummaryTableManager:
FWTableManagerBase

Public Member Functions

void buttonReleasedInRowHeader (Int_t row, Event_t *event, Int_t relX, Int_t relY) override
 
FWTableCellRendererBasecellRenderer (int iSortedRowNumber, int iCol) const override
 
 FWCollectionSummaryTableManager (FWEventItem *iCollection, const TGGC *iContext, const TGGC *iHighlightContext, FWCollectionSummaryWidget *)
 
 FWCollectionSummaryTableManager (const FWCollectionSummaryTableManager &)=delete
 
std::vector< std::string > getTitles () const override
 returns the title names for each column More...
 
bool hasRowHeaders () const override
 Returns 'true' if this table has row headers. Defaults return value is false. More...
 
int numberOfColumns () const override
 Number of columns in the table. More...
 
int numberOfRows () const override
 Number of rows in the table. More...
 
const FWCollectionSummaryTableManageroperator= (const FWCollectionSummaryTableManager &)=delete
 
FWTableCellRendererBaserowHeader (int iSortedRowNumber) const override
 Returns the renderer for the row header for the sorted row number iSortedRowNumber. More...
 
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...
 
 ~FWCollectionSummaryTableManager () override
 
- 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 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 std::vector< unsigned int > maxWidthForColumns () const
 for each column in the table this returns the present maximum width for that column 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
 

Protected Member Functions

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

Private Member Functions

void dataChanged ()
 

Private Attributes

FWTextTableCellRenderer m_bodyRenderer
 
FWEventItemm_collection
 
FWCollectionSummaryModelCellRenderer m_renderer
 
std::vector< int > m_sortedToUnsortedIndicies
 
FWCollectionSummaryWidgetm_widget
 

Detailed Description

Description: <one line="" class="" summary>="">

Usage: <usage>

Definition at line 35 of file FWCollectionSummaryTableManager.h.

Constructor & Destructor Documentation

◆ FWCollectionSummaryTableManager() [1/2]

FWCollectionSummaryTableManager::FWCollectionSummaryTableManager ( FWEventItem iCollection,
const TGGC *  iContext,
const TGGC *  iHighlightContext,
FWCollectionSummaryWidget iWidget 
)

Definition at line 35 of file FWCollectionSummaryTableManager.cc.

References FWEventItem::changed_, dataChanged(), FWTableManagerBase::dataChanged(), FWEventItem::itemChanged_, m_collection, and FWEventItem::modelType().

39  : m_collection(iItem),
40  m_renderer(iContext, iHighlightContext),
41  m_bodyRenderer(iContext, iHighlightContext, FWTextTableCellRenderer::kJustifyRight),
42  m_widget(iWidget) {
43  m_collection->changed_.connect(std::bind(&FWTableManagerBase::dataChanged, this));
45 
46  //try to find the default columns
47  std::vector<std::pair<std::string, std::string> > s_names;
48  edm::TypeWithDict type(*(m_collection->modelType()->GetTypeInfo()));
49 
50  dataChanged();
51 }
FWCollectionSummaryModelCellRenderer m_renderer
void dataChanged()
Classes which inherit from FWTableManagerBase must call this when their underlying data changes...
const TClass * modelType() const
Definition: FWEventItem.cc:464
FWItemChangeSignal itemChanged_
Definition: FWEventItem.h:181
FWModelChangeSignal changed_
Definition: FWEventItem.h:178

◆ ~FWCollectionSummaryTableManager()

FWCollectionSummaryTableManager::~FWCollectionSummaryTableManager ( )
override

Definition at line 58 of file FWCollectionSummaryTableManager.cc.

58 {}

◆ FWCollectionSummaryTableManager() [2/2]

FWCollectionSummaryTableManager::FWCollectionSummaryTableManager ( const FWCollectionSummaryTableManager )
delete

Member Function Documentation

◆ buttonReleasedInRowHeader()

void FWCollectionSummaryTableManager::buttonReleasedInRowHeader ( Int_t  row,
Event_t *  event,
Int_t  relX,
Int_t  relY 
)
overridevirtual

Reimplemented from FWTableManagerBase.

Definition at line 104 of file FWCollectionSummaryTableManager.cc.

References FWCollectionSummaryModelCellRenderer::clickHit(), FWEventItem::ModelInfo::displayProperties(), Calorimetry_cff::dp, FWCollectionSummaryWidget::itemColorClicked(), FWCollectionSummaryModelCellRenderer::kHitCheck, FWCollectionSummaryModelCellRenderer::kHitColor, FWCollectionSummaryModelCellRenderer::kMiss, m_collection, m_renderer, m_widget, FWEventItem::modelInfo(), FWEventItem::setDisplayProperties(), and unsortedRowNumber().

104  {
105  Int_t realRow = unsortedRowNumber(row);
106  int hit = m_renderer.clickHit(relX, relY);
108  return;
109  }
111  m_widget->itemColorClicked(realRow, event->fXRoot, event->fYRoot + 12 - relY);
112  return;
113  }
117  dp.setIsVisible(!dp.isVisible());
118  }
120 }
FWCollectionSummaryModelCellRenderer m_renderer
const FWDisplayProperties & displayProperties() const
Definition: FWEventItem.h:64
void itemColorClicked(int iIndex, Int_t iRootX, Int_t iRootY)
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 und...
void setDisplayProperties(int iIndex, const FWDisplayProperties &) const
Definition: FWEventItem.cc:247
ModelInfo modelInfo(int iIndex) const
Definition: FWEventItem.cc:446
Definition: event.py:1

◆ cellRenderer()

FWTableCellRendererBase * FWCollectionSummaryTableManager::cellRenderer ( int  iSortedRowNumber,
int  iCol 
) const
overridevirtual

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 138 of file FWCollectionSummaryTableManager.cc.

References alignBH_cfg::fixed, FWEventItem::ModelInfo::isSelected(), m_bodyRenderer, m_collection, m_sortedToUnsortedIndicies, FWEventItem::modelData(), FWEventItem::modelInfo(), FWItemValueGetter::numValues(), FWItemValueGetter::precision(), alignCSCRings::s, FWTextTableCellRenderer::setData(), FWEventItem::size(), findQualityFiles::v, FWItemValueGetter::valueFor(), and FWEventItem::valueGetter().

138  {
139  if (!m_collection->valueGetter().numValues()) {
140  return nullptr;
141  }
142  if (iSortedRowNumber >= static_cast<int>(m_collection->size())) {
143  m_bodyRenderer.setData("", false);
144  return &m_bodyRenderer;
145  }
146  int index = m_sortedToUnsortedIndicies[iSortedRowNumber];
147  std::stringstream s;
148  s.setf(std::ios_base::fixed, std::ios_base::floatfield);
149  s.precision(m_collection->valueGetter().precision(iCol));
151  s << v;
153  return &m_bodyRenderer;
154 }
const FWItemValueGetter & valueGetter() const
one value from the model which is normally used for the popup
Definition: FWEventItem.h:112
size_t size() const
Definition: FWEventItem.cc:457
const void * modelData(int iIndex) const
Definition: FWEventItem.cc:466
bool isSelected() const
Definition: FWEventItem.h:65
UInt_t precision(int idx) const
void setData(const std::string &, bool isSelected)
double valueFor(const void *, int idx) const
ModelInfo modelInfo(int iIndex) const
Definition: FWEventItem.cc:446

◆ dataChanged()

void FWCollectionSummaryTableManager::dataChanged ( void  )
private

Definition at line 167 of file FWCollectionSummaryTableManager.cc.

References FWTableManagerBase::dataChanged(), mps_fire::i, m_collection, m_sortedToUnsortedIndicies, and FWEventItem::size().

Referenced by FWCollectionSummaryTableManager().

167  {
170  for (int i = 0; i < static_cast<int>(m_collection->size()); ++i) {
171  m_sortedToUnsortedIndicies.push_back(i);
172  }
174 }
size_t size() const
Definition: FWEventItem.cc:457
void dataChanged()
Classes which inherit from FWTableManagerBase must call this when their underlying data changes...

◆ getTitles()

std::vector< std::string > FWCollectionSummaryTableManager::getTitles ( ) const
overridevirtual

returns the title names for each column

Implements FWTableManagerBase.

Definition at line 129 of file FWCollectionSummaryTableManager.cc.

References FWItemValueGetter::getTitles(), m_collection, and FWEventItem::valueGetter().

129  {
130  //return titles;
131  return m_collection->valueGetter().getTitles();
132 }
const FWItemValueGetter & valueGetter() const
one value from the model which is normally used for the popup
Definition: FWEventItem.h:112
std::vector< std::string > getTitles() const

◆ hasRowHeaders()

bool FWCollectionSummaryTableManager::hasRowHeaders ( ) const
overridevirtual

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

Reimplemented from FWTableManagerBase.

Definition at line 156 of file FWCollectionSummaryTableManager.cc.

156 { return true; }

◆ implSort()

void FWCollectionSummaryTableManager::implSort ( int  iCol,
bool  iSortOrder 
)
overrideprotectedvirtual

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

Implements FWTableManagerBase.

Definition at line 94 of file FWCollectionSummaryTableManager.cc.

References HLT_2022v15_cff::doSort, m_collection, m_sortedToUnsortedIndicies, alignCSCRings::s, and FWEventItem::valueGetter().

94  {
95  if (iSortOrder) {
96  std::multimap<double, int, std::greater<double> > s;
98  } else {
99  std::multimap<double, int, std::less<double> > s;
101  }
102 }
const FWItemValueGetter & valueGetter() const
one value from the model which is normally used for the popup
Definition: FWEventItem.h:112

◆ numberOfColumns()

int FWCollectionSummaryTableManager::numberOfColumns ( ) const
overridevirtual

Number of columns in the table.

Implements FWTableManagerBase.

Definition at line 127 of file FWCollectionSummaryTableManager.cc.

References m_collection, FWItemValueGetter::numValues(), and FWEventItem::valueGetter().

127 { return m_collection->valueGetter().numValues(); }
const FWItemValueGetter & valueGetter() const
one value from the model which is normally used for the popup
Definition: FWEventItem.h:112

◆ numberOfRows()

int FWCollectionSummaryTableManager::numberOfRows ( ) const
overridevirtual

Number of rows in the table.

Implements FWTableManagerBase.

Definition at line 125 of file FWCollectionSummaryTableManager.cc.

References m_collection, and FWEventItem::size().

125 { return m_collection->size(); }
size_t size() const
Definition: FWEventItem.cc:457

◆ operator=()

const FWCollectionSummaryTableManager& FWCollectionSummaryTableManager::operator= ( const FWCollectionSummaryTableManager )
delete

◆ rowHeader()

FWTableCellRendererBase * FWCollectionSummaryTableManager::rowHeader ( int  iSortedRowNumber) const
overridevirtual

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

Reimplemented from FWTableManagerBase.

Definition at line 158 of file FWCollectionSummaryTableManager.cc.

References m_collection, m_renderer, m_sortedToUnsortedIndicies, FWCollectionSummaryModelCellRenderer::setData(), and FWEventItem::size().

158  {
159  if (iSortedRowNumber >= static_cast<int>(m_collection->size())) {
160  return nullptr;
161  }
162  int index = m_sortedToUnsortedIndicies[iSortedRowNumber];
164  return &m_renderer;
165 }
size_t size() const
Definition: FWEventItem.cc:457
FWCollectionSummaryModelCellRenderer m_renderer
void setData(const FWEventItem *iItem, int iIndex)

◆ unsortedRowNumber()

int FWCollectionSummaryTableManager::unsortedRowNumber ( int  iSortedRowNumber) const
overridevirtual

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 134 of file FWCollectionSummaryTableManager.cc.

References m_sortedToUnsortedIndicies.

Referenced by buttonReleasedInRowHeader().

134  {
135  return m_sortedToUnsortedIndicies[iSortedRowNumber];
136 }

Member Data Documentation

◆ m_bodyRenderer

FWTextTableCellRenderer FWCollectionSummaryTableManager::m_bodyRenderer
mutableprivate

Definition at line 74 of file FWCollectionSummaryTableManager.h.

Referenced by cellRenderer().

◆ m_collection

FWEventItem* FWCollectionSummaryTableManager::m_collection
private

◆ m_renderer

FWCollectionSummaryModelCellRenderer FWCollectionSummaryTableManager::m_renderer
mutableprivate

Definition at line 73 of file FWCollectionSummaryTableManager.h.

Referenced by buttonReleasedInRowHeader(), and rowHeader().

◆ m_sortedToUnsortedIndicies

std::vector<int> FWCollectionSummaryTableManager::m_sortedToUnsortedIndicies
private

◆ m_widget

FWCollectionSummaryWidget* FWCollectionSummaryTableManager::m_widget
private

Definition at line 75 of file FWCollectionSummaryTableManager.h.

Referenced by buttonReleasedInRowHeader().