Russian Qt Forum

Qt => Пользовательский интерфейс (GUI) => Тема начата: kaw от Март 20, 2009, 14:01



Название: QComboBox как узнать index по тексту!!
Отправлено: kaw от Март 20, 2009, 14:01
QComboBox как узнать номер определенной записи  ???


Название: Re: QComboBox как узнать index по тексту!!
Отправлено: Khs от Март 20, 2009, 14:03
int QComboBox::findData ( const QVariant & data, int role = Qt::UserRole, Qt::MatchFlags flags = Qt::MatchExactly | Qt::MatchCaseSensitive ) const

Returns the index of the item containing the given data for the given role; otherwise returns -1.

The flags specify how the items in the combobox are searched.

int QComboBox::findText ( const QString & text, Qt::MatchFlags flags = Qt::MatchExactly | Qt::MatchCaseSensitive ) const

Returns the index of the item containing the given text; otherwise returns -1.

The flags specify how the items in the combobox are searched.


Название: Re: QComboBox как узнать index по тексту!!
Отправлено: kaw от Март 20, 2009, 15:15
балин просматрел  :o СПАСИБО!