gambas-source-code/gb.qt4/src/CDraw.h
Benoît Minisini 6a793ddeb7 Replace my old depracted gmail mail by the new one.
[CONFIGURATION]
* NEW: Replace my old depracted gmail mail by the new one.
2022-09-12 15:13:13 +02:00

50 lines
1.6 KiB
C

/***************************************************************************
CDraw.h
(c) 2000-2017 Benoît Minisini <benoit.minisini@gambas-basic.org>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2, or (at your option)
any later version.
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. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
MA 02110-1301, USA.
***************************************************************************/
#ifndef __CDRAW_H
#define __CDRAW_H
#include "gambas.h"
#include "gb.draw.h"
#include "gb.paint.h"
#include <QPainter>
#include <QString>
#include <QTextDocument>
#ifndef __CDRAW_C
extern DRAW_INTERFACE DRAW;
#endif
typedef
void (*DRAW_TEXT_CB)(float, float, QString &);
void DRAW_init();
void DRAW_text(QPainter *p, const QString &text, float x, float y, float w, float h, int align);
void DRAW_init_rich_text(QTextDocument *doc, const QFont &font);
void DRAW_rich_text(QPainter *p, const QString &text, float x, float y, float w, float h, int align);
void DRAW_aligned_pixmap(QPainter *p, const QPixmap &pix, int x, int y, int w, int h, int align);
#endif