Inheritance: ISource
コード例 #1
0
ファイル: Summa.Gui.Browser.cs プロジェクト: wfarr/newskit
 public void ShowNotification(Feed feed)
 {
     /*if (Config.ShowNotifications) {
         var not = new Notify.Notification("New feed items", "Feed \""+feed.name+"\" has new unread items.", "internet-news-reader", null);
         not.set_urgency(Notify.Urgency.NORMAL);
         not.show();
     }*/
 }
コード例 #2
0
ファイル: Summa.Gui.FeedView.cs プロジェクト: wfarr/newskit
        private void OnFeedAdded(object obj, AddedEventArgs args)
        {
            Feed feed = new Feed(args.Uri);

            if ( feed.Tags.Contains(SetTag) ) {
                AddNewFeed(new Feed(args.Uri));
            }

            ShowAll();
        }