File: qlayoutitem_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 (60 lines) | stat: -rw-r--r-- 3,509 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
//******************************************************************************
//  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 QLAYOUTITEM_C_H
#define QLAYOUTITEM_C_H

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

C_EXPORT void QLayoutItem_sizeHint(QLayoutItemH handle, PSize retval);
C_EXPORT void QLayoutItem_minimumSize(QLayoutItemH handle, PSize retval);
C_EXPORT void QLayoutItem_maximumSize(QLayoutItemH handle, PSize retval);
C_EXPORT unsigned int QLayoutItem_expandingDirections(QLayoutItemH handle);
C_EXPORT void QLayoutItem_setGeometry(QLayoutItemH handle, PRect AnonParam1);
C_EXPORT void QLayoutItem_geometry(QLayoutItemH handle, PRect retval);
C_EXPORT bool QLayoutItem_isEmpty(QLayoutItemH handle);
C_EXPORT bool QLayoutItem_hasHeightForWidth(QLayoutItemH handle);
C_EXPORT int QLayoutItem_heightForWidth(QLayoutItemH handle, int AnonParam1);
C_EXPORT int QLayoutItem_minimumHeightForWidth(QLayoutItemH handle, int AnonParam1);
C_EXPORT void QLayoutItem_invalidate(QLayoutItemH handle);
C_EXPORT QWidgetH QLayoutItem_widget(QLayoutItemH handle);
C_EXPORT QLayoutH QLayoutItem_layout(QLayoutItemH handle);
C_EXPORT QSpacerItemH QLayoutItem_spacerItem(QLayoutItemH handle);
C_EXPORT unsigned int QLayoutItem_alignment(QLayoutItemH handle);
C_EXPORT void QLayoutItem_setAlignment(QLayoutItemH handle, unsigned int a);
C_EXPORT unsigned int QLayoutItem_controlTypes(QLayoutItemH handle);
C_EXPORT QSpacerItemH QSpacerItem_Create(int w, int h, QSizePolicy::Policy hData, QSizePolicy::Policy vData);
C_EXPORT void QSpacerItem_Destroy(QSpacerItemH handle);
C_EXPORT void QSpacerItem_changeSize(QSpacerItemH handle, int w, int h, QSizePolicy::Policy hData, QSizePolicy::Policy vData);
C_EXPORT void QSpacerItem_sizeHint(QSpacerItemH handle, PSize retval);
C_EXPORT void QSpacerItem_minimumSize(QSpacerItemH handle, PSize retval);
C_EXPORT void QSpacerItem_maximumSize(QSpacerItemH handle, PSize retval);
C_EXPORT unsigned int QSpacerItem_expandingDirections(QSpacerItemH handle);
C_EXPORT bool QSpacerItem_isEmpty(QSpacerItemH handle);
C_EXPORT void QSpacerItem_setGeometry(QSpacerItemH handle, PRect AnonParam1);
C_EXPORT void QSpacerItem_geometry(QSpacerItemH handle, PRect retval);
C_EXPORT QSpacerItemH QSpacerItem_spacerItem(QSpacerItemH handle);
C_EXPORT QWidgetItemH QWidgetItem_Create(QWidgetH w);
C_EXPORT void QWidgetItem_Destroy(QWidgetItemH handle);
C_EXPORT void QWidgetItem_sizeHint(QWidgetItemH handle, PSize retval);
C_EXPORT void QWidgetItem_minimumSize(QWidgetItemH handle, PSize retval);
C_EXPORT void QWidgetItem_maximumSize(QWidgetItemH handle, PSize retval);
C_EXPORT unsigned int QWidgetItem_expandingDirections(QWidgetItemH handle);
C_EXPORT bool QWidgetItem_isEmpty(QWidgetItemH handle);
C_EXPORT void QWidgetItem_setGeometry(QWidgetItemH handle, PRect AnonParam1);
C_EXPORT void QWidgetItem_geometry(QWidgetItemH handle, PRect retval);
C_EXPORT QWidgetH QWidgetItem_widget(QWidgetItemH handle);
C_EXPORT bool QWidgetItem_hasHeightForWidth(QWidgetItemH handle);
C_EXPORT int QWidgetItem_heightForWidth(QWidgetItemH handle, int AnonParam1);
C_EXPORT unsigned int QWidgetItem_controlTypes(QWidgetItemH handle);

#endif