Qt学习之路(48): 自定义委托

 Qt学习之路(48): 自定义委托
2010-01-27 20:36:34
标签: Qt  C++  学习  教程  QT教程
原创作品,允许转载,转载时请务必以超链接形式标明文章  原始出处 、作者信息和本声明。否则将追究法律责任。 http://devbean.blog.51cto.com/448512/271255
好久没有来写文章了,由于家里面宽带断了,所以一直没能更新,今天现在写上一篇。
 
还是继续前面的内容。前面我们分三次把自定义model说完了,其实主要还是那三个实例。在 model/view 架构中,与model同等重要的就是 view。
 
我们知道,在经典的 MVC 模型中,view用于向用户展示 model 的数据。但是,Qt提供的不是 MVC 三层架构,而是一个 model/view 设计。这种设计并没有包含一个完整而独立的组件用于管理用户的交互。一般来说,view仅仅是用作对model数据的展示和对用户输入的处理,而不应该去做其他的工作。在这种结构中,为了获得对用户输入控制的灵活性,这种交互工作交给了delegate,也就是“委托”,去完成。简单来说,就像它们的名字一样,view 将用户输入委托给 delegate 处理,而自己不去处理这种输入。这些组件提供一种输入能力,并且能够在某些 view 中提供这种交互情形下的渲染,比如在 table 中通过双击单元格即可编辑内容等。对这种控制委托的标准接口被定义在 QAbstractItemDelegate 类中。
 
delegate 可以用于渲染内容,这是通过 paint() 和 sizeHint() 函数来完成的。但是,对于一些简单的基于组件的delegate,可以通过继承 QItemDelegate 或者 QStyledItemDelegate 来实现。这样就可以避免要完全重写 QAbstractItemDelegate 中所需要的所有函数。对于一些相对比较通用的函数,在这两个类中已经有了一个默认的实现。
 
Qt提供的标准组件使用 QItemDelegate 提供编辑功能的支持。这种默认的实现被用在 QListView,QTableView 和 QTreeView 之中。view 实用的delegate可以通过 itemDelegate() 函数获得。setItemDelegate() 函数则可以为一个标准组件设置自定义的 delegate。
 
Qt 4.4版本之后提供了两个可以被继承的delegate类:QItemDelegate 和 QStyledItemDelegate。默认的delegate是 QStyledItemDelegate。这两个类可以被相互替代,用于给view 组件提供绘制和编辑的功能。它们之间的主要区别在于,QStyledItemDelegate 使用当前的风格(style)去绘制组件。所以,在自定义delegate或者需要使用 Qt style sheets 时,建议使用 QStyledItemDelegate 作为父类。使用这两个类的代码通常是一样的,除了需要使用style进行绘制的部份。如果你希望为view item自定义绘制函数,最好实现一个自定义的style。这个你可以通过QStyle类来实现。
 
如果delegate没有支持为你的数据类型进行绘制,或者你希望自己绘制item,那么就可以继承 QStyledItemDelegate 类,并且重写 paint() 或者还需要重写 sizeHint() 函数。paint() 函数会被每一个item独立调用,而sizeHint()函数则可以定义每一个item 的大小。在重写 paint() 函数的时候,通常需要用 if 语句找到你需要进行渲染的数据类型并进行绘制,其他的数据类型需要调用父类的实现进行绘制。
 
一个自定义的delegate也可以直接提供一个编辑器,而不是使用内置的编辑器工厂(editor item factory)。如果你需要这种功能,那么需要实现一下几个函数:
  • createEditor(): 返回修改数据的组件;
  • setEditorData(): 为editor提供编辑的原始数据;
  • updateEditorGeometry(): 保证editor显示在 item view 的合适位置以及大小;
  • setModelData(): 根据editor 的数据更新model的数据。
好了,这就是一个自定义delegate的实现了。下面来看一个例子。
 
这是一个歌曲及其时间的例子。使用的是QTableWidget,一共有两列,第一列是歌曲名字,第二列是歌曲持续的时间。为了表示这个数据,我们建立一个Track类:
 
track.h
#ifndef TRACK_H 
#define TRACK_H 
 
#include <QtCore> 
 
class Track 

public
        Track( const QString &title = "",  int duration = 0); 
 
        QString title; 
         int duration; 
}; 
 
#endif  // TRACK_H
 
track.cpp
#include  "track.h" 
 
Track::Track( const QString &title,  int duration) 
        : title(title), duration(duration) 

}
 
这个类的构造函数没有做任何操作,只是把title和duration这两个参数通过构造函数初始化列表赋值给内部的成员变量。注意,现在这两个成员变量都是public的,在正式的程序中应该声明为private的才对。然后来看TrackDelegate类:
 
trackdelegate.h
#ifndef TRACKDELEGATE_H 
#define TRACKDELEGATE_H 
 
#include <QtGui> 
 
class TrackDelegate :  public QStyledItemDelegate 

        Q_OBJECT 
 
public
        TrackDelegate( int durationColumn, QObject *parent = 0); 
 
         void paint(QPainter *painter,  const QStyleOptionViewItem &option,  const QModelIndex &index)  const
        QWidget *createEditor(QWidget *parent,  const QStyleOptionViewItem &option,  const QModelIndex &index)  const
         void setEditorData(QWidget *editor,  const QModelIndex &index)  const
         void setModelData(QWidget *editor, QAbstractItemModel *model,  const QModelIndex &index)  const
 
private slots: 
         void commitAndCloseEditor(); 
 
private
         int durationColumn; 
}; 
 
 
#endif  // TRACKDELEGATE_H 
 
trackdelegate.cpp
#include  "trackdelegate.h" 
 
TrackDelegate::TrackDelegate( int durationColumn, QObject *parent) 
        : QStyledItemDelegate(parent) 

         this->durationColumn = durationColumn; 

 
void TrackDelegate::paint(QPainter *painter,  const QStyleOptionViewItem &option,  const QModelIndex &index)  const 

         if (index.column() == durationColumn) { 
                 int secs = index.model()->data(index, Qt::DisplayRole).toInt(); 
                QString text = QString( "%1:%2").arg(secs / 60, 2, 10, QChar('0')).arg(secs % 60, 2, 10, QChar('0')); 
                QTextOption o(Qt::AlignRight | Qt::AlignVCenter); 
                painter->drawText(option.rect, text, o); 
        }  else { 
                QStyledItemDelegate::paint(painter, option, index); 
        } 

 
QWidget *TrackDelegate::createEditor(QWidget *parent,  const QStyleOptionViewItem &option,  const QModelIndex &index)  const 

         if (index.column() == durationColumn) { 
                QTimeEdit *timeEdit =  new QTimeEdit(parent); 
                timeEdit->setDisplayFormat( "mm:ss"); 
                connect(timeEdit, SIGNAL(editingFinished()),  this, SLOT(commitAndCloseEditor())); 
                 return timeEdit; 
        }  else { 
                 return QStyledItemDelegate::createEditor(parent, option, index); 
        } 

 
void TrackDelegate::commitAndCloseEditor() 

        QTimeEdit *editor = qobject_cast<QTimeEdit *>(sender()); 
        emit commitData(editor); 
        emit closeEditor(editor); 

 
void TrackDelegate::setEditorData(QWidget *editor,  const QModelIndex &index)  const 

         if (index.column() == durationColumn) { 
                 int secs = index.model()->data(index, Qt::DisplayRole).toInt(); 
                QTimeEdit *timeEdit = qobject_cast<QTimeEdit *>(editor); 
                timeEdit->setTime(QTime(0, secs / 60, secs % 60)); 
        }  else { 
                QStyledItemDelegate::setEditorData(editor, index); 
        } 

 
void TrackDelegate::setModelData(QWidget *editor, QAbstractItemModel *model,  const QModelIndex &index)  const 

         if (index.column() == durationColumn) { 
                QTimeEdit *timeEdit = qobject_cast<QTimeEdit *>(editor); 
                QTime time = timeEdit->time(); 
                 int secs = (time.minute() * 60) + time.second(); 
                model->setData(index, secs); 
        }  else { 
                QStyledItemDelegate::setModelData(editor, model, index); 
        } 

 
正如前面所说的,这个类继承了QStyledItemDelegate,覆盖了其中的四个函数。通过前面的讲解,我们已经了解到这些函数的作用。至于实现,我们前面也说过,需要通过QModelIndex选择我们需要进行渲染的列,然后剩下的数据类型仍然需要显式地调用父类的相应函数。由于我们在Track里面存储的是歌曲的秒数,所以在paint()里面需要用除法计算出分钟数,用%60计算秒数。其他的函数都比较清楚,请注意代码。
 
最后写一个使用的类:
 
trackeditor.h
#ifndef TRACKEDITOR_H 
#define TRACKEDITOR_H 
 
#include <QtGui> 
#include  "track.h" 
 
class TrackEditor :  public QDialog 

        Q_OBJECT 
 
public
        TrackEditor(QList<Track> *tracks, QWidget *parent); 
 
private
        QList<Track> *tracks; 
        QTableWidget *tableWidget; 
}; 
 
#endif  // TRACKEDITOR_H
 
trackeditor.cpp
#include  "trackeditor.h" 
#include  "trackdelegate.h" 
 
TrackEditor::TrackEditor(QList<Track> *tracks, QWidget *parent) 
        : QDialog(parent) 

         this->tracks = tracks; 
 
        tableWidget =  new QTableWidget(tracks->count(), 2); 
        tableWidget->setItemDelegate( new TrackDelegate(1)); 
        tableWidget->setHorizontalHeaderLabels(QStringList() << tr( "Track") << tr( "Duration")); 
 
         for ( int row = 0; row < tracks->count(); ++row) { 
                Track track = tracks->at(row); 
 
                QTableWidgetItem *item0 =  new QTableWidgetItem(track.title); 
                tableWidget->setItem(row, 0, item0); 
 
                QTableWidgetItem *item1 =  new QTableWidgetItem(QString::number(track.duration)); 
                item1->setTextAlignment(Qt::AlignRight); 
                tableWidget->setItem(row, 1, item1); 
        } 
 
        QVBoxLayout *mainLayout =  new QVBoxLayout; 
        mainLayout->addWidget(tableWidget); 
         this->setLayout(mainLayout); 

 
其实也并没有很大的不同,只是我们使用setItemDelegate()函数设置了一下delegate。然后写main()函数:
 
#include <QtGui> 
#include  "trackeditor.h" 
 
int main( int argc,  char *argv[]) 

        QApplication a(argc, argv); 
        QList<Track> tracks; 
        Track t1( "Song 1", 200); 
        Track t2( "Song 2", 150); 
        Track t3( "Song 3", 120); 
        Track t4( "Song 4", 210); 
        tracks << t1 << t2 << t3 << t4; 
        TrackEditor te(&tracks, NULL); 
        te.show(); 
         return a.exec(); 

 
好了,运行一下看看效果吧!
 

本文出自 “豆子空间” 博客,请务必保留此出处http://devbean.blog.51cto.com/448512/271255

  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
YOLO高分设计资源源码,详情请查看资源内容中使用说明 YOLO高分设计资源源码,详情请查看资源内容中使用说明 YOLO高分设计资源源码,详情请查看资源内容中使用说明 YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明YOLO高分设计资源源码,详情请查看资源内容中使用说明

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值