상속: ISource
예제 #1
0
 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
        private void OnFeedAdded(object obj, AddedEventArgs args)
        {
            Feed feed = new Feed(args.Uri);

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

            ShowAll();
        }