mirror of
https://github.com/mumble-voip/mumble.git
synced 2024-11-21 15:17:56 +00:00
330c356e71
Keeping these up-to-date is just super tedious and they don't really fulfill any purpose these days.
36 lines
713 B
C++
36 lines
713 B
C++
// Copyright The Mumble Developers. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license
|
|
// that can be found in the LICENSE file at the root of the
|
|
// Mumble source tree or at <https://www.mumble.info/LICENSE>.
|
|
|
|
#ifndef MUMBLE_G15_HELPER_EMU_H_
|
|
#define MUMBLE_G15_HELPER_EMU_H_
|
|
|
|
#include <QFile>
|
|
#include <QLabel>
|
|
#include <QMainWindow>
|
|
#include <QThread>
|
|
|
|
class G15Reader : public QThread {
|
|
Q_OBJECT
|
|
public:
|
|
G15Reader();
|
|
~G15Reader();
|
|
void run() Q_DECL_OVERRIDE;
|
|
|
|
bool m_isRunning;
|
|
signals:
|
|
void readFrame(QPixmap p);
|
|
};
|
|
|
|
class G15Emulator : public QMainWindow {
|
|
Q_OBJECT
|
|
public:
|
|
QLabel *m_displayLabel;
|
|
G15Emulator();
|
|
public slots:
|
|
void drawFrame(QPixmap p);
|
|
};
|
|
|
|
#endif
|