/* -*- c-basic-offset: 4 indent-tabs-mode: nil -*- vi:set ts=8 sts=4 sw=4: */ /* Rosegarden A MIDI and audio sequencer and musical notation editor. This program is Copyright 2000-2008 Guillaume Laurent , Chris Cannam , Richard Bown The moral rights of Guillaume Laurent, Chris Cannam, and Richard Bown to claim authorship of this work have been asserted. Other copyrights also apply to some parts of this work. Please see the AUTHORS file and individual file headers for details. This program 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 2 of the License, or (at your option) any later version. See the file COPYING included with this distribution for more information. */ #ifndef _RG_CONTROLPARAMETEREDITDIALOG_H_ #define _RG_CONTROLPARAMETEREDITDIALOG_H_ #include "base/ControlParameter.h" #include class TQWidget; class TQString; class TQSpinBox; class TQLineEdit; class TQLabel; class KComboBox; namespace Rosegarden { class RosegardenGUIDoc; class ControlParameterEditDialog : public KDialogBase { Q_OBJECT public: ControlParameterEditDialog(TQWidget *parent, ControlParameter *control, RosegardenGUIDoc *doc); ControlParameter& getControl() { return m_dialogControl; } public slots: void slotNameChanged(const TQString &); void slotTypeChanged(int); void slotDescriptionChanged(const TQString &); void slotControllerChanged(int); void slotMinChanged(int); void slotMaxChanged(int); void slotDefaultChanged(int); void slotColourChanged(int); void slotIPBPositionChanged(int); protected: void populate(); // populate the dialog RosegardenGUIDoc *m_doc; ControlParameter *m_control; ControlParameter m_dialogControl; TQLineEdit *m_nameEdit; KComboBox *m_typeCombo; TQLineEdit *m_description; TQSpinBox *m_controllerBox; TQSpinBox *m_minBox; TQSpinBox *m_maxBox; TQSpinBox *m_defaultBox; KComboBox *m_colourCombo; KComboBox *m_ipbPosition; TQLabel *m_hexValue; }; } #endif