added blurbs for most properties.

2003-10-14  Sven Neumann  <sven@gimp.org>

	* app/core/gimptemplate.c (gimp_template_class_init): added blurbs
	for most properties.

	* app/config/gimprc-blurbs.h: removed an unused blurb.
This commit is contained in:
Sven Neumann 2003-10-14 17:02:11 +00:00 committed by Sven Neumann
parent 459bebba07
commit 7759f7ea1a
3 changed files with 14 additions and 11 deletions

View file

@ -1,3 +1,10 @@
2003-10-14 Sven Neumann <sven@gimp.org>
* app/core/gimptemplate.c (gimp_template_class_init): added blurbs
for most properties.
* app/config/gimprc-blurbs.h: removed an unused blurb.
2003-10-14 Sven Neumann <sven@gimp.org>
* app/config/gimpdisplayconfig.c: made "perfect-mouse" the default

View file

@ -82,11 +82,6 @@ N_("Tools such as fuzzy-select and bucket fill find regions based on a " \
"intensity from the original is greater than a specified threshold. " \
"This value represents the default threshold.")
#define DEFAULT_UNIT_BLURB \
"Sets the default unit for new images and for the \"File/New\" dialog. " \
"This units will be used for coordinate display when not in dot-for-dot " \
"mode."
#define ENVIRON_PATH_BLURB \
"Sets the environ search path."

View file

@ -143,33 +143,34 @@ gimp_template_class_init (GimpTemplateClass *klass)
viewable_class->default_stock_id = "gimp-template";
GIMP_CONFIG_INSTALL_PROP_INT (object_class, PROP_WIDTH, "width",
NULL,
"The image width in pixels.",
1, GIMP_MAX_IMAGE_SIZE, 256,
0);
GIMP_CONFIG_INSTALL_PROP_INT (object_class, PROP_HEIGHT, "height",
NULL,
"The image height in pixels.",
1, GIMP_MAX_IMAGE_SIZE, 256,
0);
GIMP_CONFIG_INSTALL_PROP_UNIT (object_class, PROP_UNIT, "unit",
NULL,
"The unit used for coordinate display "
"when not in dot-for-dot mode.",
FALSE, FALSE, GIMP_UNIT_INCH,
0);
GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, PROP_XRESOLUTION,
"xresolution",
NULL,
"The horizonal resolution in dpi.",
GIMP_MIN_RESOLUTION, GIMP_MAX_RESOLUTION,
72.0,
0);
GIMP_CONFIG_INSTALL_PROP_DOUBLE (object_class, PROP_YRESOLUTION,
"yresolution",
NULL,
"The vertical resolution in dpi.",
GIMP_MIN_RESOLUTION, GIMP_MAX_RESOLUTION,
72.0,
0);
GIMP_CONFIG_INSTALL_PROP_UNIT (object_class, PROP_RESOLUTION_UNIT,
"resolution-unit",
NULL,
"The unit used to display resolutions.",
FALSE, FALSE, GIMP_UNIT_INCH,
0);