Esempio n. 1
0
	def _add_arguments(self):
		OSDWindow._add_arguments(self)
		self.argparser.add_argument('--control-with', '-c', type=str,
			metavar="option", default=STICK, choices=(LEFT, RIGHT, STICK),
			help="which pad or stick should be used to navigate menu (default: %s)" % (STICK,))
		self.argparser.add_argument('--confirm-with', type=str,
			metavar="button", default='A',
			help="button used to confirm choice (default: A)")
		self.argparser.add_argument('--cancel-with', type=str,
			metavar="button", default='B',
			help="button used to cancel menu (default: B)")
		self.argparser.add_argument('--confirm-with-release', action='store_true',
			help="confirm choice with button release instead of button press")
		self.argparser.add_argument('--cancel-with-release', action='store_true',
			help="cancel menu with button release instead of button press")
		self.argparser.add_argument('--use-cursor', '-u', action='store_true',
			help="display and use cursor")
		self.argparser.add_argument('--size', type=int,
			help="sets prefered width or height")
		self.argparser.add_argument('--feedback-amplitude', type=int,
			help="enables and sets power of feedback effect generated when active menu option is changed")
		self.argparser.add_argument('--from-profile', '-p', type=str,
			metavar="profile_file menu_name",
			help="load menu items from profile file")
		self.argparser.add_argument('--from-file', '-f', type=str,
			metavar="filename",
			help="load menu items from json file")
		self.argparser.add_argument('--print-items', action='store_true',
			help="prints menu items to stdout")
		self.argparser.add_argument('items', type=str, nargs='*', metavar='id title',
			help="Menu items")
Esempio n. 2
0
 def _add_arguments(self):
     OSDWindow._add_arguments(self)
     self.argparser.add_argument(
         '--cancel-with',
         type=str,
         metavar="button",
         default='START',
         help="button used to cancel menu (default: START)")
     self.argparser.add_argument(
         '--timeout',
         type=int,
         default=5,
         help="how many seconds before menu is automatically canceled")
     self.argparser.add_argument(
         '--cancel-with-release',
         action='store_true',
         help="cancel menu with button release instead of button press")
     self.argparser.add_argument('--from-profile',
                                 '-p',
                                 type=str,
                                 metavar="profile_file menu_name",
                                 help="load menu items from profile file")
     self.argparser.add_argument('--from-file',
                                 '-f',
                                 type=str,
                                 metavar="filename",
                                 help="load menu items from json file")
     self.argparser.add_argument('--print-items',
                                 action='store_true',
                                 help="prints menu items to stdout")
     self.argparser.add_argument('items',
                                 type=str,
                                 nargs='*',
                                 metavar='id title',
                                 help="Menu items")
Esempio n. 3
0
	def _add_arguments(self):
		OSDWindow._add_arguments(self)
		self.argparser.add_argument('--control-with', '-c', type=str,
			metavar="option", default=DEFAULT, choices=(DEFAULT, LEFT, RIGHT, STICK),
			help="which pad or stick should be used to navigate menu")
		self.argparser.add_argument('--confirm-with', type=str,
			metavar="button", default=DEFAULT,
			help="button used to confirm choice")
		self.argparser.add_argument('--cancel-with', type=str,
			metavar="button", default=DEFAULT,
			help="button used to cancel menu")
		self.argparser.add_argument('--confirm-with-release', action='store_true',
			help="confirm choice with button release instead of button press")
		self.argparser.add_argument('--cancel-with-release', action='store_true',
			help="cancel menu with button release instead of button press")
		self.argparser.add_argument('--use-cursor', '-u', action='store_true',
			help="display and use cursor")
		self.argparser.add_argument('--size', type=int,
			help="sets prefered width or height")
		self.argparser.add_argument('--feedback-amplitude', type=int,
			help="enables and sets power of feedback effect generated when active menu option is changed")
		self.argparser.add_argument('--from-profile', '-p', type=str,
			metavar="profile_file menu_name",
			help="load menu items from profile file")
		self.argparser.add_argument('--from-file', '-f', type=str,
			metavar="filename",
			help="load menu items from json file")
		self.argparser.add_argument('--print-items', action='store_true',
			help="prints menu items to stdout")
		self.argparser.add_argument('items', type=str, nargs='*', metavar='id title',
			help="Menu items")
Esempio n. 4
0
	def _add_arguments(self):
		OSDWindow._add_arguments(self)
		self.argparser.add_argument('--control-with', '-c', type=str,
			metavar="option", default=STICK, choices=(LEFT, RIGHT, STICK),
			help="which pad or stick should be used to navigate menu (default: %s)" % (STICK,))
		self.argparser.add_argument('--confirm-with', type=str,
			metavar="button", default='A',
			help="button used to confirm choice (default: A)")
		self.argparser.add_argument('--cancel-with', type=str,
			metavar="button", default='B',
			help="button used to cancel menu (default: B)")
		self.argparser.add_argument('--confirm-with-release', action='store_true',
			help="confirm choice with button release instead of button press")
		self.argparser.add_argument('--cancel-with-release', action='store_true',
			help="cancel menu with button release instead of button press")
		self.argparser.add_argument('--use-cursor', '-u', action='store_true',
			help="display and use cursor")
		self.argparser.add_argument('--from-profile', '-p', type=str,
			metavar="profile_file menu_name",
			help="load menu items from profile file")
		self.argparser.add_argument('--from-file', '-f', type=str,
			metavar="filename",
			help="load menu items from json file")
		self.argparser.add_argument('--print-items', action='store_true',
			help="prints menu items to stdout")
		self.argparser.add_argument('items', type=str, nargs='*', metavar='id title',
			help="Menu items")
 def _add_arguments(self):
     OSDWindow._add_arguments(self)
     self.argparser.add_argument('--confirm-with',
                                 type=str,
                                 metavar="button",
                                 default=DEFAULT,
                                 help="button used to confirm choice")
     self.argparser.add_argument('--cancel-with',
                                 type=str,
                                 metavar="button",
                                 default=DEFAULT,
                                 help="button used to cancel dialog")
     self.argparser.add_argument(
         '--feedback-amplitude',
         type=int,
         help=
         "enables and sets power of feedback effect generated when active menu option is changed"
     )
     self.argparser.add_argument('--text',
                                 type=str,
                                 metavar='text',
                                 help="Dialog text")
     self.argparser.add_argument('items',
                                 type=str,
                                 nargs='*',
                                 metavar='id text',
                                 help="Dialog buttons")
Esempio n. 6
0
	def _add_arguments(self):
		OSDWindow._add_arguments(self)
		self.argparser.add_argument('image', type=str, nargs="?",
			default = self.bdisplay, help="keyboard image to use")
		self.argparser.add_argument('--cancel-with', type=str,
			metavar="button", default='B',
			help="button used to close display (default: B)")
Esempio n. 7
0
	def _add_arguments(self):
		OSDWindow._add_arguments(self)
		self.argparser.add_argument('-t', type=float, metavar="seconds",
				default=5, help="time before message is hidden (default: 5; 0 means forever)")
		self.argparser.add_argument('-s', type=int, metavar="size",
				default=3, help="font size, in range 1 to 3 (default: 3)")
		self.argparser.add_argument('text', type=str, help="text to display")
Esempio n. 8
0
 def _add_arguments(self):
     OSDWindow._add_arguments(self)
     self.argparser.add_argument('image',
                                 type=str,
                                 nargs="?",
                                 default=self.kbimage,
                                 help="keyboard image to use")
Esempio n. 9
0
 def _add_arguments(self):
     OSDWindow._add_arguments(self)
     self.argparser.add_argument(
         '-t',
         type=float,
         metavar="seconds",
         default=5,
         help="time before message is hidden (default: 5)")
     self.argparser.add_argument('text', type=str, help="text to display")
Esempio n. 10
0
	def _add_arguments(self):
		OSDWindow._add_arguments(self)
		self.argparser.add_argument('--confirm-with', type=str,
			metavar="button", default='A',
			help="button used to confirm choice (default: A)")
		self.argparser.add_argument('--cancel-with', type=str,
			metavar="button", default='B',
			help="button used to cancel menu (default: B)")
		self.argparser.add_argument('--feedback-amplitude', type=int,
			help="enables and sets power of feedback effect generated when active menu option is changed")
Esempio n. 11
0
	def _add_arguments(self):
		OSDWindow._add_arguments(self)
		self.argparser.add_argument('--confirm-with', type=str,
			metavar="button", default=DEFAULT,
			help="button used to confirm choice")
		self.argparser.add_argument('--cancel-with', type=str,
			metavar="button", default=DEFAULT,
			help="button used to cancel dialog")
		self.argparser.add_argument('--feedback-amplitude', type=int,
			help="enables and sets power of feedback effect generated when active menu option is changed")
Esempio n. 12
0
 def _add_arguments(self):
     OSDWindow._add_arguments(self)
     self.argparser.add_argument('--width',
                                 type=int,
                                 metavar="pixels",
                                 default=20,
                                 help="""area width in pixels""")
     self.argparser.add_argument('--height',
                                 type=int,
                                 metavar="pixels",
                                 default=-20,
                                 help="""area height in pixels""")
Esempio n. 13
0
 def _add_arguments(self):
     OSDWindow._add_arguments(self)
     self.argparser.add_argument(
         '--control-with',
         '-c',
         type=str,
         metavar="option",
         default=LEFT,
         choices=(LEFT, RIGHT),
         help=
         "which pad should be used to generate gesture menu (default: %s)" %
         (LEFT, ))
Esempio n. 14
0
 def _add_arguments(self):
     OSDWindow._add_arguments(self)
     self.argparser.add_argument(
         '-t',
         type=float,
         metavar="seconds",
         default=5,
         help="time before message is hidden (default: 5; 0 means forever)")
     self.argparser.add_argument(
         '-s',
         type=int,
         metavar="size",
         default=3,
         help="font size, in range 1 to 3 (default: 3)")
     self.argparser.add_argument('text', type=str, help="text to display")
Esempio n. 15
0
	def _add_arguments(self):
		OSDWindow._add_arguments(self)
		self.argparser.add_argument('--cancel-with', type=str,
			metavar="button", default='START',
			help="button used to cancel menu (default: START)")
		self.argparser.add_argument('--timeout', type=int,
			default=5,
			help="how many seconds before menu is automatically canceled")
		self.argparser.add_argument('--cancel-with-release', action='store_true',
			help="cancel menu with button release instead of button press")
		self.argparser.add_argument('--from-profile', '-p', type=str,
			metavar="profile_file menu_name",
			help="load menu items from profile file")
		self.argparser.add_argument('--from-file', '-f', type=str,
			metavar="filename",
			help="load menu items from json file")
		self.argparser.add_argument('--print-items', action='store_true',
			help="prints menu items to stdout")
		self.argparser.add_argument('items', type=str, nargs='*', metavar='id title',
			help="Menu items")
Esempio n. 16
0
	def _add_arguments(self):
		OSDWindow._add_arguments(self)
		self.argparser.add_argument('--width', type=int, metavar="pixels", default=20,
			help="""area width in pixels""")
		self.argparser.add_argument('--height', type=int, metavar="pixels", default=-20,
			help="""area height in pixels""")
Esempio n. 17
0
	def _add_arguments(self):
		OSDWindow._add_arguments(self)
		self.argparser.add_argument('image', type=str, nargs="?",
			default = self.kbimage, help="keyboard image to use")
Esempio n. 18
0
	def _add_arguments(self):
		OSDWindow._add_arguments(self)
		self.argparser.add_argument('-t', type=float, metavar="seconds",
				default=5, help="time before message is hidden (default: 5)")
		self.argparser.add_argument('text', type=str, help="text to display")
Esempio n. 19
0
	def _add_arguments(self):
		OSDWindow._add_arguments(self)
		self.argparser.add_argument('--control-with', '-c', type=str,
			metavar="option", default=LEFT, choices=(LEFT, RIGHT),
			help="which pad should be used to generate gesture menu (default: %s)" % (LEFT,))