Audacity 3.2.0
WaitForActionDialog.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 WaitForActionDialog.h
7
8 Dmitry Vedenko
9
10**********************************************************************/
11#pragma once
12
13#include "AudioComDialogBase.h"
14
16{
18{
19public:
22 const TranslatableString& title = XO("Waiting for audio.com"),
23 const TranslatableString& message = XO(
24 "An action on audio.com is required before you can continue. Once you are done with it, click Retry"),
25 bool retryButton = true);
26
27private:
28 bool HasSeparator() const override;
29};
30} // namespace audacity::cloud::audiocom::sync
XO("Cut/Copy/Paste")
static const auto title
const auto project
The top-level handle to an Audacity project. It serves as a source of events that other objects can b...
Definition: Project.h:90
Holds a msgid for the translation catalog; may also bind format arguments.
WaitForActionDialog(const AudacityProject *project, const TranslatableString &title=XO("Waiting for audio.com"), const TranslatableString &message=XO("An action on audio.com is required before you can continue. Once you are done with it, click Retry"), bool retryButton=true)