Home
last modified time | relevance | path

Searched refs:showNotification (Results 1 – 25 of 512) sorted by relevance

12345678910>>...21

/dports/astro/kstars/kstars-3.5.6/kstars/kstarslite/qml/dialogs/helpers/
H A DLocationEdit.qml66 skyMapLite.notification.showNotification(xi18n("Failed to set location"))
71 … skyMapLite.notification.showNotification(xi18n("Successfully set your location"))
73 skyMapLite.notification.showNotification(xi18n("Could not set your location"))
96 skyMapLite.notification.showNotification(xi18n("Failed to set location"))
100 skyMapLite.notification.showNotification(xi18n("Successfully set your location"))
102 skyMapLite.notification.showNotification(xi18n("Could not set your location"))
153 skyMapLite.notification.showNotification(errorDesc)
160 skyMapLite.notification.showNotification(xi18n("Timeout occurred. Try again."))
175 skyMapLite.notification.showNotification(xi18n("Found your longitude and altitude"))
378 skyMapLite.notification.showNotification(xi18n("Please, fill in the city"))
[all …]
/dports/devel/kf5-knotifications/knotifications-5.89.0/src/
H A Dknotificationjobuidelegate.cpp18 void showNotification(KNotification::StandardEvent standardEvent, const QString &text);
23 void KNotificationJobUiDelegatePrivate::showNotification(KNotification::StandardEvent standardEvent… in showNotification() function in KNotificationJobUiDelegatePrivate
66 d->showNotification(KNotification::Error, job()->errorString()); in showErrorMessage()
75 d->showNotification(KNotification::Notification, plain); in slotWarning()
/dports/www/falkon/falkon-3.2.0/src/lib/plugins/
H A Docssupport.cpp123 …mApp->desktopNotifications()->showNotification(tr("Installation failed"), tr("Failed to install th… in installTheme()
147 …mApp->desktopNotifications()->showNotification(tr("Installation failed"), tr("Theme is already ins… in installTheme()
159 …mApp->desktopNotifications()->showNotification(tr("Theme installed"), tr("'%1' was successfully in… in installTheme()
165 …mApp->desktopNotifications()->showNotification(tr("Installation failed"), tr("Failed to install ex… in installExtension()
203 …mApp->desktopNotifications()->showNotification(tr("Installation failed"), tr("Extension is already… in installExtension()
222 …mApp->desktopNotifications()->showNotification(tr("Extension installed"), tr("'%1' was successfull… in installExtension()
/dports/www/R-cran-shiny/shiny/man/
H A DshowNotification.Rd3 \name{showNotification}
4 \alias{showNotification}
8 showNotification(
37 \code{id} is optional for \code{showNotification()}: Shiny will automatically create
64 showNotification("Message text",
85 id <- showNotification(paste("Message", n), duration = NULL)
/dports/converters/wkhtmltopdf/qt-5db36ec/src/3rdparty/webkit/Source/WebKit/qt/examples/platformplugin/
H A DWebNotificationPresenter.h34 void showNotification(const QWebNotificationData*);
55 void showNotification(const QWebNotificationData* data) { m_widget->showNotification(data); } in showNotification() function
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/junit/src/org/chromium/chrome/browser/media/ui/
H A DMediaNotificationServiceLifecycleTest.java110 getController().showNotification(newInfo); in testShowNotificationIsNoOpWhenInfoMatches()
112 verify(getController()).showNotification(newInfo); in testShowNotificationIsNoOpWhenInfoMatches()
127 getController().showNotification(newInfo); in testShowNotificationIsNoOpWhenInfoIsPausedAndFromAnotherTab()
129 verify(getController()).showNotification(newInfo); in testShowNotificationIsNoOpWhenInfoIsPausedAndFromAnotherTab()
139 getController().showNotification(newInfo); in testShowNotificationWhenServiceNotCreated()
155 getController().showNotification(newInfo); in testShowNotificationWhenServiceAlreadyCreated()
157 verify(getController()).showNotification(newInfo); in testShowNotificationWhenServiceAlreadyCreated()
171 getController().showNotification(oldInfo); in testShowNotificationBeforeServiceCreatedUpdatesNotificationInfoAndLogsUma()
185 getController().showNotification(newInfo); in testShowNotificationBeforeServiceCreatedUpdatesNotificationInfoAndLogsUma()
/dports/net/kget/kget-21.12.3/core/
H A Durlchecker.cpp126 return checkSource(url, showNotification); in checkUrl()
128 return checkDestination(url, showNotification); in checkUrl()
130 return checkFolder(url, showNotification); in checkUrl()
141 UrlChecker::UrlError UrlChecker::checkSource(const QUrl &src, bool showNotification) in checkSource() argument
158 if (showNotification && (error != NoError)) { in checkSource()
160 KGet::showNotification(KGet::m_mainWindow, "error", message(src, Source, error)); in checkSource()
191 if (showNotification && (error != NoError)) { in checkDestination()
199 UrlChecker::UrlError UrlChecker::checkFolder(const QUrl &folder, bool showNotification) in checkFolder() argument
221 if (showNotification && (error != NoError)) { in checkFolder()
223 KGet::showNotification(KGet::m_mainWindow, "error", message(folder, Folder, error)); in checkFolder()
[all …]
H A Durlchecker.h101 … static UrlError checkUrl(const QUrl &url, const UrlType type, bool showNotification = false);
108 static UrlError checkSource(const QUrl &source, bool showNotification = false);
115 static UrlError checkDestination(const QUrl &destination, bool showNotification = false);
122 static UrlError checkFolder(const QUrl &folder, bool showNotification = false);
/dports/astro/kstars/kstars-3.5.6/kstars/kstarslite/qml/modules/helpers/
H A DTopMenuButton.qml28 skyMapLite.notification.showNotification(xi18n("%1 are toggled on", title))
30 skyMapLite.notification.showNotification(xi18n("%1 is toggled on", title))
34 skyMapLite.notification.showNotification(xi18n("%1 are toggled off", title))
36 skyMapLite.notification.showNotification(xi18n("%1 is toggled off", title))
/dports/www/falkon/falkon-3.2.0/src/lib/notifications/
H A Ddesktopnotificationsfactory.cpp64 void DesktopNotificationsFactory::showNotification(const QString &heading, const QString &text) in showNotification() function in DesktopNotificationsFactory
66 showNotification(QPixmap(), heading, text); in showNotification()
69 void DesktopNotificationsFactory::showNotification(const QPixmap &icon, const QString &heading, con… in showNotification() function in DesktopNotificationsFactory
119 showNotification(icon, QObject::tr("Native System Notification"), tr("Preview")); in nativeNotificationPreview()
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/tracing/
H A DTracingNotificationManager.java119 showNotification(sTracingActiveNotificationBuilder.build()); in showTracingActiveNotification()
147 showNotification(sTracingActiveNotificationBuilder.build()); in updateTracingActiveNotification()
161 showNotification(builder.build()); in showTracingStoppingNotification()
181 showNotification(builder.build()); in showTracingCompleteNotification()
204 private static void showNotification(Notification notification) { in showNotification() method in TracingNotificationManager
/dports/x11-wm/lxqt-panel/lxqt-panel-1.0.0/plugin-volume/
H A Dlxqtvolume.cpp221 …m_defaultSink, &AudioDevice::volumeChanged, this, [this] { LXQtVolume::showNotification(false); }); in handleSinkListChanged()
222 …t(m_defaultSink, &AudioDevice::muteChanged, this, [this] { LXQtVolume::showNotification(false); }); in handleSinkListChanged()
237 showNotification(true); in handleShortcutVolumeUp()
246 showNotification(true); in handleShortcutVolumeDown()
255 showNotification(true); in handleShortcutVolumeMute()
284 void LXQtVolume::showNotification(bool forceShow) const in showNotification() function in LXQtVolume
/dports/www/otter-browser/otter-browser-1.0.03/resources/other/
H A Dnotifications.ini2 showNotification = true key
5 showNotification = true key
/dports/x11-toolkits/plasma5-kdeplasma-addons/kdeplasma-addons-5.23.5/applets/timer/package/contents/ui/
H A DconfigAppearance.qml21 property alias cfg_showNotification: showNotification.checked
65 id: showNotification
77 enabled: showNotification.checked
/dports/www/chromium-legacy/chromium-88.0.4324.182/components/browser_ui/media/android/java/src/org/chromium/components/browser_ui/media/
H A DMediaSessionHelper.java180 private void showNotification() { in showNotification() method in MediaSessionHelper
239 showNotification(); in createMediaSessionObserver()
307 showNotification();
495 showNotification();
513 showNotification();
545 showNotification();
552 showNotification();
570 showNotification();
/dports/net-im/teamwords/TeamWords-0.2.1/plugins/qtwebkit/notifications/
H A Dnotificationpresenter.cpp27 void NotificationPresenter::showNotification(const QWebNotificationData* data) in showNotification() function in NotificationPresenter
39 mApp->showNotification(data->title(), data->message()); in showNotification()
/dports/net-im/diligent/diligent-0.2.7/plugins/qtwebkit/notifications/
H A Dnotificationpresenter.cpp27 void NotificationPresenter::showNotification(const QWebNotificationData* data) in showNotification() function in NotificationPresenter
39 mApp->showNotification(data->title(), data->message()); in showNotification()
/dports/astro/kstars/kstars-3.5.6/kstars/kstarslite/qml/dialogs/menus/
H A DLocationsGeoMenu.qml61 … skyMapLite.notification.showNotification(xi18n("Set %1 as the current location", locName))
63 … skyMapLite.notification.showNotification(xi18n("Could not set as the current location", locName))
85 skyMapLite.notification.showNotification(xi18n("Deleted location %1", locName))
/dports/databases/grass7/grass-7.8.6/gui/wxpython/datacatalog/
H A Dcatalog.py34 self.showNotification = Signal('DataCatalog.showNotification')
51 self.tree.showNotification.connect(self.showNotification)
/dports/www/chromium-legacy/chromium-88.0.4324.182/chrome/android/java/src/org/chromium/chrome/browser/reengagement/
H A DReengagementNotificationController.java69 if (showNotification(FeatureConstants.CHROME_REENGAGEMENT_NOTIFICATION_1_FEATURE)) { in tryToReengageTheUser()
72 if (showNotification(FeatureConstants.CHROME_REENGAGEMENT_NOTIFICATION_2_FEATURE)) { in tryToReengageTheUser()
75 if (showNotification(FeatureConstants.CHROME_REENGAGEMENT_NOTIFICATION_3_FEATURE)) { in tryToReengageTheUser()
86 private boolean showNotification(String feature) { in showNotification() method in ReengagementNotificationController
/dports/net-im/teamwords/TeamWords-0.2.1/
H A Dmainapplication.cpp26 void MainApplication::showNotification(QString title, QString message) in showNotification() function in MainApplication
28 getMainWindow()->showNotification(title, message); in showNotification()
/dports/net-im/diligent/diligent-0.2.7/
H A Dmainapplication.cpp26 void MainApplication::showNotification(QString title, QString message) in showNotification() function in MainApplication
28 getMainWindow()->showNotification(title, message); in showNotification()
/dports/science/afni/afni-AFNI_21.3.16/src/shiny/3dMVM_validator_shiny/
H A Dserver.R25 showNotification("Choose a coordinate to get started.",type="message",
34 showNotification("Coordinate chosen. Now extract data.",
46 showNotification("ROI set. Now extract data.",
49 showNotification("Get a coordinate first!!",type="error",duration=5)
72 showNotification(paste("Wait until the terminal window reports 'DONE!'",
78 showNotification("You can now load the data.",type="message",
81 showNotification("Voxel already extracted. You can now load the data.",
85 showNotification("Get a coordinate first!!",type="error",duration=5)
111 showNotification("Data Loaded! Specify a model.",type="message",
542 showNotification("Test the GLT first!",type="error",
/dports/www/moodle311/moodle/message/output/popup/amd/build/
H A Dnotification_area_events.min.js.map1showNotification","notificationShown"],"mappings":"kKAuBe,CACXA,gBAAgB,CAAE,2CADP,CAEXC,iBAAiB,CAA…
/dports/www/moodle310/moodle/message/output/popup/amd/build/
H A Dnotification_area_events.min.js.map1showNotification","notificationShown"],"mappings":"kKAuBe,CACXA,gBAAgB,CAAE,2CADP,CAEXC,iBAAiB,CAA…

12345678910>>...21