f3a99ed8f7
app: turn GimpFilteredContainer into a general purpose filter
2011-03-22 23:41:42 +01:00
051ef0ebcb
app: add GimpTaggedContainer
...
which is a copy of GimpFilteredContainer with s/Filtered/Tagged/ and
no other change. #if 0 GimpFilteredContainer for now and use
GimpTaggedContainer instead all over the place.
2011-03-22 23:11:46 +01:00
49710c1cd4
app: cosmetic cleanups in GimpFilteredContainer
2011-03-22 22:26:30 +01:00
ab9cb53be8
app: gimp_tool_preset_new(): ignore the passed name
...
and use GimpToolInfo's blurb, so new presets are by default called
"Blend", "Paintbrush" etc. and not simply "Untitled".
2011-03-22 15:08:11 +01:00
5f546938b6
app: Fix whitespace in last commit
2011-03-19 23:27:08 +02:00
6d6ab78d2a
app: Fix stroking brush size to brush default
2011-03-19 23:26:34 +02:00
1c8149a553
Bug 632568 - 'gimp-drawable-transform-rotate-simple' makes GIMP crash in some cases
...
Applied modified patch from Massimo that makes sure we don't use
negative width/height if source and dest regions don't overlap.
2011-03-18 00:53:21 +01:00
0d0ffd1265
Bug 644891 - Ctrl+e crashes gimp
...
Don't freak out if setting an URI on GimpImage that was getted with
the corresponding getter. Fix by Massimo.
2011-03-17 20:25:43 +01:00
c07811f0a3
app: remove unused variables in gimp_drawable_duplicate()
2011-03-16 02:06:21 +01:00
9f30550f9a
app: move drawable->type to private
2011-03-16 02:02:47 +01:00
a62071e9eb
app: remove mamber GimpDrawable::bytes
...
because it's always the same as GIMP_IMAGE_TYPE_BYTES(drawable->type)
2011-03-16 00:16:31 +01:00
8184296b3c
app: add gimp_container_get_neighbor_of() to GimpContainer
...
instead of gimp_container_get_neighbor_of_active() in gimp-utils.c.
Move the additional GimpContext logic of the old function into the
callers, but use the new function in more places.
2011-03-13 02:14:44 +01:00
62f2ae80c8
app: move GimpItem's width and height members to private
2011-03-08 18:10:59 +01:00
f7ce31d62f
app: fake the size of a gruop layer by overriding GimpViewable::get_size()
...
instead of messing with GimpItem's width and height members.
2011-03-08 18:04:23 +01:00
5bd1b318af
app: cosmetic cleanup
2011-03-08 17:15:47 +01:00
3e93f45703
app: keep the preview TempBuf and GdkPixbuf in GimpViewablePrivate
...
instead of attaching them as object data.
2011-03-08 16:38:25 +01:00
383cc27f30
app: move all GimpViewable members to private
2011-03-08 16:23:53 +01:00
fcfb7cf160
Use the new g_[s]list_free_full() instead of foreach() and free()
2011-03-07 17:11:28 +01:00
fc7bd98d92
app: move all GimpStrokeOptions members to private
2011-03-05 21:00:28 +01:00
5ad45dae03
app: move all GimpFillOptions members to private
2011-03-05 20:26:41 +01:00
616285fa7d
app: fix possible warning when removing layers, channels or vectors
...
Don't call gimp_viewable_is_ancestor() on a NULL ancestor.
2011-03-04 01:49:32 +01:00
e3c0a4e549
app: move all GimpDynamics members to private
2011-03-03 18:43:56 +01:00
c31d675ac1
app: move all GimpDynamicsOutput members to private
2011-03-03 11:48:35 +01:00
672286515c
app: remove gimp_data_name_compare() prototype, the function doesn't exist
2011-03-03 11:32:45 +01:00
fe7aa4e113
Merge branch 'master' into soc-2010-cage-2
2011-03-02 15:08:11 +01:00
c550eae5e1
app: move all GimpImagefile members to private
2011-03-02 12:26:04 +01:00
5b09e61c46
app: move all GimpTemplate members to private
2011-03-02 10:16:43 +01:00
8f294661b2
app: don't #include "core/gimpprogress.h" when not needed
2011-02-22 17:32:33 +01:00
ca2fde3950
app: move default icon assignment a few lines up
2011-02-22 01:57:52 +01:00
56dd924b9c
app: add default dynamics icon
2011-02-20 18:47:40 +02:00
8136bdb914
app: fix an error in aspect ratio dynamics
2011-02-14 21:17:54 +02:00
02477f5563
Bug 625167 - Problem exporting floating selections from within layer groups
...
Add "gboolean merge_active_group" to gimp_image_merge_visible_layers()
and pass FALSE from the PDB wrapper so plug-in invoked layer merging
always acts on the toplevel container as it did in 2.6. Do the same
when opening an image as layer.
Also, added a "Merge within active group only" toggle to the merge
layers dialog and pass it down to the core, but default to TRUE here
so.
2011-02-14 09:45:59 +01:00
d9dd65529f
app: include floating selection removal in the layer merge undo group
...
and pull undo group starting/ending out of the
gimp_image_merge_layers() utility function.
2011-02-14 01:43:55 +01:00
9f89bda3b1
app: when removing groups, check if the active item was in the group
...
and set a new active item.
2011-02-14 01:25:45 +01:00
3873aa5cac
app: gimp_data_duplicate() reset name, filename, writable and deletable
...
to default values on the copy, so the duplicated data behaves as
documented, even if a subclass copied too much. Makes duplicated
dynamics work.
2011-02-07 19:38:23 +01:00
708555a378
app: keep a reference to channels and vectors around removing them
...
because we temporarily need them after removal from their item trees,
and bad things can happen if they are not kept alive by the undo stack
(like when undo is disabled while loading an image).
2011-02-07 11:35:58 +01:00
18b9ba1c87
app: Add some comment documentation to code
2011-02-07 03:29:23 +02:00
ef28d7fee6
app: don't gimp_object_set_name() on an item that's attached to an image
...
because it bypasses the unique name logic used by gimp_item_rename().
2011-02-06 23:56:24 +01:00
f4af9b549e
Globally switch to saying "window_id" instead of just "window"
...
when dealing with native window handles. Also get rid of using
GdkNativeWindow and simply consistently use guint32 all over the
place. This is more obvious and consistent and keeps the diff to the
gtk3-port branch smaller.
2011-02-06 12:07:55 +01:00
a116681982
app: move all GimpGroupLayer members to a private struct
2011-02-03 22:30:22 +01:00
f8e8952147
app: clean up dynamics duplicate implementation
2011-02-03 19:47:52 +01:00
93f63335dc
app: End core/gimpdynamics.c with newline
...
Fix compiler warning.
2011-02-03 08:04:26 +01:00
366cddc856
app: gimp_image_get/set_imported/exported/save_a_copy_uri()
...
Add more proper core API for GimpImage URI management.
2011-02-02 22:28:46 +01:00
d449317501
app: Add and use gimp_image_get_string_untitled()
2011-02-02 22:28:46 +01:00
60a77f6db2
app: Fix and enable duplicate for dynamics
2011-02-02 21:48:10 +02:00
6a08376d49
app: add new virtual function GimpItem::unset_removed()
...
and implement it in GimpLayer to unset the removed flag on the layer
mask. Remove layer mask special casing from gimp_image_add_layer().
Make sure that all an item's children get their removed flag unset in
gimp_item_unset_removed().
2011-02-02 19:42:29 +01:00
418632916a
app: Fix outline offset
2011-02-02 00:58:09 +02:00
6a89db0f53
app: Minor aspect ratio fixes
2011-02-02 00:33:08 +02:00
eacd80446d
app: finally get rid of gimp_item_configure() and drawable_configure()
...
and turn them into gimp_item_new() and gimp_drawable_new()
2011-02-01 12:47:24 +01:00
ccd3beb8ff
app: don't use gimp_drawable_configure() in gimp_drawable_duplicate()
...
Instead, copy over the needed drawable members manually.
2011-02-01 10:46:53 +01:00