From a8ffbb76f3e3bbca547fccf5135323e06cae9d2a Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Sun, 19 Oct 2014 13:39:50 +0200 Subject: update modules to refactored API --- ftnoir_protocol_fg/ftnoir_protocol_fg.h | 18 ++++++++---------- 1 file changed, 8 insertions(+), 10 deletions(-) (limited to 'ftnoir_protocol_fg/ftnoir_protocol_fg.h') diff --git a/ftnoir_protocol_fg/ftnoir_protocol_fg.h b/ftnoir_protocol_fg/ftnoir_protocol_fg.h index 4b25a3e1..44b79c06 100644 --- a/ftnoir_protocol_fg/ftnoir_protocol_fg.h +++ b/ftnoir_protocol_fg/ftnoir_protocol_fg.h @@ -52,9 +52,9 @@ struct settings { class FTNoIR_Protocol : public IProtocol { public: - bool checkServerInstallationOK(); - void sendHeadposeToGame(const double *headpose); - QString getGameName() { + bool correct(); + void pose(const double *headpose); + QString game_name() { return "FlightGear"; } void reloadSettings(); @@ -65,15 +65,15 @@ private: }; // Widget that has controls for FTNoIR protocol client-settings. -class FGControls: public QWidget, public IProtocolDialog +class FGControls: public IProtocolDialog { Q_OBJECT public: FGControls(); - void registerProtocol(IProtocol *protocol) { + void register_protocol(IProtocol *protocol) { theProtocol = (FTNoIR_Protocol *) protocol; // Accept the pointer to the Protocol } - void unRegisterProtocol() { + void unregister_protocol() { theProtocol = NULL; // Reset the pointer } private: @@ -88,8 +88,6 @@ private slots: class FTNoIR_ProtocolDll : public Metadata { public: - void getFullName(QString *strToBeFilled) { *strToBeFilled = QString("FlightGear"); } - void getShortName(QString *strToBeFilled) { *strToBeFilled = QString("FlightGear"); } - void getDescription(QString *strToBeFilled) { *strToBeFilled = QString("FlightGear UDP protocol"); } - void getIcon(QIcon *icon) { *icon = QIcon(":/images/flightgear.png"); } + QString name() { return QString("FlightGear"); } + QIcon icon() { return QIcon(":/images/flightgear.png"); } }; -- cgit v1.2.3