Tab Dialog Example▲
Dialogs provide an efficient way for the application to communicate with the user, but complex dialogs suffer from the problem that they often take up too much screen area. By using a number of tabs in a dialog, information can be split into different categories, while remaining accessible.
The Tab Dialog example consists of a single TabDialog class that provides three tabs, each containing information about a particular file, and two standard push buttons that are used to accept or reject the contents of the dialog.
TabDialog Class Definition▲
The TabDialog class is a subclass of QDialog that displays a QTabWidget and two standard dialog buttons. The class definition only contain the class constructor and a private data member for the QTabWidget:
class
TabDialog : public
QDialog
{
Q_OBJECT
public
:
explicit
TabDialog(const
QString &
amp;fileName, QWidget *
parent =
nullptr
);
private
:
QTabWidget *
tabWidget;
QDialogButtonBox *
buttonBox;
}
;
In the example, the widget will be used as a top-level window, but we define the constructor so that it can take a parent widget. This allows the dialog to be centered on top of an application's main window.
TabDialog Class Implementation▲
The constructor calls the QDialog constructor and creates a QFileInfo object for the specified filename.
TabDialog::
TabDialog(const
QString &
amp;fileName, QWidget *
parent)
:
QDialog(parent)
{
QFileInfo fileInfo(fileName);
tabWidget =
new
QTabWidget;
tabWidget-&
gt;addTab(new
GeneralTab(fileInfo), tr("General"
));
tabWidget-&
gt;addTab(new
PermissionsTab(fileInfo), tr("Permissions"
));
tabWidget-&
gt;addTab(new
ApplicationsTab(fileInfo), tr("Applications"
));
The tab widget is populated with three custom widgets that each contain information about the file. We construct each of these without a parent widget because the tab widget will reparent them as they are added to it.
We create two standard push buttons, and connect each of them to the appropriate slots in the dialog:
buttonBox =
new
QDialogButtonBox(QDialogButtonBox::
Ok
|
QDialogButtonBox::
Cancel);
connect(buttonBox, &
amp;QDialogButtonBox::
accepted, this
, &
amp;QDialog::
accept);
connect(buttonBox, &
amp;QDialogButtonBox::
rejected, this
, &
amp;QDialog::
reject);
We arrange the tab widget above the buttons in the dialog:
QVBoxLayout *
mainLayout =
new
QVBoxLayout;
mainLayout-&
gt;addWidget(tabWidget);
mainLayout-&
gt;addWidget(buttonBox);
setLayout(mainLayout);
Finally, we set the dialog's title:
setWindowTitle(tr("Tab Dialog"
));
}
Each of the tabs are subclassed from QWidget, and only provide constructors.
GeneralTab Class Definition▲
The GeneralTab widget definition is simple because we are only interested in displaying the contents of a widget within a tab:
class
GeneralTab : public
QWidget
{
Q_OBJECT
public
:
explicit
GeneralTab(const
QFileInfo &
amp;fileInfo, QWidget *
parent =
nullptr
);
}
;
GeneralTab Class Implementation▲
The GeneralTab widget simply displays some information about the file passed by the TabDialog. Various widgets for this purpose, and these are arranged within a vertical layout:
GeneralTab::
GeneralTab(const
QFileInfo &
amp;fileInfo, QWidget *
parent)
:
QWidget(parent)
{
QLabel *
fileNameLabel =
new
QLabel(tr("File Name:"
));
QLineEdit *
fileNameEdit =
new
QLineEdit(fileInfo.fileName());
QLabel *
pathLabel =
new
QLabel(tr("Path:"
));
QLabel *
pathValueLabel =
new
QLabel(fileInfo.absoluteFilePath());
pathValueLabel-&
gt;setFrameStyle(QFrame::
Panel |
QFrame::
Sunken);
QLabel *
sizeLabel =
new
QLabel(tr("Size:"
));
qlonglong size =
fileInfo.size()/
1024
;
QLabel *
sizeValueLabel =
new
QLabel(tr("%1 K"
).arg(size));
sizeValueLabel-&
gt;setFrameStyle(QFrame::
Panel |
QFrame::
Sunken);
QLabel *
lastReadLabel =
new
QLabel(tr("Last Read:"
));
QLabel *
lastReadValueLabel =
new
QLabel(fileInfo.lastRead().toString());
lastReadValueLabel-&
gt;setFrameStyle(QFrame::
Panel |
QFrame::
Sunken);
QLabel *
lastModLabel =
new
QLabel(tr("Last Modified:"
));
QLabel *
lastModValueLabel =
new
QLabel(fileInfo.lastModified().toString());
lastModValueLabel-&
gt;setFrameStyle(QFrame::
Panel |
QFrame::
Sunken);
QVBoxLayout *
mainLayout =
new
QVBoxLayout;
mainLayout-&
gt;addWidget(fileNameLabel);
mainLayout-&
gt;addWidget(fileNameEdit);
mainLayout-&
gt;addWidget(pathLabel);
mainLayout-&
gt;addWidget(pathValueLabel);
mainLayout-&
gt;addWidget(sizeLabel);
mainLayout-&
gt;addWidget(sizeValueLabel);
mainLayout-&
gt;addWidget(lastReadLabel);
mainLayout-&
gt;addWidget(lastReadValueLabel);
mainLayout-&
gt;addWidget(lastModLabel);
mainLayout-&
gt;addWidget(lastModValueLabel);
mainLayout-&
gt;addStretch(1
);
setLayout(mainLayout);
}
PermissionsTab Class Definition▲
Like the GeneralTab, the PermissionsTab is just used as a placeholder widget for its children:
class
PermissionsTab : public
QWidget
{
Q_OBJECT
public
:
explicit
PermissionsTab(const
QFileInfo &
amp;fileInfo, QWidget *
parent =
nullptr
);
}
;
PermissionsTab Class Implementation▲
The PermissionsTab shows information about the file's access information, displaying details of the file permissions and owner in widgets that are arranged in nested layouts:
PermissionsTab::
PermissionsTab(const
QFileInfo &
amp;fileInfo, QWidget *
parent)
:
QWidget(parent)
{
QGroupBox *
permissionsGroup =
new
QGroupBox(tr("Permissions"
));
QCheckBox *
readable =
new
QCheckBox(tr("Readable"
));
if
(fileInfo.isReadable())
readable-&
gt;setChecked(true
);
QCheckBox *
writable =
new
QCheckBox(tr("Writable"
));
if
( fileInfo.isWritable() )
writable-&
gt;setChecked(true
);
QCheckBox *
executable =
new
QCheckBox(tr("Executable"
));
if
( fileInfo.isExecutable() )
executable-&
gt;setChecked(true
);
QGroupBox *
ownerGroup =
new
QGroupBox(tr("Ownership"
));
QLabel *
ownerLabel =
new
QLabel(tr("Owner"
));
QLabel *
ownerValueLabel =
new
QLabel(fileInfo.owner());
ownerValueLabel-&
gt;setFrameStyle(QFrame::
Panel |
QFrame::
Sunken);
QLabel *
groupLabel =
new
QLabel(tr("Group"
));
QLabel *
groupValueLabel =
new
QLabel(fileInfo.group());
groupValueLabel-&
gt;setFrameStyle(QFrame::
Panel |
QFrame::
Sunken);
QVBoxLayout *
permissionsLayout =
new
QVBoxLayout;
permissionsLayout-&
gt;addWidget(readable);
permissionsLayout-&
gt;addWidget(writable);
permissionsLayout-&
gt;addWidget(executable);
permissionsGroup-&
gt;setLayout(permissionsLayout);
QVBoxLayout *
ownerLayout =
new
QVBoxLayout;
ownerLayout-&
gt;addWidget(ownerLabel);
ownerLayout-&
gt;addWidget(ownerValueLabel);
ownerLayout-&
gt;addWidget(groupLabel);
ownerLayout-&
gt;addWidget(groupValueLabel);
ownerGroup-&
gt;setLayout(ownerLayout);
QVBoxLayout *
mainLayout =
new
QVBoxLayout;
mainLayout-&
gt;addWidget(permissionsGroup);
mainLayout-&
gt;addWidget(ownerGroup);
mainLayout-&
gt;addStretch(1
);
setLayout(mainLayout);
}
ApplicationsTab Class Definition▲
The ApplicationsTab is another placeholder widget that is mostly cosmetic:
class
ApplicationsTab : public
QWidget
{
Q_OBJECT
public
:
explicit
ApplicationsTab(const
QFileInfo &
amp;fileInfo, QWidget *
parent =
nullptr
);
}
;
ApplicationsTab Class Implementation▲
The ApplicationsTab does not show any useful information, but could be used as a template for a more complicated example:
ApplicationsTab::
ApplicationsTab(const
QFileInfo &
amp;fileInfo, QWidget *
parent)
:
QWidget(parent)
{
QLabel *
topLabel =
new
QLabel(tr("Open with:"
));
QListWidget *
applicationsListBox =
new
QListWidget;
QStringList applications;
for
(int
i =
1
; i &
lt;=
30
; ++
i)
applications.append(tr("Application %1"
).arg(i));
applicationsListBox-&
gt;insertItems(0
, applications);
QCheckBox *
alwaysCheckBox;
if
(fileInfo.suffix().isEmpty())
alwaysCheckBox =
new
QCheckBox(tr("Always use this application to "
"open this type of file"
));
else
alwaysCheckBox =
new
QCheckBox(tr("Always use this application to "
"open files with the extension '%1'"
).arg(fileInfo.suffix()));
QVBoxLayout *
layout =
new
QVBoxLayout;
layout-&
gt;addWidget(topLabel);
layout-&
gt;addWidget(applicationsListBox);
layout-&
gt;addWidget(alwaysCheckBox);
setLayout(layout);
}