Audacity 3.2.0
Classes | Functions
LangChoice.cpp File Reference
#include "LangChoice.h"
#include "IteratorX.h"
#include <wx/defs.h>
#include <wx/choice.h>
#include <wx/stattext.h>
#include "Languages.h"
#include "ShuttleGui.h"
#include "AudacityMessageBox.h"
#include "wxPanelWrapper.h"
Include dependency graph for LangChoice.cpp:

Go to the source code of this file.

Classes

class  LangChoiceDialog
 A dialog used (at start up) to present the user with a choice of languages for Audacity. More...
 

Functions

wxString ChooseLanguage (wxWindow *parent)
 

Function Documentation

◆ ChooseLanguage()

wxString ChooseLanguage ( wxWindow *  parent)

Definition at line 49 of file LangChoice.cpp.

50{
51 wxString returnVal;
52
53 /* i18n-hint: Title on a dialog indicating that this is the first
54 * time Audacity has been run. */
55 LangChoiceDialog dlog(parent, -1, XO("Audacity First Run"));
56 dlog.CentreOnParent();
57 dlog.ShowModal();
58 returnVal = dlog.GetLang();
59
60 return returnVal;
61}
XO("Cut/Copy/Paste")
A dialog used (at start up) to present the user with a choice of languages for Audacity.
Definition: LangChoice.cpp:28

References LangChoiceDialog::GetLang(), and XO().

Here is the call graph for this function: