FBB::Table(3bobcat)

Table-formatter
(libbobcat-dev_6.02.02)

2005-2022

NAME

FBB::Table - Generates row- or column-wise filled tables

SYNOPSIS

#include <bobcat/table>
Linking option: -lbobcat

DESCRIPTION

FBB::Table objects can be used to create tables. Tables are filled either column- or row-wise. Many of the table's characteristics may be fine-tuned using a separate FBB::TableSupport object (cf. tablesupport(3bobcat)). When no FBB::TableSupport object is used, a plain table, filled row-wise or column-wise, is constructed which can be inserted into a std::ostream.

Tables defined by Table consist of rows and a fixed number of columns. The number of columns is specified at construction time, the number of rows also depends on the number of inserted elements. Columns and rows are addressed using indices (starting at 0). Before the leftmost column, between the columns and beyond the last column separators are defined. By default these separators are empty, but each separator may be given a (fixed) width or content. The separator before column col is addressed as separator col, the rightmost separator is addressed as separator nColummns.

Rows can also be separated from each other using separators. These separating rows are empty by default. The row-separator before row row is addressed as row-separator row. The row-separator following the final row is addressed as row-separator nRows, where nRows is the value returned by the nRows member function.

Non-default (i.e., non-empty) separators are defined using FBB::TableSupport objects (cf. tablesupport(3bobcat)).

Table objects look a lot like ostream objects, using a simple way to define new elements: each new insertion defines another table element, and it is difficult to end a row before it has received its nColumn number of elements. Table's sister-class, TableBuf, is a std::streambuf type of class, offering additional control through the use of a wrapping ostream class object.

NAMESPACE

FBB
All constructors, members, operators and manipulators, mentioned in this man-page, are defined in the namespace FBB.

INHERITS FROM

std::ostringstream - Table inherits from std::ostringstream, allowing insertions into a Table object. Each separate insertion adds another element to the Table object.

FBB::TableBase - This class implements common elements of the table implementation. The TableBase class is not intended to be used by itself, and no separate man-page is provided. Facilities provided by Table which were inherited from TableBase are described in this man-page.

ENUMERATIONS

The following enumerations are defined by the class FBB::Table: enum FillDirection
This enumeration defines two values:

enum WidthType
This enumeration defines two values:

CONSTRUCTORS

Copy and move constructors (and assignment operators) are not available.

OVERLOADED OPERATORS

MEMBER FUNCTIONS

;
  • size_t nRows():
    The table's current number of rows is returned. It is initialized to 0, and after that updated when def has been called;
  • Table &setAlign(Align const &align):
    The alignment type of either a column or an element of the Table object is defined using setAlign. The standard alignments std::left, std::right and std::internal may be specified, but in addition the alignment FBB::center may be used if elements should be centered into their column. A construction like
    tab << Align(2, FBB::center)
    
    requests centering of all elements in the table's column having index value 2 (i.e., the table's 3rd column), whereas a construction like
    tab << Align(2, 3, FBB::center)
    
    requests centering of element [2][3]. It is the responsibility of the programmer to ensure that such elements exist. By default, all elements are right-aligned. )

    MANPULATORS

    EXAMPLE

    #include <iostream>
    
    #include <bobcat/table>
    #include <bobcat/tablelines>
    
    using namespace std;
    using namespace FBB;
    
    int main(int argc, char **argv)
    {
        TableLines tablelines;
                                    // width/separators of cols 0, 1 and 2
        tablelines << 0 << " | " << " | ";
    
                                    // hline over cols 1 and 2 of row 1
        tablelines << TableLines::HLine(1, 1, 3);
    
        Table tab(tablelines, 3, Table::ROWWISE, Table::EQUALWIDTH);
        // or: Table tab(tablelines, 3, Table::ROWWISE);
    
        tab << Align(0, std::left);     // set column non-default alignment
        tab.fill(argv + 1, argv + argc);// fill range of values
    
        cout << tab << '\n';            // complete the table and insert
    
        tab << "hello" << "" << "wo";   // add additional elements.
        if (tab.nRows() > 2)
            tab << Align(2, 2, center); // set the layout of a specific element
    
        cout << tab << '\n';
    }
    

    FILES

    bobcat/table - defines the class interface;

    SEE ALSO

    bobcat(7), align(3bobcat), csvtable(3bobcat), manipulator(3bobcat), tablebuf(3bobcat), tablelines(3bobcat), tablesupport(3bobcat)

    BUGS

    Note that def() will reshuffle elements over the table's columns when new elements are added to the table subsequent to calling def()

    BOBCAT PROJECT FILES

    BOBCAT

    Bobcat is an acronym of `Brokken's Own Base Classes And Templates'.

    COPYRIGHT

    This is free software, distributed under the terms of the GNU General Public License (GPL).

    AUTHOR

    Frank B. Brokken (f.b.brokken@rug.nl).