ฉันจะเพิ่มปุ่มลงในแถบเครื่องมือ QGIS หรือสร้างแถบเครื่องมือของตัวเองได้อย่างไร


11

ฉันต้องการสร้างปุ่มและเพิ่มลงในแถบเครื่องมือ QGIS หรือสร้างแถบเครื่องมือของตัวเองและเพิ่มปุ่มที่นี่

ควรเริ่มต้นปลั๊กอินเมื่อผู้ใช้คลิกปุ่ม

คำตอบ:


11

คุณสามารถเพิ่มไอคอนลงในแถบเครื่องมือหรือเมนู สำหรับข้อมูลเพิ่มเติมตรวจสอบ pyqgis Cookbook http://www.qgis.org/pyqgis-cookbook/plugins.html

def initGui(self):
    # create action that will start plugin configuration
    self.action = QAction(QIcon(":/plugins/testplug/icon.png"), "Test plugin", self.iface.mainWindow())
    self.action.setWhatsThis("Configuration for test plugin")
    self.action.setStatusTip("This is status tip")
    QObject.connect(self.action, SIGNAL("triggered()"), self.run)

    # add toolbar button and menu item
    self.iface.addToolBarIcon(self.action)
    self.iface.addPluginToMenu("&Test plugins", self.action)
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.