Hi Phil, I am trying to write a plugin for Qgis. The plugin will do spatial data analysis. I am using PyQt4 in python 2.5. In one form/dialog, there are several Qwidgets like QLineEdit and QLabel. I want to get the list of Qwidgets name, Qwidgets type (like QLineEdit, QLabel) and Qwidgets default value (my_qlabel.text()) and assign these values to python list. I mean that trying to get a list like;
list_widgets_name = ["my_qlineEdit", "my_qlabel"] list_widgets_type = ["QLineEdit", "QLabel"] list_widgets_value = ["Hello world", "Thanks a lot"] Could you please help me? Is there a qt-class having the list of widgets in the form? or where to look? Regards, Volkan Kepoglu PHD Candidate Department of GGIT in METU.
_______________________________________________ PyQt mailing list [email protected] http://www.riverbankcomputing.com/mailman/listinfo/pyqt
