Trolltech Home | Qt-interest Home | Recent Threads | All Threads | Author | Date
All threads index page 3

Qt-interest Archive, May 2007
Qt Tree Creation


Message 1 in thread

Hi,
	Can anyone help me for creating Tree without using XML files? Its very
urgent

Thanks in advance
Regards
Beena

--
 [ signature omitted ] 

Message 2 in thread

On 5/9/07, Beena <kbeena@xxxxxxxxxxx> wrote:
> Hi,
>         Can anyone help me for creating Tree without using XML files? Its very
> urgent

It doesn't matter how urgent it is when you can't express what your
problem is and what you are trying to accomplish.

-- 
 [ signature omitted ] 

Message 3 in thread

Beena schrieb:
> Hi,
> 	Can anyone help me for creating Tree without using XML files?

Huh? What's XML got to do with QTreeWidget/QTreeView (if that is what 
you had in mind)?
I think you should go into more detail here, even if it's "very urgent"...

Martin

-- 
 [ signature omitted ] 

Message 4 in thread

Hi,

>    Can anyone help me for creating Tree without using XML files? 
What kind of tree are you talking about? Visible Tree 
(QTreeWidget/QTreeView)? Tree-like Data Structure? DOM-Tree?

> Its very urgent
Most people here have very _urgent_ problems and no time as a matter of 
principle. If you try to find an answer here - beeing polite and beeing a 
little bit patient is probably unavoidable.

Regards,
Malte

--
 [ signature omitted ] 

Message 5 in thread

Here am using Qt 3 and hence QTreeWidget/QTreeView will not work.

I want to create a tree as like treeview of files [See Attcahed file]. 




On Wed, 2007-05-09 at 17:43, Malte Witt wrote:
> Hi,
> 
> >    Can anyone help me for creating Tree without using XML files? 
> What kind of tree are you talking about? Visible Tree 
> (QTreeWidget/QTreeView)? Tree-like Data Structure? DOM-Tree?
> 
> > Its very urgent
> Most people here have very _urgent_ problems and no time as a matter of 
> principle. If you try to find an answer here - beeing polite and beeing a 
> little bit patient is probably unavoidable.
> 
> Regards,
> Malte
> 
> --
> To unsubscribe - send a mail to qt-interest-request@xxxxxxxxxxxxx with "unsubscribe" in the subject or the body.
> List archive and information: http://lists.trolltech.com/qt-interest/
> 

Attachment:

Attachment: Screenshot.jpg
Description: JPEG image


Message 6 in thread

On 09.05.07 18:27:13, Beena wrote:
> Here am using Qt 3 and hence QTreeWidget/QTreeView will not work.
> 
> I want to create a tree as like treeview of files [See Attcahed file]. 

Look at QListView.

Andreas

-- 
 [ signature omitted ] 

Message 7 in thread

On 09.05.07 18:50:13, Beena wrote:
> In That they use XML files as input right?
> 
> On Wed, 2007-05-09 at 18:33, Andreas Pakulat wrote:
> > On 09.05.07 18:27:13, Beena wrote:
> > > Here am using Qt 3 and hence QTreeWidget/QTreeView will not work.
> > > 
> > > I want to create a tree as like treeview of files [See Attcahed file]. 
> > 
> > Look at QListView.

Please keep this on the list.

No, there's no class in Qt that will build you a tree view out of an xml
file. You have to do the parsing and creation of listview items
yourself.

All I said was that for Qt3 the class to create a tree view is
QListView.

Andreas

-- 
 [ signature omitted ] 

Message 8 in thread

I am not much familiar with Qt. so can u help me on creating a small
dummy tree using QListView.

Beena

> 
> Please keep this on the list.
> 
> No, there's no class in Qt that will build you a tree view out of an xml
> file. You have to do the parsing and creation of listview items
> yourself.
> 
> All I said was that for Qt3 the class to create a tree view is
> QListView.
> 
> Andreas

--
 [ signature omitted ] 

Message 9 in thread

Look at the QT examples...

Look at QTreeWidget

Try google....



> -----Original Message-----
> From: Beena [mailto:kbeena@xxxxxxxxxxx]
> Sent: Wednesday, May 09, 2007 9:18 PM
> To: Andreas Pakulat
> Cc: QT-Interest
> Subject: Re: Qt Tree Creation
> 
> I am not much familiar with Qt. so can u help me on creating a small
> dummy tree using QListView.
> 
> Beena
> 
> >
> > Please keep this on the list.
> >
> > No, there's no class in Qt that will build you a tree view out of an
xml
> > file. You have to do the parsing and creation of listview items
> > yourself.
> >
> > All I said was that for Qt3 the class to create a tree view is
> > QListView.
> >
> > Andreas
> 
> --
> To unsubscribe - send a mail to qt-interest-request@xxxxxxxxxxxxx with
> "unsubscribe" in the subject or the body.
> List archive and information: http://lists.trolltech.com/qt-interest/

--
 [ signature omitted ] 

Message 10 in thread

QTreeWidget is not available in Qt 3.

On Thu, 2007-05-10 at 10:03, Scott Aron Bloom wrote:
> Look at the QT examples...
> 
> Look at QTreeWidget
> 
> Try google....
> 
> 
> 
> > -----Original Message-----
> > From: Beena [mailto:kbeena@xxxxxxxxxxx]
> > Sent: Wednesday, May 09, 2007 9:18 PM
> > To: Andreas Pakulat
> > Cc: QT-Interest
> > Subject: Re: Qt Tree Creation
> > 
> > I am not much familiar with Qt. so can u help me on creating a small
> > dummy tree using QListView.
> > 
> > Beena
> > 
> > >
> > > Please keep this on the list.
> > >
> > > No, there's no class in Qt that will build you a tree view out of an
> xml
> > > file. You have to do the parsing and creation of listview items
> > > yourself.
> > >
> > > All I said was that for Qt3 the class to create a tree view is
> > > QListView.
> > >
> > > Andreas
> > 
> > --
> > To unsubscribe - send a mail to qt-interest-request@xxxxxxxxxxxxx with
> > "unsubscribe" in the subject or the body.
> > List archive and information: http://lists.trolltech.com/qt-interest/
> 
> --
> To unsubscribe - send a mail to qt-interest-request@xxxxxxxxxxxxx with "unsubscribe" in the subject or the body.
> List archive and information: http://lists.trolltech.com/qt-interest/
> 

--
 [ signature omitted ] 

Message 11 in thread

> QTreeWidget is not available in Qt 3.

It's "QListView" in Qt3. Even though it's called LIST-view it's designed 
to show trees as well :) Look at the docs of QListView - it's described 
there.

Regards,
Malte

--
 [ signature omitted ]