Should we remove underlines for all links?

Should we remove underlines for all links?

Yes
4
80%
No
1
20%
 
Total votes: 5

Ivan Denisov
Posts: 1700
Joined: Tue Sep 17, 2013 12:21 am
Location: Russia

Should we remove underlines for all links?

Post by Ivan Denisov »

Modern design style not using underline for links, so Helmut is suggesting to remove underlines from BlackBox links.

Do you agree with him, should we make BlackBox lead the modern interface design trends?

Also we can make links underlined after cursor pointed to link text.
Zinn
Posts: 476
Joined: Tue Mar 25, 2014 5:56 pm
Location: Frankfurt am Main
Contact:

Re: Should we remove underlines for all links?

Post by Zinn »

I have click on the wrong button. Why can't I correct it?
- Helmut
Ivan Denisov
Posts: 1700
Joined: Tue Sep 17, 2013 12:21 am
Location: Russia

Re: Should we remove underlines for all links?

Post by Ivan Denisov »

Zinn wrote:I have click on the wrong button. Why can't I correct it?
I forgot to enable this checkbox when creating the poll. Now fixed. Sorry for inconvenience.
User avatar
Robert
Posts: 1024
Joined: Sat Sep 28, 2013 11:04 am
Location: Edinburgh, Scotland

Re: Should we remove underlines for all links?

Post by Robert »

I have millions of links in my private sets of Documents & Maps.

There must be thousands in the framework set (eg Dev\Docu\Selectors).

To keep a consistent look we must update them all at once.

Does someone have a tool which will do this automatically?

Even if we run this tool, how do we update the Redmine / GitHub tools consistently?

Robert
User avatar
Robert
Posts: 1024
Joined: Sat Sep 28, 2013 11:04 am
Location: Edinburgh, Scotland

Re: Should we remove underlines for all links?

Post by Robert »

Ivan Denisov wrote:Also we can make links underlined after cursor pointed to link text.
Don you mean this as a question "Can we ... ?", or as an answer?

How does this statement affect the question we are asked to vote on?

I can imagine a separate vote: "We can easily and efficiently make links, and the cursor shape, respond to the cursor position - details to be provided. Do we choose to implement this behaviour?".
Ivan Denisov
Posts: 1700
Joined: Tue Sep 17, 2013 12:21 am
Location: Russia

Re: Should we remove underlines for all links?

Post by Ivan Denisov »

This procedure is removing all underline style in links of open document.

Code: Select all

MODULE ToolsLinks;

	IMPORT TextMappers, TextModels, TextControllers, Fonts, StdLinks;

	PROCEDURE RemoveUnderline*;
	VAR c: TextControllers.Controller; beg: INTEGER; ch: CHAR;
		s: TextMappers.Scanner;
		atr, new: TextModels.Attributes;
		rd: TextModels.Reader;
		left: BOOLEAN;
	BEGIN
		c := TextControllers.Focus();
		IF c # NIL THEN
			rd := c.text.NewReader(NIL);
			s.ConnectTo(c.text);
			s.SetOpts({TextMappers.returnViews});
			s.SetPos(0);
			s.Scan;
			left := FALSE;
			WHILE s.type # TextMappers.eot DO
				IF s.type = TextMappers.view THEN
					IF s.view IS StdLinks.Link THEN
						IF s.view(StdLinks.Link).leftSide THEN
							beg := s.start + 1;
							rd.SetPos(s.start + 1);
							rd.ReadChar(ch);
							atr := rd.attr;
							new := TextModels.NewStyle(atr, atr.font.style - {Fonts.underline});
							left := TRUE
						ELSIF left THEN
							c.text.SetAttr(beg, s.start, new);
							left := FALSE
						END
					END
				END;
				s.Scan
			END
		END
	END RemoveUnderline;

END ToolsLinks.
Ivan Denisov
Posts: 1700
Joined: Tue Sep 17, 2013 12:21 am
Location: Russia

Re: Should we remove underlines for all links?

Post by Ivan Denisov »

Robert wrote:How does this statement affect the question we are asked to vote on?
This poll is not voting, but some discussion. So this is only my view, how I see the alternative.
User avatar
DGDanforth
Posts: 1061
Joined: Tue Sep 17, 2013 1:16 am
Location: Palo Alto, California, USA
Contact:

Re: Should we remove underlines for all links?

Post by DGDanforth »

So are we assuming that links are distinguished only by their color?

I installed ToolsLinks on my machine and applied RemoveUnderline to one of my tools.
Works as advertised.
Looks different (of course).
Not sure I like it (yet).
-Doug
User avatar
DGDanforth
Posts: 1061
Joined: Tue Sep 17, 2013 1:16 am
Location: Palo Alto, California, USA
Contact:

Re: Should we remove underlines for all links?

Post by DGDanforth »

Modern design style not using underline for links
Do you have any documentation to support that claim?

-Doug
Ivan Denisov
Posts: 1700
Joined: Tue Sep 17, 2013 12:21 am
Location: Russia

Re: Should we remove underlines for all links?

Post by Ivan Denisov »

DGDanforth wrote:
Modern design style not using underline for links
Do you have any documentation to support that claim?
http://www.theverge.com/2014/3/13/55038 ... e-redesign

Websites without underline for links:
http://blackboxframework.org/
http://wikipedia.org/
http://google.com/
http://github.com/
http://theguardian.com/
http://stackoverflow.com/
http://microsoft.com/
http://ubuntu.com/
...
Post Reply