Friday, December 27, 2013

Setting proxy in Brackets(code editor for the Web).

Brackets Brackets is an open source code editor for the web. It's entirely developed using JavaScript, HTML and CSS by web developers like you. It's one of my favourite code editors besides WebStorm,PyCharm,Bluefish,etc.. As...

Wednesday, October 23, 2013

GUI development using PyQt4

super(AssetDelegate, self).__init__(parent) The initializer is typical of most delegate subclasses, simply calling the base class. def paint(self, painter, option, index): myoption = QStyleOptionViewItem(option) if index.column()...

Python PyQt app development

class MainForm(QDialog): def __init__(self): super(MainForm, self).__init__() self.assetModel = QSqlRelationalTableModel(self) self.assetModel.setTable("assets") self.assetModel.setRelation(CATEGORYID, QSqlRelation("categories",...