<feed xmlns='http://www.w3.org/2005/Atom'>
<title>wireguard-windows/textedit.go, branch pkg/walk</title>
<subtitle>WireGuard client for Windows</subtitle>
<id>https://git.zx2c4.com/wireguard-windows/atom/textedit.go?h=pkg%2Fwalk</id>
<link rel='self' href='https://git.zx2c4.com/wireguard-windows/atom/textedit.go?h=pkg%2Fwalk'/>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/'/>
<updated>2019-10-31T16:59:57Z</updated>
<entry>
<title>TextEdit: Fix height when empty in compact height mode</title>
<updated>2019-10-31T16:59:57Z</updated>
<author>
<name>Alexander Neumann</name>
<email>alexander.neumann@picos-software.com</email>
</author>
<published>2019-10-31T16:59:57Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=7370661788f6e954d749d664908a26293a3d952d'/>
<id>urn:sha1:7370661788f6e954d749d664908a26293a3d952d</id>
<content type='text'>
</content>
</entry>
<entry>
<title>DPI: Merge `SizeDBU` to `Size`</title>
<updated>2019-09-27T04:04:27Z</updated>
<author>
<name>Simon Rozman</name>
<email>simon@rozman.si</email>
</author>
<published>2019-09-26T15:46:03Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=d1eeb2d1093f43a730c06638372fa4e941c39c07'/>
<id>urn:sha1:d1eeb2d1093f43a730c06638372fa4e941c39c07</id>
<content type='text'>
Signed-off-by: Simon Rozman &lt;simon@rozman.si&gt;
</content>
</entry>
<entry>
<title>DPI: Merge `SizePixels` to `Size`</title>
<updated>2019-09-27T04:04:27Z</updated>
<author>
<name>Simon Rozman</name>
<email>simon@rozman.si</email>
</author>
<published>2019-09-26T15:03:35Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=0ec9379940b88ba5f5ca9b2a04b5542896e6ced9'/>
<id>urn:sha1:0ec9379940b88ba5f5ca9b2a04b5542896e6ced9</id>
<content type='text'>
Signed-off-by: Simon Rozman &lt;simon@rozman.si&gt;
</content>
</entry>
<entry>
<title>DPI: Merge `PointPixels` to `Point`</title>
<updated>2019-09-27T04:03:29Z</updated>
<author>
<name>Simon Rozman</name>
<email>simon@rozman.si</email>
</author>
<published>2019-09-26T13:08:39Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=ad75c68687dd994ef1d999fa65d814e1401419a7'/>
<id>urn:sha1:ad75c68687dd994ef1d999fa65d814e1401419a7</id>
<content type='text'>
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: 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>Limit context menu to popup within client bounds</title>
<updated>2019-09-12T11:41:34Z</updated>
<author>
<name>Simon Rozman</name>
<email>simon@rozman.si</email>
</author>
<published>2019-09-10T16:02:24Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=b356303fbcc6a602e1de075581ad07ed5cf10598'/>
<id>urn:sha1:b356303fbcc6a602e1de075581ad07ed5cf10598</id>
<content type='text'>
With a combination of keyboard and mouse, the selection in the table
view or text edit can be moved outside of visible range. Hitting
Shift+F10 would popup the context menu at off-client location.

Signed-off-by: Simon Rozman &lt;simon@rozman.si&gt;
</content>
</entry>
<entry>
<title>Provide reasonable context menu location when invoked by keyboard</title>
<updated>2019-09-12T11:41:16Z</updated>
<author>
<name>Simon Rozman</name>
<email>simon@rozman.si</email>
</author>
<published>2019-09-10T14:32:38Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=aabb87836bc2175f697c2c8b8ac1746712fad514'/>
<id>urn:sha1:aabb87836bc2175f697c2c8b8ac1746712fad514</id>
<content type='text'>
When user invokes context menu using keyboard (Shift+F10), the (X, Y)
of the WM_CONTEXTMENU message are (-1, -1). Stock controls use their
center to popup the context menu so should we. However, some controls
may provide better location than this.

Signed-off-by: Simon Rozman &lt;simon@rozman.si&gt;
</content>
</entry>
<entry>
<title>global: don't do things in global init()</title>
<updated>2019-09-04T17:39:18Z</updated>
<author>
<name>Jason A. Donenfeld</name>
<email>Jason@zx2c4.com</email>
</author>
<published>2019-09-04T16:04:37Z</published>
<link rel='alternate' type='text/html' href='https://git.zx2c4.com/wireguard-windows/commit/?id=a40f17f747e02b0ae97ea21e5e1f2dde1941970f'/>
<id>urn:sha1:a40f17f747e02b0ae97ea21e5e1f2dde1941970f</id>
<content type='text'>
</content>
</entry>
</feed>
