Qt:Документация 4.3.2/q3tableselection

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] Q3TableSelection Class Reference
[ Qt3Support module]

The Q3TableSelection class provides access to a selected area in a Q3Table. Далее...

 #include <Q3TableSelection>

This class is part of the Qt 3 support library. It is provided to keep old source code working. Мы настоятельно не рекомендуем использовать этот класс в новом коде. See Porting to Qt 4 for more information.

Note to Qt Desktop Light Edition users: This class is only available in the Qt Desktop Edition.

[править] Открытые функции


[править] Подробное описание

The Q3TableSelection class provides access to a selected area in a Q3Table.

The selection is a rectangular set of cells in a Q3Table. One of the rectangle's cells is called the anchor cell; this is the cell that was selected first. The init() function sets the anchor and the selection rectangle to exactly this cell; the expandTo() function expands the selection rectangle to include additional cells.

There are various access functions to find out about the area: anchorRow() and anchorCol() return the anchor's position; leftCol(), rightCol(), topRow() and bottomRow() return the rectangle's four edges. All four are part of the selection.

A newly created Q3TableSelection is inactive -- isActive() returns false. You must use init() and expandTo() to activate it.

Q3Table::selectCells() Q3Table::selectRow() Q3Table::selectColumn()

See also Q3Table, Q3Table::addSelection(), and Q3Table::selection().


[править] Описание функций-членов

[править]
Q3TableSelection::Q3TableSelection ()

Creates an inactive selection. Use init() and expandTo() to activate it.

[править]
Q3TableSelection::Q3TableSelection ( int start_row, int start_col, int end_row, int end_col )

Creates an active selection, starting at start_row and start_col, ending at end_row and end_col.

[править]
int Q3TableSelection::anchorCol () const

Returns the anchor column of the selection.

See also anchorRow() and expandTo().

[править]
int Q3TableSelection::anchorRow () const

Returns the anchor row of the selection.

See also anchorCol() and expandTo().

[править]
int Q3TableSelection::bottomRow () const

Returns the bottom row of the selection.

See also topRow(), leftCol(), and rightCol().

[править]
void Q3TableSelection::expandTo ( int row, int col )

Expands the selection to include cell row, col. The new selection rectangle is the bounding rectangle of row, col and the previous selection rectangle. After calling this function the selection is active.

If you haven't called init(), this function does nothing.

See also init() and isActive().

[править]
void Q3TableSelection::init ( int row, int col )

Sets the selection anchor to cell row, col and the selection to only contain this cell. The selection is not active until expandTo() is called.

To extend the selection to include additional cells, call expandTo().

See also isActive().

[править]
bool Q3TableSelection::isActive () const

Returns whether the selection is active or not. A selection is active after init() and expandTo() have been called.

[править]
bool Q3TableSelection::isEmpty () const

Returns whether the selection is empty or not.

See also numRows() and numCols().

[править]
int Q3TableSelection::leftCol () const

Returns the left column of the selection.

See also topRow(), bottomRow(), and rightCol().

[править]
int Q3TableSelection::numCols () const

Returns the number of columns in the selection.

See also numRows().

[править]
int Q3TableSelection::numRows () const

Returns the number of rows in the selection.

See also numCols().

[править]
int Q3TableSelection::rightCol () const

Returns the right column of the selection.

See also topRow(), bottomRow(), and leftCol().

[править]
int Q3TableSelection::topRow () const

Returns the top row of the selection.

See also bottomRow(), leftCol(), and rightCol().

[править]
bool Q3TableSelection::operator!= ( const Q3TableSelection & s ) const

Returns true if s does not include the same cells as the selection; otherwise returns false.

[править]
bool Q3TableSelection::operator== ( const Q3TableSelection & s ) const

Returns true if s includes the same cells as the selection; otherwise returns false.



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2