2006-07-03 18:00:58 +02:00
|
|
|
/* setmetamode.c
|
|
|
|
|
2011-10-10 16:57:48 +02:00
|
|
|
Copyright 2006, 2011 Red Hat Inc.
|
2006-07-03 18:00:58 +02:00
|
|
|
|
|
|
|
Written by Kazuhiro Fujieda <fujieda@jaist.ac.jp>
|
|
|
|
|
|
|
|
This file is part of Cygwin.
|
|
|
|
|
|
|
|
This software is a copyrighted work licensed under the terms of the
|
|
|
|
Cygwin license. Please consult the file "CYGWIN_LICENSE" for
|
|
|
|
details. */
|
|
|
|
|
2011-10-10 16:57:48 +02:00
|
|
|
#include <errno.h>
|
2006-07-03 18:00:58 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2011-10-10 16:57:48 +02:00
|
|
|
#include <getopt.h>
|
2006-07-03 18:00:58 +02:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <cygwin/kd.h>
|
2011-10-10 16:57:48 +02:00
|
|
|
#include <cygwin/version.h>
|
2006-07-03 18:00:58 +02:00
|
|
|
|
|
|
|
static void
|
|
|
|
usage (void)
|
|
|
|
{
|
|
|
|
fprintf (stderr, "Usage: %s [metabit|escprefix]\n"
|
2011-10-10 16:57:48 +02:00
|
|
|
"\n"
|
|
|
|
"Get or set keyboard meta mode\n"
|
|
|
|
"\n"
|
2006-07-03 18:00:58 +02:00
|
|
|
" Without argument, it shows the current meta key mode.\n"
|
|
|
|
" metabit|meta|bit The meta key sets the top bit of the character.\n"
|
2011-10-10 16:57:48 +02:00
|
|
|
" escprefix|esc|prefix The meta key sends an escape prefix.\n"
|
|
|
|
"\n"
|
|
|
|
"Other options:\n"
|
|
|
|
"\n"
|
|
|
|
" -h, --help This text\n"
|
|
|
|
" -V, --version Print program version and exit\n\n",
|
|
|
|
program_invocation_short_name);
|
2006-07-03 18:00:58 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
error (void)
|
|
|
|
{
|
|
|
|
fprintf (stderr,
|
|
|
|
"%s: The standard input isn't a console device.\n",
|
2011-10-10 16:57:48 +02:00
|
|
|
program_invocation_short_name);
|
2006-07-03 18:00:58 +02:00
|
|
|
}
|
|
|
|
|
2011-10-10 16:57:48 +02:00
|
|
|
void
|
|
|
|
print_version ()
|
|
|
|
{
|
|
|
|
printf ("setmetamode (cygwin) %d.%d.%d\n"
|
2011-12-18 00:39:47 +01:00
|
|
|
"Get or set keyboard meta mode\n"
|
|
|
|
"Copyright (C) 2006 - %s Red Hat, Inc.\n"
|
|
|
|
"This is free software; see the source for copying conditions. There is NO\n"
|
2011-10-10 16:57:48 +02:00
|
|
|
"warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n",
|
2011-12-18 00:39:47 +01:00
|
|
|
CYGWIN_VERSION_DLL_MAJOR / 1000,
|
|
|
|
CYGWIN_VERSION_DLL_MAJOR % 1000,
|
|
|
|
CYGWIN_VERSION_DLL_MINOR,
|
|
|
|
strrchr (__DATE__, ' ') + 1);
|
2011-10-10 16:57:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
struct option longopts[] = {
|
|
|
|
{"help", no_argument, NULL, 'h'},
|
|
|
|
{"version", no_argument, NULL, 'V'},
|
|
|
|
{0, no_argument, NULL, 0}
|
|
|
|
};
|
|
|
|
const char *opts = "hV";
|
|
|
|
|
2006-07-03 18:00:58 +02:00
|
|
|
int
|
|
|
|
main (int ac, char *av[])
|
|
|
|
{
|
|
|
|
int param;
|
2011-10-10 16:57:48 +02:00
|
|
|
int opt;
|
2006-07-03 18:00:58 +02:00
|
|
|
|
|
|
|
if (ac < 2)
|
|
|
|
{
|
|
|
|
if (ioctl (0, KDGKBMETA, ¶m) < 0)
|
|
|
|
{
|
|
|
|
error ();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (param == 0x03)
|
|
|
|
puts ("metabit");
|
|
|
|
else
|
|
|
|
puts ("escprefix");
|
|
|
|
return 0;
|
|
|
|
}
|
2011-10-10 16:57:48 +02:00
|
|
|
|
|
|
|
while ((opt = getopt_long (ac, av, opts, longopts, NULL)) != -1)
|
|
|
|
switch (opt)
|
|
|
|
{
|
|
|
|
case 'h':
|
2011-12-18 00:39:47 +01:00
|
|
|
usage ();
|
2011-10-10 16:57:48 +02:00
|
|
|
return 0;
|
|
|
|
case 'V':
|
|
|
|
print_version ();
|
|
|
|
return 0;
|
|
|
|
default:
|
|
|
|
fprintf (stderr, "Try `%s --help' for more information.\n",
|
|
|
|
program_invocation_short_name);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2006-07-03 18:00:58 +02:00
|
|
|
if (!strcmp ("meta", av[1]) || !strcmp ("bit", av[1])
|
|
|
|
|| !strcmp ("metabit", av[1]))
|
|
|
|
param = 0x03;
|
|
|
|
else if (!strcmp ("esc", av[1]) || !strcmp ("prefix", av[1])
|
|
|
|
|| !strcmp ("escprefix", av[1]))
|
|
|
|
param = 0x04;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
usage ();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
if (ioctl (0, KDSKBMETA, param) < 0)
|
|
|
|
{
|
|
|
|
error ();
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|