File: qpen_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 (50 lines) | stat: -rw-r--r-- 2,295 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
//******************************************************************************
//  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 QPEN_C_H
#define QPEN_C_H

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

C_EXPORT QPenH QPen_Create();
C_EXPORT void QPen_Destroy(QPenH handle);
C_EXPORT QPenH QPen_Create2(Qt::PenStyle AnonParam1);
C_EXPORT QPenH QPen_Create3(const QColorH color);
C_EXPORT QPenH QPen_Create4(const QBrushH brush, qreal width, Qt::PenStyle s, Qt::PenCapStyle c, Qt::PenJoinStyle j);
C_EXPORT QPenH QPen_Create5(const QPenH pen);
C_EXPORT void QPen_swap(QPenH handle, QPenH other);
C_EXPORT Qt::PenStyle QPen_style(QPenH handle);
C_EXPORT void QPen_setStyle(QPenH handle, Qt::PenStyle AnonParam1);
C_EXPORT void QPen_dashPattern(QPenH handle, PQRealArray retval);
C_EXPORT void QPen_setDashPattern(QPenH handle, PQRealArray pattern);
C_EXPORT qreal QPen_dashOffset(QPenH handle);
C_EXPORT void QPen_setDashOffset(QPenH handle, qreal doffset);
C_EXPORT qreal QPen_miterLimit(QPenH handle);
C_EXPORT void QPen_setMiterLimit(QPenH handle, qreal limit);
C_EXPORT qreal QPen_widthF(QPenH handle);
C_EXPORT void QPen_setWidthF(QPenH handle, qreal width);
C_EXPORT int QPen_width(QPenH handle);
C_EXPORT void QPen_setWidth(QPenH handle, int width);
C_EXPORT void QPen_color(QPenH handle, PQColor retval);
C_EXPORT void QPen_setColor(QPenH handle, const QColorH color);
C_EXPORT void QPen_brush(QPenH handle, QBrushH retval);
C_EXPORT void QPen_setBrush(QPenH handle, const QBrushH brush);
C_EXPORT bool QPen_isSolid(QPenH handle);
C_EXPORT Qt::PenCapStyle QPen_capStyle(QPenH handle);
C_EXPORT void QPen_setCapStyle(QPenH handle, Qt::PenCapStyle pcs);
C_EXPORT Qt::PenJoinStyle QPen_joinStyle(QPenH handle);
C_EXPORT void QPen_setJoinStyle(QPenH handle, Qt::PenJoinStyle pcs);
C_EXPORT bool QPen_isCosmetic(QPenH handle);
C_EXPORT void QPen_setCosmetic(QPenH handle, bool cosmetic);
C_EXPORT bool QPen_isDetached(QPenH handle);

#endif