<feed xmlns='http://www.w3.org/2005/Atom'>
<title>wireguard-windows/tableviewcolumn.go, branch pkg/walk</title>
<subtitle>WireGuard client for Windows</subtitle>
<id>https://git.zx2c4.com/wireguard-windows/atom/tableviewcolumn.go?h=pkg%2Fwalk</id>
<link rel='self' href='https://git.zx2c4.com/wireguard-windows/atom/tableviewcolumn.go?h=pkg%2Fwalk'/>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/'/>
<updated>2020-09-10T15:57:22Z</updated>
<entry>
<title>TableView: Fix some issues with frozen columns</title>
<updated>2020-09-10T15:57:22Z</updated>
<author>
<name>Alexander Neumann</name>
<email>alexander.neumann@picos-software.com</email>
</author>
<published>2020-09-10T15:57:22Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=93a51284d89f667b1e8f5d0b2d54f1d36b71c11d'/>
<id>urn:sha1:93a51284d89f667b1e8f5d0b2d54f1d36b71c11d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>TableView: Fix StretchLastColumn regressions (again)</title>
<updated>2019-10-30T16:13:25Z</updated>
<author>
<name>Alexander Neumann</name>
<email>alexander.neumann@picos-software.com</email>
</author>
<published>2019-10-30T16:13:25Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=fe1f796e41463b10c3d7fde01803b828175a46d0'/>
<id>urn:sha1:fe1f796e41463b10c3d7fde01803b828175a46d0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>DPI: Cleanup</title>
<updated>2019-09-27T04:04:28Z</updated>
<author>
<name>Simon Rozman</name>
<email>simon@rozman.si</email>
</author>
<published>2019-09-26T15:44:50Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=90d3c84d57b80d1c0d60181ff214740b27fa5a09'/>
<id>urn:sha1:90d3c84d57b80d1c0d60181ff214740b27fa5a09</id>
<content type='text'>
...to reduce unnecessary diffs from master.

Signed-off-by: Simon Rozman &lt;simon@rozman.si&gt;
</content>
</entry>
<entry>
<title>DPI: Merge `Pixel` to `int`</title>
<updated>2019-09-27T04:03:29Z</updated>
<author>
<name>Simon Rozman</name>
<email>simon@rozman.si</email>
</author>
<published>2019-09-26T12:51:43Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=4c4172622d695902e87089c54e14149d84849622'/>
<id>urn:sha1:4c4172622d695902e87089c54e14149d84849622</id>
<content type='text'>
Signed-off-by: Simon Rozman &lt;simon@rozman.si&gt;
</content>
</entry>
<entry>
<title>DPI: Assume variable screen DPI and revise 96dpi functions</title>
<updated>2019-09-26T11:55:00Z</updated>
<author>
<name>Simon Rozman</name>
<email>simon@rozman.si</email>
</author>
<published>2019-09-24T14:15:42Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=fe8df189c787a17cf5eb3c63f2c7d8cbec6a6b49'/>
<id>urn:sha1:fe8df189c787a17cf5eb3c63f2c7d8cbec6a6b49</id>
<content type='text'>
Signed-off-by: Simon Rozman &lt;simon@rozman.si&gt;
</content>
</entry>
<entry>
<title>DPI: Reorganize metrics structs to approach client compatibility</title>
<updated>2019-09-26T11:54:55Z</updated>
<author>
<name>Simon Rozman</name>
<email>simon@rozman.si</email>
</author>
<published>2019-09-24T11:24:42Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=62890e1cdb23c0d34c6064894d7d4e57791fec3a'/>
<id>urn:sha1:62890e1cdb23c0d34c6064894d7d4e57791fec3a</id>
<content type='text'>
- Pixel96DPI =&gt; int
- Point =&gt; PointPixels, Point96DPI =&gt; Point
- Margins =&gt; MarginsPixels, Margins96DPI =&gt; Margins
- Size =&gt; SizePixels, Size96DPI =&gt; Size
- Rectangle =&gt; RectanglePixels, Rectangle96DPI =&gt; Rectangle

Signed-off-by: Simon Rozman &lt;simon@rozman.si&gt;
</content>
</entry>
<entry>
<title>DPI: Revise 1/96" to/from native pixel conversions</title>
<updated>2019-09-26T10:15:21Z</updated>
<author>
<name>Simon Rozman</name>
<email>simon@rozman.si</email>
</author>
<published>2019-09-24T08:54:57Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=20effb663413da0f771c6d2e81147ab3eec4d09e'/>
<id>urn:sha1:20effb663413da0f771c6d2e81147ab3eec4d09e</id>
<content type='text'>
The metric types have been (temporarily) replaced by typed int. Pixels
have been split to `type Pixel96DPI int` and `type Pixel int`. The
former represents 1/96" pixels, the later represents native pixels.

By switching to separate sets of metric types Go errored everywhere
where DPI conversion was missing or was excessive.

All incompatibilities were revised - some were fixed, others were marked
by "TODO" to get fixed in future commits.

Furthermore, Canvas was extended to provide `...Pixels` method variants.

Signed-off-by: Simon Rozman &lt;simon@rozman.si&gt;
</content>
</entry>
<entry>
<title>tableviewcolumn: do DPI conversion in create() too</title>
<updated>2019-05-07T20:18:49Z</updated>
<author>
<name>Jason A. Donenfeld</name>
<email>Jason@zx2c4.com</email>
</author>
<published>2019-05-07T19:52:58Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=f3d231d34cd4bde4f2bc8841a8a08028c714ba3a'/>
<id>urn:sha1:f3d231d34cd4bde4f2bc8841a8a08028c714ba3a</id>
<content type='text'>
You remembered the update()-&gt;getLVCOLUMN() path, but forgot about the
create() path, so this fixes that oversight.
</content>
</entry>
<entry>
<title>More work on multi monitor HIDPI</title>
<updated>2019-05-07T09:55:35Z</updated>
<author>
<name>Alexander Neumann</name>
<email>alexander.neumann@picos-software.com</email>
</author>
<published>2019-05-07T09:55:35Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=c5be165f31cdc19dceb1ad0729a8d9d4a46ae073'/>
<id>urn:sha1:c5be165f31cdc19dceb1ad0729a8d9d4a46ae073</id>
<content type='text'>
</content>
</entry>
<entry>
<title>TableView: Add support for custom column formatting functions</title>
<updated>2019-02-25T15:04:11Z</updated>
<author>
<name>Alexander Neumann</name>
<email>alexander.neumann@picos-software.com</email>
</author>
<published>2019-02-25T15:04:11Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=42e908c801230a12dc8c99894afee20374187984'/>
<id>urn:sha1:42e908c801230a12dc8c99894afee20374187984</id>
<content type='text'>
</content>
</entry>
</feed>
