@ -73,12 +73,50 @@ void UBTrapFlashController::showTrapFlash()
, viewHeight ) ;
, viewHeight ) ;
connect ( mTrapFlashUi - > flashCombobox , SIGNAL ( currentIndexChanged ( int ) ) , this , SLOT ( selectFlash ( int ) ) ) ;
connect ( mTrapFlashUi - > flashCombobox , SIGNAL ( currentIndexChanged ( int ) ) , this , SLOT ( selectFlash ( int ) ) ) ;
connect ( mTrapFlashUi - > widgetNameLineEdit , SIGNAL ( textChanged ( const QString & ) ) , this , SLOT ( text_Changed ( const QString & ) ) ) ;
connect ( mTrapFlashUi - > widgetNameLineEdit , SIGNAL ( textEdited ( const QString & ) ) , this , SLOT ( text_Edited ( const QString & ) ) ) ;
connect ( mTrapFlashUi - > createWidgetButton , SIGNAL ( clicked ( bool ) ) , this , SLOT ( createWidget ( ) ) ) ;
connect ( mTrapFlashUi - > createWidgetButton , SIGNAL ( clicked ( bool ) ) , this , SLOT ( createWidget ( ) ) ) ;
}
}
mTrapFlashDialog - > show ( ) ;
mTrapFlashDialog - > show ( ) ;
}
}
void UBTrapFlashController : : text_Changed ( const QString & newText )
{
QString new_text = newText ;
# ifdef Q_WS_WIN // Defined on Windows.
QString illegalCharList ( " < > : \" / \\ | ? * " ) ;
QRegExp regExp ( " [<>: \" / \\ \\ |?*] " ) ;
# endif
# ifdef Q_WS_QWS // Defined on Qt for Embedded Linux.
QString illegalCharList ( " < > : \" / \\ | ? * " ) ;
QRegExp regExp ( " [<>: \" / \\ \\ |?*] " ) ;
# endif
# ifdef Q_WS_MAC // Defined on Mac OS X.
QString illegalCharList ( " < > : \" / \\ | ? * " ) ;
QRegExp regExp ( " [<>: \" / \\ \\ |?*] " ) ;
# endif
# ifdef Q_WS_X11 // Defined on X11.
QString illegalCharList ( " < > : \" / \\ | ? * " ) ;
QRegExp regExp ( " [<>: \" / \\ \\ |?*] " ) ;
# endif
if ( new_text . indexOf ( regExp ) > - 1 )
{
new_text . remove ( regExp ) ;
mTrapFlashUi - > widgetNameLineEdit - > setText ( new_text ) ;
QToolTip : : showText ( mTrapFlashUi - > widgetNameLineEdit - > mapToGlobal ( QPoint ( ) ) , " Application name can`t contain any of the following characters: \r \n " + illegalCharList ) ;
}
}
void UBTrapFlashController : : text_Edited ( const QString & newText )
{
}
void UBTrapFlashController : : hideTrapFlash ( )
void UBTrapFlashController : : hideTrapFlash ( )
{
{
@ -281,15 +319,15 @@ QString UBTrapFlashController::generateFullPageHtml(const QString& pDirPath, boo
QString htmlContentString ;
QString htmlContentString ;
htmlContentString + = " <!DOCTYPE HTML PUBLIC \" -//W3C//DTD HTML 4.01//EN \" \" http://www.w3.org/TR/html4/strict.dtd \" > \n " ;
htmlContentString + = " <!DOCTYPE HTML PUBLIC \" -//W3C//DTD HTML 4.01//EN \" \" http://www.w3.org/TR/html4/strict.dtd \" > \r \ n " ;
htmlContentString + = " <html> \n " ;
htmlContentString + = " <html xmlns= \" http://www.w3.org/1999/xhtml \" > \r \n " ;
htmlContentString + = " <head> \n " ;
htmlContentString + = " <head>\r \n " ;
htmlContentString + = " <meta http-equiv= \" content-type \" content= \" text/html; charset=utf-8 \" > \n " ;
htmlContentString + = " <meta http-equiv= \" refresh \" content= \" 0; " + mCurrentWebFrame - > url ( ) . toString ( ) + " \" > \r \n " ;
htmlContentString + = " </head> \n " ;
htmlContentString + = " </head>\r \n " ;
htmlContentString + = " <frameset cols= \" 100% \" > \n " ;
htmlContentString + = " <body> \r \n " ;
htmlContentString + = " <frame src= \" " + mCurrentWebFrame - > url ( ) . toString ( ) + " \" /> \n " ;
htmlContentString + = " Redirect to target... \r \n " ;
htmlContentString + = " </frameset> \n " ;
htmlContentString + = " </body> \r \n " ;
htmlContentString + = " </html> \n " ;
htmlContentString + = " </html> \r \ n " ;
if ( ! pGenerateFile )
if ( ! pGenerateFile )
{
{