moved cli and zenity frontend to their own files
[lilass.git] / cli_frontend.py
1 # DSL - easy Display Setup for Laptops
2 # Copyright (C) 2012-2015 Ralf Jung <post@ralfj.de>
3 #
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17
18 # interactive command line interface, question based
19
20 from question_frontend import QuestionFrontend
21
22 import sys
23
24 class CLIFrontend(QuestionFrontend):
25     def error(self, message):
26         print(message, file=sys.stderr)
27
28     def userChoose (self, title, choices, returns, fallback):
29         while True:
30             # print question
31             print(title)
32             for i in range(len(choices)):
33                 print("%d. %s"%(i,choices[i]))
34             print("Enter 'c' to cancel.")
35             # handle input
36             answer = input("> ")
37             if answer == "c":
38                 return None
39             #else
40             try:
41                 answerint = int(answer)
42                 if answerint >= 0 and answerint < len(choices):
43                     return returns[answerint]
44             except ValueError:
45                 pass
46             # if we are here something invalid was entered
47             print("INVALID ANSWER: '%s'" % answer)
48
49     @staticmethod
50     def isAvailable():
51         return True