{"id":17603045,"url":"https://github.com/yjg30737/pyqt-rounded-corners-lineedit","last_synced_at":"2025-05-07T11:12:57.265Z","repository":{"id":57677885,"uuid":"484048501","full_name":"yjg30737/pyqt-rounded-corners-lineedit","owner":"yjg30737","description":"PyQt QLineEdit with rounded corners","archived":false,"fork":false,"pushed_at":"2022-05-13T23:58:53.000Z","size":20,"stargazers_count":3,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-12-27T05:30:12.962Z","etag":null,"topics":["pyqt","pyqt-tutorial","pyqt5","pyqt5-examples","python","python3","python37","qlineedit","qt"],"latest_commit_sha":null,"homepage":"","language":"Python","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/yjg30737.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2022-04-21T12:46:51.000Z","updated_at":"2024-06-04T11:14:19.000Z","dependencies_parsed_at":"2022-08-31T06:50:50.481Z","dependency_job_id":null,"html_url":"https://github.com/yjg30737/pyqt-rounded-corners-lineedit","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-rounded-corners-lineedit","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-rounded-corners-lineedit/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-rounded-corners-lineedit/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/yjg30737%2Fpyqt-rounded-corners-lineedit/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/yjg30737","download_url":"https://codeload.github.com/yjg30737/pyqt-rounded-corners-lineedit/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":232276229,"owners_count":18498403,"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":["pyqt","pyqt-tutorial","pyqt5","pyqt5-examples","python","python3","python37","qlineedit","qt"],"created_at":"2024-10-22T13:38:07.091Z","updated_at":"2025-01-03T01:24:39.998Z","avatar_url":"https://github.com/yjg30737.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pyqt-rounded-corners-lineedit\nPyQt QLineEdit with rounded corners\n\n## Requirements\n* PyQt5 \u003e= 5.8\n\n## Install\n`python -m pip install pyqt-rounded-corners-lineedit`\n\n## Included Packages\n* \u003ca href=\"https://github.com/yjg30737/absresgetter.git\"\u003eabsresgetter\u003c/a\u003e - To get absolute path of resource file\n\n## Detailed Description\nRounded corners, borderless line edit.\n\nIf you want to add the border, add code like below.\n\n`lineEdit.setStyleSheet(lineEdit.styleSheet() + 'QLineEdit { border: 1px solid black; }')`\n\n## Example\nCode Sample\n```python\nfrom PyQt5.QtWidgets import QApplication, QGridLayout, QWidget\nfrom pyqt_rounded_corners_lineedit import RoundedCornersLineEdit\n\n\nclass Widget(QWidget):\n    def __init__(self):\n        super().__init__()\n        self.__initUi()\n\n    def __initUi(self):\n        lineEdit = RoundedCornersLineEdit()\n        # if you want to set the border\n        # lineEdit.setStyleSheet(lineEdit.styleSheet() + 'QLineEdit { border: 1px solid black; }')\n        lay = QGridLayout()\n        lay.addWidget(lineEdit)\n        self.setLayout(lay)\n\n\nif __name__ == \"__main__\":\n    import sys\n\n    app = QApplication(sys.argv)\n    widget = Widget()\n    widget.show()\n    app.exec_()\n```\n\n## Result\n\n![image](https://user-images.githubusercontent.com/55078043/164461900-e212c0cc-9f62-4451-bd62-880614a7c074.png)\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyjg30737%2Fpyqt-rounded-corners-lineedit","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fyjg30737%2Fpyqt-rounded-corners-lineedit","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fyjg30737%2Fpyqt-rounded-corners-lineedit/lists"}