示例#1
0
grub_ssize_t
grub_getstringwidth (grub_uint32_t * str, const grub_uint32_t * last_position,
		     struct grub_term_output *term)
{
  grub_ssize_t width = 0;

  while (str < last_position)
    {
      struct grub_unicode_glyph glyph;
      str += grub_unicode_aglomerate_comb (str, last_position - str, &glyph);
      width += grub_term_getcharwidth (term, &glyph);
    }
  return width;
}
示例#2
0
static grub_err_t
grub_cmd_help (grub_extcmd_t ext __attribute__ ((unused)), int argc,
	       char **args)
{
  int cnt = 0;
  char *currarg;

  if (argc == 0)
    {
      grub_command_t cmd;
      FOR_COMMANDS(cmd)
      {
	if ((cmd->prio & GRUB_PRIO_LIST_FLAG_ACTIVE) &&
	    (cmd->flags & GRUB_COMMAND_FLAG_CMDLINE))
	  {
	    struct grub_term_output *term;
	    const char *summary_translated = _(cmd->summary);
	    char *command_help;
	    grub_uint32_t *unicode_command_help;
	    grub_uint32_t *unicode_last_position;
	  			      
	    command_help = grub_xasprintf ("%s %s", cmd->name, summary_translated);
	    if (!command_help)
	      break;

	    grub_utf8_to_ucs4_alloc (command_help, &unicode_command_help,
				     &unicode_last_position);

	    FOR_ACTIVE_TERM_OUTPUTS(term)
	    {
	      unsigned stringwidth;
	      grub_uint32_t *unicode_last_screen_position;

	      unicode_last_screen_position = unicode_command_help;

	      stringwidth = 0;

	      while (unicode_last_screen_position < unicode_last_position && 
		     stringwidth < ((grub_term_width (term) / 2) - 2))
		{
		  struct grub_unicode_glyph glyph;
		  unicode_last_screen_position 
		    += grub_unicode_aglomerate_comb (unicode_last_screen_position,
						     unicode_last_position
						     - unicode_last_screen_position,
						     &glyph);

		  stringwidth
		    += grub_term_getcharwidth (term, &glyph);
		}

	      grub_print_ucs4 (unicode_command_help,
			       unicode_last_screen_position, 0, 0, term);
	      if (!(cnt % 2))
		grub_print_spaces (term, grub_term_width (term) / 2
				   - stringwidth);
	    }

	    if (cnt % 2)
	      grub_printf ("\n");
	    cnt++;
	  
	    grub_free (command_help);
	    grub_free (unicode_command_help);
	  }
      }
      if (!(cnt % 2))
	grub_printf ("\n");
    }