@@ -1,10 +1,10 @@ # encoding: utf-8 # api: streamtuner2 # title: New station # description: Adds menu entry to add new station -# version: 0.1 +# version: 0.2 # type: feature # category: ui # config: - # priority: optional # @@ -17,14 +17,27 @@ # class new_station (object): plugin = "new_station" meta = plugin_meta() parent = None + win = None # show stream data editing dialog def __init__(self, parent): self.parent = parent uikit.add_menu([parent.streammenu], "New station…", self.new, insert=3) - # add a new list entry, update window + # def new(self, *w): - self.parent.streamedit.new(None) + self.win = win = gtk.Dialog(); + t = gtk.Table(2, 3) + win.pack_start(t) + win.show() + + + # + def cancel(self, *w): + self.parent.win_newstation.hide() + + # + def ok(self, *w): + self.parent.win_newstation.hide()