Exemple #1
0
void 
QgarAppDescr::endElement(const std::string& uri, 
			 const std::string& localName,
			 const std::string& qName)
{
  // Redirect action on the function matching the tag.

  if (localName == ELT_PARAM)
    {
      endParam();
    }
  else if (localName == ELT_NAME)
    {
      endName();
    }
  else if (localName == ELT_AUTHOR)
    {
      endAuthor();
    }
  else if (localName == ELT_COPYRIGHT)
    {
      endCopyright();
    }
  else if (localName == ELT_BRIEF)
    {
      endBrief();
    }
  else if (localName == ELT_LONG)
    {
      endLong();
    }
}
void qt4encodeWnd::demarrerA( )
{
	cbKeep->setChecked( true );
	cbKeep->show();
	pbClose->show();
	setWindowTitle( "Authoring " );
	setModal( true );
	teAuthor->clear();
	connect( procEncode, SIGNAL(readyReadStderr()),
						this, SLOT(readAuthor()));
	connect( procEncode, SIGNAL(processExited()),
						this, SLOT(endAuthor()));
	exec();
}