edited/added help texts
This commit is contained in:
parent
5e716a649d
commit
7d24441887
5 changed files with 1006 additions and 972 deletions
|
@ -84,10 +84,10 @@ CChannelFader::CChannelFader ( QWidget* pNW,
|
|||
"Only one channel at a time can be set to solo." );
|
||||
pcbSolo->setAccessibleName ( "Solo button" );
|
||||
|
||||
pLabel->setWhatsThis ( "<b>Mixer Fader Label:</b> Label (fader tag) "
|
||||
"identifying the connected client. The tag name can be set in the "
|
||||
"clients main window." );
|
||||
pLabel->setAccessibleName ( "Mixer level label (fader tag)" );
|
||||
pLabel->setWhatsThis ( "<b>Fader Tag:</b> The fader tag "
|
||||
"identifies the connected client. The tag name can be set in the "
|
||||
"main window." );
|
||||
pLabel->setAccessibleName ( "Mixer channel label (fader tag)" );
|
||||
|
||||
|
||||
// Connections -------------------------------------------------------------
|
||||
|
|
|
@ -33,8 +33,19 @@ CChatDlg::CChatDlg ( QWidget* parent, Qt::WindowFlags f ) :
|
|||
|
||||
|
||||
// Add help text to controls -----------------------------------------------
|
||||
edtLocalInputText->setAccessibleName ( "New chat text edit box" );
|
||||
txvChatWindow->setAccessibleName ( "Chat history" );
|
||||
// chat window
|
||||
txvChatWindow->setWhatsThis ( tr ( "<b>Chat Window:</b> The chat window "
|
||||
"shows a history of all chat messages." ) );
|
||||
|
||||
txvChatWindow->setAccessibleName ( tr ( "Chat history" ) );
|
||||
|
||||
// input message text
|
||||
edtLocalInputText->setWhatsThis ( tr ( "<b>Input Message Text:</b> Enter "
|
||||
"the chat message text in the edit box and press enter to send the "
|
||||
"message to the server which distributes the message to all connected "
|
||||
"clients. Your message will then show up in the chat window." ) );
|
||||
|
||||
edtLocalInputText->setAccessibleName ( tr ( "New chat text edit box" ) );
|
||||
|
||||
|
||||
// clear chat window and edit line
|
||||
|
|
|
@ -39,10 +39,25 @@ CConnectDlg::CConnectDlg ( QWidget* parent, Qt::WindowFlags f )
|
|||
|
||||
|
||||
// Add help text to controls -----------------------------------------------
|
||||
// server list
|
||||
lvwServers->setWhatsThis ( tr ( "<b>Server List:</b> The server list shows "
|
||||
"a list of available servers which are registered at the central "
|
||||
"server. Select a server from the list and press the connect button to "
|
||||
"connect to this server. Alternatively, double click a server from "
|
||||
"the list to connect to it.<br>"
|
||||
"Note that it may take some time to retrieve the server list from the "
|
||||
"central server. If no valid central server address is specified in "
|
||||
"the settings, no server list will be available." ) );
|
||||
|
||||
lvwServers->setAccessibleName ( tr ( "Server list view" ) );
|
||||
|
||||
// server address
|
||||
QString strServAddrH = tr ( "<b>Server Address:</b> The IP address or URL "
|
||||
"of the server running the llcon server software must be set here. "
|
||||
"A list of the most recent used server URLs is available for "
|
||||
"of the server running the llcon server software must be set here. An "
|
||||
"optional port number can be added after the IP address or URL using "
|
||||
"a comma as a separator, e.g, <i>" ) + DEFAULT_SERVER_ADDRESS + ":" +
|
||||
QString().setNum ( LLCON_DEFAULT_PORT_NUMBER ) + tr ( "</i>. A list of "
|
||||
"the most recent used server IP addresses or URLs is available for "
|
||||
"selection." );
|
||||
|
||||
lblServerAddr->setWhatsThis ( strServAddrH );
|
||||
|
@ -50,7 +65,7 @@ CConnectDlg::CConnectDlg ( QWidget* parent, Qt::WindowFlags f )
|
|||
|
||||
cbxServerAddr->setAccessibleName ( tr ( "Server address edit box" ) );
|
||||
cbxServerAddr->setAccessibleDescription ( tr ( "Holds the current server "
|
||||
"URL. It also stores old URLs in the combo box list." ) );
|
||||
"IP address or URL. It also stores old URLs in the combo box list." ) );
|
||||
|
||||
|
||||
// init server address combo box (max MAX_NUM_SERVER_ADDR_ITEMS entries)
|
||||
|
|
File diff suppressed because it is too large
Load diff
|
@ -47,6 +47,13 @@ CLlconServerDlg::CLlconServerDlg ( CServer* pNServP,
|
|||
|
||||
lvwClients->setAccessibleName ( tr ( "Connected clients list view" ) );
|
||||
|
||||
// start minimized on operating system start
|
||||
chbStartOnOSStart->setWhatsThis ( tr ( "<b>Start Minimized on Operating "
|
||||
"System Start:</b> If the start minimized on operating system start "
|
||||
"check box is checked, the " ) + APP_NAME + tr ( " server will be "
|
||||
"started when the operating system starts up and is automatically "
|
||||
"minimized to a system task bar icon." ) );
|
||||
|
||||
// register server flag
|
||||
chbRegisterServer->setWhatsThis ( tr ( "<b>Register Server Status:</b> If "
|
||||
"the register server check box is checked, this server registers "
|
||||
|
|
Loading…
Reference in a new issue