insert a table view inside a Qtextedit Qt4 Programming Software Development by wkarl i want to Display my QTableView insid QTextEdit ? can i do this thing ?? if i can how i can do it ? loading method help to QTextEdit in pyqt4 Programming Software Development by krystosan I am trying to load the help on each method into a QTextEdit in PyQt4 how can I have this variable hold help on a method, example: `data = os.system('python -c "import sys; help(sys.path)"')` but data value contains `0` Re: loading method help to QTextEdit in pyqt4 Programming Software Development by krystosan got some success but the text is not properly formatted any help would be appreciated `data = os.popen('python -c "import sys; help(sys.path)"').read()` now data stores value like the below but not formatted.. '"Help on list object:\\n\\nclass list(object)\\n | list() -> new empty list\\n | list(iterable) -> new list… Re: loading method help to QTextEdit in pyqt4 Programming Software Development by krystosan is this possible to do how I am trying to do def outputHelp(self): ### module ### module = "" items = self.searchListView.selectedIndexes() for item in items: module = str(item.data().toString()).split(":")[0] method = "" items = self.methodListView.selectedIndexes()… Re: loading method help to QTextEdit in pyqt4 Programming Software Development by krystosan figured out using tmpFile. Re: CodeEditor = problem Programming Software Development by quuba …true); font.setPointSize(30); QTextEdit textEdit = new QTextEdit(); // textEdit.setLineWrapMode(QTextEdit.LineWrapMode.NoWrap); textEdit.setFont…CODE] [CODE]public class CodeEditor extends QTextEdit { //![constructor] public CodeEditor(QTextEdit textEdit) { super.setDocument(textEdit.document());… fetching data from qt Programming Software Development by funfullson …self.pushButton_2.setObjectName("pushButton_2") self.textEdit = QtGui.QTextEdit(Dialog) self.textEdit.setGeometry(QtCore.QRect(210, 10, 104,… self.textEdit_4.setObjectName("textEdit_4") self.textEdit_5 = QtGui.QTextEdit(Dialog) self.textEdit_5.setGeometry(QtCore.QRect(110, 110, 104… PySide QProcess, Need Help Programming Software Development by markfw … has one instance of QProcess and once instance of QtGui.QTextEdit on __init__ [CODE] self.process = QtCore.QProcess(self) self.…gcc on STDOUT, STDERR from QProcess to show them in QTextEdit line by line (as gcc puts something on STOUT or… with my UI and I get no output on my QTextEdit. (I used readLine() function which is from QIODevice, which… Re: fetching data from qt Programming Software Development by funfullson …self.txtFamily.setObjectName("txtFamily") self.txtFather = QtGui.QTextEdit(frmMain) self.txtFather.setGeometry(QtCore.QRect(10, 70, 104,…self.txtFather.setObjectName("txtFather") self.txtStNum = QtGui.QTextEdit(frmMain) self.txtStNum.setGeometry(QtCore.QRect(10, 100, 104,… QT C++ Simple Problem Programming Software Development by kglilly …application. This is only part of the code: QTextEdit* cont; for (int x=0; x<…; x++) { cont = this->findChild<QTextEdit *>("content0_"+QString::number(x)); QString …toPlainText(); // display con in a QTextEdit anywhere you want } Two QTextEdit have different values. Let just say… lotto gui application that generates random numbers Programming Software Development by annitaz … Q_OBJECT private: //widget data members QLabel* numbersLabel; QTextEdit* numEdit; QPushButton* lotusButton; public slots: int generateLotteryNumbers…lucky numbers are:"); numEdit = new QTextEdit(); layout->addWidget(lotusButton, 0,0);… Re: fetching data from qt Programming Software Development by woooee This is an example I had using QLineEdit and QTextEdit. There are other ways to retrieve text based on starting … = QtGui.QLabel('Author') self.title_edit = QtGui.QLineEdit() self.author_edit = QtGui.QTextEdit() grid = QtGui.QGridLayout() grid.setSpacing(10) grid.addWidget(title, 1… Re: PySide QProcess, Need Help Programming Software Development by markfw …): In __init__ [CODE] self.proc = QtCore.QProcess(self) self.te = QTextEdit(self) self.btn = QPushButton("Execute", self) self.btn… c++ QObject's Child Management Programming Software Development by annitaz …; #include <QLabel> #include <QVBoxLayout> #include <QTextEdit> #include <QWidget> int main (int argc, char…* label = new QLabel("Please enter some text"); QTextEdit* textEdit = new QTextEdit; QVBoxLayout* layout = new QVBoxLayout; layout->addwidget(label); layout… GUI program to generate 6 random numbers Programming Software Development by annitaz … { Q_OBJECT private: //widget data members QLabel* numbersLabel; QTextEdit* numEdit; QPushButton* lotusButton; public slots: int generateLotteryNumbers ();…Your lucky numbers are:"); numEdit = new QTextEdit(); layout->addWidget(lotusButton, 0,0); layout-&… CodeEditor = problem Programming Software Development by kjiu …"); font.setFixedPitch(true); font.setPointSize(10); textEdit = new QTextEdit(); textEdit.setLineWrapMode(QTextEdit.LineWrapMode.NoWrap); textEdit.setFont(font); new Highlighter(textEdit.document… Re: CodeEditor = problem Programming Software Development by kjiu …"); font.setFixedPitch(true); font.setPointSize(10); textEdit = new QTextEdit(); textEdit.setLineWrapMode(QTextEdit.LineWrapMode.NoWrap); textEdit.setFont(font); new Highlighter(textEdit.document… Could I manage the resource of Qt without try and catch? Programming Software Development by stereomatching …(parent) { QGridLayout *layout = new QGridLayout( this ); QScopedPointer<QTextEdit> textEdit(new QTextEdit); layout->addWidget( textEdit.take(), 0, 0, 1, 2… how can i set scroll bar to form in Qt Designer Programming Software Development by kodavalilaxmi …;) self.lineEdit2.setGeometry(QRect(120,t,120,50)) self.textEdit1 = QTextEdit(self,"textEdit1") self.textEdit1.setGeometry(QRect(240,t… Signal&Slot problem with PyQt Programming Software Development by TheOneElectroni …;check1") self.check2 = QCheckBox("check2") self.TextBox = QTextEdit("type something here") self.TextBox.setMaximumHeight(50) self… How to add QMainWindow Programming Software Development by kjiu … com.trolltech.qt.gui.QTextDocument; import com.trolltech.qt.gui.QTextEdit; import com.trolltech.qt.gui.QToolBar; import com.trolltech.qt… How to pass data from a Thread to Another? (GUI) Programming Software Development by kapcom01 ….centralwidget) self.gridLayout.setObjectName("gridLayout") self.textedit = QtGui.QTextEdit(self.centralwidget) self.textedit.setReadOnly(True) self.textedit.setObjectName("… I'm new to this forum Programming Software Development by ivh90 …, 18)) self.label_2.setObjectName("label_2") self.textEdit = QtGui.QTextEdit(Form) self.textEdit.setGeometry(QtCore.QRect(50, 50, 231, 201… PyQt: Weird elementtree behavior Programming Software Development by linuxoidoz … bahaves really strange. I have a function which takes some QTextEdit text arguments (obviously QStrings) and if I save a node… PyQt: What's the best way to make and print a table? Programming Software Development by linuxoidoz … table and print it on a printer? 1. I tried QTextEdit + QTextTable but it's a lot of work to move… Tabbed progra with pyqt Programming Software Development by viandante …, 531)) self.treeView.setObjectName("treeView") self.textEdit = QtGui.QTextEdit(self.centralwidget) self.textEdit.setGeometry(QtCore.QRect(280, 10, 501… Borders and shading for paper PyQt4 Programming Software Development by wkarl ….QPrinter() self.printer.setPageSize(self.printer.A4) self.text = QtGui.QTextEdit() self.cursor = QtGui.QTextCursor() self.cursor = self.text.textCursor() self… chat programming with PyQt and Socket [Standard Library] Programming Software Development by iraj.jelo …') self.browser = QtGui.QTextBrowser() self.browser.backwardAvailable self.textEdit = QtGui.QTextEdit() self.textEdit.setMaximumSize(QtCore.QSize(400,60)) #4 edit line… Python, PyQT, understanding modules, classes, and objects... :) Programming Software Development by xopenex …)) self.textBrowser.setObjectName(_fromUtf8("textBrowser")) self.textEdit = QtGui.QTextEdit(Form) self.textEdit.setGeometry(QtCore.QRect(0, 440, 561, 61… pyQt threading Programming Software Development by anonymous0502 …) self.pgb.setMinimum(0) self.pgb.setValue(0) self.teinfo=QTextEdit() self.teinfo.setSizePolicy(QSizePolicy.Expanding,QSizePolicy.Expanding) self.teinfo.append…