1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-17 08:30:06 +02:00
audacity/src/toolbars/DeviceToolBar.h
Paul Licameli 62899a32f4 All things with an UpdatePrefs() message listen for an event...
... Still to do, improve the handling of updates of only subsets of the prefs
2019-05-20 21:38:13 -04:00

81 lines
1.8 KiB
C++

/**********************************************************************
Audacity: A Digital Audio Editor
DeviceToolbar.h
Dominic Mazzoni
**********************************************************************/
#ifndef __AUDACITY_DEVICE_TOOLBAR__
#define __AUDACITY_DEVICE_TOOLBAR__
#include <vector>
#include "ToolBar.h"
class wxSize;
class wxPoint;
class wxChoice;
struct DeviceSourceMap;
class DeviceToolBar final : public ToolBar {
public:
DeviceToolBar();
virtual ~DeviceToolBar();
void Create(wxWindow * parent) override;
void UpdatePrefs() override;
void UpdateSelectedPrefs( int ) override;
void DeinitChildren();
void Populate() override;
void Repaint(wxDC * WXUNUSED(dc)) override {};
void EnableDisableButtons() override;
bool Layout() override;
void OnFocus(wxFocusEvent &event);
void OnCaptureKey(wxCommandEvent &event);
void OnChoice(wxCommandEvent & event);
/// When the prefs don't exist this value is used.
/// 883 takes a complete row in the default initial size of Audacity.
int GetInitialWidth() override{ return 883; }
int GetMinToolbarWidth() override { return 350; }
void ShowInputDialog();
void ShowOutputDialog();
void ShowHostDialog();
void ShowChannelsDialog();
void RefillCombos();
private:
int ChangeHost();
void ChangeDevice(bool isInput);
void FillHosts();
void FillHostDevices();
void FillInputChannels();
void SetDevices(const DeviceSourceMap *in, const DeviceSourceMap *out);
void RepositionCombos();
void SetNames();
void RegenerateTooltips() override;
void ShowComboDialog(wxChoice *combo, const wxString &title);
wxChoice *mInput;
wxChoice *mOutput;
wxChoice *mInputChannels;
wxChoice *mHost;
public:
DECLARE_CLASS(DeviceToolBar)
DECLARE_EVENT_TABLE()
};
#endif