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;
17
19{
21{
22public:
23 explicit LinkWithTokenDialog(wxWindow* parent = nullptr);
24 ~LinkWithTokenDialog() override;
25
26private:
27 void OnContinue();
28 void OnTextChanged();
29
30 wxButton* mContinueButton { nullptr };
31 wxTextCtrl* mToken { nullptr };
32};
33} // namespace audacity::cloud::audiocom