Announcing: version 0.31 of my multi-column/multi-select table widget
Location:   http://www.stack.nl/~dimitri/qdbttabular/
ftp:        ftp://ftp.troll.no/contrib (soon I hope)
Copying:    GPL
Brief description:
            The QdbtTabular class represents a table widget
            which looks similar to the `detailed list' of Windows 95.
            It can be used as a replacement for QListBox.

Changed in version 0.31:
            - fixed pixmap inversion bug for non truecolor visuals.
            - setPalette now works correctly (see example4).
            - fixed update problem that appears when using Qt 1.32

Changed in version 0.3:
	    - added keyboard support (use tab to get focus).
	    - fixed bugs related to insertion and deletion of columns.

Changed in version 0.22:
            - fixed a bug in the resizing of the table.
            - changed the implementation of QdbtCellMatrix, 
              adding rows is now faster.
            - moved the section widget to the public interface.
              The table header can now be modified by inheriting the
              QdbtSection widget.
            - Improved the documentation, it is now automatically
              generated using doxygen.

Changed in version 0.21:
            - removed the modified version of Troll tech's code used in 
              qdbtlined.* to class inherited from QLineEdit.

New features of version 0.2:
            - Cells be edited; whether or not a cell may be edited
              can be controlled by the application programmer.
            - Cells can be selected one row at a time, or individually. 
              selection can also be disabled.
            - A tooltip appears if the mouse is resting on a cell whose 
              text is not completely visible. The tooltip will show the 
              complete text.
            - Pixmaps of a cell can now be above/below/to the left/to the 
              right of the text.
            - A lot of new member functions allowing to change the
              behavior of the table and its cells.
            - 3 new examples demonstrating the new features.
            - Qt look-a-like on-line documentation.
            - Now uses tmake to generate the Makefiles.
            - Tested with Qt 1.30/Qt 1.2.

Features of version 0.1:
            - Multiple rows can be selected one by one, or by click-and-drag.
            - the table has a heading; a section for each column.
              Each section is separated by a divider.
            - Columns can be resized by click-and-dragging the divider;
              a slide bar is visible while dragging.
            - Clicking the middle mouse button on a divider will
              resize the column, so that all cells in the column fit.
            - Clicking on a section generates a signal. 
            - Automatic appearing/disappearing scrollbars.
            - The table can be resized, empty rows and columns can be inserted. 
            - The font of the header and the cells can be set separately
            - Texts that do not fit in a cell are truncated using dots (...)
            - Fast cell access (Internally a 2D array of pointers to cells 
              is used).
            - Efficient and automatic widget updates.
            - 100 % based on Qt components (QWidget/QFrame/QButton/QTableView).
            
            Each cell in the table is a QdTabCell class, which has the
            following features:
            - Each cell can 
               - have it's own color
               - have an optional text
               - have an optional pixmap
               - be left or right aligned

