Ejemplo n.º 1
0
void MyFrame::SetValues()
{
	//Get values directly from Distortion filter and display via labels
	float tmp = distort->getDevice()->GetDistort();
	txtDrive->SetLabelText(wxString::Format("Drive: %f", tmp));
	tmp = distort->getDevice()->GetMix();
	txtMix->SetLabelText(wxString::Format("Mix: %f", tmp));
}
Ejemplo n.º 2
0
void wxNotificationMessageWindow::SetMessage(const wxString& message)
{
    m_messageText->SetLabelText(message);
    m_messageText->Show(!message.empty());
}
Ejemplo n.º 3
0
void wxNotificationMessageWindow::SetMessageTitle(const wxString& title)
{
    m_messageTitle->SetLabelText(title);
    m_messageTitle->Show(!title.empty());
}