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

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

Версия от 12:22, 29 января 2009; Root (Обсуждение | вклад)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

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

Image:trolltech-logo.png

Содержание

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

The Q3Header class provides a header row or column, e.g. for tables and listviews. Далее...

 #include <Q3Header>

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.

Наследует QWidget.

[править] Свойства

  • 56 свойств, унаследованных от QWidget
  • 1 свойство, унаследованное от QObject

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

  • 201 свойство, унаследованное от QWidget
  • 29 открытых функций, унаследованных от QObject
  • 12 открытых функций, унаследованных от QPaintDevice

[править] Открытые слоты

  • 19 открытых слотов, унаследованных от QWidget
  • 1 открытый слот, унаследованный от QObject

[править] Сигналы

  • 1 сигнал, унаследованный от QWidget
  • 1 сигнал, унаследованный от QObject

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

  • 38 защищенных функций, унаследованных от QWidget
  • 7 защищенных функций, унаследованных от QObject
  • 1 защищенная функция, унаследованных от QPaintDevice

[править] Дополнительные унаследованные члены

  • 4 статических открытых члена, унаследованных от QWidget
  • 5 статических открытых членов, унаследованных от QObject
  • 1 защищенный слот, унаследованый от QWidget

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

The Q3Header class provides a header row or column, e.g. for tables and listviews.

This class provides a header, e.g. a vertical header to display row labels, or a horizontal header to display column labels. It is used by Q3Table and Q3ListView for example.

A header is composed of one or more sections, each of which can display a text label and an icon. A sort indicator (an arrow) can also be displayed using setSortIndicator().

Sections are added with addLabel() and removed with removeLabel(). The label and icon are set in addLabel() and can be changed later with setLabel(). Use count() to retrieve the number of sections in the header.

The orientation of the header is set with setOrientation(). If setStretchEnabled() is true, the sections will expand to take up the full width (height for vertical headers) of the header. The user can resize the sections manually if setResizeEnabled() is true. Call adjustHeaderSize() to have the sections resize to occupy the full width (or height).

A section can be moved with moveSection(). If setMovingEnabled() is true (the default)the user may drag a section from one position to another. If a section is moved, the index positions at which sections were added (with addLabel()), may not be the same after the move. You don't have to worry about this in practice because the Q3Header API works in terms of section numbers, so it doesn't matter where a particular section has been moved to.

If you want the current index position of a section call mapToIndex() giving it the section number. (This is the number returned by the addLabel() call which created the section.) If you want to get the section number of a section at a particular index position call mapToSection() giving it the index number.

Here's an example to clarify mapToSection() and mapToIndex():


Index positions
0 1 2 3
Original section ordering
Sect 0 Sect 1 Sect 2 Sect 3
Ordering after the user moves a section
Sect 0 Sect 2 Sect 3 Sect 1


k mapToSection(k) mapToIndex(k)
0 0 0
1 2 3
2 3 1
3 1 2

In the example above, if we wanted to find out which section is at index position 3 we'd call mapToSection(3) and get a section number of 1 since section 1 was moved. Similarly, if we wanted to know which index position section 2 occupied we'd call mapToIndex(2) and get an index of 1.

Q3Header provides the clicked(), pressed() and released() signals. If the user changes the size of a section, the sizeChange() signal is emitted. If you want to have a sizeChange() signal emitted continuously whilst the user is resizing (rather than just after the resizing is finished), use setTracking(). If the user moves a section the indexChange() signal is emitted.

See also Q3ListView and Q3Table.


[править] Описание cвойств

[править]
count : const int

This property holds the number of sections in the header.

Функции доступа:

  • int count () const

[править]
moving : bool

This property holds whether the header sections can be moved.

If this property is true (the default) the user can move sections. If the user moves a section the indexChange() signal is emitted.

Функции доступа:

  • bool isMovingEnabled () const
  • virtual void setMovingEnabled ( bool )

See also setClickEnabled() and setResizeEnabled().

[править]
offset : int

This property holds the header's left-most (or top-most) visible pixel.

Setting this property will scroll the header so that offset becomes the left-most (or top-most for vertical headers) visible pixel.

Функции доступа:

  • int offset () const
  • virtual void setOffset ( int pos )

[править]
orientation : Qt::Orientation

This property holds the header's orientation.

The orientation is either Qt::Vertical or Qt::Horizontal (the default).

Call setOrientation() before adding labels if you don't provide a size parameter otherwise the sizes will be incorrect.

Функции доступа:

  • Qt::Orientation orientation () const
  • virtual void setOrientation ( Qt::Orientation )

[править]
stretching : bool

This property holds whether the header sections always take up the full width (or height) of the header.

Функции доступа:

  • bool isStretchEnabled () const
  • bool isStretchEnabled ( int section ) const
  • virtual void setStretchEnabled ( bool b, int section )
  • void setStretchEnabled ( bool b )

[править]
tracking : bool

This property holds whether the sizeChange() signal is emitted continuously.

If tracking is on, the sizeChange() signal is emitted continuously while the mouse is moved (i.e. when the header is resized), otherwise it is only emitted when the mouse button is released at the end of resizing.

Tracking defaults to false.

Функции доступа:

  • bool tracking () const
  • virtual void setTracking ( bool enable )

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

[править]
Q3Header::Q3Header ( QWidget * parent = 0, const char * name = 0 )

Constructs a horizontal header called name, with parent parent.

[править]
Q3Header::Q3Header ( int n, QWidget * parent = 0, const char * name = 0 )

Constructs a horizontal header called name, with n sections and parent parent.

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

Destroys the header and all its sections.

[править]
int Q3Header::addLabel ( const QString & s, int size = -1 )

Adds a new section with label text s. Returns the index position where the section was added (at the right for horizontal headers, at the bottom for vertical headers). The section's width is set to size. If size < 0, an appropriate size for the text s is chosen.

[править]
int Q3Header::addLabel ( const QIcon & icon, const QString & s, int size = -1 )

Эта перегруженная функция предоставлена для удобства.

Adds a new section with icon icon and label text s. Returns the index position where the section was added (at the right for horizontal headers, at the bottom for vertical headers). The section's width is set to size, unless size is negative in which case the size is calculated taking account of the size of the text.

[править]
void Q3Header::adjustHeaderSize ()

Adjusts the size of the sections to fit the size of the header as completely as possible. Only sections for which isStretchEnabled() is true will be resized.

[править]
int Q3Header::cellAt ( int pos ) const

Use sectionAt() instead.

Returns the index at which the section is displayed, which contains pos in widget coordinates, or -1 if pos is outside the header sections.

[править]
int Q3Header::cellPos ( int i ) const

Use sectionPos() instead.

Returns the position in pixels of the section that is displayed at the index i. The position is measured from the start of the header.

[править]
int Q3Header::cellSize ( int i ) const

Use sectionSize() instead.

Returns the size in pixels of the section that is displayed at the index i.

See also setCellSize().

[править]
void Q3Header::clicked ( int section ) [signal]

If isClickEnabled() is true, this signal is emitted when the user clicks section section.

See also pressed() and released().

[править]
int Q3Header::headerWidth () const

Returns the total width of all the header columns.

[править]
QIcon * Q3Header::iconSet ( int section ) const

Returns the icon set for section section. If the section does not exist, 0 is returned.

[править]
void Q3Header::indexChange ( int section, int fromIndex, int toIndex ) [signal]

This signal is emitted when the user moves section section from index position fromIndex, to index position toIndex.

[править]
bool Q3Header::isClickEnabled ( int section = -1 ) const

Returns true if section section is clickable; otherwise returns false.

If section is out of range (negative or larger than count() - 1): returns true if all sections are clickable; otherwise returns false.

See also setClickEnabled().

[править]
bool Q3Header::isResizeEnabled ( int section = -1 ) const

Returns true if section section is resizeable; otherwise returns false.

If section is -1 then this function applies to all sections, i.e. returns true if all sections are resizeable; otherwise returns false.

See also setResizeEnabled().

[править]
QString Q3Header::label ( int section ) const

Returns the text for section section. If the section does not exist, returns an empty string.

See also setLabel().

[править]
int Q3Header::mapToActual ( int l ) const

Use mapToIndex() instead.

Translates from logical index l to actual index (index at which the section l is displayed) . Returns -1 if l is outside the legal range.

See also mapToLogical().

[править]
int Q3Header::mapToIndex ( int section ) const

Returns the index position at which section section is displayed.

[править]
int Q3Header::mapToLogical ( int a ) const

Use mapToSection() instead.

Translates from actual index a (index at which the section is displayed) to logical index of the section. Returns -1 if a is outside the legal range.

See also mapToActual().

[править]
int Q3Header::mapToSection ( int index ) const

Returns the number of the section that is displayed at index position index.

[править]
void Q3Header::moveCell ( int fromIdx, int toIdx ) [virtual]

Use moveSection() instead.

Moves the section that is currently displayed at index fromIdx to index toIdx.

[править]
void Q3Header::moveSection ( int section, int toIndex )

Moves section section to index position toIndex.

[править]
void Q3Header::moved ( int fromIndex, int toIndex ) [signal]

Use indexChange() instead.

This signal is emitted when the user has moved the section which is displayed at the index fromIndex to the index toIndex.

[править]
void Q3Header::paintSection ( QPainter * p, int index, const QRect & fr ) [virtual protected]

Paints the section at position index, inside rectangle fr (which uses widget coordinates) using painter p.

Calls paintSectionLabel().

[править]
void Q3Header::paintSectionLabel ( QPainter * p, int index, const QRect & fr ) [virtual protected]

Paints the label of the section at position index, inside rectangle fr (which uses widget coordinates) using painter p.

Called by paintSection()

[править]
void Q3Header::pressed ( int section ) [signal]

This signal is emitted when the user presses section section down.

See also released().

[править]
void Q3Header::released ( int section ) [signal]

This signal is emitted when section section is released.

See also pressed().

[править]
void Q3Header::removeLabel ( int section )

Removes section section. If the section does not exist, nothing happens.

[править]
void Q3Header::resizeSection ( int section, int s )

Resizes section section to s pixels wide (or high).

[править]
QRect Q3Header::sRect ( int index ) [protected]

Returns the rectangle covered by the section at index index.

[править]
int Q3Header::sectionAt ( int pos ) const

Returns the index of the section which contains the position pos given in pixels from the left (or top).

See also offset().

[править]
void Q3Header::sectionClicked ( int index ) [signal]

Use clicked() instead.

This signal is emitted when a part of the header is clicked. index is the index at which the section is displayed.

In a list view this signal would typically be connected to a slot that sorts the specified column (or row).

[править]
void Q3Header::sectionHandleDoubleClicked ( int section ) [signal]

This signal is emitted when the user doubleclicks on the edge (handle) of section section.

[править]
int Q3Header::sectionPos ( int section ) const

Returns the position (in pixels) at which the section starts.

See also offset().

[править]
QRect Q3Header::sectionRect ( int section ) const

Returns the rectangle covered by section section.

[править]
int Q3Header::sectionSize ( int section ) const

Returns the width (or height) of the section in pixels.

[править]
void Q3Header::setCellSize ( int section, int s ) [virtual]

Use resizeSection() instead.

Sets the size of the section section to s pixels.

Warning: does not repaint or send out signals

See also cellSize().

[править]
void Q3Header::setClickEnabled ( bool enable, int section = -1 ) [virtual]

If enable is true, any clicks on section section will result in clicked() signals being emitted; otherwise the section will ignore clicks.

If section is -1 (the default) then the enable value is set for all existing sections and will be applied to any new sections that are added.

See also isClickEnabled(), setMovingEnabled(), and setResizeEnabled().

[править]
void Q3Header::setLabel ( int section, const QString & s, int size = -1 ) [virtual]

Sets the text of section section to s. The section's width is set to size if size >= 0; otherwise it is left unchanged. Any icon set that has been set for this section remains unchanged.

If the section does not exist, nothing happens.

See also label().

[править]
void Q3Header::setLabel ( int section, const QIcon & icon, const QString & s, int size = -1 ) [virtual]

Эта перегруженная функция предоставлена для удобства.

Sets the icon for section section to icon and the text to s. The section's width is set to size if size >= 0; otherwise it is left unchanged.

If the section does not exist, nothing happens.

[править]
void Q3Header::setResizeEnabled ( bool enable, int section = -1 ) [virtual]

If enable is true the user may resize section section; otherwise the section may not be manually resized.

If section is negative (the default) then the enable value is set for all existing sections and will be applied to any new sections that are added. Пример:

 // Allow resizing of all current and future sections
 header->setResizeEnabled(true);
 // Disable resizing of section 3, (the fourth section added)
 header->setResizeEnabled(false, 3);

If the user resizes a section, a sizeChange() signal is emitted.

See also isResizeEnabled(), setMovingEnabled(), setClickEnabled(), and setTracking().

[править]
void Q3Header::setSortIndicator ( int section, Qt::SortOrder order )

Sets a sort indicator onto the specified section. The indicator's order is either Ascending or Descending.

Only one section can show a sort indicator at any one time. If you don't want any section to show a sort indicator pass a section number of -1.

See also sortIndicatorSection() and sortIndicatorOrder().

[править]
void Q3Header::setSortIndicator ( int section, bool ascending = true )

Эта перегруженная функция предоставлена для удобства.

Sets the sort indicator to ascending. Use the other overload instead.

[править]
void Q3Header::sizeChange ( int section, int oldSize, int newSize ) [signal]

This signal is emitted when the user has changed the size of a section from oldSize to newSize. This signal is typically connected to a slot that repaints the table or list that contains the header.

[править]
Qt::SortOrder Q3Header::sortIndicatorOrder () const

Returns the implied sort order of the Q3Headers sort indicator.

See also setSortIndicator() and sortIndicatorSection().

[править]
int Q3Header::sortIndicatorSection () const

Returns the section showing the sort indicator or -1 if there is no sort indicator.

See also setSortIndicator() and sortIndicatorOrder().



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2