Changeset View
Changeset View
Standalone View
Standalone View
messageviewer/src/viewer/webengine/mailwebengineview.cpp
| Show First 20 Lines • Show All 343 Lines • ▼ Show 20 Line(s) | |||||
| 344 | } | 344 | } | ||
| 345 | 345 | | |||
| 346 | void MailWebEngineView::executeHideShowToAddressScripts(bool hide) | 346 | void MailWebEngineView::executeHideShowToAddressScripts(bool hide) | ||
| 347 | { | 347 | { | ||
| 348 | const QString source = MessageViewer::MailWebEngineScript::manageShowHideToAddress(hide); | 348 | const QString source = MessageViewer::MailWebEngineScript::manageShowHideToAddress(hide); | ||
| 349 | runJavaScriptInWordId(source); | 349 | runJavaScriptInWordId(source); | ||
| 350 | } | 350 | } | ||
| 351 | 351 | | |||
| 352 | void MailWebEngineView::executeHideShowEncryptionDetails(bool hide) | ||||
| 353 | { | ||||
| 354 | const QString source = MessageViewer::MailWebEngineScript::manageShowHideEncryptionDetails(hide); | ||||
| 355 | runJavaScriptInWordId(source); | ||||
| 356 | } | ||||
| 357 | | ||||
| 352 | void MailWebEngineView::executeHideShowCcAddressScripts(bool hide) | 358 | void MailWebEngineView::executeHideShowCcAddressScripts(bool hide) | ||
| 353 | { | 359 | { | ||
| 354 | const QString source = MessageViewer::MailWebEngineScript::manageShowHideCcAddress(hide); | 360 | const QString source = MessageViewer::MailWebEngineScript::manageShowHideCcAddress(hide); | ||
| 355 | runJavaScriptInWordId(source); | 361 | runJavaScriptInWordId(source); | ||
| 356 | } | 362 | } | ||
| 357 | 363 | | |||
| 358 | void MailWebEngineView::executeHideShowAttachmentsScripts(bool hide) | 364 | void MailWebEngineView::executeHideShowAttachmentsScripts(bool hide) | ||
| 359 | { | 365 | { | ||
| ▲ Show 20 Lines • Show All 46 Lines • Show Last 20 Lines | |||||