This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
version 2 as published by the Free Software Foundation.
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.
void draw_pixmap(const QString SIGNATURE_TEXT);
bool hide_signature = false;
bool hide_timestamp = false;
QPixmap generated_pixmap;
/*
Copyright (C) 2022 Lari Varjonen <
[email protected]>
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
version 2 as published by the Free Software Foundation.
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 DRAWPIXMAP_H
#define DRAWPIXMAP_H
#include <QPainter>
class DrawPixmap
{
public:
void draw_pixmap(const QString SIGNATURE_TEXT);
int divider_spin;
int width_spin;
int starting_height;
bool hide_signature = false;
bool hide_timestamp = false;
QPixmap generated_pixmap;
QList<QImage> images;
QStringList time_stamps;
QString file_text;
QString size_text;
QString audio_text;
QString video_text;
};
#endif // DRAWPIXMAP_H