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 Member Functions | Private Attributes
FWCollectionSummaryTableManager Class Reference

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

Inheritance diagram for FWCollectionSummaryTableManager:
FWTableManagerBase

Public Member Functions

virtual void buttonReleasedInRowHeader (Int_t row, Event_t *event, Int_t relX, Int_t relY)
 
virtual FWTableCellRendererBasecellRenderer (int iSortedRowNumber, int iCol) const
 
 FWCollectionSummaryTableManager (FWEventItem *iCollection, const TGGC *iContext, const TGGC *iHighlightContext, FWCollectionSummaryWidget *)
 
virtual std::vector< std::string > getTitles () const
 returns the title names for each column More...
 
virtual bool hasRowHeaders () const
 Returns 'true' if this table has row headers. Defaults return value is false. More...
 
virtual int numberOfColumns () const
 Number of columns in the table. More...
 
virtual int numberOfRows () const
 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...
 
virtual int unsortedRowNumber (int iSortedRowNumber) const
 when passed the index to the sorted order of the rows it returns the original row number from the underlying data More...
 
virtual ~FWCollectionSummaryTableManager ()
 
- 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...
 
 ClassDef (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...
 
virtual ~FWTableManagerBase ()
 

Protected Member Functions

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

Private Member Functions

void dataChanged ()
 
 FWCollectionSummaryTableManager (const FWCollectionSummaryTableManager &)
 
const
FWCollectionSummaryTableManager
operator= (const FWCollectionSummaryTableManager &)
 

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 36 of file FWCollectionSummaryTableManager.h.

Constructor & Destructor Documentation

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

Definition at line 36 of file FWCollectionSummaryTableManager.cc.

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

37  :
38  m_collection(iItem),
39  m_renderer(iContext,iHighlightContext),
40  m_bodyRenderer(iContext, iHighlightContext, FWTextTableCellRenderer::kJustifyRight),
41  m_widget(iWidget)
42 {
43  m_collection->changed_.connect(boost::bind(&FWTableManagerBase::dataChanged,this));
45 
46  //try to find the default columns
47  std::vector<std::pair<std::string,std::string> > s_names;
48  Reflex::Type type = Reflex::Type::ByTypeInfo(*(m_collection->modelType()->GetTypeInfo()));
49 
50 
51  dataChanged();
52 }
type
Definition: HCALResponse.h:22
FWCollectionSummaryModelCellRenderer m_renderer
void dataChanged()
Classes which inherit from FWTableManagerBase must call this when their underlying data changes...
FWItemChangeSignal itemChanged_
Definition: FWEventItem.h:199
FWModelChangeSignal changed_
Definition: FWEventItem.h:196
const TClass * modelType() const
Definition: FWEventItem.cc:561
FWCollectionSummaryTableManager::~FWCollectionSummaryTableManager ( )
virtual

Definition at line 59 of file FWCollectionSummaryTableManager.cc.

60 {
61 }
FWCollectionSummaryTableManager::FWCollectionSummaryTableManager ( const FWCollectionSummaryTableManager )
private

Member Function Documentation

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

Reimplemented from FWTableManagerBase.

Definition at line 111 of file FWCollectionSummaryTableManager.cc.

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

112 {
113  Int_t realRow = unsortedRowNumber(row);
114  int hit = m_renderer.clickHit(relX,relY);
116  return;
117  }
119  m_widget->itemColorClicked(realRow,event->fXRoot, event->fYRoot+12-relY);
120  return;
121  }
125  dp.setIsVisible(!dp.isVisible());
126  }
127  m_collection->setDisplayProperties(realRow,dp);
128 }
FWCollectionSummaryModelCellRenderer m_renderer
const FWDisplayProperties & displayProperties() const
Definition: FWEventItem.h:68
void setDisplayProperties(int iIndex, const FWDisplayProperties &) const
Definition: FWEventItem.cc:277
void itemColorClicked(int iIndex, Int_t iRootX, Int_t iRootY)
How EventSelector::AcceptEvent() decides whether to accept an event for output otherwise it is excluding the probing of A single or multiple positive and the trigger will pass if any such matching triggers are PASS or EXCEPTION[A criterion thatmatches no triggers at all is detected and causes a throw.] A single negative with an expectation of appropriate bit checking in the decision and the trigger will pass if any such matching triggers are FAIL or EXCEPTION A wildcarded negative criterion that matches more than one trigger in the trigger but the state exists so we define the behavior If all triggers are the negative crieriion will lead to accepting the event(this again matches the behavior of"!*"before the partial wildcard feature was incorporated).The per-event"cost"of each negative criterion with multiple relevant triggers is about the same as!*was in the past
virtual int unsortedRowNumber(int iSortedRowNumber) const
when passed the index to the sorted order of the rows it returns the original row number from the und...
ModelInfo modelInfo(int iIndex) const
Definition: FWEventItem.cc:535
void setIsVisible(bool iSet)
FWTableCellRendererBase * FWCollectionSummaryTableManager::cellRenderer ( int  iSortedRowNumber,
int  iCol 
) const
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

Implements FWTableManagerBase.

Definition at line 160 of file FWCollectionSummaryTableManager.cc.

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

161 {
163  return 0;
164  }
165  if(iSortedRowNumber >= static_cast<int>(m_collection->size())) {
166  m_bodyRenderer.setData("",false);
167  return &m_bodyRenderer;
168  }
169  int index = m_sortedToUnsortedIndicies[iSortedRowNumber];
170  std::stringstream s;
171  s.setf(std::ios_base::fixed,std::ios_base::floatfield);
172  s.precision( m_collection->valueGetter().precision(iCol));
173  double v = m_collection->valueGetter().valueFor(m_collection->modelData(index), iCol);
174  s <<v;
176  return &m_bodyRenderer;
177 }
const FWItemValueGetter & valueGetter() const
one value from the model which is normally used for the popup
Definition: FWEventItem.h:119
bool isSelected() const
Definition: FWEventItem.h:71
void setData(const std::string &, bool isSelected)
size_t size() const
Definition: FWEventItem.cc:548
double valueFor(const void *, int idx) const
const void * modelData(int iIndex) const
Definition: FWEventItem.cc:567
ModelInfo modelInfo(int iIndex) const
Definition: FWEventItem.cc:535
UInt_t precision(int idx) const
mathSSE::Vec4< T > v
void FWCollectionSummaryTableManager::dataChanged ( void  )
private

Definition at line 198 of file FWCollectionSummaryTableManager.cc.

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

Referenced by FWCollectionSummaryTableManager().

199 {
202  for(int i=0; i< static_cast<int>(m_collection->size());++i) {
203  m_sortedToUnsortedIndicies.push_back(i);
204  }
206 }
int i
Definition: DBlmapReader.cc:9
void dataChanged()
Classes which inherit from FWTableManagerBase must call this when their underlying data changes...
size_t size() const
Definition: FWEventItem.cc:548
std::vector< std::string > FWCollectionSummaryTableManager::getTitles ( ) const
virtual

returns the title names for each column

Implements FWTableManagerBase.

Definition at line 145 of file FWCollectionSummaryTableManager.cc.

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

145  {
146 
147 
148 
149  //return titles;
150  return m_collection->valueGetter().getTitles();
151 }
const FWItemValueGetter & valueGetter() const
one value from the model which is normally used for the popup
Definition: FWEventItem.h:119
std::vector< std::string > getTitles() const
bool FWCollectionSummaryTableManager::hasRowHeaders ( ) const
virtual

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

Reimplemented from FWTableManagerBase.

Definition at line 180 of file FWCollectionSummaryTableManager.cc.

181 {
182  return true;
183 }
void FWCollectionSummaryTableManager::implSort ( int  iCol,
bool  iSortOrder 
)
protectedvirtual

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

Implements FWTableManagerBase.

Definition at line 99 of file FWCollectionSummaryTableManager.cc.

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

100 {
101  if(iSortOrder) {
102  std::multimap<double,int, std::greater<double> > s;
104  } else {
105  std::multimap<double,int, std::less<double> > s;
107  }
108 }
const FWItemValueGetter & valueGetter() const
one value from the model which is normally used for the popup
Definition: FWEventItem.h:119
int FWCollectionSummaryTableManager::numberOfColumns ( ) const
virtual

Number of columns in the table.

Implements FWTableManagerBase.

Definition at line 140 of file FWCollectionSummaryTableManager.cc.

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

140  {
141  return m_collection->valueGetter().numValues();
142 }
const FWItemValueGetter & valueGetter() const
one value from the model which is normally used for the popup
Definition: FWEventItem.h:119
int FWCollectionSummaryTableManager::numberOfRows ( ) const
virtual

Number of rows in the table.

Implements FWTableManagerBase.

Definition at line 134 of file FWCollectionSummaryTableManager.cc.

References m_collection, and FWEventItem::size().

135 {
136  return m_collection->size();
137 }
size_t size() const
Definition: FWEventItem.cc:548
const FWCollectionSummaryTableManager& FWCollectionSummaryTableManager::operator= ( const FWCollectionSummaryTableManager )
private
FWTableCellRendererBase * FWCollectionSummaryTableManager::rowHeader ( int  iSortedRowNumber) const
virtual

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

Reimplemented from FWTableManagerBase.

Definition at line 186 of file FWCollectionSummaryTableManager.cc.

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

187 {
188  if(iSortedRowNumber >= static_cast<int>(m_collection->size())) {
189  return 0;
190  }
191  int index = m_sortedToUnsortedIndicies[iSortedRowNumber];
193  index);
194  return &m_renderer;
195 }
FWCollectionSummaryModelCellRenderer m_renderer
size_t size() const
Definition: FWEventItem.cc:548
void setData(const FWEventItem *iItem, int iIndex)
int FWCollectionSummaryTableManager::unsortedRowNumber ( int  iSortedRowNumber) const
virtual

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

References m_sortedToUnsortedIndicies.

Referenced by buttonReleasedInRowHeader().

155 {
156  return m_sortedToUnsortedIndicies[iSortedRowNumber];
157 }

Member Data Documentation

FWTextTableCellRenderer FWCollectionSummaryTableManager::m_bodyRenderer
mutableprivate

Definition at line 71 of file FWCollectionSummaryTableManager.h.

Referenced by cellRenderer().

FWEventItem* FWCollectionSummaryTableManager::m_collection
private
FWCollectionSummaryModelCellRenderer FWCollectionSummaryTableManager::m_renderer
mutableprivate

Definition at line 70 of file FWCollectionSummaryTableManager.h.

Referenced by buttonReleasedInRowHeader(), and rowHeader().

std::vector<int> FWCollectionSummaryTableManager::m_sortedToUnsortedIndicies
private
FWCollectionSummaryWidget* FWCollectionSummaryTableManager::m_widget
private

Definition at line 72 of file FWCollectionSummaryTableManager.h.

Referenced by buttonReleasedInRowHeader().