Skip to content

Commit

Permalink
refine module support
Browse files Browse the repository at this point in the history
  • Loading branch information
therecipe committed Dec 18, 2018
1 parent 8610850 commit 179fefb
Show file tree
Hide file tree
Showing 11 changed files with 136 additions and 48 deletions.
21 changes: 11 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,29 +5,30 @@ Introduction

[Go](https://en.wikipedia.org/wiki/Go_(programming_language)) (often referred to as golang) is a programming language created at Google.

This package allows you to write Qt applications entirely in Go.
This package allows you to write Qt applications entirely in Go and makes deploying them later very easy.

[Gallery](https://github.com/therecipe/qt/wiki/Gallery) of applications making use of this package.

[WebAssembly Demo](https://therecipe.github.io/widgets_playground) | *[repo](https://github.com/therecipe/widgets_playground)*

Status
------

**WIP**

Most Qt functions are accessible from Go.
Almost all Qt functions and classes are accessible from Go and you should be able to find everything you need to build fully featured applications.

The package should already contain everything you need to build fully featured applications, the webengine/webview packages don't work on Windows though.

Please pin the repo to a commit that is known to work for you, because there have been no releases so far.
(A special exception are the WebEngine/WebView packages, these aren't available for Windows yet.)

Resources
---------

- [Wiki](https://github.com/therecipe/qt/wiki)
- [FAQ](https://github.com/therecipe/qt/wiki/FAQ)
- [Installation](https://github.com/therecipe/qt/wiki/Installation)
- [Installation on Windows](https://github.com/therecipe/qt/wiki/Installation-on-Windows)
- [Installation on macOS](https://github.com/therecipe/qt/wiki/Installation-on-macOS)
- [Installation on Linux](https://github.com/therecipe/qt/wiki/Installation-on-Linux)
- [General Installation](https://github.com/therecipe/qt/wiki/Installation)
- [Getting Started](https://github.com/therecipe/qt/wiki/Getting-Started)
- [Wiki](https://github.com/therecipe/qt/wiki)
- [Qt Documentation](https://doc.qt.io/qt-5/classes.html)
- [FAQ](https://github.com/therecipe/qt/wiki/FAQ)
- [#qt-binding](https://gophers.slack.com/messages/qt-binding/details) Slack channel ([invite](https://invite.slack.golangbridge.org)\)

Deployment Targets
Expand Down
31 changes: 21 additions & 10 deletions cmd/go.mod
Original file line number Diff line number Diff line change
@@ -1,17 +1,28 @@
module github.com/therecipe/qt/cmd

require (
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/kisielk/gotool v1.0.0 // indirect
github.com/neelance/astrewrite v0.0.0-20160511093645-99348263ae86 // indirect
github.com/neelance/sourcemap v0.0.0-20151028013722-8c68805598ab // indirect
github.com/shurcooL/go v0.0.0-20181215222900-0143a8f55f04 // indirect
github.com/therecipe/qt v0.0.0-20181217005229-5746a84fb25d
github.com/therecipe/qt/internal/binding/files/docs v0.0.0-20181217005229-5746a84fb25d // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.10.0 v0.0.0-20181217005229-5746a84fb25d // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.11.1 v0.0.0-20181217005229-5746a84fb25d // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.12.0 v0.0.0-20181217005229-5746a84fb25d // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.6.3 v0.0.0-20181217005229-5746a84fb25d // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.7.0 v0.0.0-20181217005229-5746a84fb25d // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.7.1 v0.0.0-20181217005229-5746a84fb25d // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.8.0 v0.0.0-20181217005229-5746a84fb25d // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.9.0 v0.0.0-20181217005229-5746a84fb25d // indirect
github.com/shurcooL/httpfs v0.0.0-20171119174359-809beceb2371 // indirect
github.com/sirupsen/logrus v1.2.0 // indirect
github.com/spf13/cobra v0.0.3 // indirect
github.com/spf13/pflag v1.0.3 // indirect
github.com/therecipe/qt v0.0.0-20181217175635-86108509bd0c
github.com/therecipe/qt/internal/binding/files/docs v0.0.0-20181217175635-86108509bd0c // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.10.0 v0.0.0-20181217175635-86108509bd0c // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.11.1 v0.0.0-20181217175635-86108509bd0c // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.12.0 v0.0.0-20181217175635-86108509bd0c // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.6.3 v0.0.0-20181217175635-86108509bd0c // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.7.0 v0.0.0-20181217175635-86108509bd0c // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.7.1 v0.0.0-20181217175635-86108509bd0c // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.8.0 v0.0.0-20181217175635-86108509bd0c // indirect
github.com/therecipe/qt/internal/binding/files/docs/5.9.0 v0.0.0-20181217175635-86108509bd0c // indirect
golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9 // indirect
golang.org/x/sys v0.0.0-20181213200352-4d1cda033e06 // indirect
golang.org/x/tools v0.0.0-20181217182337-728ed46ae025 // indirect
)
52 changes: 26 additions & 26 deletions cmd/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -29,32 +29,32 @@ github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnIn
github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w=
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
github.com/therecipe/qt v0.0.0-20181217005229-5746a84fb25d h1:ztf0HJNHGw2A+7DuTG22O8jRN+pzf6E2RCt1xjPlcUw=
github.com/therecipe/qt v0.0.0-20181217005229-5746a84fb25d/go.mod h1:9zQ4FWiZ+FDr0DwZwBoC6o7DE0lRRWV8IC8J7GtUIgQ=
github.com/therecipe/qt/internal/binding/files/docs v0.0.0-20181217005229-5746a84fb25d h1:IJ1T0wqtRbnH0W5FhHF3hD7FwHrXUwcLqGDSs4y4Q/E=
github.com/therecipe/qt/internal/binding/files/docs v0.0.0-20181217005229-5746a84fb25d/go.mod h1:3m53YtVScOef+bvEyu5Pnhhdt1948eTNnsVZrP6hYeE=
github.com/therecipe/qt/internal/binding/files/docs/5.10.0 v0.0.0-20181217005229-5746a84fb25d h1:9vOm9S9NoyP2GdDfwNAV23YPXnLRFlRuv0SiHlGShKI=
github.com/therecipe/qt/internal/binding/files/docs/5.10.0 v0.0.0-20181217005229-5746a84fb25d/go.mod h1:0kdyvN3U5+T/7oroKwjnxjOCSl0KgMdslhGFRiY6CYw=
github.com/therecipe/qt/internal/binding/files/docs/5.11.1 v0.0.0-20181217005229-5746a84fb25d h1:wrnRndejvWCu+AZrlO0MH42+z3pq0IRfjAcFAlmcmqk=
github.com/therecipe/qt/internal/binding/files/docs/5.11.1 v0.0.0-20181217005229-5746a84fb25d/go.mod h1:89DJ2jP40NC3R0AHpsYfRtFcZxg8hg64u+GFb8cjyYs=
github.com/therecipe/qt/internal/binding/files/docs/5.12.0 v0.0.0-20181217005229-5746a84fb25d h1:K+1/tTrPKQ6/w4jn7MldeM1LhALK4/6ql5sRUId8nDg=
github.com/therecipe/qt/internal/binding/files/docs/5.12.0 v0.0.0-20181217005229-5746a84fb25d/go.mod h1:7m8PDYDEtEVqfjoUQc2UrFqhG0CDmoVJjRlQxexndFc=
github.com/therecipe/qt/internal/binding/files/docs/5.6.3 v0.0.0-20181217005229-5746a84fb25d h1:8/xZoTfukHKmOAye8wIJcA/NsfBKaDN/2SK9eyMqV6c=
github.com/therecipe/qt/internal/binding/files/docs/5.6.3 v0.0.0-20181217005229-5746a84fb25d/go.mod h1:Vekyc8wPRbEBD1XjJpnjhm8l5TRuvoZFZnRe9812jRk=
github.com/therecipe/qt/internal/binding/files/docs/5.7.0 v0.0.0-20181217005229-5746a84fb25d h1:4qqRzOw2GG/+lAbc5dEB37lkn6mG/IZr5lWbRSF1pZs=
github.com/therecipe/qt/internal/binding/files/docs/5.7.0 v0.0.0-20181217005229-5746a84fb25d/go.mod h1:nxvy/0d+Vs+CDWSYMQTUe/CYB/gFfL35WuikY+Nk/NE=
github.com/therecipe/qt/internal/binding/files/docs/5.7.1 v0.0.0-20181217005229-5746a84fb25d h1:E/LsPb28AnoFdqc1+4y0Fq13U7keB7ylwvMJmNcBIAg=
github.com/therecipe/qt/internal/binding/files/docs/5.7.1 v0.0.0-20181217005229-5746a84fb25d/go.mod h1:LH+7O1UJfPKV17+JOpg8jsBp+t+zR9qvPnz6c8ji9c4=
github.com/therecipe/qt/internal/binding/files/docs/5.8.0 v0.0.0-20181217005229-5746a84fb25d h1:0s7Z1H0H+JlZb1tzCjTYlMOk92AtQsPsYfm10cJQdPs=
github.com/therecipe/qt/internal/binding/files/docs/5.8.0 v0.0.0-20181217005229-5746a84fb25d/go.mod h1:fLn3mj9ZGgEDR+/Ork0sfteGWc31cjv8b4VXITvk/fs=
github.com/therecipe/qt/internal/binding/files/docs/5.9.0 v0.0.0-20181217005229-5746a84fb25d h1:bzKPfwmiYCJDX5lhWxCxR7EHovUdHwrwoRVmneB75Yg=
github.com/therecipe/qt/internal/binding/files/docs/5.9.0 v0.0.0-20181217005229-5746a84fb25d/go.mod h1:6VuvmQeE7pyTjJ2zCaVqVNCqS6696NToUQSB+dKg5ts=
github.com/therecipe/qt v0.0.0-20181217175635-86108509bd0c h1:6pm+RjDisurjNm8mIYtqTuP14YnPnkOuikJQTCZNJe8=
github.com/therecipe/qt v0.0.0-20181217175635-86108509bd0c/go.mod h1:Iq/oaa39y01vL+lPnuYp68I2X74K+/ACvH8yA1+ubH8=
github.com/therecipe/qt/internal/binding/files/docs v0.0.0-20181217175635-86108509bd0c h1:4q69Qvq7b4/X8hRK79xy9LpiHxHAVaZv7z6JquSuSpw=
github.com/therecipe/qt/internal/binding/files/docs v0.0.0-20181217175635-86108509bd0c/go.mod h1:3m53YtVScOef+bvEyu5Pnhhdt1948eTNnsVZrP6hYeE=
github.com/therecipe/qt/internal/binding/files/docs/5.10.0 v0.0.0-20181217175635-86108509bd0c h1:xCms8hAQalghXVF7N0/gpHYx03rfS/LLg65j/Uj6DPw=
github.com/therecipe/qt/internal/binding/files/docs/5.10.0 v0.0.0-20181217175635-86108509bd0c/go.mod h1:0kdyvN3U5+T/7oroKwjnxjOCSl0KgMdslhGFRiY6CYw=
github.com/therecipe/qt/internal/binding/files/docs/5.11.1 v0.0.0-20181217175635-86108509bd0c h1:Fo16l1fhlp2QaaeW4lh3YNJaluaX7wLI/dPO0vTN2Ug=
github.com/therecipe/qt/internal/binding/files/docs/5.11.1 v0.0.0-20181217175635-86108509bd0c/go.mod h1:89DJ2jP40NC3R0AHpsYfRtFcZxg8hg64u+GFb8cjyYs=
github.com/therecipe/qt/internal/binding/files/docs/5.12.0 v0.0.0-20181217175635-86108509bd0c h1:4banKKolAkc/mB8VPL9XJMgKnvOojreBUfBTUQW/DaQ=
github.com/therecipe/qt/internal/binding/files/docs/5.12.0 v0.0.0-20181217175635-86108509bd0c/go.mod h1:7m8PDYDEtEVqfjoUQc2UrFqhG0CDmoVJjRlQxexndFc=
github.com/therecipe/qt/internal/binding/files/docs/5.6.3 v0.0.0-20181217175635-86108509bd0c h1:G4Keu79EZzP90KfPGl4AImYQI5GZfbF0UzVzYLZbNmE=
github.com/therecipe/qt/internal/binding/files/docs/5.6.3 v0.0.0-20181217175635-86108509bd0c/go.mod h1:Vekyc8wPRbEBD1XjJpnjhm8l5TRuvoZFZnRe9812jRk=
github.com/therecipe/qt/internal/binding/files/docs/5.7.0 v0.0.0-20181217175635-86108509bd0c h1:qac1d0VL3v0M80KRwSxfupZklDD/S869n4TkH98zmNg=
github.com/therecipe/qt/internal/binding/files/docs/5.7.0 v0.0.0-20181217175635-86108509bd0c/go.mod h1:nxvy/0d+Vs+CDWSYMQTUe/CYB/gFfL35WuikY+Nk/NE=
github.com/therecipe/qt/internal/binding/files/docs/5.7.1 v0.0.0-20181217175635-86108509bd0c h1:8kB0S5yJTpVa0qCE3Z44VlPWBAaN7txh5AZaqZi5Fw4=
github.com/therecipe/qt/internal/binding/files/docs/5.7.1 v0.0.0-20181217175635-86108509bd0c/go.mod h1:LH+7O1UJfPKV17+JOpg8jsBp+t+zR9qvPnz6c8ji9c4=
github.com/therecipe/qt/internal/binding/files/docs/5.8.0 v0.0.0-20181217175635-86108509bd0c h1:eLruRcvhYeYBwha1QSmzaVRPJrnz+BYDLLBr7FfO/Qo=
github.com/therecipe/qt/internal/binding/files/docs/5.8.0 v0.0.0-20181217175635-86108509bd0c/go.mod h1:fLn3mj9ZGgEDR+/Ork0sfteGWc31cjv8b4VXITvk/fs=
github.com/therecipe/qt/internal/binding/files/docs/5.9.0 v0.0.0-20181217175635-86108509bd0c h1:1bd/v+XNhDBlK/D2R+92l/nrzBAZ6Rbxg1CJa7Dsk0Y=
github.com/therecipe/qt/internal/binding/files/docs/5.9.0 v0.0.0-20181217175635-86108509bd0c/go.mod h1:6VuvmQeE7pyTjJ2zCaVqVNCqS6696NToUQSB+dKg5ts=
golang.org/x/crypto v0.0.0-20180904163835-0709b304e793/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
golang.org/x/crypto v0.0.0-20181112202954-3d3f9f413869 h1:kkXA53yGe04D0adEYJwEVQjeBppL01Exg+fnMjfUraU=
golang.org/x/crypto v0.0.0-20181112202954-3d3f9f413869/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
golang.org/x/image v0.0.0-20181115061151-d9c2484c482e/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs=
golang.org/x/net v0.0.0-20181114220301-adae6a3d119a/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9 h1:mKdxBk7AujPs8kU4m80U72y/zjbZ3UcXC7dClwKbUI0=
golang.org/x/crypto v0.0.0-20181203042331-505ab145d0a9/go.mod h1:6SG95UA2DQfeDnfUPMdvaQW0Q7yPrPDi9nlGo2tz2b4=
golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33 h1:I6FyU15t786LL7oL/hn43zqTuEGr4PN7F4XJ1p4E3Y8=
golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/tools v0.0.0-20181117154741-2ddaf7f79a09 h1:QJFxMApN9XdBRwtqXfOidB2azUCA4ziuiMTrQ1uBGxw=
golang.org/x/tools v0.0.0-20181117154741-2ddaf7f79a09/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
golang.org/x/sys v0.0.0-20181213200352-4d1cda033e06 h1:0oC8rFnE+74kEmuHZ46F6KHsMr5Gx2gUQPuNz28iQZM=
golang.org/x/sys v0.0.0-20181213200352-4d1cda033e06/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/tools v0.0.0-20181217182337-728ed46ae025 h1:21D5gDYCCi/qBaU8fkgZVmVvmmC+7+uhs0/9vkXnhN0=
golang.org/x/tools v0.0.0-20181217182337-728ed46ae025/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
2 changes: 2 additions & 0 deletions cmd/cmd.go → cmd/mod.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@
package cmd

import (
_ "github.com/therecipe/qt/internal"

_ "github.com/therecipe/qt/cmd/qtdeploy"
_ "github.com/therecipe/qt/cmd/qtminimal"
_ "github.com/therecipe/qt/cmd/qtmoc"
Expand Down
11 changes: 11 additions & 0 deletions internal/binding/files/docs/go.mod
Original file line number Diff line number Diff line change
@@ -1 +1,12 @@
module github.com/therecipe/qt/internal/binding/files/docs

require (
github.com/therecipe/qt/internal/binding/files/docs/5.10.0 v0.0.0-20181217175635-86108509bd0c
github.com/therecipe/qt/internal/binding/files/docs/5.11.1 v0.0.0-20181217175635-86108509bd0c
github.com/therecipe/qt/internal/binding/files/docs/5.12.0 v0.0.0-20181217175635-86108509bd0c
github.com/therecipe/qt/internal/binding/files/docs/5.6.3 v0.0.0-20181217175635-86108509bd0c
github.com/therecipe/qt/internal/binding/files/docs/5.7.0 v0.0.0-20181217175635-86108509bd0c
github.com/therecipe/qt/internal/binding/files/docs/5.7.1 v0.0.0-20181217175635-86108509bd0c
github.com/therecipe/qt/internal/binding/files/docs/5.8.0 v0.0.0-20181217175635-86108509bd0c
github.com/therecipe/qt/internal/binding/files/docs/5.9.0 v0.0.0-20181217175635-86108509bd0c
)
16 changes: 16 additions & 0 deletions internal/binding/files/docs/go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
github.com/therecipe/qt/internal/binding/files/docs/5.10.0 v0.0.0-20181217175635-86108509bd0c h1:xCms8hAQalghXVF7N0/gpHYx03rfS/LLg65j/Uj6DPw=
github.com/therecipe/qt/internal/binding/files/docs/5.10.0 v0.0.0-20181217175635-86108509bd0c/go.mod h1:0kdyvN3U5+T/7oroKwjnxjOCSl0KgMdslhGFRiY6CYw=
github.com/therecipe/qt/internal/binding/files/docs/5.11.1 v0.0.0-20181217175635-86108509bd0c h1:Fo16l1fhlp2QaaeW4lh3YNJaluaX7wLI/dPO0vTN2Ug=
github.com/therecipe/qt/internal/binding/files/docs/5.11.1 v0.0.0-20181217175635-86108509bd0c/go.mod h1:89DJ2jP40NC3R0AHpsYfRtFcZxg8hg64u+GFb8cjyYs=
github.com/therecipe/qt/internal/binding/files/docs/5.12.0 v0.0.0-20181217175635-86108509bd0c h1:4banKKolAkc/mB8VPL9XJMgKnvOojreBUfBTUQW/DaQ=
github.com/therecipe/qt/internal/binding/files/docs/5.12.0 v0.0.0-20181217175635-86108509bd0c/go.mod h1:7m8PDYDEtEVqfjoUQc2UrFqhG0CDmoVJjRlQxexndFc=
github.com/therecipe/qt/internal/binding/files/docs/5.6.3 v0.0.0-20181217175635-86108509bd0c h1:G4Keu79EZzP90KfPGl4AImYQI5GZfbF0UzVzYLZbNmE=
github.com/therecipe/qt/internal/binding/files/docs/5.6.3 v0.0.0-20181217175635-86108509bd0c/go.mod h1:Vekyc8wPRbEBD1XjJpnjhm8l5TRuvoZFZnRe9812jRk=
github.com/therecipe/qt/internal/binding/files/docs/5.7.0 v0.0.0-20181217175635-86108509bd0c h1:qac1d0VL3v0M80KRwSxfupZklDD/S869n4TkH98zmNg=
github.com/therecipe/qt/internal/binding/files/docs/5.7.0 v0.0.0-20181217175635-86108509bd0c/go.mod h1:nxvy/0d+Vs+CDWSYMQTUe/CYB/gFfL35WuikY+Nk/NE=
github.com/therecipe/qt/internal/binding/files/docs/5.7.1 v0.0.0-20181217175635-86108509bd0c h1:8kB0S5yJTpVa0qCE3Z44VlPWBAaN7txh5AZaqZi5Fw4=
github.com/therecipe/qt/internal/binding/files/docs/5.7.1 v0.0.0-20181217175635-86108509bd0c/go.mod h1:LH+7O1UJfPKV17+JOpg8jsBp+t+zR9qvPnz6c8ji9c4=
github.com/therecipe/qt/internal/binding/files/docs/5.8.0 v0.0.0-20181217175635-86108509bd0c h1:eLruRcvhYeYBwha1QSmzaVRPJrnz+BYDLLBr7FfO/Qo=
github.com/therecipe/qt/internal/binding/files/docs/5.8.0 v0.0.0-20181217175635-86108509bd0c/go.mod h1:fLn3mj9ZGgEDR+/Ork0sfteGWc31cjv8b4VXITvk/fs=
github.com/therecipe/qt/internal/binding/files/docs/5.9.0 v0.0.0-20181217175635-86108509bd0c h1:1bd/v+XNhDBlK/D2R+92l/nrzBAZ6Rbxg1CJa7Dsk0Y=
github.com/therecipe/qt/internal/binding/files/docs/5.9.0 v0.0.0-20181217175635-86108509bd0c/go.mod h1:6VuvmQeE7pyTjJ2zCaVqVNCqS6696NToUQSB+dKg5ts=
2 changes: 0 additions & 2 deletions internal/cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,6 @@ import (
"github.com/sirupsen/logrus"

"github.com/therecipe/qt/internal/utils"

_ "github.com/therecipe/qt/internal/binding/files/docs"
)

var buildVersion = "no build version"
Expand Down
11 changes: 11 additions & 0 deletions internal/examples/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
module github.com/therecipe/qt/internal/examples

require (
github.com/emirpasic/gods v1.12.0 // indirect
github.com/fogleman/gg v1.1.0 // indirect
github.com/fogleman/ln v0.0.0-20170223135521-12e6c6e74459 // indirect
github.com/fogleman/pt v0.0.0-20170619012416-6fa0015c2178 // indirect
github.com/therecipe/qt v0.0.0-20181217175635-86108509bd0c // indirect
golang.org/x/net v0.0.0-20181217023233-e147a9138326 // indirect
google.golang.org/grpc v1.17.0 // indirect
)
34 changes: 34 additions & 0 deletions internal/examples/go.sum
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
github.com/emirpasic/gods v1.12.0 h1:QAUIPSaCu4G+POclxeqb3F+WPpdKqFGlw36+yOzGlrg=
github.com/emirpasic/gods v1.12.0/go.mod h1:YfzfFFoVP/catgzJb4IKIqXjX78Ha8FMSDh3ymbK86o=
github.com/fogleman/gg v1.1.0 h1:wVTfU9tB/LDr2eI5HILatkzBQLD3yl0KtPFt8KlcSIY=
github.com/fogleman/gg v1.1.0/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k=
github.com/fogleman/ln v0.0.0-20170223135521-12e6c6e74459 h1:FNZL5NQ+5AjQhfJyLtsOvHwfBdaCs5zRCXnOgsueUYo=
github.com/fogleman/ln v0.0.0-20170223135521-12e6c6e74459/go.mod h1:88uTXbq5TLI2G6TH5cBcbfl4x5jaTbKLgMjshwLPGmo=
github.com/fogleman/pt v0.0.0-20170619012416-6fa0015c2178 h1:4TnvdTCFXrGh+yjYmzMrrc9V0o29xB/J2pldpxDfUrg=
github.com/fogleman/pt v0.0.0-20170619012416-6fa0015c2178/go.mod h1:7L0Ag5f6vgYY8ILH9R2Jbn0I4rShliILuSP0kXpxOFQ=
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
github.com/golang/protobuf v1.2.0 h1:P3YflyNX/ehuJFLhxviNdFxQPkGK5cDcApsge1SqnvM=
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e h1:JKmoR8x90Iww1ks85zJ1lfDGgIiMDuIptTOhJq+zKyg=
github.com/gopherjs/gopherjs v0.0.0-20181103185306-d547d1d9531e/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY=
github.com/grpc-ecosystem/grpc-gateway v1.6.2 h1:8KyC64BiO8ndiGHY5DlFWWdangUPC9QHPakFRre/Ud0=
github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
github.com/therecipe/qt v0.0.0-20181217175635-86108509bd0c h1:6pm+RjDisurjNm8mIYtqTuP14YnPnkOuikJQTCZNJe8=
github.com/therecipe/qt v0.0.0-20181217175635-86108509bd0c/go.mod h1:Iq/oaa39y01vL+lPnuYp68I2X74K+/ACvH8yA1+ubH8=
golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/net v0.0.0-20181217023233-e147a9138326 h1:iCzOf0xz39Tstp+Tu/WwyGjUXCk34QhQORRxBeXXTA4=
golang.org/x/net v0.0.0-20181217023233-e147a9138326/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
golang.org/x/tools v0.0.0-20180828015842-6cd1fcedba52/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
google.golang.org/grpc v1.17.0 h1:TRJYBgMclJvGYn2rIMjj+h9KtMt5r1Ij7ODVRIZkwhk=
google.golang.org/grpc v1.17.0/go.mod h1:6QZJwpn2B+Zp71q/5VxRsJ6NXXVCE5NRUHRo+f3cWCs=
honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
1 change: 1 addition & 0 deletions internal/go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
module github.com/therecipe/qt/internal
3 changes: 3 additions & 0 deletions internal/mod.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
package internal

import _ "github.com/therecipe/qt/internal/binding/files/docs"

0 comments on commit 179fefb

Please sign in to comment.