Add files from the old svn, r101.
[matthijs/upstream/mobilegtd.git] / src / gui / projects_list / new_action_widget.py
1
2 class NewActionWidget:
3     def change(self):
4         from gui.project_details.project_view import ask_for_action
5         action = ask_for_action(u"No project")
6         if action:
7             action.process()
8         return action
9
10     def list_repr(self):
11         return u'New action'
12     def name_and_details(self):
13         return (self.list_repr(), u'Sure? No project attached?')