├── .gitignore ├── FyneApp.toml ├── Icon.png ├── LICENSE ├── README.md ├── config.go ├── export.go ├── export_test.go ├── file.go ├── go.mod ├── go.sum ├── img ├── screenshot-code.png ├── screenshot.png └── slide.png ├── layout.go ├── main.go ├── main.gui.go ├── main.gui.json ├── matrix.json ├── parse.go ├── present.go ├── presenter.gui.go ├── presenter.gui.json ├── slide.go ├── slidelayout.go ├── slides.go ├── slidetheme.go ├── slideutil.go ├── slidewidgets.go ├── style.go ├── testdata └── export.pdf └── widgets.go /.gitignore: -------------------------------------------------------------------------------- 1 | slydes 2 | 3 | .idea 4 | 5 | -------------------------------------------------------------------------------- /FyneApp.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/FyneApp.toml -------------------------------------------------------------------------------- /Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/Icon.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/README.md -------------------------------------------------------------------------------- /config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/config.go -------------------------------------------------------------------------------- /export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/export.go -------------------------------------------------------------------------------- /export_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/export_test.go -------------------------------------------------------------------------------- /file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/file.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/go.sum -------------------------------------------------------------------------------- /img/screenshot-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/img/screenshot-code.png -------------------------------------------------------------------------------- /img/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/img/screenshot.png -------------------------------------------------------------------------------- /img/slide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/img/slide.png -------------------------------------------------------------------------------- /layout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/layout.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/main.go -------------------------------------------------------------------------------- /main.gui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/main.gui.go -------------------------------------------------------------------------------- /main.gui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/main.gui.json -------------------------------------------------------------------------------- /matrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/matrix.json -------------------------------------------------------------------------------- /parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/parse.go -------------------------------------------------------------------------------- /present.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/present.go -------------------------------------------------------------------------------- /presenter.gui.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/presenter.gui.go -------------------------------------------------------------------------------- /presenter.gui.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/presenter.gui.json -------------------------------------------------------------------------------- /slide.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/slide.go -------------------------------------------------------------------------------- /slidelayout.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/slidelayout.go -------------------------------------------------------------------------------- /slides.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/slides.go -------------------------------------------------------------------------------- /slidetheme.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/slidetheme.go -------------------------------------------------------------------------------- /slideutil.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/slideutil.go -------------------------------------------------------------------------------- /slidewidgets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/slidewidgets.go -------------------------------------------------------------------------------- /style.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/style.go -------------------------------------------------------------------------------- /testdata/export.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/testdata/export.pdf -------------------------------------------------------------------------------- /widgets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andydotxyz/slydes/HEAD/widgets.go --------------------------------------------------------------------------------