File: qtablewidget_hook_c.cpp

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 (118 lines) | stat: -rw-r--r-- 3,540 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
//******************************************************************************
//  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.
//******************************************************************************


#include "qtablewidget_hook_c.h"

QTableWidgetSelectionRange_hookH QTableWidgetSelectionRange_hook_Create(QObjectH handle)
{
	return (QTableWidgetSelectionRange_hookH) new QTableWidgetSelectionRange_hook((QObject*)handle);
}

void QTableWidgetSelectionRange_hook_Destroy(QTableWidgetSelectionRange_hookH handle)
{
	delete (QTableWidgetSelectionRange_hook *)handle;
}

QTableWidgetItem_hookH QTableWidgetItem_hook_Create(QObjectH handle)
{
	return (QTableWidgetItem_hookH) new QTableWidgetItem_hook((QObject*)handle);
}

void QTableWidgetItem_hook_Destroy(QTableWidgetItem_hookH handle)
{
	delete (QTableWidgetItem_hook *)handle;
}

QTableWidget_hookH QTableWidget_hook_Create(QObjectH handle)
{
	return (QTableWidget_hookH) new QTableWidget_hook((QObject*)handle);
}

void QTableWidget_hook_Destroy(QTableWidget_hookH handle)
{
	delete (QTableWidget_hook *)handle;
}

void QTableWidget_hook_hook_itemPressed(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_itemPressed(hook);
}

void QTableWidget_hook_hook_itemClicked(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_itemClicked(hook);
}

void QTableWidget_hook_hook_itemDoubleClicked(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_itemDoubleClicked(hook);
}

void QTableWidget_hook_hook_itemActivated(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_itemActivated(hook);
}

void QTableWidget_hook_hook_itemEntered(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_itemEntered(hook);
}

void QTableWidget_hook_hook_itemChanged(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_itemChanged(hook);
}

void QTableWidget_hook_hook_currentItemChanged(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_currentItemChanged(hook);
}

void QTableWidget_hook_hook_itemSelectionChanged(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_itemSelectionChanged(hook);
}

void QTableWidget_hook_hook_cellPressed(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_cellPressed(hook);
}

void QTableWidget_hook_hook_cellClicked(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_cellClicked(hook);
}

void QTableWidget_hook_hook_cellDoubleClicked(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_cellDoubleClicked(hook);
}

void QTableWidget_hook_hook_cellActivated(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_cellActivated(hook);
}

void QTableWidget_hook_hook_cellEntered(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_cellEntered(hook);
}

void QTableWidget_hook_hook_cellChanged(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_cellChanged(hook);
}

void QTableWidget_hook_hook_currentCellChanged(QTableWidget_hookH handle, QHookH hook)
{
	((QTableWidget_hook *)handle)->hook_currentCellChanged(hook);
}