Commit Graph

3813 Commits

Author SHA1 Message Date
71cb06f6a4 Fix typo.
-Yosh
2000-03-29 10:32:54 +00:00
3f8e436ba8 Updated Ukrainian translation 2000-03-29 09:52:52 +00:00
c9101c97ba Updated Ukrainian translation 2000-03-29 08:39:46 +00:00
10052659c0 removed check for broken versions of perl in script-fu-xgettext
since it seems to work just fine.

removed obsolete installation instructions in plug-ins/dbbrowser


--Sven
2000-03-28 23:52:07 +00:00
c497d9c140 app/bezier_select.h app/bezier_selectP.h app/by_color_select.[ch]
2000-03-29  Michael Natterer  <mitch@gimp.org>

	* app/bezier_select.h
	* app/bezier_selectP.h
	* app/by_color_select.[ch]
	* app/ellipse_select.[ch]
	* app/free_select.[ch]
	* app/move.[ch]
	* app/rect_select.[ch]: kindof selection tools code review:

	- use SelectOps instead of int.
	- removed some unused prototyped and callbacks.
	- don't show the SELECTION_MOVE_MASK cursor if there is no
	  selection and don't try to move the mask in that case.
	- re(?)-enabled moving the selection mask even if there is a
	  floating selection.
	- usual bunch of cleanups.
2000-03-28 23:39:32 +00:00
b7940e1ebf new function gimp_dialog_hide() that calls gdk_window_withdraw() after
gtk_widget_hide() so dialogs actually go away even if the user iconified
them before. Should fix bugs #2961, #5293, #6441 and #7849.


--Sven
2000-03-28 23:02:05 +00:00
db7d885ee3 new scheme for i18n of script-fus: translatable strings are marked
like _"foo".


--Sven
2000-03-28 21:06:39 +00:00
eccd2eff55 typo fix 2000-03-28 20:46:40 +00:00
3c764ee891 Removed a stray conflict marker from ChangeLog. 2000-03-28 15:55:02 +00:00
3b17ab0193 integers are not doubles!
2000-03-28  Kelly Lynn Martin  <kelly@poverty.bloomington.in.us>

	* plug-ins/common/warp.c (warp_dialog): integers are not doubles!
2000-03-28 15:47:37 +00:00
46bff419d3 typo fix 2000-03-28 14:08:50 +00:00
c7da344ea9 alien-neon-logo.scm: Changed the procedure name to start with 'script-fu'.
app/plug-in.c: reverted Mitch's latest change which caused bug #7980.



--Sven
2000-03-28 13:35:50 +00:00
8c46f10171 see plug-ins/perl/Changes 2000-03-28 13:30:29 +00:00
99411b4195 updated japanese translation.
-- yasuhiro
2000-03-28 08:16:17 +00:00
8ba79afbde gflare never use gfig-path. updated Japanese translation.
* gflare.c: gflare never use gfig-path.
* ja.po: updated Japanese translation.

-- yasuhiro
2000-03-28 07:34:18 +00:00
e585b34327 hide the file_selector when the main dialog is unmapped
* app/curves.c:
* app/levels.c: hide the file_selector when the main dialog is unmapped

* app/fileops.c: indentation


--Sven
2000-03-27 19:57:02 +00:00
f052ff5493 I don't think blib is supposed to appear in CVS
--Sven
2000-03-27 18:30:04 +00:00
5f8afffa15 corrected a small problem with the Makefile.PL
--Sven
2000-03-27 18:25:08 +00:00
b59f9c9c2e Fixed a typo. 2000-03-27 16:56:21 +00:00
99e3bf23ce Fixed a typo (spurious parenthesis). 2000-03-27 16:49:10 +00:00
fbb6a05782 lots of i18n updates and spelling corrections
--Sven
2000-03-27 14:49:37 +00:00
f01b9e71d4 Updated Polish translation 2000-03-27 14:38:23 +00:00
dec91421e2 INIT_I18N_UI() instead of INIT_I18N() for save dialog.
* plug-ins/common/xpm.c: INIT_I18N_UI() instead of INIT_I18N()
        for save dialog.

-- yasuhiro
2000-03-27 03:28:29 +00:00
8d64faa350 oops 2000-03-27 00:56:59 +00:00
e89a344148 the button_press and cursor_update functions were still doing checks on
2000-03-27  Michael Natterer  <mitch@gimp.org>

	* app/transform_core.c: the button_press and cursor_update
	functions were still doing checks on the active layer instead of
	the active drawable.
	Fixing this automatically made the layers mask transformable.
2000-03-27 00:55:28 +00:00
3baaaaa33b gimp/app/bezier_select.c in bezier_add_point(), when a BEZIER_MOVE type
2000-03-26 Garry R. Osgood <gosgood@idt.net>

* gimp/app/bezier_select.c
in bezier_add_point(), when a BEZIER_MOVE type
point is being added to a path with at least
one extant segment, the point is re-typed
to a BEZIER_ANCHOR (which is old behavior)
and designated as the current anchor
(which is new behaviour). With this change,
motion events move the (second) control point
and indicia are properly updated. This closes
#6225.
2000-03-26 22:42:14 +00:00
5735b2adcd add an "add_alpha" parameter to allow selected regions to be extracted
2000-03-26  Michael Natterer  <mitch@gimp.org>

	* app/gimage_mask.[ch] (gimage_mask_extract): add an "add_alpha"
	parameter to allow selected regions to be extracted without having
	an alpha channel added.

	* app/global_edit.c: pass add_alpha = TRUE.

	* app/transform_core.[ch]: made the transform core work on
	non-layer drawables even if no selection is present. Fixes #7485
	and #7555.

	- transform_core_cut(): extract the mask without alpha if
	  operating on a non-layer without having a selection.
	- transform_core_paste(): return a boolean indicating success
	  instead of a layer and handle channels correctly.
	- transform_core_do(): if the "floating_tiles" passed to the
	  function are from an un-floated non-layer, treat the whole
	  non-layer as alpha channel and never enter the loop which
	  transforms the (not present) color channels.
	  Also clip the result to ensure that the channel never grows
	  larger then the image.

	* app/tools_cmds.c
	* tools/pdbgen/pdb/tools.pdb: transform_core_paste() returns a
	gboolean now.
2000-03-26 18:39:03 +00:00
7de34c05d9 czech translation update 2000-03-26 16:32:33 +00:00
60022552ec typos
--Sven
2000-03-26 15:55:36 +00:00
73e2967251 applied patches from Simon Budig that fix bugs #2358 and #6224
--Sven
2000-03-26 10:38:20 +00:00
28b1123bab updated the docu
--Sven
2000-03-26 00:54:15 +00:00
16e9a0e42c cleaned up the messy spanish translation someone added
fixed compiler warnings, changed some gints to gbooleans

cleaned up namespace and documentation

updated libgimp documentation



--Sven
2000-03-26 00:54:14 +00:00
a55685f423 updated the docu
--Sven
2000-03-26 00:54:14 +00:00
f7b6e2adfc Should use the apostrophe with the genitiv (we don't do in german).
--Sven
2000-03-25 23:50:03 +00:00
97f08d8235 reverted Martin's changes.
--Sven
2000-03-25 23:44:38 +00:00
2481607268 patches from Martin Weber and Peter Kirchgessner 2000-03-25 22:19:17 +00:00
83ddc3fa06 added more info about i18n
--Sven
2000-03-25 19:55:57 +00:00
e0f513ddb7 updated german translation
--Sven
2000-03-25 19:25:20 +00:00
e02eaeffce fixed a few PDB help strings and included a missing header file
--Sven
2000-03-25 19:18:07 +00:00
3a24f6d9b0 fixed bug 7744 and cleaned up libgimp
--Sven
2000-03-25 18:49:05 +00:00
e85517dff8 found some typos
--Mitch
2000-03-25 18:19:40 +00:00
3e64ff6a1b new global variable "gimp_busy" which gets set/unset whenever busy cursors
2000-03-25  Michael Natterer  <mitch@gimp.org>

	* app/cursorutil.[ch]: new global variable "gimp_busy" which gets
	set/unset whenever busy cursors are added/removed.

	* app/info_dialog.c: register the info dialogs with the dialog
	handler.

	* app/fuzzy_select.[ch]: cleanups.

	Here starts the ugly workaround which simulates something like
	locking. If it works, it will close lots of bugs, if not, it's
	easy to remove again.

	So far, I didn't find strange side effects but Gimp is told to be
	a complex program :-) Please test this.

	* app/context_manager.c: don't allow tool changes if gimp_busy
	is TRUE.

	* app/disp_callbacks.c: don't allow mouse and key events in the
	display_canvas if gimp_busy is TRUE.
	(except if the current tool is FUZZY_SELECT and it is ACTIVE,
	 which is very ugly)
	Also block other stuff like dropping colors/patterns etc.

	* app/gdisplay_ops.c: don't close any display while Gimp is
	busy. This is not really what we want but at least it prevents
	crashes.
2000-03-25 18:17:01 +00:00
cb4ddb964b got one wrong ...
--Sven
2000-03-25 14:30:26 +00:00
c5684e3f99 some cleanup in script-fu and a whole bunch of german translations
--Sven
2000-03-25 14:25:30 +00:00
6a35e2d567 czech translation update 2000-03-25 14:02:41 +00:00
b08f5860df i18n fix 2000-03-25 13:12:01 +00:00
f0643302c6 applied a patch from Simon which adapts the pygimp scripts to the new
gimp_edit_fill() interface


--Sven
2000-03-25 01:02:00 +00:00
8663dfbf4f chnanged color in install_dialog and applied gimp-simon-20000324-0 which fixes
bugs #3320 and #7069.


--Sven
2000-03-25 00:20:11 +00:00
5e069e7d7b clamp windows to screen and cascade multiple windows of the same type
--Sven
2000-03-24 22:10:28 +00:00
de5268781e Makefile.am added removed
2000-03-24  Michael Natterer  <mitch@gimp.org>

	* Makefile.am
	* gimp1_0_splash.ppm: added
	* gimp1_1_splash.ppm: removed

	* gimp_splash.ppm: the image formerly known as gimp1_1_splash.ppm

	* app/app_procs.c: load gimp_splash.ppm

	The idea if shearing the data_dir between Gimp versions has
	vanished, so this seems like the right thing to do (TM).

	Keep the 1.0 splash around for sentimental reasons but don't
	install it anymore.

	* plug-ins/common/autocrop.c: indentation paranoia.
2000-03-24 21:57:32 +00:00