Audacity 3.2.0
LinkWithTokenDialog.h
Go to the documentation of this file.
1/* SPDX-License-Identifier: GPL-2.0-or-later */
2/*!********************************************************************
3
4 Audacity: A Digital Audio Editor
5
6 LinkAccountDialog.h
7
8 Dmitry Vedenko
9
10**********************************************************************/
11#pragma once
12
13#include "wxPanelWrapper.h"
14
15class wxButton;
16class wxTextCtrl;
17enum class AudiocomTrace;
18
20{
22{
23public:
24 explicit LinkWithTokenDialog(AudiocomTrace, wxWindow* parent = nullptr);
25 ~LinkWithTokenDialog() override;
26
27private:
28 void OnContinue();
29 void OnTextChanged();
30
31 wxButton* mContinueButton { nullptr };
32 wxTextCtrl* mToken { nullptr };
34};
35} // namespace audacity::cloud::audiocom
AudiocomTrace
Definition: ExportUtils.h:27