{"id":23436362,"url":"https://github.com/gammasoft71/examples_qt","last_synced_at":"2025-04-13T04:12:57.795Z","repository":{"id":111158832,"uuid":"144383497","full_name":"gammasoft71/Examples_Qt","owner":"gammasoft71","description":"Shows how to use Qt widgets only by programming code (c++17).","archived":false,"fork":false,"pushed_at":"2024-04-18T18:42:32.000Z","size":2200,"stargazers_count":84,"open_issues_count":0,"forks_count":19,"subscribers_count":7,"default_branch":"master","last_synced_at":"2025-04-13T04:12:41.342Z","etag":null,"topics":["checkbox","cmake","controls","core","cpp","cpp17","example","examples","multi-platform","progressbar","qml","qt","qt-example","qt-examples","qt-widgets","quick","radio-buttons","textbox","trackbar","widgets"],"latest_commit_sha":null,"homepage":"https://gammasoft71.wixsite.com/gammasoft/qt","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gammasoft71.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-08-11T12:29:27.000Z","updated_at":"2025-04-10T10:35:38.000Z","dependencies_parsed_at":null,"dependency_job_id":"ed69db7b-ff17-40e8-a68b-15227dea5a0e","html_url":"https://github.com/gammasoft71/Examples_Qt","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gammasoft71%2FExamples_Qt","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gammasoft71%2FExamples_Qt/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gammasoft71%2FExamples_Qt/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gammasoft71%2FExamples_Qt/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gammasoft71","download_url":"https://codeload.github.com/gammasoft71/Examples_Qt/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248661722,"owners_count":21141451,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["checkbox","cmake","controls","core","cpp","cpp17","example","examples","multi-platform","progressbar","qml","qt","qt-example","qt-examples","qt-widgets","quick","radio-buttons","textbox","trackbar","widgets"],"created_at":"2024-12-23T13:18:53.249Z","updated_at":"2025-04-13T04:12:57.773Z","avatar_url":"https://github.com/gammasoft71.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Qt examples\n\nshows how to use Qt widgets only by programming code (c++17).\n\n[![qt](docs/Pictures/qt_header.png)](https://gammasoft71.wixsite.com/gammasoft/qt)\n\n## [Qt.Core](Qt.Core/README.md)\n\n* [HelloWorlds](Qt.Core/HelloWorlds/README.md) contains Qt.Core \"Hello, World!\" examples.\n* [Collections](Qt.Core/Collections/README.md) contains collections examples.\n* [Console](Qt.Core/Console/README.md) contains console examples.\n* [Strings](Qt.Core/Strings/README.md) contains strings examples.\n\n## [Qt.Widgets](Qt.Widgets/README.md)\n\n* [HelloWorlds](Qt.Widgets/HelloWorlds/README.md) contains Qt.Widgets \"Hello, world!\" examples.\n* [Applications](Qt.Widgets/Applications/README.md) contains applications examples.\n* [Dialogs](Qt.Widgets/Dialogs/README.md) contains dialogs examples.\n* [Windows](Qt.Widgets/Windows/README.md) contains windows examples.\n* [MenusAndToolbars](Qt.Widgets/MenusAndToolbars/README.md) contains menus and toolbars examples.\n* [Containers](Qt.Widgets/Containers/README.md) contains containers examples.\n* [Controls](Qt.Widgets/Controls/README.md) contains controls examples.\n* [Components](Qt.Widgets/Components/README.md) contains components examples.\n* [UserControls](Qt.Widgets/UserControls/README.md) contains user controls examples.\n* [Others](Qt.Widgets/Others/README.md) contains others examples.\n\n## [Qt.Quick](Qt.Quick/README.md)\n\n* [HelloWorldsQuick](Qt.Quick/HelloWorldsQuick/README.md) contains Qt.Quick \"Hello, world!\" examples.\n* [ControlsQuick](Qt.Quick/ControlsQuick/README.md) contains controls examples.\n\n## [Qt.Test](Qt.Test/README.md)\n\n* [HelloWorldsUnitTest](Qt.Test/HelloWorldsUnitTest/README.md) contains Qt.Test \"Hello, world!\" examples.\n\n## Download\n\n``` shell\ngit clone https://github.com/gammasoft71/Examples_Qt\n```\n\n## Generate and build\n\n### Qt Creator\n\nTo build these projects, open `Qt.Exmples.pro` file with Qt Creator.\n\n### CMake\n\nTo build this project, open \"Terminal\" and type following lines:\n\nSet `CMAKE_PREFIX_PATH` with Qt6 install path.\n\n#### Windows :\n\n``` cmake\nmkdir build\ncd build\ncmake ..\nstart ./Qt.Exmples.sln\n```\n\nSelect any project and type Ctrl+F5 to build and run it.\n\n#### macOS :\n\n``` cmake\nmkdir build\ncd build\ncmake .. -G \"Xcode\"\nopen ./Qt.Exmples.xcodeproj\n```\n\nSelect any project and type Cmd+R to build and run it.\n\n#### Linux with Code::Blocks :\n\n``` cmake\nmkdir build\ncd build\ncmake .. -G \"CodeBlocks - Unix Makefiles\"\nxdg-open ./Qt.Exmples.cbp \u003e /dev/null 2\u003e\u00261\n```\n\nSelect any project and type F10 to build and run it.\n\n#### Linux :\n\n``` cmake\nmkdir build\ncd build\ncmake .. \ncmake --build . --config Debug\n./AnyProject\n```\n\n## Remarks\n\nThis project run with [Qt](https://www.qt.io) (and [CMake](https://cmake.org)).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgammasoft71%2Fexamples_qt","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgammasoft71%2Fexamples_qt","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgammasoft71%2Fexamples_qt/lists"}