Newer
Older
/*=====================================================================
PIXHAWK Micro Air Vehicle Flying Robotics Toolkit
(c) 2009, 2010 PIXHAWK PROJECT <http://pixhawk.ethz.ch>
This file is part of the PIXHAWK project
PIXHAWK is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
PIXHAWK is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with PIXHAWK. If not, see <http://www.gnu.org/licenses/>.
======================================================================*/
/**
* @file
* @author Lorenz Meier <mavteam@student.ethz.ch>
*
*/
#ifndef JOYSTICKWIDGET_H
#define JOYSTICKWIDGET_H
#include <QtGui/QDialog>
Bryant
committed
#include <QLabel>
#include <QMap>
Bryant
committed
#include "MainWindow.h"
#include "JoystickAxis.h"
#include "JoystickButton.h"
namespace Ui
{
class JoystickWidget;
class JoystickWidget : public QDialog
{
Q_OBJECT
Q_DISABLE_COPY(JoystickWidget)
public:
explicit JoystickWidget(JoystickInput* joystick, QWidget *parent = 0);
virtual ~JoystickWidget();
void updateAxisValue(int axis, float value);
Bryant
committed
/** @brief Trigger a UI change based on a button being pressed */
void joystickButtonPressed(int key);
/** @brief Trigger a UI change based on a button being released */
void joystickButtonReleased(int key);
/** @brief Update status string */
void updateStatus(const QString& status);
Bryant
committed
/** @brief Update the UI color scheme when the MainWindow theme changes. */
void styleChanged(MainWindow::QGC_MAINWINDOW_STYLE);
/** @brief Update the proper number of buttons for the current joystick. */
void updateButtons();
Bryant
committed
/** @brief a list of all button labels generated for this joystick. */
QList<JoystickButton*> buttons;
/** @brief a lit of all joystick axes generated for this joystick. */
QList<JoystickAxis*> axes;
Bryant
committed
/** @brief The color to use for button labels when their corresponding button is pressed */
QColor buttonLabelColor;
protected slots:
/** @brief Update the UI for a new joystick based on SDL ID. */
void updateUIForJoystick(int id);
/** @brief Change the stored mapping for a given axis. */
void setMappingAxis(int axisID, JoystickInput::JOYSTICK_INPUT_MAPPING newMapping);
/** @brief Initialize all dynamic UI elements (button list, joystick names, etc.) */
void initUI();