47 lines
993 B
C++
47 lines
993 B
C++
/***************************************************************************
|
|
|
|
miniCash
|
|
Copyright © 2022 christoph holzheuer
|
|
c.holzheuer@sourceworx.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 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
#ifndef MCCTRANSACTIONVIEW_H
|
|
#define MCCTRANSACTIONVIEW_H
|
|
|
|
#include <QFrame>
|
|
|
|
#include <libMiniCash.h>
|
|
|
|
namespace Ui
|
|
{
|
|
class MCTransactionView;
|
|
}
|
|
|
|
class LIBMINICASH_EXPORT MCTransactionView : public QFrame
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
|
|
explicit MCTransactionView( QWidget* parent = nullptr );
|
|
virtual ~MCTransactionView();
|
|
|
|
public slots:
|
|
|
|
void onTransactionReceived( const QString& transaction );
|
|
|
|
protected:
|
|
|
|
Ui::MCTransactionView* _ui{};
|
|
|
|
};
|
|
|
|
#endif // MCCTRANSACTIONVIEW_H
|