mirror of
https://github.com/AskDavis/Casinotest.git
synced 2026-01-04 20:29:47 -08:00
Exchanges widget
This commit is contained in:
31
src/qt/qtquick_controls/cpp/guiexchangescontrol.h
Normal file
31
src/qt/qtquick_controls/cpp/guiexchangescontrol.h
Normal file
@@ -0,0 +1,31 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user