Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017 #include "Fireworks/TableWidget/interface/FWTableManagerBase.h"
00018 #include "Fireworks/TableWidget/interface/FWTableCellRendererBase.h"
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032 FWTableManagerBase::FWTableManagerBase():
00033 m_sortColumn(-1),
00034 m_sortOrder(false)
00035 {
00036 }
00037
00038
00039
00040
00041
00042
00043 FWTableManagerBase::~FWTableManagerBase()
00044 {
00045 }
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062 void
00063 FWTableManagerBase::sort(int col, bool sortOrder)
00064 {
00065 if(col <= numberOfColumns()) {
00066 m_sortColumn = col;
00067 m_sortOrder = sortOrder;
00068 implSort(col,sortOrder);
00069 visualPropertiesChanged();
00070 }
00071 }
00072
00073 void FWTableManagerBase::dataChanged()
00074 {
00075 if(-1 != m_sortColumn) {
00076 implSort(m_sortColumn,m_sortOrder);
00077 }
00078 Emit("dataChanged()");
00079 }
00080
00081 void FWTableManagerBase::visualPropertiesChanged()
00082 {
00083 Emit("visualPropertiesChanged()");
00084 }
00085
00086
00087
00088
00089 unsigned int FWTableManagerBase::cellHeight() const
00090 {
00091 FWTableCellRendererBase* cr = cellRenderer(0,0);
00092 if(cr) {
00093 return cr->height();
00094 }
00095 if(hasRowHeaders()) {
00096 cr = rowHeader(0);
00097 if(cr) {
00098 return cr->height();
00099 }
00100 }
00101 return 0;
00102 }
00103
00104 std::vector<unsigned int> FWTableManagerBase::maxWidthForColumns() const
00105 {
00106 std::vector<unsigned int> returnValue;
00107 returnValue.reserve(numberOfColumns());
00108 const int numCols= numberOfColumns();
00109 const int numRows = numberOfRows();
00110 for(int col = 0; col < numCols; ++col) {
00111 unsigned int max = 0;
00112 for(int row=0; row < numRows; ++row) {
00113 unsigned int width = cellRenderer(row,col)->width();
00114 if(width > max) {
00115 max = width;
00116 }
00117 }
00118 returnValue.push_back(max);
00119 }
00120 return returnValue;
00121 }
00122
00123 bool FWTableManagerBase::hasLabelHeaders() const
00124 {
00125 return true;
00126 }
00127
00128 bool FWTableManagerBase::hasRowHeaders() const
00129 {
00130 return false;
00131 }
00132 FWTableCellRendererBase* FWTableManagerBase::rowHeader(int iRow) const
00133 {
00134 return 0;
00135 }
00136
00137 void
00138 FWTableManagerBase::buttonPressedInRowHeader(Int_t row, Event_t* event, Int_t relX, Int_t relY)
00139 {
00140 }
00141 void
00142 FWTableManagerBase::buttonReleasedInRowHeader(Int_t row, Event_t* event, Int_t relX, Int_t relY)
00143 {
00144 }
00145
00146
00147
00148
00149 ClassImp(FWTableManagerBase)