|
|
![]() |
| Thread Tools | Search this Thread |
#1
| |||
| |||
Integration of a QTextEdit I am trying to include QTextEdit widget in main... I am able to do so (with a code given below), I want you to insert or help me put my QTextEdit: Code: # include <QApplication> # include <QtGui> "Fe.h" # include "Fe.h" int main (int argc, char * argv []) ( QApplication app (argc, argv); Fe window; window. show (); return app. exec (); ) Fe.h # ifndef HEADER_FE # define HEADER_FE # include <QtGui> Fe class: public QMainWindow ( public: Fe(); private: ); # endif Fe.cpp Code: C + + 1 2 3 4 5 6 # include "Fe.h" Fe: Fe () ( ) |
#2
| |||
| |||
Re: Integration of a QTextEdit As you are inside the class uses the this pointer Code: # include "Fee.h" Fe: Fe () ( QTextEdit * textarea = new QTextEdit (this); QVBoxLayout * layout = new QVBoxLayout; layout -> addWidget (textarea); setLayout (layout); ) |
#3
| |||
| |||
Re: Integration of a QTextEdit The QTextEdit class provides a widget that is used to edit and display both plain and rich text. Example : QTextEdit ( const QString & text, const QString & context = QString::null, QWidget * parent = 0, const char * name = 0 ), QTextEdit ( QWidget * parent = 0, const char * name = 0 ). |
#4
| |||
| |||
Re: Integration of a QTextEdit It is a QMainWindow, so no layout, but a central widget. Code: # include "Fe.h" Fe: Fe () ( QTextEdit * textarea = new QTextEdit (this); setCentralWidget (textarea); ) |
![]() |
|
Tags: qapplication, qtextedit widget, qtgui |
Thread Tools | Search this Thread |
|
![]() | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Change the background color of QTextEdit | Gomeler | Software Development | 3 | 27-11-2009 01:13 PM |
Center the text in a QTextEdit | Zool | Software Development | 3 | 14-11-2009 01:32 PM |
Integration Win SP2 impossible | Volodymyra | Operating Systems | 2 | 21-01-2009 10:53 PM |