<feed xmlns='http://www.w3.org/2005/Atom'>
<title>subsurface.git/qt-mobile/theme, branch master</title>
<subtitle>forked from https://github.com/subsurface/subsurface</subtitle>
<id>https://git.tsegers.com/subsurface.git/atom?h=master</id>
<link rel='self' href='https://git.tsegers.com/subsurface.git/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/'/>
<updated>2015-11-07T17:00:59Z</updated>
<entry>
<title>organize qml files in subdirectories</title>
<updated>2015-11-07T17:00:59Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-11-06T23:39:06Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=aae4a326f4738be368088f0d0f7a91d75b02a9ad'/>
<id>urn:sha1:aae4a326f4738be368088f0d0f7a91d75b02a9ad</id>
<content type='text'>
This makes the organization of the qml files a bit more fine-grained, it
prevents mixing of .cpp and QML files, and also of what's compiled, and
what's included in the app as qrc data.

In particular:
- subsurface specific QML items go into the qml/ subdirectory
- theme and unit definitions to into qml/theme subdirectory (they
  already were located in a theme directory)
- generic components, such as our Label goes into qml/components

This facilitates sharing of functionality and identifying common stuff
better. Ideally, we can pull qml/theme and qml/components from a
standardized set at some point, so we don't have to maintain that code.

Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Theme tweaks</title>
<updated>2015-11-06T22:05:45Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-11-06T21:53:26Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=6d3a5e6bd4e0c449eca65fa832752452cc2b92f5'/>
<id>urn:sha1:6d3a5e6bd4e0c449eca65fa832752452cc2b92f5</id>
<content type='text'>
- gridUnits is dynamic again, using FontMetrics now
- Add a page to display some sizing-relevant details, so we can debug
  dpi problems a bit better on Android

Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Add some compatibility extensions to theme and unit</title>
<updated>2015-11-06T22:04:36Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-11-06T21:52:04Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=74586d792230447384967fe1765e2ed562281e8a'/>
<id>urn:sha1:74586d792230447384967fe1765e2ed562281e8a</id>
<content type='text'>
- This allows us to use these new things without changing much in our
  own code, things now work again.

Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>Add qmldir file</title>
<updated>2015-11-06T22:04:32Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-11-06T21:51:23Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=cbb8866b089d3366611d2fff68da892e0ed8be20'/>
<id>urn:sha1:cbb8866b089d3366611d2fff68da892e0ed8be20</id>
<content type='text'>
This will be needed at some point, so better put it in the right place
already, so we don't forget enabling the singleton usage once we've
fleshed out how that could work exactly.

Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>some changes from the upstream wip-branch</title>
<updated>2015-11-06T22:04:21Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-11-06T21:50:52Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=5fb054a17c74fe4aed950e4173aa05f43f0355cf'/>
<id>urn:sha1:5fb054a17c74fe4aed950e4173aa05f43f0355cf</id>
<content type='text'>
- remove the singleton usage, this will need a bit more magic in the
  background. Not a huge problem since we're only using one instance
  anyway, and the object itself is rather light
- hardcode gridUnit for now. I'd like to use TextMetrics or FontMetrics
  there directly, but I'm not sure we can depend on Qt 5.4 and QtQuick
  2.5.

Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>more complete implementation of Plasma's Units</title>
<updated>2015-11-06T21:50:01Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-11-06T21:49:02Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=c8227e200dbc6cfa45a13c5805c740bc7324bde2'/>
<id>urn:sha1:c8227e200dbc6cfa45a13c5805c740bc7324bde2</id>
<content type='text'>
This is a currently work-in-progress attempt at making a minimal set of
Plasma components available.

The code needs a bunch of adjustments yet, which I'm making in tune with
upstream. The idea is to create a standardized sub-set of Plasma's QML
API for applications, which brings only minimal new dependencies (for
now: none).

Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>QML-UI: gridUnit is now dpi-corrected</title>
<updated>2015-10-09T19:51:54Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-10-09T03:04:44Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=ac6b267d404f3d3675312b868a74f00c18bab3b2'/>
<id>urn:sha1:ac6b267d404f3d3675312b868a74f00c18bab3b2</id>
<content type='text'>
Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>QML-UI: add more properties to Units and Theme</title>
<updated>2015-10-09T19:51:42Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-10-09T00:45:22Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=77fa4e37c852d29b12cd46b00497cdfc0ab0f344'/>
<id>urn:sha1:77fa4e37c852d29b12cd46b00497cdfc0ab0f344</id>
<content type='text'>
- colors for accentuation (background and text)
- text color to paint on highlights
- units.spacing (derived from gridUnit, so it's dpi-corrected)
- port main.qml, especially the application header to this theming and
  sizing

Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
<entry>
<title>QML-UI: basics for theming and hi-dpi support</title>
<updated>2015-10-09T19:51:36Z</updated>
<author>
<name>Sebastian Kügler</name>
<email>sebas@kde.org</email>
</author>
<published>2015-10-08T23:57:10Z</published>
<link rel='alternate' type='text/html' href='https://git.tsegers.com/subsurface.git/commit/?id=431b5e07fe6eaa1383b86a5ab16953897f642ebf'/>
<id>urn:sha1:431b5e07fe6eaa1383b86a5ab16953897f642ebf</id>
<content type='text'>
- Theme: For theming, we're just defining some colors centrally for now
- Units: This object provides dpi-corrected sizing in the form of
  gridUnit. The idea is to base gridUnit on the rendered font size, so
  the ui scales with text size. As this interpolates font size and dpi,
  the sizing is rather responsive.

These are the basics, now we can kill lots of hardcoded pixel values.

Signed-off-by: Sebastian Kügler &lt;sebas@kde.org&gt;
Signed-off-by: Dirk Hohndel &lt;dirk@hohndel.org&gt;
</content>
</entry>
</feed>
