00001 #ifndef TONLEITER_EDIT_STRING_WIDGT_H
00002 #define TONLEITER_EDIT_STRING_WIDGT_H
00003
00004 #include <qframe.h>
00005 #include <qcombobox.h>
00006 #include <qspinbox.h>
00007
00008 #include "tonleiterdata.h"
00009
00010 namespace Menu
00011 {
00012 class EditStringWidget : public QFrame
00013 {
00014 Q_OBJECT
00015 private:
00016 QComboBox* boxNote;
00017 public:
00018 EditStringWidget(int note,QWidget* parent,const char* name=0,WFlags f=0);
00019 ~EditStringWidget();
00020 };
00021 };
00022
00023 #endif //TONLEITER_EDIT_STRING_WIDGT_H
00024