/usr/include/Wt/WTableRow is in libwt-dev 3.1.10-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 | // This may look like C code, but it's really -*- C++ -*-
/*
* Copyright (C) 2008 Emweb bvba, Kessel-Lo, Belgium.
*
* See the LICENSE file for terms of use.
*/
#ifndef WTABLE_ROW_H_
#define WTABLE_ROW_H_
#include <Wt/WObject>
#include <Wt/WString>
namespace Wt {
class DomElement;
class WTable;
class WTableCell;
/*! \class WTableRow Wt/WTableRow Wt/WTableRow
* \brief A table row.
*
* A %WTableRow is returned by WTable::rowAt() and managing various
* properties of a single row in a table (it is however not a widget).
*
* You cannot access table cells through the row. Instead, to access
* table cells, see WTable::elementAt().
*
* A table row corresponds to the HTML <tt><tr></tt> tag.
*
* \sa WTable, WTableColumn
*/
class WT_API WTableRow : public WObject
{
public:
/*! \brief Returns the table to which this row belongs.
*
* \sa WTable::rowAt()
*/
WTable *table() const { return table_; }
/*! \brief Access the row element at the given column.
*
* Like WTable::elementAt(), if the column is beyond the current
* table dimensions, then the table is expanded automatically.
*/
WTableCell *elementAt(int column);
/*! \brief Returns the row number of this row in the table.
*
* \sa WTable::rowAt()
*/
int rowNum() const;
/*! \brief Sets the row height.
*
* The default row height is WLength::Auto.
*
* \sa height(), WWidget::resize()
*/
void setHeight(const WLength& height);
/*! \brief Returns the row height.
*
* \sa setHeight(const WLength&)
*/
WLength height() const;
/*! \brief Sets the CSS style class for this row.
*
* The style is inherited by all table cells in this row.
*
* \sa styleClass(), WWidget::setStyleClass()
*/
void setStyleClass(const WT_USTRING& style);
/*! \brief Returns the CSS style class for this row.
*
* \sa styleClass(), WWidget::styleClass()
*/
const WT_USTRING& styleClass() const { return styleClass_; }
/*! \brief Sets whether the row must be hidden.
*
* Hide or show the row.
*
* The default value is \c false (row is not hidden).
*
* \sa hide(), show()
*/
void setHidden(bool how);
/*! \brief Returns whether the rows is hidden.
*
* \sa setHidden()
*/
bool isHidden() const { return hidden_; }
/*! \brief Hides the row.
*
* \sa setHidden()
*/
void hide();
/*! \brief Shows the row.
*
* \sa setHidden()
*/
void show();
/*! \brief Sets the CSS Id.
*
* Sets a custom Id. Note that the Id must be unique across the whole
* widget tree, can only be set right after construction and cannot
* be changed.
*
* \sa WObject::id()
*/
void setId(const std::string& id);
virtual const std::string id() const;
private:
WTableRow(WTable *table, int numCells);
~WTableRow();
void expand(int numCells);
struct TableData {
WTableCell *cell;
/* used during rendering */
bool overSpanned;
TableData();
};
WTable *table_;
std::vector<TableData> cells_;
WLength *height_;
std::string *id_;
WT_USTRING styleClass_;
bool hidden_, hiddenChanged_, wasHidden_;
void updateDom(DomElement& element, bool all);
void insertColumn(int column);
void deleteColumn(int column);
void undoHide();
friend class WTable;
};
}
#endif // WTABLE_ROW_H_
|