diff options
Diffstat (limited to 'doc/html/tabdialog-example.html')
-rw-r--r-- | doc/html/tabdialog-example.html | 234 |
1 files changed, 234 insertions, 0 deletions
diff --git a/doc/html/tabdialog-example.html b/doc/html/tabdialog-example.html new file mode 100644 index 000000000..a38da3370 --- /dev/null +++ b/doc/html/tabdialog-example.html @@ -0,0 +1,234 @@ +<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> +<!-- /home/espenr/tmp/qt-3.3.8-espenr-2499/qt-x11-free-3.3.8/examples/tabdialog/tabdialog.doc:4 --> +<html> +<head> +<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> +<title>Tabdialog</title> +<style type="text/css"><!-- +fn { margin-left: 1cm; text-indent: -1cm; } +a:link { color: #004faf; text-decoration: none } +a:visited { color: #672967; text-decoration: none } +body { background: #ffffff; color: black; } +--></style> +</head> +<body> + +<table border="0" cellpadding="0" cellspacing="0" width="100%"> +<tr bgcolor="#E5E5E5"> +<td valign=center> + <a href="index.html"> +<font color="#004faf">Home</font></a> + | <a href="classes.html"> +<font color="#004faf">All Classes</font></a> + | <a href="mainclasses.html"> +<font color="#004faf">Main Classes</font></a> + | <a href="annotated.html"> +<font color="#004faf">Annotated</font></a> + | <a href="groups.html"> +<font color="#004faf">Grouped Classes</font></a> + | <a href="functions.html"> +<font color="#004faf">Functions</font></a> +</td> +<td align="right" valign="center"><img src="logo32.png" align="right" width="64" height="32" border="0"></td></tr></table><h1 align=center>Tabdialog</h1> + + +<p> +This example shows how to use a dialog with multiple tabs +(pages). To start the program you have to specify a filename +as the first argument. The dialog shows information about the +file separated onto different tabs. +<p> <hr> +<p> Header file: +<p> <pre>/**************************************************************************** +** $Id: qt/tabdialog.h 3.3.8 edited Jan 11 14:37 $ +** +** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved. +** +** This file is part of an example program for TQt. This example +** program may be used, distributed and modified without limitation. +** +*****************************************************************************/ + +#ifndef TABDIALOG_H +#define TABDIALOG_H + +#include <<a href="qtabdialog-h.html">qtabdialog.h</a>> +#include <<a href="qstring-h.html">qstring.h</a>> +#include <<a href="qfileinfo-h.html">qfileinfo.h</a>> + +class TabDialog : public <a href="qtabdialog.html">TQTabDialog</a> +{ + <a href="metaobjects.html#Q_OBJECT">Q_OBJECT</a> + +public: + TabDialog( <a href="qwidget.html">TQWidget</a> *parent, const char *name, const <a href="qstring.html">TQString</a> &_filename ); + +protected: + <a href="qstring.html">TQString</a> filename; + <a href="qfileinfo.html">TQFileInfo</a> fileinfo; + + void setupTab1(); + void setupTab2(); + void setupTab3(); + +}; + +#endif +</pre> + +<p> <hr> +<p> Implementation: +<p> <pre>/**************************************************************************** +** $Id: qt/tabdialog.cpp 3.3.8 edited Jan 11 14:37 $ +** +** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved. +** +** This file is part of an example program for TQt. This example +** program may be used, distributed and modified without limitation. +** +*****************************************************************************/ + +#include "tabdialog.h" + +#include <<a href="qvbox-h.html">qvbox.h</a>> +#include <<a href="qlabel-h.html">qlabel.h</a>> +#include <<a href="qlineedit-h.html">qlineedit.h</a>> +#include <<a href="qdatetime-h.html">qdatetime.h</a>> +#include <<a href="qbuttongroup-h.html">qbuttongroup.h</a>> +#include <<a href="qcheckbox-h.html">qcheckbox.h</a>> +#include <<a href="qlistbox-h.html">qlistbox.h</a>> +#include <<a href="qapplication-h.html">qapplication.h</a>> + +<a name="f200"></a>TabDialog::TabDialog( <a href="qwidget.html">TQWidget</a> *parent, const char *name, const <a href="qstring.html">TQString</a> &_filename ) + : <a href="qtabdialog.html">TQTabDialog</a>( parent, name ), filename( _filename ), fileinfo( filename ) +{ + setupTab1(); + setupTab2(); + setupTab3(); + + <a href="qobject.html#connect">connect</a>( this, SIGNAL( <a href="qtabdialog.html#applyButtonPressed">applyButtonPressed</a>() ), qApp, SLOT( <a href="qapplication.html#tquit">tquit</a>() ) ); +} + +void <a name="f201"></a>TabDialog::setupTab1() +{ + <a href="qvbox.html">TQVBox</a> *tab1 = new <a href="qvbox.html">TQVBox</a>( this ); +<a name="x53"></a> tab1-><a href="qframe.html#setMargin">setMargin</a>( 5 ); + + (void)new <a href="qlabel.html">TQLabel</a>( "Filename:", tab1 ); + <a href="qlineedit.html">TQLineEdit</a> *fname = new <a href="qlineedit.html">TQLineEdit</a>( filename, tab1 ); + fname-><a href="qwidget.html#setFocus">setFocus</a>(); + + (void)new <a href="qlabel.html">TQLabel</a>( "Path:", tab1 ); + <a href="qlabel.html">TQLabel</a> *path = new <a href="qlabel.html">TQLabel</a>( fileinfo.dirPath( TRUE ), tab1 ); +<a name="x52"></a> path-><a href="qframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); + + (void)new <a href="qlabel.html">TQLabel</a>( "Size:", tab1 ); + ulong kb = (ulong)(fileinfo.size()/1024); + <a href="qlabel.html">TQLabel</a> *size = new <a href="qlabel.html">TQLabel</a>( TQString( "%1 KB" ).arg( kb ), tab1 ); + size-><a href="qframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); + + (void)new <a href="qlabel.html">TQLabel</a>( "Last Read:", tab1 ); + <a href="qlabel.html">TQLabel</a> *lread = new <a href="qlabel.html">TQLabel</a>( fileinfo.lastRead().toString(), tab1 ); + lread-><a href="qframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); + + (void)new <a href="qlabel.html">TQLabel</a>( "Last Modified:", tab1 ); + <a href="qlabel.html">TQLabel</a> *lmodif = new <a href="qlabel.html">TQLabel</a>( fileinfo.lastModified().toString(), tab1 ); + lmodif-><a href="qframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); + + <a href="qtabdialog.html#addTab">addTab</a>( tab1, "General" ); +} + +void <a name="f202"></a>TabDialog::setupTab2() +{ + <a href="qvbox.html">TQVBox</a> *tab2 = new <a href="qvbox.html">TQVBox</a>( this ); + tab2-><a href="qframe.html#setMargin">setMargin</a>( 5 ); + + <a href="qbuttongroup.html">TQButtonGroup</a> *bg = new <a href="qbuttongroup.html">TQButtonGroup</a>( 1, TQGroupBox::Horizontal, "Permissions", tab2 ); + + <a href="qcheckbox.html">TQCheckBox</a> *readable = new <a href="qcheckbox.html">TQCheckBox</a>( "Readable", bg ); + if ( fileinfo.isReadable() ) +<a name="x51"></a> readable-><a href="qcheckbox.html#setChecked">setChecked</a>( TRUE ); + + <a href="qcheckbox.html">TQCheckBox</a> *writable = new <a href="qcheckbox.html">TQCheckBox</a>( "Writeable", bg ); + if ( fileinfo.isWritable() ) + writable-><a href="qcheckbox.html#setChecked">setChecked</a>( TRUE ); + + <a href="qcheckbox.html">TQCheckBox</a> *executable = new <a href="qcheckbox.html">TQCheckBox</a>( "Executable", bg ); + if ( fileinfo.isExecutable() ) + executable-><a href="qcheckbox.html#setChecked">setChecked</a>( TRUE ); + + <a href="qbuttongroup.html">TQButtonGroup</a> *bg2 = new <a href="qbuttongroup.html">TQButtonGroup</a>( 2, TQGroupBox::Horizontal, "Owner", tab2 ); + + (void)new <a href="qlabel.html">TQLabel</a>( "Owner", bg2 ); + <a href="qlabel.html">TQLabel</a> *owner = new <a href="qlabel.html">TQLabel</a>( fileinfo.owner(), bg2 ); + owner-><a href="qframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); + + (void)new <a href="qlabel.html">TQLabel</a>( "Group", bg2 ); + <a href="qlabel.html">TQLabel</a> *group = new <a href="qlabel.html">TQLabel</a>( fileinfo.group(), bg2 ); + group-><a href="qframe.html#setFrameStyle">setFrameStyle</a>( TQFrame::Panel | TQFrame::Sunken ); + + <a href="qtabdialog.html#addTab">addTab</a>( tab2, "Permissions" ); +} + +void <a name="f203"></a>TabDialog::setupTab3() +{ + <a href="qvbox.html">TQVBox</a> *tab3 = new <a href="qvbox.html">TQVBox</a>( this ); + tab3-><a href="qframe.html#setMargin">setMargin</a>( 5 ); +<a name="x54"></a> tab3-><a href="qhbox.html#setSpacing">setSpacing</a>( 5 ); + + (void)new <a href="qlabel.html">TQLabel</a>( TQString( "Open %1 with:" ).arg( filename ), tab3 ); + + <a href="qlistbox.html">TQListBox</a> *prgs = new <a href="qlistbox.html">TQListBox</a>( tab3 ); + for ( unsigned int i = 0; i < 30; i++ ) { + <a href="qstring.html">TQString</a> prg = TQString( "Application %1" ).arg( i ); +<a name="x55"></a> prgs-><a href="qlistbox.html#insertItem">insertItem</a>( prg ); + } +<a name="x56"></a> prgs-><a href="qlistbox.html#setCurrentItem">setCurrentItem</a>( 3 ); + + (void)new <a href="qcheckbox.html">TQCheckBox</a>( TQString( "Open files with the extension '%1' always with this application" ).arg( fileinfo.extension() ), tab3 ); + + <a href="qtabdialog.html#addTab">addTab</a>( tab3, "Applications" ); +} +</pre> + +<p> <hr> +<p> Main: +<p> <pre>/**************************************************************************** +** $Id: qt/main.cpp 3.3.8 edited Jan 11 14:37 $ +** +** Copyright (C) 1992-2007 Trolltech ASA. All rights reserved. +** +** This file is part of an example program for TQt. This example +** program may be used, distributed and modified without limitation. +** +*****************************************************************************/ + +#include "tabdialog.h" +#include <<a href="qapplication-h.html">qapplication.h</a>> +#include <<a href="qstring-h.html">qstring.h</a>> + +int main( int argc, char **argv ) +{ + + <a href="qapplication.html">TQApplication</a> a( argc, argv ); + + TabDialog tabdialog( 0, "tabdialog", TQString( argc < 2 ? "." : argv[1] ) ); +<a name="x60"></a> tabdialog.<a href="qwidget.html#resize">resize</a>( 450, 350 ); + tabdialog.<a href="qwidget.html#setCaption">setCaption</a>( "TQt Example - Tabbed Dialog" ); + a.<a href="qapplication.html#setMainWidget">setMainWidget</a>( &tabdialog ); +<a name="x61"></a> tabdialog.<a href="qdialog.html#show">show</a>(); + + return a.<a href="qapplication.html#exec">exec</a>(); +} +</pre> + +<p>See also <a href="examples.html">Examples</a>. + +<!-- eof --> +<p><address><hr><div align=center> +<table width=100% cellspacing=0 border=0><tr> +<td>Copyright © 2007 +<a href="troll.html">Trolltech</a><td align=center><a href="trademarks.html">Trademarks</a> +<td align=right><div align=right>TQt 3.3.8</div> +</table></div></address></body> +</html> |