From 0739d5b595be9492c1e574192eba12174111e52c Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Fri, 30 Oct 2015 09:16:32 +0100 Subject: also rename protocol -> proto --- protocol-ft/ftnoir_protocol_ft_dialog.cpp | 60 ------------------------------- 1 file changed, 60 deletions(-) delete mode 100644 protocol-ft/ftnoir_protocol_ft_dialog.cpp (limited to 'protocol-ft/ftnoir_protocol_ft_dialog.cpp') diff --git a/protocol-ft/ftnoir_protocol_ft_dialog.cpp b/protocol-ft/ftnoir_protocol_ft_dialog.cpp deleted file mode 100644 index 25f3a4cb..00000000 --- a/protocol-ft/ftnoir_protocol_ft_dialog.cpp +++ /dev/null @@ -1,60 +0,0 @@ -/* Homepage http://facetracknoir.sourceforge.net/home/default.htm * - * * - * ISC License (ISC) * - * * - * Copyright (c) 2015, Wim Vriend * - * * - * Permission to use, copy, modify, and/or distribute this software for any * - * purpose with or without fee is hereby granted, provided that the above * - * copyright notice and this permission notice appear in all copies. * - */ -#include "ftnoir_protocol_ft.h" -#include -#include - -FTControls::FTControls() -{ - ui.setupUi( this ); - - connect(ui.buttonBox, SIGNAL(accepted()), this, SLOT(doOK())); - connect(ui.buttonBox, SIGNAL(rejected()), this, SLOT(doCancel())); - connect(ui.bntLocateNPClient, SIGNAL(clicked()), this, SLOT(selectDLL())); - - tie_setting(s.useTIRViews, ui.chkTIRViews); - - ui.cbxSelectInterface->addItem("Enable both"); - ui.cbxSelectInterface->addItem("Use FreeTrack, hide TrackIR"); - ui.cbxSelectInterface->addItem("Use TrackIR, hide FreeTrack"); - - tie_setting(s.intUsedInterface, ui.cbxSelectInterface); - - QFile memhacks_pathname(QCoreApplication::applicationDirPath() + "/TIRViews.dll"); - if (!memhacks_pathname.exists()) { - ui.chkTIRViews->setChecked( false ); - ui.chkTIRViews->setEnabled ( false ); - } - else { - ui.chkTIRViews->setEnabled ( true ); - } -} - -void FTControls::doOK() { - s.b->save(); - this->close(); -} - -void FTControls::doCancel() { - s.b->reload(); - this->close(); -} - -void FTControls::selectDLL() { - QString filename = QFileDialog::getOpenFileName( this, tr("Select the desired NPClient DLL"), QCoreApplication::applicationDirPath() + "/NPClient.dll", tr("Dll file (*.dll);;All Files (*)")); - - if (! filename.isEmpty() ) { - QSettings node("NaturalPoint", "NATURALPOINT\\NPClient Location"); - QFileInfo dllname(filename); - node.setValue( "Path" , dllname.dir().path() ); - } -} - -- cgit v1.2.3