File: qitemdelegate_c.h

package info (click to toggle)
libqtpas 2.6%2B2.0.8%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 5,860 kB
  • sloc: cpp: 56,595; pascal: 13,727; sh: 44; makefile: 18
file content (31 lines) | stat: -rw-r--r-- 1,855 bytes parent folder | download | duplicates (13)
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
31
//******************************************************************************
//  Copyright (c) 2005-2013 by Jan Van hijfte
//
//  See the included file COPYING.TXT for details about the copyright.
//
//  This program is distributed in the hope that it will be useful,
//  but WITHOUT ANY WARRANTY; without even the implied warranty of
//  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
//******************************************************************************


#ifndef QITEMDELEGATE_C_H
#define QITEMDELEGATE_C_H

#include <QtWidgets>
#include "pascalbind.h"

C_EXPORT QItemDelegateH QItemDelegate_Create(QObjectH parent);
C_EXPORT void QItemDelegate_Destroy(QItemDelegateH handle);
C_EXPORT bool QItemDelegate_hasClipping(QItemDelegateH handle);
C_EXPORT void QItemDelegate_setClipping(QItemDelegateH handle, bool clip);
C_EXPORT void QItemDelegate_paint(QItemDelegateH handle, QPainterH painter, const QStyleOptionViewItemH option, const QModelIndexH index);
C_EXPORT void QItemDelegate_sizeHint(QItemDelegateH handle, PSize retval, const QStyleOptionViewItemH option, const QModelIndexH index);
C_EXPORT QWidgetH QItemDelegate_createEditor(QItemDelegateH handle, QWidgetH parent, const QStyleOptionViewItemH option, const QModelIndexH index);
C_EXPORT void QItemDelegate_setEditorData(QItemDelegateH handle, QWidgetH editor, const QModelIndexH index);
C_EXPORT void QItemDelegate_setModelData(QItemDelegateH handle, QWidgetH editor, QAbstractItemModelH model, const QModelIndexH index);
C_EXPORT void QItemDelegate_updateEditorGeometry(QItemDelegateH handle, QWidgetH editor, const QStyleOptionViewItemH option, const QModelIndexH index);
C_EXPORT QItemEditorFactoryH QItemDelegate_itemEditorFactory(QItemDelegateH handle);
C_EXPORT void QItemDelegate_setItemEditorFactory(QItemDelegateH handle, QItemEditorFactoryH factory);

#endif