Example #1
0
 public static KNotification Event(KNotification.StandardEvent eventId)
 {
     return (KNotification) staticInterceptor.Invoke("event$", "event(KNotification::StandardEvent)", typeof(KNotification), typeof(KNotification.StandardEvent), eventId);
 }
Example #2
0
 public static KNotification Event(KNotification.StandardEvent eventId, string text, QPixmap pixmap)
 {
     return (KNotification) staticInterceptor.Invoke("event$$#", "event(KNotification::StandardEvent, const QString&, const QPixmap&)", typeof(KNotification), typeof(KNotification.StandardEvent), eventId, typeof(string), text, typeof(QPixmap), pixmap);
 }
Example #3
0
 public static KNotification Event(KNotification.StandardEvent eventId, string text)
 {
     return (KNotification) staticInterceptor.Invoke("event$$", "event(KNotification::StandardEvent, const QString&)", typeof(KNotification), typeof(KNotification.StandardEvent), eventId, typeof(string), text);
 }
Example #4
0
 /// <remarks>
 ///  @brief emit a standard event
 ///  @overload
 ///  This will emit a standard event
 /// <param> name="eventId" is the name of the event
 /// </param><param> name="text" is the text of the notification to show in the popup
 /// </param><param> name="pixmap" is a picture which may be shown in the popup
 /// </param><param> name="widget" is a widget where the notification reports to
 /// </param><param> name="flags" is a bitmask of NotificationFlag 
 /// 	 </param></remarks>        <short>    @brief emit a standard event  @overload </short>
 public static KNotification Event(KNotification.StandardEvent eventId, string text, QPixmap pixmap, QWidget widget, uint flags)
 {
     return (KNotification) staticInterceptor.Invoke("event$$##$", "event(KNotification::StandardEvent, const QString&, const QPixmap&, QWidget*, const KNotification::NotificationFlags&)", typeof(KNotification), typeof(KNotification.StandardEvent), eventId, typeof(string), text, typeof(QPixmap), pixmap, typeof(QWidget), widget, typeof(uint), flags);
 }