일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- DevOps
- VMware
- Linux
- window size
- docker registry
- Chef
- docker container
- 우분투
- golang
- ssh command
- 도커
- ubuntu
- driver
- QT
- port
- opsworks
- 루비
- VIM
- ssh
- AWS
- VPN
- RUBY
- 패키지
- 리눅스
- docker
- 방화벽체크
- docker-compose
- 드라이버
- sudo
- Openswan
- Today
- Total
구리의 창고
QT Programming - QModelIndex 에서 item 정보 가져오기 본문
Model/View 프로그래밍을 하다보면 많은 정보들이 QModelIndex 형식으로 넘어온다.
그리고 그 index에 맞는 특정 column, row 의 정보가 필요하다.
아래와 같이 가져 올 수 있다.
QVariant로 리턴되므로 입맛에 맞게 고쳐쓰면 된다.
* QStandardItemModel 에는 itemFromIndex 라는 함수가 존재한다.
http://doc.qt.nokia.com/4.7/qstandarditemmodel.html
그리고 그 index에 맞는 특정 column, row 의 정보가 필요하다.
아래와 같이 가져 올 수 있다.
const QAbstractItemModel * model = index.model();
qDebug() << model->data(model->index(row, col), Qt::DisplayRole);
QVariant로 리턴되므로 입맛에 맞게 고쳐쓰면 된다.
* QStandardItemModel 에는 itemFromIndex 라는 함수가 존재한다.
QStandardItem * QStandardItemModel::itemFromIndex ( const QModelIndex & index ) const
http://doc.qt.nokia.com/4.7/qstandarditemmodel.html
'QT' 카테고리의 다른 글
QT Programming - 시그날 통과, 전달 시키기 (0) | 2011.11.16 |
---|---|
QT Programming - QDialog 의 ESC(escape) 버튼 처리 (0) | 2011.10.04 |
QT Programming - QTableView column width 변경 (0) | 2011.09.06 |
QT Programming - QTreeView 의 checkbox 클릭 여부 확인하기 (0) | 2011.09.05 |
QT Programming - 우클릭 시 clicked 시그날 발생 막기 (0) | 2011.09.05 |
Comments