FBB::Table(3bobcat)

Table-formatter
(libbobcat-dev_4.08.03-x.tar.gz)

2005-2018

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. The tables are filled either column-wise or row-wise. Many of the table's characteristics may be fine-tuned using a separate FBB::TableSupport object, described in a separate man-page (TableSupport(3bobcat)). When no FBB::TableSupport object is used, a plain row-wise or column-wise table is constructed which can be inserted into a std::ostream.

Tables defined by Table consist of a (number of element dependent) number of rows and a fixed number of columns, the latter value is specified at construction time. Columns and rows are normally addressed using index values (starting at 0). Before the leftmost column, between the columns and beyond the last column separators are defined. By default the 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.

Likewise, rows can be separated from each other using separators. These separating rows are also 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, but they also adopt a fairly rigid 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 FBB::TableBuf class is also derived from TableBase. The TableBase class is not intended to be used otherwise, and no separate man-page is provided. All facilities provided by Table 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

The copy constructor is not available.

OVERLOADED OPERATORS

The overloaded assignment operator is not available.

MEMBER FUNCTIONS

.
  • size_t nRows():
    The currently available number of rows in the table is returned. Its value is only defined after calling def().
  • 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.
  • Table &def():
    After inserting elements into a Table object its number of elements may or may not be an integral multiple of the number of columns specified at construction time. To `complete' a Table object to a rectangular object, for which all column widths and alignments have been determined def may be called. It is automatically called by operator<<(ostream, Table). In other situations it may be called explicitly to force the insertion of another row in a table using ROWWISE insertions. With COLUMNWISE insertions its working is complex, since new elements added to a COLUMNWISE filled table will reshuffle its elements over the table's columns. )

    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), 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()

    DISTRIBUTION 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).