After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 631934 - Interaction between Old text parameters and new region specific text attributes
Interaction between Old text parameters and new region specific text attributes
Status: RESOLVED OBSOLETE
Product: GIMP
Classification: Other
Component: Tools
git master
Other All
: Normal normal
: 2.8
Assigned To: GIMP Bugs
GIMP Bugs
: 688002 689729 697426 704309 732967 753711 760339 (view as bug list)
Depends on:
Blocks: 778819
 
 
Reported: 2010-10-11 23:58 UTC by LightningIsMyName
Modified: 2018-05-24 12:52 UTC
See Also:
GNOME target: ---
GNOME version: ---


Attachments
Possible text interface indicator treatment for 631934 (52.35 KB, image/png)
2016-01-10 21:07 UTC, Dr Doug
  Details
quick hack (827 bytes, patch)
2016-05-19 11:41 UTC, Massimo
none Details | Review

Description LightningIsMyName 2010-10-11 23:58:29 UTC
Since we now have a much more advanced text editor than the one present in 2.6, setting the font size, the text color and some more paramters globally using the tool-options dialog is not really good since these do not appear inside the on-canvas editor.

We should make it clear that these are "Default values" which will be overridden by the on-canvas editor, and we should make them appear in the on canvas editor by adding tags around the entire text that specify these. Then, any editing of the text would create inner tags, that will overrid the outer ones if necessary.

Detailed Example (ignoring all the properties except for color): The default color is black, and the text is "Hello World".

At the begining, the inner markup  will be
<markup>Hello World</markup>
And the actual rendered markup will be
<markup><span foreground="#000000">Hello World</span></markup>

And the user now selects a part of the text using the on-canvas editor and makes it green. The inner markup will be:
<markup>He<span foreground="#00ff00">ll</span>o World</markup>
And the actual rendered markup will be
<markup><span foreground="#000000">He<span foreground="#00ff00">ll</span>o World</span></markup>

Now, the user can change the "default" color to red, and then all the parts except for the one that was green'ed will become red - since the inner markup won't change but the outter markup will be:
<markup><span foreground="#ff0000">He<span foreground="#00ff00">ll</span>o World</span></markup>

Now, when reseting the style using the clear button on the on-canvas editor, the inner markup will be cleared, and so we'll see only the outer markup generated by the default values.

Now, why go through this complex way? Why not get rid of the old global/default parameters? The answer is backward compatiability - this way we allow all plug-ins that created and manipulated text, to continue to work. Since, if a layer has no markup (that was the state when the old plug-ins were written) then only the outter markup affect the text, and it will affect all of it. So we change the existing functions to operate on the default markup, and introduce new functions to manipulate regions of the text.

Also, currently the rendering of the text inside gimp is done by setting the values from the tool options dialog (the default values) explicitly, and then by setting a markup on top of it. There are some issues with setting a markup after setting some other attributes explicitly - for example when setting the markup after, it will change all the unmarked areas to black and it will ignore the "default" color specified in the tool-options dialog.
However, if we set everything using markup then we won't have such bugs, and the current style will appear inside the editors (the editors use a gtktextbuffer which is styled in synchrnization with the markup). Right now, placing your cursor inside unstyled text won't show any attribute value (such as size) even if this was already set in the tool-options dialog.

See also Bug 625273 regarding fixing the differences between the on-canvas editor and the dialog editor.
Comment 1 Martin Nordholts 2010-10-12 05:20:54 UTC
It would be good to get guiguru's input on this too (maybe you already talked to him?)
Comment 2 Michael Natterer 2010-10-29 02:48:35 UTC
Fixed the actual bug here. The fate of the GUI around these GimpText
options is still open.

commit dcdc09872dcdec71c24b8204bfa9ff41238eefb8
Author: Michael Natterer <mitch@gimp.org>
Date:   Fri Oct 29 04:45:12 2010 +0200

    Bug 631934 - Interaction between Old text parameters and new region specific text attributes
    
    This patch inserts GimpText's property values as attributes into the
    rendered markup and work transparently for both the tool options and
    the text PDB API.

 app/text/gimptextlayout.c |  129 ++++++++++++++++++++++++++++++++++----------
 1 files changed, 99 insertions(+), 30 deletions(-)
Comment 3 Martin Nordholts 2011-03-14 07:46:09 UTC
We desperately need to get 2.8 out, let's look at this for 2.10 instead. In fact, what is the problem right now, in one sentence? The original description has too much text for me to read right now :/
Comment 4 Michael Natterer 2011-03-14 10:26:29 UTC
The core is 100% fixed (all legacy options are embedded in the markup now),
the only thing left is cleaning up the GUI.

I'm moving it back to 2.8, because there are a few minor glitches
in the text UI I need to sort out. We can moive it back to 2.10
if it doesn't happen.
Comment 5 Michael Natterer 2011-03-18 08:41:10 UTC
Err, I take that back. There is still work to do in this area,
like it's totally unclear which unit the text style overlay's
size spinbutton is using. Will fix that too.
Comment 6 Michael Natterer 2012-11-09 21:20:27 UTC
*** Bug 688002 has been marked as a duplicate of this bug. ***
Comment 7 Salvatore De Paolis 2012-11-09 21:46:31 UTC
When just a text layer is selected and the tool is enabled, we see properties (thought not all of them) in the text toolbox. If you just want to quickly change a property, like color or size, it is not enough to set it from the text toolbox but you have to edit the text, select whole the text and apply a color from the on-canvas editor.
Most of the time it also works from the text toolbox, without selection, but sometimes I've noticed it doesn't.

Being able to change properties without editing the text can be really helpful especially when you have overlapped layers and it's quite easier to select from the layer's list, apply the tool and tweak it with the toolbox options.

What are in details the limitations to achieve such functionalities?

Thank you
Comment 8 Michael Natterer 2012-11-09 22:28:47 UTC
You can only ever change the default properties of the text in the
tool options, once you edit the text in the floating style editor,
it's set on a text span and overrides the default options. You can
select all and then clear the text style to reset to default.
Comment 9 Salvatore De Paolis 2012-11-09 22:43:13 UTC
Is there a keyboard shortcut to edit the text in the editor?
Comment 10 Michael Natterer 2012-11-10 08:43:21 UTC
In the on-canvas editor? No there are no shortcuts to activate tools,
you have to click. In comment 8 I was only describing the current state,
not how it should be.
Comment 11 Salvatore De Paolis 2012-11-10 12:18:24 UTC
I meant in general. I'd like to select the layer than have a shortcut to enter in edit mode for the text. Right now I've seen it works with the click on the canvas or double click on the layer.
Comment 12 Michael Natterer 2012-12-05 20:11:41 UTC
*** Bug 689729 has been marked as a duplicate of this bug. ***
Comment 13 Michael Schumacher 2013-04-06 17:52:46 UTC
*** Bug 697426 has been marked as a duplicate of this bug. ***
Comment 14 Moltres_rider 2013-04-06 18:01:29 UTC
2010??!! really??? and this bug HASN'T been fixed yet??? Gimp devs must not care too much about bugs in Gimp!! I think this is AT LEAST the 4th bug I reported that seems to be a duplicated of a pre 2011 bug!! MOST software developers fix bugs right away but you guys let them sit!!
Comment 15 André Klapper 2013-04-06 19:34:13 UTC
Moltres_rider: Feel free to fix all the 716 open bug reports in the next days by providing software patches, or 50 volunteer coders. If you cannot, please refrain from adding such untechnical comments in Bugzilla that are unrelated to this specific bug report. Bugzilla is not a webforum.
Comment 16 Øyvind Kolås (pippin) 2013-04-06 20:08:59 UTC
Moltres_rider: by participating in bugzilla; you have already elevated yourself from being a free-riding user of GIMP to a contributor (note that it is possible to have negative contributions..). You are already among the people you are criticizing; what probably deserves more criticism is wasting peoples time. Like filing bugs without checking if they already exist, or expressing entitlement over how volunteer contributors are spending their time.
Comment 17 Michael Natterer 2013-04-10 00:18:24 UTC
*** Bug 697426 has been marked as a duplicate of this bug. ***
Comment 18 Michael Natterer 2013-07-16 11:06:42 UTC
*** Bug 704309 has been marked as a duplicate of this bug. ***
Comment 19 Michael Natterer 2013-12-17 18:02:41 UTC
*** Bug 720492 has been marked as a duplicate of this bug. ***
Comment 20 Michael Schumacher 2014-07-10 12:51:49 UTC
*** Bug 732967 has been marked as a duplicate of this bug. ***
Comment 21 Michael Natterer 2015-08-24 22:36:57 UTC
*** Bug 753711 has been marked as a duplicate of this bug. ***
Comment 22 Michael Schumacher 2015-11-19 21:20:48 UTC
This doesn't look like something we're going to fix for 2.8 anymore, does it?
Comment 23 Michael Schumacher 2016-01-09 11:55:30 UTC
*** Bug 760339 has been marked as a duplicate of this bug. ***
Comment 24 Dr Doug 2016-01-10 21:03:07 UTC
I reported bug 760339, which is now marked DUPLICATE--it's okay, I get it. 

I next read through the historical details of 631934--its parent bug report. 

I'm attaching a png (Hello-world-text-interface-button-suggestion.png) suggesting a GUI addition to educate users, and to highlight, and clarify many of the competing issues. If the attachment doesn't show up, it's because I don't understand bugzilla's bug reporting interface. It still needs to be viewed. If it's not visible, help me post it, please. 

It's complicated, I know. 

Also, can instructions be added to GIMP HELP explaining how the GUI actually is designed to work between Tool Defaults? That would help both A) the users as well as B) accommodate the devs who are doing the right thing, but of which the users don't have a clue.
Comment 25 Dr Doug 2016-01-10 21:07:07 UTC
Created attachment 318681 [details]
Possible text interface indicator treatment for 631934

Clicking at the four points in a text block, see how the radio buttons indicate whether a user is modifying A) the default block settings, or B) the text settings established in a previously existing block. 

This would educate the user AND explain how the text blocks hidden assumptions add up to its functioning in real time.
Comment 26 Massimo 2016-05-19 11:41:28 UTC
Created attachment 328181 [details] [review]
quick hack

What aboout making the text style editor overlay
visible only when there is a selection?

I've just watched a screen cast where a user
showed its difficulty understanding that the style
editor works on the selected text. So why not hiding
it until the user select something.

Attached a silly quick hack to experiment a bit.
Comment 27 Michael Schumacher 2016-05-20 08:05:23 UTC
Except that we actually want more on-canvas controls and less tool options.
Comment 28 GNOME Infrastructure Team 2018-05-24 12:52:11 UTC
-- GitLab Migration Automatic Message --

This bug has been migrated to GNOME's GitLab instance and has been closed from further activity.

You can subscribe and participate further through the new bug through this link to our GitLab instance: https://gitlab.gnome.org/GNOME/gimp/issues/344.