forked from Sneeds-Feed-and-Seed/sneedacity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHelpText.h
30 lines (20 loc) · 840 Bytes
/
HelpText.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/**********************************************************************
Sneedacity: A Digital Audio Editor
HelpText.h
James Crook
**********************************************************************/
#ifndef __SNEEDACITY_HELP_TEXT__
#define __SNEEDACITY_HELP_TEXT__
class TranslatableString;
class wxString;
#include "Identifier.h"
struct URLStringTag;
//! Distinct type for URLs
using URLString = TaggedIdentifier< URLStringTag >;
SNEEDACITY_DLL_API wxString HelpText( const wxString & Key );
SNEEDACITY_DLL_API TranslatableString TitleText( const wxString & Key );
extern SNEEDACITY_DLL_API const wxString VerCheckArgs();
extern SNEEDACITY_DLL_API const URLString VerCheckUrl();
extern SNEEDACITY_DLL_API const wxString VerCheckHtml();
extern SNEEDACITY_DLL_API wxString FormatHtmlText( const wxString & Text );
#endif