00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022 #ifndef BUS_SELECTOR_DIALOG_H
00023 #define BUS_SELECTOR_DIALOG_H
00024
00025 #include "ui_BusSelectorDialog.h"
00026
00027 #include <QDialog>
00028
00029 class Track;
00030
00031 class BusSelectorDialog : public QDialog, protected Ui::BusSelectorDialog
00032 {
00033 Q_OBJECT
00034
00035 public:
00036 BusSelectorDialog(QWidget* parent = 0);
00037 ~BusSelectorDialog() {};
00038
00039 void set_current_track(Track* track);
00040
00041 private:
00042 Track* m_currentTrack;
00043 void accept();
00044 void reject();
00045
00046 private slots:
00047 void current_track_changed(int);
00048 void update_buses_list_widget();
00049 };
00050
00051 #endif