usb_ecm: Use the current configuration instead of a fixed one.
[haiku.git] / src / preferences / media / MidiSettingsView.h
blobd267c44fc60fc5d9d1e8d654013027be460ac7a4
1 /*
2 * Copyright 2014, Haiku, Inc. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
6 #ifndef MIDIVIEW_H_
7 #define MIDIVIEW_H_
10 #include "MediaViews.h"
12 class BButton;
13 class BListView;
14 class MidiSettingsView : public SettingsView {
15 public:
16 MidiSettingsView();
17 virtual void AttachedToWindow();
18 virtual void MessageReceived(BMessage* message);
20 private:
21 void _RetrieveSoftSynthList();
22 void _LoadSettings();
23 void _SaveSettings();
25 BListView* fListView;
28 #endif /* MIDIVIEW_H_ */