public void Initialize(ISharpControl control)
        {
            _control      = control;
            _frontPanel   = new FrontPanel(_control);
            _controlPanel = new ControlPanel(_frontPanel);
            _netServer    = new SdrNetServer();
            _netServer.Start();

            _control.RegisterFrontControl(_frontPanel, PluginPosition.Top);
            _control.RegisterStreamHook(this, ProcessorType.FilteredAudioOutput);
        }
Beispiel #2
0
 public ControlPanel(FrontPanel frontPanel)
 {
     _frontPanel = frontPanel;
     InitializeComponent();
 }