加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
colormodel.h 718 Bytes
一键复制 编辑 原始数据 按行查看 历史
kimtaikee 提交于 2016-08-04 18:02 . update files
//
// C++ Interface: colormodel
//
// Description:
//
//
// Author: Witold Wysota <wysota@wysota.eu.org>, (C) 2007
//
// Copyright: See COPYING file that comes with this distribution
//
//
#ifndef COLORMODEL_H
#define COLORMODEL_H
#include <QStandardItemModel>
#include <QColor>
#include <QString>
#include <wwglobal.h>
/**
* @internal
*
*/
class Q_WW_EXPORT ColorModel : public QStandardItemModel {
public:
ColorModel(QObject *parent=0);
QModelIndex contains(const QColor &c);
ColorModel *clone(QObject *par=0) const;
QModelIndex addColor(const QColor &c, const QString &name=QString::null);
QModelIndex insertColor(int index, const QColor &c, const QString &name=QString::null);
};
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化