Files
Casinotest/src/qt/qtquick_controls/cpp/guiexchangescontrol.h
2015-11-27 15:44:38 +01:00

32 lines
683 B
C++

#ifndef GUIEEXCHANGESCONTROL_H
#define GUIEEXCHANGESCONTROL_H
#include <QQuickItem>
#include "../../CSCPublicAPI/jsonactiveexchangesparser.h"
class GUIExchangesListView;
class GUIExchangesControl : public QQuickItem
{
Q_OBJECT
public:
GUIExchangesControl( QQuickItem* a_pParent = 0 );
virtual ~GUIExchangesControl();
Q_INVOKABLE void InitializeExchangesView( GUIExchangesListView* a_pView );
GUIExchangesListView* GetExchangesView() const { return m_pExchangesView; }
public slots:
void slotPopulateListView( JsonActiveExchangesParser* a_pActiveExchanges );
signals:
public slots:
private:
GUIExchangesListView* m_pExchangesView;
};
#endif // GUIEEXCHANGESCONTROL_H