mirror of
https://github.com/cjcliffe/CubicSDR.git
synced 2024-11-10 14:23:27 -05:00
32 lines
800 B
C++
32 lines
800 B
C++
// Copyright (c) Charles J. Cliffe
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
#pragma once
|
|
|
|
#include "wx/dialog.h"
|
|
#include "wx/textctrl.h"
|
|
#include "wx/string.h"
|
|
#include "wx/button.h"
|
|
#include "DemodulatorInstance.h"
|
|
|
|
#define wxID_LABEL_INPUT 3002
|
|
|
|
class DemodLabelDialog : public wxDialog
|
|
{
|
|
public:
|
|
|
|
DemodLabelDialog( wxWindow * parent, wxWindowID id, const wxString & title,
|
|
DemodulatorInstancePtr demod = nullptr,
|
|
const wxPoint & pos = wxDefaultPosition,
|
|
const wxSize & size = wxDefaultSize,
|
|
long style = wxDEFAULT_DIALOG_STYLE);
|
|
|
|
wxTextCtrl * dialogText;
|
|
|
|
private:
|
|
DemodulatorInstancePtr activeDemod = nullptr;
|
|
void OnChar ( wxKeyEvent &event );
|
|
void OnShow(wxShowEvent &event);
|
|
DECLARE_EVENT_TABLE()
|
|
};
|