IndigoDevelopment

From Scribus Wiki
Jump to navigation Jump to search

A starting page to represent development work to implement Indigo UI and related development. This code is destined for Scribus 1.7.x or higher.

General Notes
Status Description
🟩 Implemented in 1.7.0 SVN
🟨 Under Development
🟥 Not started
🟦 Idea / Candidate

Implementations

SVG based Icon System

Implementation Status: 🟩

Scribus 1.7.0 icons set
Scribus 1.7.0 icons set

SVG-based icons have the advantage that they can always be rendered crispy clear regardless of the screen resolution. It is also possible to manipulate areas of the SVG file programmatically during runtime or to apply a global color scheme by incorporating CSS styles.

In combination with a newly designed icon set, the icon set file has also been expanded to include a mapping, which also allows additional options for color manipulation without having to recompile Scribus or edit the individual icons. Graphical elements in SVG files that do not have an inline color definition are overwritten in Scribus with the current UI text color. Optionally, this "override color" can also be defined in the iconset file for dark and light user interfaces.

<?xml version="1.0" encoding="utf8"?>
<iconset>
	<author>Scribus</author>
	<license>Apache 2.0</license>
	<path default="yes">indigo</path>
	<activeversion>1.7.0</activeversion>
	<nametext lang="en_US">Scribus 1.7.0</nametext>
	<nametext lang="fr">Scribus 1.7.0</nametext>
	<nametext lang="de_DE">Scribus 1.7.0</nametext>
	<icons>
		<icon id="setting" file="tune.svg" />
		<icon onLight="#77a036" onDark="#d5f5a3" id="tool-calligraphy" file="tools/brush.svg" />
		<icon id="testPNG" file="test/cmyk.png" />
	</icons>
</iconset>

Advanced Docking System

Implementation Status: 🟩

A new essential part of the Indigo UI is the expanded docking system. This makes it possible to dock several panels next to each other, within the program interface or as floating windows.

Advanced Docking System (1.7.0)

Frame Properties Panel

X,Y,Z - Section

Implementation Status: 🟨

The XZY Panel has a new Base Point Widget. For normal frame objects, 9 anchor points are displayed; for line objects, the widget switches to a 3 anchor point mode. In addition, the widget rotates with the rotation angle of the document object.

XYZ Section (1.7.0)

When a line item is selected, the XYZ panel switches to a contextual mode.

XYZ Section - Line Mode (1.7.0) XYZ Section - Line Mode 2 (1.7.0)

Drop Shadow - Section

Implementation Status: 🟨

Drop Shadow Section (1.7.0)

Shape - Section

Implementation Status: 🟨

Shape Section (1.7.0)

Fill - Section

Implementation Status: 🟨

A new fill section has been added to replace Color & Transparency section.

Fill Section (1.7.0)

Line - Section

Implementation Status: 🟨

Start and end arrow has been renamed to marker. The new Marker widget has a new button to swap the marker position. In case a line style is selected, all input options are hidden that can't change.

Line Section (1.7.0) Line Section (1.7.0) Style Line Marker Selector (1.7.0)

UI Properties

Implementation Status: 🟨

A new setting "Hide Informational Labels" hides or displays additional labels that may not be relevant to users or those with a small screen size.

UI Professional Mode (1.7.0)

UI Labels

Arrange Page Panel

Document Pages - Section

Implementation Status: 🟩

The area of document pages in the Arrange Page Panel has been expanded with a toolbar in order to be able to carry out relevant actions more quickly, such as inserting, moving, copying and importing pages. In addition, the document pages are now displayed in small thumbnails, which can be displayed in three different sizes by right-clicking.

Arrange Page Preview (1.7.0)

Ideas

New Master Page Concept

Implementation Status: 🟦

This master page concept follows the approach of a page layout with editable content on the document page. Elements such as text frames or image frames can be defined as "editable" in the master page. All other elements on the master page cannot be changed on the document page.

Editable page elements have a very limited ability to edit. Frame properties such as fill color, stroke properties, position, transformation, etc. can only be adjusted in the master page. Content properties such as font size, font color, image effects can also only be edited in the master page.

Master Page 1.7.0