2021-02-24 Fred Gleason <fredg@paravelsystems.com>

* Updated build system to use Qt5 instead of Qt4.

Signed-off-by: Fred Gleason <fredg@paravelsystems.com>
This commit is contained in:
Fred Gleason
2021-02-24 16:12:22 -05:00
parent 5131b1d5fe
commit 57abeada3c
130 changed files with 481 additions and 441 deletions

View File

@@ -22,9 +22,10 @@
#define RDCARTDRAG_H
#include <QColor>
#include <QDragEnterEvent>
#include <QMap>
#include <QMimeData>
#include <QMimeSource>
//#include <QMimeSource>
#include <QPixmap>
#include <rdcart.h>
@@ -36,10 +37,10 @@ class RDCartDrag : public QMimeData
RDCartDrag(unsigned cartnum,const QString &title,const QColor &color);
QStringList formats() const;
bool hasFormat(const QString &mimetype) const;
static bool canDecode(QMimeSource *e);
static bool decode(QMimeSource *e,unsigned *cartnum,QColor *color=NULL,
static bool canDecode(const QMimeData *e);
static bool decode(const QMimeData *e,unsigned *cartnum,QColor *color=NULL,
QString *title=NULL);
static bool decode(QMimeSource *e,RDLogLine *ll,
static bool decode(const QMimeData *e,RDLogLine *ll,
RDLogLine::TransType next_trans=RDLogLine::Segue,
int log_mach=0,bool timescale=false,
RDLogLine::TransType trans=RDLogLine::NoTrans);