├── .gitignore ├── README.md ├── assets ├── fonts │ ├── install │ │ ├── _body │ │ │ ├── EncodeSans-Bold.ttf │ │ │ └── EncodeSans-Regular.ttf │ │ ├── _code │ │ │ ├── AUDIMB__.TTF │ │ │ └── AUDIMRG_.TTF │ │ ├── _heading │ │ │ └── Jomhuria-Regular.ttf │ │ └── _subheading │ │ │ ├── Economica-Italic-OTF.otf │ │ │ └── Economica-Regular-OTF.otf │ └── original-package │ │ ├── audimat-mono.zip │ │ ├── economica.zip │ │ ├── encode-sans.zip │ │ └── jomhuria.zip └── images │ ├── Chapter-Compiling │ ├── compiling-01.kra │ ├── compiling-01.png │ ├── compiling-02.kra │ └── compiling-02.png │ ├── Chapter-Conclusion │ ├── Conclusion-rocket.kra │ └── Conclusion-rocket.png │ ├── Chapter-Event │ ├── event-1.kra │ ├── event-1.png │ ├── event-2.kra │ ├── event-2.png │ ├── event-3.kra │ └── event-3.png │ ├── Chapter-First │ ├── first-1.kra │ ├── first-1.png │ ├── first-2.kra │ ├── first-2.png │ ├── first-3.kra │ ├── first-3.png │ ├── tool-button.kra │ └── tool-button.png │ ├── Chapter-Function │ ├── function-1.kra │ ├── function-1.png │ ├── procedure-1.kra │ ├── procedure-1.png │ ├── procedure-2.kra │ ├── procedure-2.png │ ├── procedure-3.kra │ ├── procedure-3.png │ ├── procedure-4.kra │ ├── procedure-4.png │ ├── procedure-5.kra │ └── procedure-5.png │ ├── Chapter-Position │ ├── .position-2.kra-autosave.kra │ ├── position-1.kra │ ├── position-1.png │ ├── position-2.kra │ ├── position-2.png │ ├── position-3.kra │ ├── position-3.png │ ├── position-4.kra │ ├── position-4.png │ ├── position-5.kra │ ├── position-5.png │ ├── position-6.kra │ ├── position-6.png │ ├── position-7.kra │ └── position-7.png │ ├── Chapter-Properties │ ├── properties-1.kra │ ├── properties-1.png │ ├── properties-2.kra │ ├── properties-2.png │ ├── properties-3.kra │ └── properties-3.png │ ├── Chapter-Save │ ├── save-1.kra │ ├── save-1.png │ ├── save-2.kra │ ├── save-2.png │ ├── save-3.kra │ ├── save-3.png │ ├── save-4.kra │ ├── save-4.png │ ├── save-5.kra │ └── save-5.png │ ├── Chapter-Sharing │ ├── sharing-01.kra │ └── sharing-01.png │ ├── Chapter-Whatis │ ├── Whatis-rocket.kra │ └── Whatis-rocket.png │ └── cover │ ├── cover-1.png │ ├── cover-1.svg │ ├── sharing-option-1.kra │ └── sharing-option-1.png ├── doc └── Readme.md └── lazarus-beginners-guide.fodt /.gitignore: -------------------------------------------------------------------------------- 1 | # OS junk files 2 | [Tt]humbs.db 3 | *.DS_Store 4 | 5 | # Temporary files 6 | *.kra~ 7 | *.png~ 8 | *.bak 9 | *.odt# 10 | *.fodt# 11 | *.kra-autosave.kra -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Beginners’ Guide to Lazarus IDE 2 | A book written for new Lazarus users, named "Beginners’ Guide to Lazarus IDE". This book has easy and consise 10 chapter format to help the new users start quick. 3 | 4 | Beginners’ Guide to Lazarus IDE book cover image 5 | 6 | __Please check the `doc` folder for further instructions on how to edit and maintain this book and export outputs.__ 7 | 8 | ### License 9 | This project is licensed under [Creative Commons Attribution 4.0 International (CC BY)](https://creativecommons.org/licenses/by/4.0/) 10 | 11 | Any remix of the book is encouraged. 12 | -------------------------------------------------------------------------------- /assets/fonts/install/_body/EncodeSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/fonts/install/_body/EncodeSans-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/install/_body/EncodeSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/fonts/install/_body/EncodeSans-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/install/_code/AUDIMB__.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/fonts/install/_code/AUDIMB__.TTF -------------------------------------------------------------------------------- /assets/fonts/install/_code/AUDIMRG_.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/fonts/install/_code/AUDIMRG_.TTF -------------------------------------------------------------------------------- /assets/fonts/install/_heading/Jomhuria-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/fonts/install/_heading/Jomhuria-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/install/_subheading/Economica-Italic-OTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/fonts/install/_subheading/Economica-Italic-OTF.otf -------------------------------------------------------------------------------- /assets/fonts/install/_subheading/Economica-Regular-OTF.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/fonts/install/_subheading/Economica-Regular-OTF.otf -------------------------------------------------------------------------------- /assets/fonts/original-package/audimat-mono.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/fonts/original-package/audimat-mono.zip -------------------------------------------------------------------------------- /assets/fonts/original-package/economica.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/fonts/original-package/economica.zip -------------------------------------------------------------------------------- /assets/fonts/original-package/encode-sans.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/fonts/original-package/encode-sans.zip -------------------------------------------------------------------------------- /assets/fonts/original-package/jomhuria.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/fonts/original-package/jomhuria.zip -------------------------------------------------------------------------------- /assets/images/Chapter-Compiling/compiling-01.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Compiling/compiling-01.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Compiling/compiling-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Compiling/compiling-01.png -------------------------------------------------------------------------------- /assets/images/Chapter-Compiling/compiling-02.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Compiling/compiling-02.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Compiling/compiling-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Compiling/compiling-02.png -------------------------------------------------------------------------------- /assets/images/Chapter-Conclusion/Conclusion-rocket.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Conclusion/Conclusion-rocket.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Conclusion/Conclusion-rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Conclusion/Conclusion-rocket.png -------------------------------------------------------------------------------- /assets/images/Chapter-Event/event-1.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Event/event-1.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Event/event-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Event/event-1.png -------------------------------------------------------------------------------- /assets/images/Chapter-Event/event-2.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Event/event-2.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Event/event-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Event/event-2.png -------------------------------------------------------------------------------- /assets/images/Chapter-Event/event-3.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Event/event-3.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Event/event-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Event/event-3.png -------------------------------------------------------------------------------- /assets/images/Chapter-First/first-1.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-First/first-1.kra -------------------------------------------------------------------------------- /assets/images/Chapter-First/first-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-First/first-1.png -------------------------------------------------------------------------------- /assets/images/Chapter-First/first-2.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-First/first-2.kra -------------------------------------------------------------------------------- /assets/images/Chapter-First/first-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-First/first-2.png -------------------------------------------------------------------------------- /assets/images/Chapter-First/first-3.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-First/first-3.kra -------------------------------------------------------------------------------- /assets/images/Chapter-First/first-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-First/first-3.png -------------------------------------------------------------------------------- /assets/images/Chapter-First/tool-button.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-First/tool-button.kra -------------------------------------------------------------------------------- /assets/images/Chapter-First/tool-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-First/tool-button.png -------------------------------------------------------------------------------- /assets/images/Chapter-Function/function-1.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Function/function-1.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Function/function-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Function/function-1.png -------------------------------------------------------------------------------- /assets/images/Chapter-Function/procedure-1.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Function/procedure-1.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Function/procedure-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Function/procedure-1.png -------------------------------------------------------------------------------- /assets/images/Chapter-Function/procedure-2.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Function/procedure-2.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Function/procedure-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Function/procedure-2.png -------------------------------------------------------------------------------- /assets/images/Chapter-Function/procedure-3.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Function/procedure-3.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Function/procedure-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Function/procedure-3.png -------------------------------------------------------------------------------- /assets/images/Chapter-Function/procedure-4.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Function/procedure-4.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Function/procedure-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Function/procedure-4.png -------------------------------------------------------------------------------- /assets/images/Chapter-Function/procedure-5.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Function/procedure-5.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Function/procedure-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Function/procedure-5.png -------------------------------------------------------------------------------- /assets/images/Chapter-Position/.position-2.kra-autosave.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/.position-2.kra-autosave.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Position/position-1.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/position-1.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Position/position-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/position-1.png -------------------------------------------------------------------------------- /assets/images/Chapter-Position/position-2.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/position-2.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Position/position-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/position-2.png -------------------------------------------------------------------------------- /assets/images/Chapter-Position/position-3.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/position-3.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Position/position-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/position-3.png -------------------------------------------------------------------------------- /assets/images/Chapter-Position/position-4.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/position-4.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Position/position-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/position-4.png -------------------------------------------------------------------------------- /assets/images/Chapter-Position/position-5.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/position-5.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Position/position-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/position-5.png -------------------------------------------------------------------------------- /assets/images/Chapter-Position/position-6.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/position-6.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Position/position-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/position-6.png -------------------------------------------------------------------------------- /assets/images/Chapter-Position/position-7.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/position-7.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Position/position-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Position/position-7.png -------------------------------------------------------------------------------- /assets/images/Chapter-Properties/properties-1.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Properties/properties-1.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Properties/properties-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Properties/properties-1.png -------------------------------------------------------------------------------- /assets/images/Chapter-Properties/properties-2.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Properties/properties-2.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Properties/properties-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Properties/properties-2.png -------------------------------------------------------------------------------- /assets/images/Chapter-Properties/properties-3.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Properties/properties-3.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Properties/properties-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Properties/properties-3.png -------------------------------------------------------------------------------- /assets/images/Chapter-Save/save-1.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Save/save-1.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Save/save-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Save/save-1.png -------------------------------------------------------------------------------- /assets/images/Chapter-Save/save-2.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Save/save-2.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Save/save-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Save/save-2.png -------------------------------------------------------------------------------- /assets/images/Chapter-Save/save-3.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Save/save-3.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Save/save-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Save/save-3.png -------------------------------------------------------------------------------- /assets/images/Chapter-Save/save-4.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Save/save-4.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Save/save-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Save/save-4.png -------------------------------------------------------------------------------- /assets/images/Chapter-Save/save-5.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Save/save-5.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Save/save-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Save/save-5.png -------------------------------------------------------------------------------- /assets/images/Chapter-Sharing/sharing-01.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Sharing/sharing-01.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Sharing/sharing-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Sharing/sharing-01.png -------------------------------------------------------------------------------- /assets/images/Chapter-Whatis/Whatis-rocket.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Whatis/Whatis-rocket.kra -------------------------------------------------------------------------------- /assets/images/Chapter-Whatis/Whatis-rocket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/Chapter-Whatis/Whatis-rocket.png -------------------------------------------------------------------------------- /assets/images/cover/cover-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/cover/cover-1.png -------------------------------------------------------------------------------- /assets/images/cover/cover-1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 24 | 45 | 47 | 48 | 50 | image/svg+xml 51 | 53 | 54 | 56 | 57 | 59 | 61 | 63 | 65 | 67 | 69 | 70 | 71 | 72 | 78 | 85 | 91 | 98 | 99 | 105 | 110 | 115 | 121 | 127 | 132 | 138 | 143 | 144 | 150 | Beginners' Guide to Lazarus IDE by Adnan Shameem Your first guide to reach the planet of Lazarus Users Conquering Lazarus in bite-size chunks! 206 | 207 | -------------------------------------------------------------------------------- /assets/images/cover/sharing-option-1.kra: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/cover/sharing-option-1.kra -------------------------------------------------------------------------------- /assets/images/cover/sharing-option-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adnan360/lazarus-beginners-guide/284773ee9005fa1c3dfe9270f2419a34314889f5/assets/images/cover/sharing-option-1.png -------------------------------------------------------------------------------- /doc/Readme.md: -------------------------------------------------------------------------------- 1 | # File Formats: 2 | odt/fodt - can be opened with [LibreOffice](https://www.libreoffice.org/download/download/). Still (stable) versions are preferred when editing (choose the earliest version from the page). 3 | svg - can be opened with [Inkscape](https://inkscape.org/en/). 4 | kra - can be opened with [Krita](https://krita.org/en/download/krita-desktop/). 5 | Outputs: 6 | pdf - can be opened with SumatraPDF, Evince, qpdfview and many others 7 | xhtml - can be opened with Firefox, GNU IceCat, Konqueror, Chromium etc. 8 | 9 | # How to export 10 | Images used in the book are saved as mainly .kra files. They can be exported into png images by File - Export. Then can be inserted into LibreOffice document. 11 | 12 | The cover image is saved in svg format. To export PNG, use File - Export PNG Image, select "Page" as Export area, choose png filename, then click Export. 13 | 14 | Do not insert an image and crop within the document. Please try to create a Krita (kra) file with the image, crop there, export and then use in the document. 15 | 16 | # How to edit the book document 17 | Before opening the book document, install font files from `assets/fonts/install` directory. All the fonts in the subdirectories are needed. 18 | 19 | The book document strictly follows the styling. Please use appropriate styles from View - Styles and Formatting whenever possible. 20 | 21 | # Exporting the book 22 | Before submitting or exporting, right click the Table of Contents and click Update index. 23 | 24 | From LibreOffice, choose File - Export as PDF..., select a file name and export. 25 | 26 | To export as XHTML, choose File - Export, choose XHTML as file type, and save. 27 | --------------------------------------------------------------------------------