123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119 |
- /*
- ****************************************************************************
- *
- * MODULE: d.info
- * AUTHOR(S): Glynn Clements
- * PURPOSE: Display information about the active display monitor
- * COPYRIGHT: (C) 2004, 2012 by the GRASS Development Team
- *
- * This program is free software under the GNU General Public
- * License (>=v2). Read the file COPYING that comes with GRASS
- * for details.
- *
- *****************************************************************************/
- #include <stdlib.h>
- #include <stdio.h>
- #include <grass/gis.h>
- #include <grass/display.h>
- #include <grass/glocale.h>
- int main(int argc, char *argv[])
- {
- struct GModule *module;
- struct Flag *rflag, *dflag, *fflag, *bflag, *gflag;
- double t, b, l, r;
- double n, s, e, w;
- G_gisinit(argv[0]);
- module = G_define_module();
- G_add_keyword(_("display"));
- G_add_keyword(_("graphics"));
- G_add_keyword(_("monitors"));
- module->label =
- _("Displays information about the active display monitor.");
- module->description =
- _("Display monitors are maintained by d.mon.");
- rflag = G_define_flag();
- rflag->key = 'r';
- rflag->description =
- _("Display screen rectangle (left, right, top, bottom)");
- dflag = G_define_flag();
- dflag->key = 'd';
- dflag->description = _("Display screen dimensions (width, height)");
- fflag = G_define_flag();
- fflag->key = 'f';
- fflag->description = _("Display active frame rectangle");
- bflag = G_define_flag();
- bflag->key = 'b';
- bflag->description = _("Display screen rectangle of current region");
- gflag = G_define_flag();
- gflag->key = 'g';
- gflag->description =
- _("Display geographic coordinates and resolution of entire screen");
- if (G_parser(argc, argv))
- exit(EXIT_FAILURE);
- if (!rflag->answer && !dflag->answer &&
- !fflag->answer && !bflag->answer && !gflag->answer) {
- G_fatal_error(_("No flag given"));
- }
- if (D_open_driver() != 0)
- G_fatal_error(_("No graphics device selected. "
- "Use d.mon to select graphics device."));
-
- if (rflag->answer || dflag->answer || fflag->answer)
- D_get_window(&t, &b, &l, &r);
- if (rflag->answer)
- fprintf(stdout, "rectangle: %f %f %f %f\n", l, r, t, b);
- if (dflag->answer)
- fprintf(stdout, "dimensions: %f %f\n", r - l, b - t);
- if (fflag->answer)
- fprintf(stdout, "frame: %f %f %f %f\n", l, r, t, b);
- if (bflag->answer) {
- D_setup(0);
- l = D_get_d_west();
- r = D_get_d_east();
- t = D_get_d_north();
- b = D_get_d_south();
- fprintf(stdout, "region: %f %f %f %f\n", l, r, t, b);
- }
- if (gflag->answer) {
- /* outer bounds of the screen (including margins) */
- D_setup(0);
- n = D_get_u_north();
- s = D_get_u_south();
- w = D_get_u_west();
- e = D_get_u_east();
- fprintf(stdout, "n=%f\n", n );
- fprintf(stdout, "s=%f\n", s );
- fprintf(stdout, "w=%f\n", w );
- fprintf(stdout, "e=%f\n", e );
- fprintf(stdout, "ewres=%.15g\n", (e-w)/(r-l) );
- fprintf(stdout, "nsres=%.15g\n", (n-s)/(b-t) );
- }
-
- D_close_driver();
- exit(EXIT_SUCCESS);
- }
|