{"id":39254,"date":"2024-11-02T03:38:51","date_gmt":"2024-11-02T03:38:51","guid":{"rendered":"http:\/\/atmokpo.com\/w\/?p=39254"},"modified":"2024-11-26T06:42:00","modified_gmt":"2024-11-26T06:42:00","slug":"pyqt%ea%b0%9c%eb%b0%9c%ea%b0%95%ec%a2%8c-qfiledialog-qcolordialog-qfontdialog-%ed%99%9c%ec%9a%a9%eb%b2%95","status":"publish","type":"post","link":"https:\/\/atmokpo.com\/w\/39254\/","title":{"rendered":"PyQt\uac1c\ubc1c\uac15\uc88c, QFileDialog, QColorDialog, QFontDialog \ud65c\uc6a9\ubc95"},"content":{"rendered":"<p><body><\/p>\n<p>\n        PyQt\ub294 Python\uc744 \uc0ac\uc6a9\ud558\uc5ec GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc8fc\ub294 \uac15\ub825\ud55c \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4.<br \/>\n        \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 PyQt\uc5d0\uc11c \ud30c\uc77c \ub2e4\uc774\uc5bc\ub85c\uadf8\uc640 \uc0c9\uc0c1 \ub2e4\uc774\uc5bc\ub85c\uadf8, \uae00\uaf34 \ub2e4\uc774\uc5bc\ub85c\uadf8\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud558\uc5ec \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4.<br \/>\n        \uc774 \ub2e4\uc774\uc5bc\ub85c\uadf8\ub4e4\uc740 \uc0ac\uc6a9\uc790\uc640 \uc0c1\ud638\uc791\uc6a9\ud560 \uc218 \uc788\ub294 \uc911\uc694\ud55c \uc694\uc18c\ub85c, \ud30c\uc77c \uc120\ud0dd, \uc0c9\uc0c1 \uc120\ud0dd, \uae00\uaf34 \uc120\ud0dd \ub4f1\uc758 \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4.\n    <\/p>\n<h2>1. QFileDialog<\/h2>\n<p>\n<code>QFileDialog<\/code>\ub294 \ud30c\uc77c\uc744 \uc120\ud0dd\ud560 \uc218 \uc788\ub294 \uae30\ubcf8\uc801\uc778 \ub2e4\uc774\uc5bc\ub85c\uadf8\uc785\ub2c8\ub2e4.<br \/>\n        \uc0ac\uc6a9\uc790\uc5d0\uac8c \ud30c\uc77c \ub610\ub294 \ub514\ub809\ud1a0\ub9ac\ub97c \uc120\ud0dd\ud558\uac8c \ud558\uc5ec, \uc120\ud0dd\ub41c \ud30c\uc77c\uc758 \uacbd\ub85c\ub97c \ubc18\ud658\ud569\ub2c8\ub2e4.<br \/>\n        \uc774 \ub2e4\uc774\uc5bc\ub85c\uadf8\ub97c \ud1b5\ud574 \uc0ac\uc6a9\uc790\ub294 \uc790\uc2e0\uc758 \ucef4\ud4e8\ud130 \ub0b4\uc758 \ud30c\uc77c \uc2dc\uc2a4\ud15c\uc5d0 \uc811\uadfc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h3>1.1. QFileDialog\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95<\/h3>\n<p>\n        \uae30\ubcf8\uc801\uc778 \uc0ac\uc6a9\ubc95\uc73c\ub85c\ub294 <code>getOpenFileName()<\/code> \ubc0f <code>getSaveFileName()<\/code> \uba54\uc18c\ub4dc\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4.<br \/>\n        \uc774 \uba54\uc18c\ub4dc\ub294 \uac01\uac01 \ud30c\uc77c\uc744 \uc5f4 \ub54c\uc640 \uc800\uc7a5\ud560 \ub54c \uc5f4\ub9ac\ub294 \ub2e4\uc774\uc5bc\ub85c\uadf8\ub97c \uc0dd\uc131\ud569\ub2c8\ub2e4.\n    <\/p>\n<h4>\uc608\uc81c \ucf54\ub4dc: QFileDialog \uc0ac\uc6a9\ud558\uae30<\/h4>\n<pre><code>import sys\nfrom PyQt5.QtWidgets import QApplication, QMainWindow, QFileDialog, QPushButton, QMessageBox\n\nclass MainWindow(QMainWindow):\n    def __init__(self):\n        super().__init__()\n\n        self.setWindowTitle(\"QFileDialog \uc608\uc81c\")\n        self.setGeometry(100, 100, 400, 300)\n\n        self.button_open = QPushButton(\"\ud30c\uc77c \uc5f4\uae30\", self)\n        self.button_open.setGeometry(100, 100, 200, 50)\n        self.button_open.clicked.connect(self.open_file)\n\n        self.button_save = QPushButton(\"\ud30c\uc77c \uc800\uc7a5\", self)\n        self.button_save.setGeometry(100, 200, 200, 50)\n        self.button_save.clicked.connect(self.save_file)\n\n    def open_file(self):\n        options = QFileDialog.Options()\n        file_name, _ = QFileDialog.getOpenFileName(self, \"\ud30c\uc77c \uc120\ud0dd\", \"\", \"\ubaa8\ub4e0 \ud30c\uc77c (*)\", options=options)\n        if file_name:\n            QMessageBox.information(self, \"\uc120\ud0dd\ud55c \ud30c\uc77c\", f\"{file_name}\ub97c \uc120\ud0dd\ud588\uc2b5\ub2c8\ub2e4.\")\n\n    def save_file(self):\n        options = QFileDialog.Options()\n        file_name, _ = QFileDialog.getSaveFileName(self, \"\uc800\uc7a5\ud560 \ud30c\uc77c \uc120\ud0dd\", \"\", \"\ubaa8\ub4e0 \ud30c\uc77c (*)\", options=options)\n        if file_name:\n            QMessageBox.information(self, \"\uc800\uc7a5\ud560 \ud30c\uc77c\", f\"{file_name}\uc5d0 \uc800\uc7a5\ud569\ub2c8\ub2e4.\")\n\nif __name__ == \"__main__\":\n    app = QApplication(sys.argv)\n    window = MainWindow()\n    window.show()\n    sys.exit(app.exec_())<\/code><\/pre>\n<p>\n        \uc704\uc758 \uc608\uc81c\uc5d0\uc11c\ub294 \ub450 \uac1c\uc758 \ubc84\ud2bc\uc774 \uc788\ub294 \uac04\ub2e8\ud55c PyQt \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uc81c\uc791\ud558\uc600\uc2b5\ub2c8\ub2e4.<br \/>\n        &#8220;\ud30c\uc77c \uc5f4\uae30&#8221; \ubc84\ud2bc\uc744 \ud074\ub9ad\ud558\uba74 \ud30c\uc77c \uc120\ud0dd \ub2e4\uc774\uc5bc\ub85c\uadf8\uac00 \uc5f4\ub9ac\uace0, \uc0ac\uc6a9\uc790\uac00 \uc120\ud0dd\ud55c \ud30c\uc77c \uacbd\ub85c\uac00 \ud45c\uc2dc\ub429\ub2c8\ub2e4.<br \/>\n        &#8220;\ud30c\uc77c \uc800\uc7a5&#8221; \ubc84\ud2bc\ub3c4 \uc720\uc0ac\ud558\uac8c \ub3d9\uc791\ud569\ub2c8\ub2e4.\n    <\/p>\n<h3>1.2. QFileDialog\uc758 \ub2e4\uc591\ud55c \uc635\uc158<\/h3>\n<p>\n<code>QFileDialog<\/code>\ub294 \ub2e4\uc591\ud55c \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \ud544\ud130\ub97c \uc124\uc815\ud558\uac70\ub098 \ub2e4\uc911 \uc120\ud0dd\uc744 \ud5c8\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<br \/>\n        \uc544\ub798\uc640 \uac19\uc740 \ubc29\uc2dd\uc73c\ub85c \ud544\ud130\ub97c \ucd94\uac00\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4:\n    <\/p>\n<h4>\uc608\uc81c \ucf54\ub4dc: \ud30c\uc77c \ud544\ud130 \ucd94\uac00\ud558\uae30<\/h4>\n<pre><code>def open_file(self):\n    options = QFileDialog.Options()\n    filters = \"\ud14d\uc2a4\ud2b8 \ud30c\uc77c (*.txt);;\ubaa8\ub4e0 \ud30c\uc77c (*)\"\n    file_name, _ = QFileDialog.getOpenFileName(self, \"\ud30c\uc77c \uc120\ud0dd\", \"\", filters, options=options)\n    if file_name:\n        QMessageBox.information(self, \"\uc120\ud0dd\ud55c \ud30c\uc77c\", f\"{file_name}\ub97c \uc120\ud0dd\ud588\uc2b5\ub2c8\ub2e4.\")<\/code><\/pre>\n<p>\n        \uc704\uc640 \uac19\uc774 \ud544\ud130\ub97c \ucd94\uac00\ud558\uba74 \uc0ac\uc6a9\uc790\uac00 \uc6d0\ud558\ub294 \ud30c\uc77c \ud615\uc2dd\ub9cc \uc120\ud0dd\ud560 \uc218 \uc788\ub3c4\ub85d \uc81c\ud55c\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.<br \/>\n        \uc774 \uc678\uc5d0\ub3c4 \uc0ac\uc6a9\uc790\uac00 \ub2e4\uc911 \ud30c\uc77c\uc744 \uc120\ud0dd\ud560 \uc218 \uc788\ub294 \uae30\ub2a5\uc744 \ucd94\uac00\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h3>1.3. QFileDialog\uc5d0\uc11c \ub514\ub809\ud1a0\ub9ac \uc120\ud0dd<\/h3>\n<p>\n        \ud30c\uc77c \uc120\ud0dd \ubfd0\ub9cc \uc544\ub2c8\ub77c \ub514\ub809\ud1a0\ub9ac\ub97c \uc120\ud0dd\ud560 \uc218 \uc788\ub294 \ubc29\ubc95\ub3c4 \uc788\uc2b5\ub2c8\ub2e4.<br \/>\n        <code>getExistingDirectory()<\/code> \uba54\uc18c\ub4dc\ub97c \uc0ac\uc6a9\ud558\uba74 \ub514\ub809\ud1a0\ub9ac \uc120\ud0dd \ub2e4\uc774\uc5bc\ub85c\uadf8\ub97c \ub9cc\ub4e4 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h4>\uc608\uc81c \ucf54\ub4dc: \ub514\ub809\ud1a0\ub9ac \uc120\ud0dd\ud558\uae30<\/h4>\n<pre><code>def select_directory(self):\n    options = QFileDialog.Options()\n    directory = QFileDialog.getExistingDirectory(self, \"\ub514\ub809\ud1a0\ub9ac \uc120\ud0dd\", \"\", options=options)\n    if directory:\n        QMessageBox.information(self, \"\uc120\ud0dd\ud55c \ub514\ub809\ud1a0\ub9ac\", f\"{directory}\ub97c \uc120\ud0dd\ud588\uc2b5\ub2c8\ub2e4.\")<\/code><\/pre>\n<h2>2. QColorDialog<\/h2>\n<p>\n<code>QColorDialog<\/code>\ub294 \uc0c9\uc0c1\uc744 \uc120\ud0dd\ud560 \uc218 \uc788\ub294 \ub2e4\uc774\uc5bc\ub85c\uadf8\uc785\ub2c8\ub2e4.<br \/>\n        \uc774 \ub2e4\uc774\uc5bc\ub85c\uadf8\ub294 \uc0ac\uc6a9\uc790\uc5d0\uac8c \uc0c9\uc0c1\uc744 \uc120\ud0dd\ud558\uac8c \ud558\uace0, \uc120\ud0dd\ub41c \uc0c9\uc0c1\uc744 \ubc18\ud658\ud569\ub2c8\ub2e4.<br \/>\n        \ubcf4\ud1b5 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0\uc11c \uc0c9\uc0c1 \ud14c\ub9c8\ub098 \ubc30\uacbd\uc0c9 \ub4f1\uc744 \uc124\uc815\ud560 \ub54c \uc720\uc6a9\ud569\ub2c8\ub2e4.\n    <\/p>\n<h3>2.1. QColorDialog\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95<\/h3>\n<p>\n        \uae30\ubcf8\uc801\uc73c\ub85c <code>getColor()<\/code> \uba54\uc18c\ub4dc\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc0c9\uc0c1\uc744 \uc120\ud0dd\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h4>\uc608\uc81c \ucf54\ub4dc: QColorDialog \uc0ac\uc6a9\ud558\uae30<\/h4>\n<pre><code>def choose_color(self):\n    color = QColorDialog.getColor()\n    if color.isValid():\n        self.setStyleSheet(f\"background-color: {color.name()};\")<\/code><\/pre>\n<p>\n        \uc704\uc758 \uc608\uc81c\uc5d0\uc11c \uc0ac\uc6a9\uc790\uac00 \uc0c9\uc0c1\uc744 \uc120\ud0dd\ud558\uba74, \uadf8 \uc0c9\uc0c1\uc774 \uc708\ub3c4\uc6b0\uc758 \ubc30\uacbd\uc0c9\uc73c\ub85c \uc124\uc815\ub429\ub2c8\ub2e4.\n    <\/p>\n<h3>2.2. QColorDialog\uc758 \ub2e4\uc591\ud55c \uc635\uc158<\/h3>\n<p>\n        \uc774 \ub2e4\uc774\uc5bc\ub85c\uadf8\ub3c4 \ub2e4\uc591\ud55c \uc635\uc158\uc744 \uc81c\uacf5\ud558\uba70, \ucd08\uae30 \uc0c9\uc0c1\uc744 \uc9c0\uc815\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uc544\ub798\uc640 \uac19\uc774 \uc0ac\uc6a9\ud569\ub2c8\ub2e4:\n    <\/p>\n<h4>\uc608\uc81c \ucf54\ub4dc: \ucd08\uae30 \uc0c9\uc0c1 \uc124\uc815\ud558\uae30<\/h4>\n<pre><code>color = QColorDialog.getColor(QColor(255, 0, 0))  # \ucd08\uae30 \uc0c9\uc0c1\uc744 \ube68\uac15\uc73c\ub85c \uc124\uc815<\/code><\/pre>\n<h2>3. QFontDialog<\/h2>\n<p>\n<code>QFontDialog<\/code>\ub294 \uae00\uaf34\uc744 \uc120\ud0dd\ud560 \uc218 \uc788\ub294 \ub2e4\uc774\uc5bc\ub85c\uadf8\uc785\ub2c8\ub2e4. \uc774 \ub2e4\uc774\uc5bc\ub85c\uadf8\ub294 \uc0ac\uc6a9\uc790\uc5d0\uac8c \ub2e4\uc591\ud55c \uae00\uaf34 \uc635\uc158\uc744 \uc81c\uacf5\ud558\uc5ec \uae00\uaf34 \uc2a4\ud0c0\uc77c, \ud06c\uae30 \ub4f1\uc744 \uc120\ud0dd\ud558\uac8c \ud569\ub2c8\ub2e4.<br \/>\n        \uae00\uaf34\uc744 \uc120\ud0dd\ud558\ub294 \uae30\ub2a5\uc740 \ud14d\uc2a4\ud2b8 \uae30\ubc18 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0\uc11c \uc720\uc6a9\ud558\uac8c \uc0ac\uc6a9\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h3>3.1. QFontDialog\uc758 \uae30\ubcf8 \uc0ac\uc6a9\ubc95<\/h3>\n<p>\n        \uae30\ubcf8\uc801\uc73c\ub85c <code>getFont()<\/code> \uba54\uc18c\ub4dc\ub97c \uc0ac\uc6a9\ud558\uc5ec \uae00\uaf34\uc744 \uc120\ud0dd\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<h4>\uc608\uc81c \ucf54\ub4dc: QFontDialog \uc0ac\uc6a9\ud558\uae30<\/h4>\n<pre><code>def choose_font(self):\n    font, ok = QFontDialog.getFont()\n    if ok:\n        self.setFont(font)<\/code><\/pre>\n<p>\n        \uc704\uc758 \uc608\uc81c\uc5d0\uc11c \uc0ac\uc6a9\uc790\uac00 \uae00\uaf34\uc744 \uc120\ud0dd\ud558\uba74, \uc120\ud0dd\ub41c \uae00\uaf34\uc774 \uc708\ub3c4\uc6b0\uc758 \uae30\ubcf8 \uae00\uaf34\ub85c \uc124\uc815\ub429\ub2c8\ub2e4.\n    <\/p>\n<h3>3.2. QFontDialog\uc758 \ub2e4\uc591\ud55c \uc635\uc158<\/h3>\n<p>\n        \ucd08\uae30 \uae00\uaf34\uc744 \uc124\uc815\ud560 \uc218\ub3c4 \uc788\uc2b5\ub2c8\ub2e4. \uc608\ub97c \ub4e4\uc5b4, \ub2e4\uc74c\uacfc \uac19\uc740 \ubc29\uc2dd\uc73c\ub85c \ud2b9\uc815 \uae00\uaf34\ub85c \ucd08\uae30\ud654\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4:\n    <\/p>\n<h4>\uc608\uc81c \ucf54\ub4dc: \ucd08\uae30 \uae00\uaf34 \uc124\uc815\ud558\uae30<\/h4>\n<pre><code>font, ok = QFontDialog.getFont(QFont(\"Arial\", 12))  # \ucd08\uae30 \uae00\uaf34\uc744 Arial\ub85c \uc124\uc815<\/code><\/pre>\n<h2>4. \uacb0\ub860<\/h2>\n<p>\n        \uc774\ubc88 \uac15\uc88c\uc5d0\uc11c\ub294 PyQt\uc758 <code>QFileDialog<\/code>, <code>QColorDialog<\/code>, <code>QFontDialog<\/code>\uc758 \uc0ac\uc6a9\ubc95\uc5d0 \ub300\ud574 \uc54c\uc544\ubcf4\uc558\uc2b5\ub2c8\ub2e4.<br \/>\n        \uc774\ub4e4\uc740 PyQt\ub85c GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \ub54c \ub9e4\uc6b0 \uc720\uc6a9\ud55c \ub3c4\uad6c\uc785\ub2c8\ub2e4.<br \/>\n        \uc0ac\uc6a9\uc790\ub294 \uc774\ub7ec\ud55c \ub2e4\uc774\uc5bc\ub85c\uadf8\ub97c \ud1b5\ud574 \ud30c\uc77c \uc120\ud0dd, \uc0c9\uc0c1 \uc120\ud0dd, \uae00\uaf34 \uc120\ud0dd \ub4f1 \ub2e4\uc591\ud55c \uc791\uc5c5\uc744 \uc27d\uac8c \uc218\ud589\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.\n    <\/p>\n<p>\n        \uac01 \ub2e4\uc774\uc5bc\ub85c\uadf8\uc758 \ub2e4\uc591\ud55c \uc635\uc158\uacfc \uc0ac\uc6a9\ubc95\uc744 \uc219\uc9c0\ud558\uba74 \ub354 \ub098\uc740 \uc0ac\uc6a9\uc790 \uacbd\ud5d8\uc744 \uc81c\uacf5\ud558\ub294 \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \uac1c\ubc1c\ud560 \uc218 \uc788\uc744 \uac83\uc785\ub2c8\ub2e4.<br \/>\n        \uc2e4\uc81c \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc5d0\uc11c\ub294 \uc774\ub7ec\ud55c \ub2e4\uc774\uc5bc\ub85c\uadf8\ub97c \uc801\uc808\ud788 \ud65c\uc6a9\ud558\uc5ec \uc0ac\uc6a9\uc790\uc640\uc758 \uc0c1\ud638\uc791\uc6a9\uc744 \uac1c\uc120\ud574\ubcf4\uc138\uc694.\n    <\/p>\n<p>\n        \uc55e\uc73c\ub85c\ub3c4 PyQt \uac1c\ubc1c\uc5d0 \ub300\ud55c \ub354 \ub9ce\uc740 \uc8fc\uc81c\ub97c \ub2e4\ub8e8\uc5b4 \ubcf4\uaca0\uc2b5\ub2c8\ub2e4.<br \/>\n        \ub2e4\uc74c \uac15\uc88c\uc5d0\uc11c\ub294 PyQt\uc758 \uc704\uc82f\uacfc \ub808\uc774\uc544\uc6c3\uc5d0 \ub300\ud574 \ub2e4\ub8f0 \uc608\uc815\uc774\ub2c8 \ub9ce\uc740 \uae30\ub300 \ubd80\ud0c1\ub4dc\ub9bd\ub2c8\ub2e4.\n    <\/p>\n<p><\/body><\/p>\n","protected":false},"excerpt":{"rendered":"<p>PyQt\ub294 Python\uc744 \uc0ac\uc6a9\ud558\uc5ec GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc8fc\ub294 \uac15\ub825\ud55c \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 PyQt\uc5d0\uc11c \ud30c\uc77c \ub2e4\uc774\uc5bc\ub85c\uadf8\uc640 \uc0c9\uc0c1 \ub2e4\uc774\uc5bc\ub85c\uadf8, \uae00\uaf34 \ub2e4\uc774\uc5bc\ub85c\uadf8\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud558\uc5ec \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. \uc774 \ub2e4\uc774\uc5bc\ub85c\uadf8\ub4e4\uc740 \uc0ac\uc6a9\uc790\uc640 \uc0c1\ud638\uc791\uc6a9\ud560 \uc218 \uc788\ub294 \uc911\uc694\ud55c \uc694\uc18c\ub85c, \ud30c\uc77c \uc120\ud0dd, \uc0c9\uc0c1 \uc120\ud0dd, \uae00\uaf34 \uc120\ud0dd \ub4f1\uc758 \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. 1. QFileDialog QFileDialog\ub294 \ud30c\uc77c\uc744 \uc120\ud0dd\ud560 \uc218 \uc788\ub294 \uae30\ubcf8\uc801\uc778 \ub2e4\uc774\uc5bc\ub85c\uadf8\uc785\ub2c8\ub2e4. \uc0ac\uc6a9\uc790\uc5d0\uac8c \ud30c\uc77c \ub610\ub294 \ub514\ub809\ud1a0\ub9ac\ub97c &hellip; <a href=\"https:\/\/atmokpo.com\/w\/39254\/\" class=\"more-link\">\ub354 \ubcf4\uae30<span class=\"screen-reader-text\"> &#8220;PyQt\uac1c\ubc1c\uac15\uc88c, QFileDialog, QColorDialog, QFontDialog \ud65c\uc6a9\ubc95&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[193],"tags":[],"class_list":["post-39254","post","type-post","status-publish","format-standard","hentry","category-pyqt"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>PyQt\uac1c\ubc1c\uac15\uc88c, QFileDialog, QColorDialog, QFontDialog \ud65c\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/atmokpo.com\/w\/39254\/\" \/>\n<meta property=\"og:locale\" content=\"ko_KR\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"PyQt\uac1c\ubc1c\uac15\uc88c, QFileDialog, QColorDialog, QFontDialog \ud65c\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"og:description\" content=\"PyQt\ub294 Python\uc744 \uc0ac\uc6a9\ud558\uc5ec GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc8fc\ub294 \uac15\ub825\ud55c \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 PyQt\uc5d0\uc11c \ud30c\uc77c \ub2e4\uc774\uc5bc\ub85c\uadf8\uc640 \uc0c9\uc0c1 \ub2e4\uc774\uc5bc\ub85c\uadf8, \uae00\uaf34 \ub2e4\uc774\uc5bc\ub85c\uadf8\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud558\uc5ec \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. \uc774 \ub2e4\uc774\uc5bc\ub85c\uadf8\ub4e4\uc740 \uc0ac\uc6a9\uc790\uc640 \uc0c1\ud638\uc791\uc6a9\ud560 \uc218 \uc788\ub294 \uc911\uc694\ud55c \uc694\uc18c\ub85c, \ud30c\uc77c \uc120\ud0dd, \uc0c9\uc0c1 \uc120\ud0dd, \uae00\uaf34 \uc120\ud0dd \ub4f1\uc758 \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. 1. QFileDialog QFileDialog\ub294 \ud30c\uc77c\uc744 \uc120\ud0dd\ud560 \uc218 \uc788\ub294 \uae30\ubcf8\uc801\uc778 \ub2e4\uc774\uc5bc\ub85c\uadf8\uc785\ub2c8\ub2e4. \uc0ac\uc6a9\uc790\uc5d0\uac8c \ud30c\uc77c \ub610\ub294 \ub514\ub809\ud1a0\ub9ac\ub97c &hellip; \ub354 \ubcf4\uae30 &quot;PyQt\uac1c\ubc1c\uac15\uc88c, QFileDialog, QColorDialog, QFontDialog \ud65c\uc6a9\ubc95&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/atmokpo.com\/w\/39254\/\" \/>\n<meta property=\"og:site_name\" content=\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\" \/>\n<meta property=\"article:published_time\" content=\"2024-11-02T03:38:51+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-11-26T06:42:00+00:00\" \/>\n<meta name=\"author\" content=\"root\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:site\" content=\"@bebubo4\" \/>\n<meta name=\"twitter:label1\" content=\"\uae00\uc4f4\uc774\" \/>\n\t<meta name=\"twitter:data1\" content=\"root\" \/>\n\t<meta name=\"twitter:label2\" content=\"\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\ubd84\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/atmokpo.com\/w\/39254\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39254\/\"},\"author\":{\"name\":\"root\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\"},\"headline\":\"PyQt\uac1c\ubc1c\uac15\uc88c, QFileDialog, QColorDialog, QFontDialog \ud65c\uc6a9\ubc95\",\"datePublished\":\"2024-11-02T03:38:51+00:00\",\"dateModified\":\"2024-11-26T06:42:00+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39254\/\"},\"wordCount\":27,\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"articleSection\":[\"PyQt\"],\"inLanguage\":\"ko-KR\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/atmokpo.com\/w\/39254\/\",\"url\":\"https:\/\/atmokpo.com\/w\/39254\/\",\"name\":\"PyQt\uac1c\ubc1c\uac15\uc88c, QFileDialog, QColorDialog, QFontDialog \ud65c\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"isPartOf\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#website\"},\"datePublished\":\"2024-11-02T03:38:51+00:00\",\"dateModified\":\"2024-11-26T06:42:00+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/atmokpo.com\/w\/39254\/#breadcrumb\"},\"inLanguage\":\"ko-KR\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/atmokpo.com\/w\/39254\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/atmokpo.com\/w\/39254\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\ud648\",\"item\":\"https:\/\/atmokpo.com\/w\/en\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"PyQt\uac1c\ubc1c\uac15\uc88c, QFileDialog, QColorDialog, QFontDialog \ud65c\uc6a9\ubc95\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/atmokpo.com\/w\/#website\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"description\":\"\",\"publisher\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/atmokpo.com\/w\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"ko-KR\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/atmokpo.com\/w\/#organization\",\"name\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\",\"url\":\"https:\/\/atmokpo.com\/w\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"contentUrl\":\"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png\",\"width\":400,\"height\":400,\"caption\":\"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8\"},\"image\":{\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/bebubo4\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7\",\"name\":\"root\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"ko-KR\",\"@id\":\"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g\",\"caption\":\"root\"},\"sameAs\":[\"http:\/\/atmokpo.com\/w\"],\"url\":\"https:\/\/atmokpo.com\/w\/author\/root\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"PyQt\uac1c\ubc1c\uac15\uc88c, QFileDialog, QColorDialog, QFontDialog \ud65c\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/atmokpo.com\/w\/39254\/","og_locale":"ko_KR","og_type":"article","og_title":"PyQt\uac1c\ubc1c\uac15\uc88c, QFileDialog, QColorDialog, QFontDialog \ud65c\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","og_description":"PyQt\ub294 Python\uc744 \uc0ac\uc6a9\ud558\uc5ec GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc8fc\ub294 \uac15\ub825\ud55c \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 PyQt\uc5d0\uc11c \ud30c\uc77c \ub2e4\uc774\uc5bc\ub85c\uadf8\uc640 \uc0c9\uc0c1 \ub2e4\uc774\uc5bc\ub85c\uadf8, \uae00\uaf34 \ub2e4\uc774\uc5bc\ub85c\uadf8\ub97c \uc0ac\uc6a9\ud558\ub294 \ubc29\ubc95\uc5d0 \ub300\ud558\uc5ec \uc790\uc138\ud788 \uc124\uba85\ud558\uaca0\uc2b5\ub2c8\ub2e4. \uc774 \ub2e4\uc774\uc5bc\ub85c\uadf8\ub4e4\uc740 \uc0ac\uc6a9\uc790\uc640 \uc0c1\ud638\uc791\uc6a9\ud560 \uc218 \uc788\ub294 \uc911\uc694\ud55c \uc694\uc18c\ub85c, \ud30c\uc77c \uc120\ud0dd, \uc0c9\uc0c1 \uc120\ud0dd, \uae00\uaf34 \uc120\ud0dd \ub4f1\uc758 \uae30\ub2a5\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. 1. QFileDialog QFileDialog\ub294 \ud30c\uc77c\uc744 \uc120\ud0dd\ud560 \uc218 \uc788\ub294 \uae30\ubcf8\uc801\uc778 \ub2e4\uc774\uc5bc\ub85c\uadf8\uc785\ub2c8\ub2e4. \uc0ac\uc6a9\uc790\uc5d0\uac8c \ud30c\uc77c \ub610\ub294 \ub514\ub809\ud1a0\ub9ac\ub97c &hellip; \ub354 \ubcf4\uae30 \"PyQt\uac1c\ubc1c\uac15\uc88c, QFileDialog, QColorDialog, QFontDialog \ud65c\uc6a9\ubc95\"","og_url":"https:\/\/atmokpo.com\/w\/39254\/","og_site_name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","article_published_time":"2024-11-02T03:38:51+00:00","article_modified_time":"2024-11-26T06:42:00+00:00","author":"root","twitter_card":"summary_large_image","twitter_creator":"@bebubo4","twitter_site":"@bebubo4","twitter_misc":{"\uae00\uc4f4\uc774":"root","\uc608\uc0c1 \ub418\ub294 \ud310\ub3c5 \uc2dc\uac04":"1\ubd84"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/atmokpo.com\/w\/39254\/#article","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/39254\/"},"author":{"name":"root","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7"},"headline":"PyQt\uac1c\ubc1c\uac15\uc88c, QFileDialog, QColorDialog, QFontDialog \ud65c\uc6a9\ubc95","datePublished":"2024-11-02T03:38:51+00:00","dateModified":"2024-11-26T06:42:00+00:00","mainEntityOfPage":{"@id":"https:\/\/atmokpo.com\/w\/39254\/"},"wordCount":27,"publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"articleSection":["PyQt"],"inLanguage":"ko-KR"},{"@type":"WebPage","@id":"https:\/\/atmokpo.com\/w\/39254\/","url":"https:\/\/atmokpo.com\/w\/39254\/","name":"PyQt\uac1c\ubc1c\uac15\uc88c, QFileDialog, QColorDialog, QFontDialog \ud65c\uc6a9\ubc95 - \ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","isPartOf":{"@id":"https:\/\/atmokpo.com\/w\/#website"},"datePublished":"2024-11-02T03:38:51+00:00","dateModified":"2024-11-26T06:42:00+00:00","breadcrumb":{"@id":"https:\/\/atmokpo.com\/w\/39254\/#breadcrumb"},"inLanguage":"ko-KR","potentialAction":[{"@type":"ReadAction","target":["https:\/\/atmokpo.com\/w\/39254\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/atmokpo.com\/w\/39254\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\ud648","item":"https:\/\/atmokpo.com\/w\/en\/"},{"@type":"ListItem","position":2,"name":"PyQt\uac1c\ubc1c\uac15\uc88c, QFileDialog, QColorDialog, QFontDialog \ud65c\uc6a9\ubc95"}]},{"@type":"WebSite","@id":"https:\/\/atmokpo.com\/w\/#website","url":"https:\/\/atmokpo.com\/w\/","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","description":"","publisher":{"@id":"https:\/\/atmokpo.com\/w\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/atmokpo.com\/w\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"ko-KR"},{"@type":"Organization","@id":"https:\/\/atmokpo.com\/w\/#organization","name":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8","url":"https:\/\/atmokpo.com\/w\/","logo":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/","url":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","contentUrl":"https:\/\/atmokpo.com\/w\/wp-content\/uploads\/2024\/11\/logo.png","width":400,"height":400,"caption":"\ub77c\uc774\ube0c\uc2a4\ub9c8\ud2b8"},"image":{"@id":"https:\/\/atmokpo.com\/w\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/bebubo4"]},{"@type":"Person","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/91b6b3b138fbba0efb4ae64b1abd81d7","name":"root","image":{"@type":"ImageObject","inLanguage":"ko-KR","@id":"https:\/\/atmokpo.com\/w\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/708197b41fc6435a7ce22d951b25d4a47e9e904270cb1f04682d4f025066f80c?s=96&d=mm&r=g","caption":"root"},"sameAs":["http:\/\/atmokpo.com\/w"],"url":"https:\/\/atmokpo.com\/w\/author\/root\/"}]}},"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"jetpack-related-posts":[{"id":39132,"url":"https:\/\/atmokpo.com\/w\/39132\/","url_meta":{"origin":39254,"position":0},"title":"PyQt\uac1c\ubc1c\uac15\uc88c, QSequentialAnimationGroup\uacfc QParallelAnimationGroup","author":"root","date":"2024\ub144 11\uc6d4 02\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c \uc11c\ub860 PyQt\ub294 Python\uc5d0\uc11c Qt \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c\uc744 \uac00\ub2a5\ud558\uac8c \ud558\ub294 \uac00\uc7a5 \uc778\uae30 \uc788\ub294 \ub77c\uc774\ube0c\ub7ec\ub9ac \uc911 \ud558\ub098\uc785\ub2c8\ub2e4. PyQt\ub97c \ud65c\uc6a9\ud558\uba74 \ubcf5\uc7a1\ud55c GUI \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ud6a8\uc728\uc801\uc73c\ub85c \uc81c\uc791\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. \uadf8 \uc911\uc5d0\uc11c\ub3c4 \uc560\ub2c8\uba54\uc774\uc158\uc740 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\ub97c \ubcf4\ub2e4 \uc9c1\uad00\uc801\uc774\uace0 \ub9e4\ub825\uc801\uc73c\ub85c \ub9cc\ub4dc\ub294 \uc911\uc694\ud55c \uc694\uc18c\uc785\ub2c8\ub2e4. QSequentialAnimationGroup\uacfc QParallelAnimationGroup\uc740 PyQt\uc5d0\uc11c \uc560\ub2c8\uba54\uc774\uc158\uc744 \ud6a8\uacfc\uc801\uc73c\ub85c \uad00\ub9ac\ud558\uae30 \uc704\ud55c \ub450 \uac00\uc9c0 \uc911\uc694\ud55c\u2026","rel":"","context":"&quot;PyQt&quot;\uc5d0\uc11c","block_context":{"text":"PyQt","link":"https:\/\/atmokpo.com\/w\/category\/pyqt\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":39284,"url":"https:\/\/atmokpo.com\/w\/39284\/","url_meta":{"origin":39254,"position":1},"title":"PyQt\uac1c\ubc1c\uac15\uc88c, MacOS Spotlight \uac19\uc740 \uae30\ub2a5 \uad6c\ud604, \ud14d\uc2a4\ud2b8\uc640 \ub9c1\ud06c \ub4f1\uc744 \ud3ec\ud568\ud55c \uc815\ubcf4 \ub808\uc774\uc5b4 \ucd94\uac00","author":"root","date":"2024\ub144 11\uc6d4 02\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \uc791\uc131\uc77c: 2024\ub144 11\uc6d4 26\uc77c 1. \uc11c\ub860 PyQt\ub294 Python \ud504\ub85c\uadf8\ub798\uba38\ub4e4\uc774 Qt \ud504\ub808\uc784\uc6cc\ud06c\ub97c \ud65c\uc6a9\ud558\uc5ec \uac15\ub825\ud558\uace0 \uc9c1\uad00\uc801\uc778 GUI(Graphical User Interface) \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc744 \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \uc9c0\uc6d0\ud558\ub294 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc785\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 MacOS\uc758 Spotlight\uc640 \uc720\uc0ac\ud55c \uae30\ub2a5\uc744 \uad6c\ud604\ud574\ubcfc \uac83\uc785\ub2c8\ub2e4. Spotlight\ub294 \uc0ac\uc6a9\uc790\uac00 \ud544\uc694\ub85c \ud558\ub294 \uc815\ubcf4\ub97c \ube60\ub974\uac8c \ucc3e\uc744 \uc218 \uc788\ub3c4\ub85d \ub3d5\ub294 \uac15\ub825\ud55c \ub3c4\uad6c\uc785\ub2c8\ub2e4. \uc6b0\ub9ac\ub294 \uc774\uc640 \uc720\uc0ac\ud55c \uac80\uc0c9 \uae30\ub2a5\uc744\u2026","rel":"","context":"&quot;PyQt&quot;\uc5d0\uc11c","block_context":{"text":"PyQt","link":"https:\/\/atmokpo.com\/w\/category\/pyqt\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":43332,"url":"https:\/\/atmokpo.com\/w\/43332\/","url_meta":{"origin":39254,"position":2},"title":"[Electron]  008. Electron \uc560\ud50c\ub9ac\ucf00\uc774\uc158 \uac1c\ubc1c \ub2e8\uacc4, \uae30\ubcf8\uc801\uc778 \uae30\ub2a5 \uad6c\ud604 (\uba54\ub274, \ub2e4\uc774\uc5bc\ub85c\uadf8 \ub4f1)","author":"root","date":"2024\ub144 11\uc6d4 26\uc77c","format":false,"excerpt":"Welcome to Electron Show Dialog","rel":"","context":"&quot;electron&quot;\uc5d0\uc11c","block_context":{"text":"electron","link":"https:\/\/atmokpo.com\/w\/category\/electron\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":25854,"url":"https:\/\/atmokpo.com\/w\/25854\/","url_meta":{"origin":39254,"position":3},"title":"\uc2a4\uc704\ud504\ud2b8\ub85c SwiftUI \ubc29\uc2dd, \uc544\uc774\ud3f0 \uc571 \uac1c\ubc1c, \ucf5c\ub77c\uc8fc \uc0ac\uc9c4 \ub9cc\ub4e4\uae30","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"Author: \uc870\uad11\ud615 Date: [\ub0a0\uc9dc] 1. \uc11c\ub860 \uc624\ub298\ub0a0 \uc6b0\ub9ac\ub294 \uc2a4\ub9c8\ud2b8\ud3f0\uc744 \ud1b5\ud574 \uc0ac\uc9c4\uc744 \uc27d\uac8c \ucc0d\uace0 \uc18c\ud1b5\ud560 \uc218 \uc788\ub294 \uc2dc\ub300\uc5d0 \uc0b4\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc6b0\ub9ac \uc0b6\uc758 \uc5ec\ub7ec \uc21c\uac04\uc744 \uae30\ub85d\ud558\uae30 \uc704\ud574, \uadf8\ub9ac\uace0 \uadf8 \uc21c\uac04\ub4e4\uc744 \uce5c\uad6c\ub4e4\uacfc \uacf5\uc720\ud558\uae30 \uc704\ud574 \ub9ce\uc740 \uc0ac\ub78c\ub4e4\uc774 \uc18c\uc15c \ubbf8\ub514\uc5b4\ub97c \uc0ac\uc6a9\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4. \uc774\ub7ec\ud55c \ud750\ub984 \uc18d\uc5d0\uc11c, \uc8fc\ubaa9\ud560 \ub9cc\ud55c \uc544\uc774\ub514\uc5b4 \uc911 \ud558\ub098\ub294 \ub2e4\uc591\ud55c \uc0ac\uc9c4\uc744 \uacb0\ud569\ud558\uc5ec \ucf5c\ub77c\uc8fc\ub97c \ub9cc\ub4dc\ub294\u2026","rel":"","context":"&quot;\uc2a4\uc704\ud504\ud2b8 \uc544\uc774\ud3f0\uc571 \uac1c\ubc1c (SwiftUI)&quot;\uc5d0\uc11c","block_context":{"text":"\uc2a4\uc704\ud504\ud2b8 \uc544\uc774\ud3f0\uc571 \uac1c\ubc1c (SwiftUI)","link":"https:\/\/atmokpo.com\/w\/category\/%ec%8a%a4%ec%9c%84%ed%94%84%ed%8a%b8-%ec%95%84%ec%9d%b4%ed%8f%b0%ec%95%b1-%ea%b0%9c%eb%b0%9c-swiftui\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":25730,"url":"https:\/\/atmokpo.com\/w\/25730\/","url_meta":{"origin":39254,"position":4},"title":"\uc2a4\uc704\ud504\ud2b8\ub85c UIKIT\ubc29\uc2dd, \uc544\uc774\ud3f0\uc571 \uac1c\ubc1c, \uba40\ud2f0\ubbf8\ub514\uc5b4 \ud65c\uc6a9\ud558\uae30","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc800\uc790: \uc870\uad11\ud615 \ub0a0\uc9dc: [\ub0a0\uc9dc] 1. \uc11c\ub860 \ucd5c\uadfc \uc2a4\ub9c8\ud2b8\ud3f0\uacfc \ubaa8\ubc14\uc77c \uae30\uae30\uc758 \ubc1c\uc804\uc740 \uc6b0\ub9ac \uc0dd\ud65c\uc758 \ub9ce\uc740 \ubd80\ubd84\uc744 \ubcc0\ud654\uc2dc\ucf30\uc2b5\ub2c8\ub2e4. \uadf8 \uc911\uc5d0\uc11c\ub3c4 \uc544\uc774\ud3f0\uacfc iOS \uc560\ud50c\ub9ac\ucf00\uc774\uc158\uc740 \uc0ac\uc6a9\uc790\uc758 \ud3b8\ub9ac\ud568\uc744 \uadf9\ub300\ud654\ud558\uba70 \ub9ce\uc740 \uc778\uae30\ub97c \ub04c\uace0 \uc788\uc2b5\ub2c8\ub2e4. \ubcf8 \uac15\uc88c\uc5d0\uc11c\ub294 \uc2a4\uc704\ud504\ud2b8(Swift) \uc5b8\uc5b4\ub97c \uc0ac\uc6a9\ud55c \uc544\uc774\ud3f0 \uc571 \uac1c\ubc1c\uc5d0\uc11c UIKit \ud504\ub808\uc784\uc6cc\ud06c\ub97c \ud65c\uc6a9\ud55c \uba40\ud2f0\ubbf8\ub514\uc5b4 \ucf58\ud150\uce20\uc758 \uc801\uc6a9 \ubc29\ubc95\uc744 \uc0c1\uc138\ud788 \uc0b4\ud3b4\ubcf4\uaca0\uc2b5\ub2c8\ub2e4. 2. \uc2a4\uc704\ud504\ud2b8\uc640 iOS \uac1c\ubc1c \ud658\uacbd\u2026","rel":"","context":"&quot;\uc2a4\uc704\ud504\ud2b8 \uc544\uc774\ud3f0\uc571 \uac1c\ubc1c (UIKit)&quot;\uc5d0\uc11c","block_context":{"text":"\uc2a4\uc704\ud504\ud2b8 \uc544\uc774\ud3f0\uc571 \uac1c\ubc1c (UIKit)","link":"https:\/\/atmokpo.com\/w\/category\/%ec%8a%a4%ec%9c%84%ed%94%84%ed%8a%b8-%ec%95%84%ec%9d%b4%ed%8f%b0%ec%95%b1-%ea%b0%9c%eb%b0%9c-uikit\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]},{"id":25800,"url":"https:\/\/atmokpo.com\/w\/25800\/","url_meta":{"origin":39254,"position":5},"title":"\uc2a4\uc704\ud504\ud2b8\ub85c SwiftUI \ubc29\uc2dd\uc758 \uc544\uc774\ud3f0 \uc571 \uac1c\ubc1c: 14 \ube44\ub514\uc624 \uc7ac\uc0dd \uc571 \ub9cc\ub4e4\uae30","author":"root","date":"2024\ub144 10\uc6d4 27\uc77c","format":false,"excerpt":"\uc791\uc131\uc790: \uc870\uad11\ud615 \ub0a0\uc9dc: 2024\ub144 11\uc6d4 26\uc77c \uc18c\uac1c \uc560\ud50c\uc758 SwiftUI\ub294 \ud604\ub300\uc801\uc778 \uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4\ub97c \uac04\uc18c\ud654\ud558\uc5ec \uac1c\ubc1c\uc790\uac00 \uc571\uc744 \uc2e0\uc18d\ud558\uac8c \ub9cc\ub4e4 \uc218 \uc788\ub3c4\ub85d \ub3c4\uc640\uc8fc\ub294 \ud504\ub808\uc784\uc6cc\ud06c\uc785\ub2c8\ub2e4. \uc774 \uac15\uc88c\uc5d0\uc11c\ub294 SwiftUI\ub97c \uc0ac\uc6a9\ud558\uc5ec iPhone\uc5d0\uc11c \ube44\ub514\uc624\ub97c \uc7ac\uc0dd\ud560 \uc218 \uc788\ub294 \uc571\uc744 \ub9cc\ub4dc\ub294 \ubc29\ubc95\uc744 \ubc30\uc6b0\uac8c \ub429\ub2c8\ub2e4. \uc774 \uc571\uc740 \uc0ac\uc6a9\uc790\uac00 \ube44\ub514\uc624\ub97c \uac80\uc0c9\ud558\uace0 \uc120\ud0dd\ud560 \uc218 \uc788\uc73c\uba70, \uc6d0\ud65c\ud55c \uc7ac\uc0dd \uacbd\ud5d8\uc744 \uc81c\uacf5\ud569\ub2c8\ub2e4. \ud544\uc694\ud55c \ub3c4\uad6c\uc640 \ud658\uacbd\u2026","rel":"","context":"&quot;\uc2a4\uc704\ud504\ud2b8 \uc544\uc774\ud3f0\uc571 \uac1c\ubc1c (SwiftUI)&quot;\uc5d0\uc11c","block_context":{"text":"\uc2a4\uc704\ud504\ud2b8 \uc544\uc774\ud3f0\uc571 \uac1c\ubc1c (SwiftUI)","link":"https:\/\/atmokpo.com\/w\/category\/%ec%8a%a4%ec%9c%84%ed%94%84%ed%8a%b8-%ec%95%84%ec%9d%b4%ed%8f%b0%ec%95%b1-%ea%b0%9c%eb%b0%9c-swiftui\/"},"img":{"alt_text":"","src":"","width":0,"height":0},"classes":[]}],"_links":{"self":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/39254","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/comments?post=39254"}],"version-history":[{"count":1,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/39254\/revisions"}],"predecessor-version":[{"id":39255,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/posts\/39254\/revisions\/39255"}],"wp:attachment":[{"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/media?parent=39254"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/categories?post=39254"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/atmokpo.com\/w\/wp-json\/wp\/v2\/tags?post=39254"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}