diff options
author | Florian Jung <flo@windfisch.org> | 2011-09-27 16:08:57 +0000 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2011-09-27 16:08:57 +0000 |
commit | e9e38901f1b0c8b0d4c11f6de37abf7ff6c7234f (patch) | |
tree | 6db56ee33fda6adce28afc456c4fd84b56180453 /attic/muse_qt4_evolution/midiplugins/trigg/trigggui.h | |
parent | 5c2eaaf143f517e1a4d52e243a761e479aeb3e5b (diff) | |
parent | d52fac00567bb85944188f3c946b86b2a420819c (diff) |
merged with trunk
Diffstat (limited to 'attic/muse_qt4_evolution/midiplugins/trigg/trigggui.h')
-rw-r--r-- | attic/muse_qt4_evolution/midiplugins/trigg/trigggui.h | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/attic/muse_qt4_evolution/midiplugins/trigg/trigggui.h b/attic/muse_qt4_evolution/midiplugins/trigg/trigggui.h deleted file mode 100644 index f4c597fa..00000000 --- a/attic/muse_qt4_evolution/midiplugins/trigg/trigggui.h +++ /dev/null @@ -1,48 +0,0 @@ -//========================================================= -// MusE -// Linux Music Editor -// $Id: filtergui.h,v 1.4 2005/11/06 17:49:34 wschweer Exp $ -// -// (C) Copyright 2005 Werner Schweer (ws@seh.de) -//========================================================= - -#ifndef __FILTERGUI_H__ -#define __FILTERGUI_H__ - -#include "ui_trigggui.h" - -class Trigg; - -enum { - MIDI_FILTER_NOTEON = 1, - MIDI_FILTER_POLYP = 2, - MIDI_FILTER_CTRL = 4, - MIDI_FILTER_PROGRAM = 8, - MIDI_FILTER_AT = 16, - MIDI_FILTER_PITCH = 32, - MIDI_FILTER_SYSEX = 64 - }; - -//--------------------------------------------------------- -// TriggGui -//--------------------------------------------------------- - -class TriggGui : public QDialog, public Ui::TriggBase { - Q_OBJECT - - Trigg* filter; - - signals: - void hideWindow(); - - private slots: - void setNote(int ); - void setVelocity(int ); - - public: - TriggGui(Trigg*, QWidget* parent=0); - void init(); - }; - -#endif - |