/****************************************************************************
**
** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
** All rights reserved.
** Contact: Nokia Corporation (qt-info@nokia.com)
**
** This file is part of the examples of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:BSD$
** You may use this file under the terms of the BSD license as follows:
**
** "Redistribution and use in source and binary forms, with or without
** modification, are permitted provided that the following conditions are
** met:
** * Redistributions of source code must retain the above copyright
** notice, this list of conditions and the following disclaimer.
** * Redistributions in binary form must reproduce the above copyright
** notice, this list of conditions and the following disclaimer in
** the documentation and/or other materials provided with the
** distribution.
** * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
** the names of its contributors may be used to endorse or promote
** products derived from this software without specific prior written
** permission.
**
** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
** $QT_END_LICENSE$
**
****************************************************************************/#include <QtGui>#include "iconpreviewarea.h"#include "iconsizespinbox.h"#include "imagedelegate.h"#include "mainwindow.h"
MainWindow::MainWindow()
{
centralWidget =newQWidget;
setCentralWidget(centralWidget);
createPreviewGroupBox();
createImagesGroupBox();
createIconSizeGroupBox();
createActions();
createMenus();
createContextMenu();
QGridLayout*mainLayout =newQGridLayout;
mainLayout->addWidget(previewGroupBox,0,0,1,2);
mainLayout->addWidget(imagesGroupBox,1,0);
mainLayout->addWidget(iconSizeGroupBox,1,1);
centralWidget->setLayout(mainLayout);
setWindowTitle(tr("Icons"));
checkCurrentStyle();
otherRadioButton->click();
resize(minimumSizeHint());
}
void MainWindow::about()
{
QMessageBox::about(this, tr("About Icons"),
tr("The <b>Icons</b> example illustrates how Qt renders an icon in ""different modes (active, normal, disabled, and selected) and ""states (on and off) based on a set of images."));
}
void MainWindow::changeStyle(bool checked)
{
if (!checked)
return;
QAction*action = qobject_cast<QAction*>(sender());
QStyle*style =QStyleFactory::create(action->data().toString());
Q_ASSERT(style);
QApplication::setStyle(style);
smallRadioButton->setText(tr("Small (%1 x %1)")
.arg(style->pixelMetric(QStyle::PM_SmallIconSize)));
largeRadioButton->setText(tr("Large (%1 x %1)")
.arg(style->pixelMetric(QStyle::PM_LargeIconSize)));
toolBarRadioButton->setText(tr("Toolbars (%1 x %1)")
.arg(style->pixelMetric(QStyle::PM_ToolBarIconSize)));
listViewRadioButton->setText(tr("List views (%1 x %1)")
.arg(style->pixelMetric(QStyle::PM_ListViewIconSize)));
iconViewRadioButton->setText(tr("Icon views (%1 x %1)")
.arg(style->pixelMetric(QStyle::PM_IconViewIconSize)));
tabBarRadioButton->setText(tr("Tab bars (%1 x %1)")
.arg(style->pixelMetric(QStyle::PM_TabBarIconSize)));
changeSize();
}
void MainWindow::changeSize(bool checked)
{
if (!checked)
return;
int extent;
if (otherRadioButton->isChecked()) {
extent = otherSpinBox->value();
} else {
QStyle::PixelMetric metric;
if (smallRadioButton->isChecked()) {
metric =QStyle::PM_SmallIconSize;
} elseif (largeRadioButton->isChecked()) {
metric =QStyle::PM_LargeIconSize;
} elseif (toolBarRadioButton->isChecked()) {
metric =QStyle::PM_ToolBarIconSize;
} elseif (listViewRadioButton->isChecked()) {
metric =QStyle::PM_ListViewIconSize;
} elseif (iconViewRadioButton->isChecked()) {
metric =QStyle::PM_IconViewIconSize;
} else {
metric =QStyle::PM_TabBarIconSize;
}
extent =QApplication::style()->pixelMetric(metric);
}
previewArea->setSize(QSize(extent, extent));
otherSpinBox->setEnabled(otherRadioButton->isChecked());
}
void MainWindow::changeIcon()
{
QIcon icon;
for (int row =0; row < imagesTable->rowCount(); ++row) {
QTableWidgetItem*item0 = imagesTable->item(row,0);
QTableWidgetItem*item1 = imagesTable->item(row,1);
QTableWidgetItem*item2 = imagesTable->item(row,2);
if (item0->checkState() ==Qt::Checked) {
QIcon::Mode mode;
if (item1->text() == tr("Normal")) {
mode =QIcon::Normal;
} elseif (item1->text() == tr("Active")) {
mode =QIcon::Active;
} elseif (item1->text() == tr("Disabled")) {
mode =QIcon::Disabled;
} else {
mode =QIcon::Selected;
}
QIcon::State state;
if (item2->text() == tr("On")) {
state =QIcon::On;
} else {
state =QIcon::Off;
}
QString fileName = item0->data(Qt::UserRole).toString();
QImage image(fileName);
if (!image.isNull())
icon.addPixmap(QPixmap::fromImage(image), mode, state);
}
}
previewArea->setIcon(icon);
}
void MainWindow::addImages()
{
QStringList fileNames =QFileDialog::getOpenFileNames(this,
tr("Open Images"),"",
tr("Images (*.png *.xpm *.jpg);;""All Files (*)"));
if (!fileNames.isEmpty()) {
foreach (QString fileName, fileNames) {
int row = imagesTable->rowCount();
imagesTable->setRowCount(row +1);
QString imageName =QFileInfo(fileName).baseName();
QTableWidgetItem*item0 =newQTableWidgetItem(imageName);
item0->setData(Qt::UserRole, fileName);
item0->setFlags(item0->flags() &~Qt::ItemIsEditable);
QTableWidgetItem*item1 =newQTableWidgetItem(tr("Normal"));
QTableWidgetItem*item2 =newQTableWidgetItem(tr("Off"));
if (guessModeStateAct->isChecked()) {
if (fileName.contains("_act")) {
item1->setText(tr("Active"));
} elseif (fileName.contains("_dis")) {
item1->setText(tr("Disabled"));
} elseif (fileName.contains("_sel")) {
item1->setText(tr("Selected"));
}
if (fileName.contains("_on"))
item2->setText(tr("On"));
}
imagesTable->setItem(row,0, item0);
imagesTable->setItem(row,1, item1);
imagesTable->setItem(row,2, item2);
imagesTable->openPersistentEditor(item1);
imagesTable->openPersistentEditor(item2);
item0->setCheckState(Qt::Checked);
}
}
}
void MainWindow::removeAllImages()
{
imagesTable->setRowCount(0);
changeIcon();
}
void MainWindow::createPreviewGroupBox()
{
previewGroupBox =newQGroupBox(tr("Preview"));
previewArea =new IconPreviewArea;
QVBoxLayout*layout =newQVBoxLayout;
layout->addWidget(previewArea);
previewGroupBox->setLayout(layout);
}
void MainWindow::createImagesGroupBox()
{
imagesGroupBox =newQGroupBox(tr("Images"));
imagesTable =newQTableWidget;
imagesTable->setSelectionMode(QAbstractItemView::NoSelection);
imagesTable->setItemDelegate(new ImageDelegate(this));
QStringList labels;
labels << tr("Image") << tr("Mode") << tr("State");
imagesTable->horizontalHeader()->setDefaultSectionSize(90);
imagesTable->setColumnCount(3);
imagesTable->setHorizontalHeaderLabels(labels);
imagesTable->horizontalHeader()->setResizeMode(0,QHeaderView::Stretch);
imagesTable->horizontalHeader()->setResizeMode(1,QHeaderView::Fixed);
imagesTable->horizontalHeader()->setResizeMode(2,QHeaderView::Fixed);
imagesTable->verticalHeader()->hide();
connect(imagesTable, SIGNAL(itemChanged(QTableWidgetItem*)),this, SLOT(changeIcon()));
QVBoxLayout*layout =newQVBoxLayout;
layout->addWidget(imagesTable);
imagesGroupBox->setLayout(layout);
}
void MainWindow::createIconSizeGroupBox()
{
iconSizeGroupBox =newQGroupBox(tr("Icon Size"));
smallRadioButton =newQRadioButton;
largeRadioButton =newQRadioButton;
toolBarRadioButton =newQRadioButton;
listViewRadioButton =newQRadioButton;
iconViewRadioButton =newQRadioButton;
tabBarRadioButton =newQRadioButton;
otherRadioButton =newQRadioButton(tr("Other:"));
otherSpinBox =new IconSizeSpinBox;
otherSpinBox->setRange(8,128);
otherSpinBox->setValue(64);
connect(smallRadioButton, SIGNAL(toggled(bool)),this, SLOT(changeSize(bool)));
connect(largeRadioButton, SIGNAL(toggled(bool)),this, SLOT(changeSize(bool)));
connect(toolBarRadioButton, SIGNAL(toggled(bool)),this, SLOT(changeSize(bool)));
connect(listViewRadioButton, SIGNAL(toggled(bool)),this, SLOT(changeSize(bool)));
connect(iconViewRadioButton, SIGNAL(toggled(bool)),this, SLOT(changeSize(bool)));
connect(tabBarRadioButton, SIGNAL(toggled(bool)),this, SLOT(changeSize(bool)));
connect(otherRadioButton, SIGNAL(toggled(bool)),this, SLOT(changeSize(bool)));
connect(otherSpinBox, SIGNAL(valueChanged(int)),this, SLOT(changeSize()));
QHBoxLayout*otherSizeLayout =newQHBoxLayout;
otherSizeLayout->addWidget(otherRadioButton);
otherSizeLayout->addWidget(otherSpinBox);
otherSizeLayout->addStretch();
QGridLayout*layout =newQGridLayout;
layout->addWidget(smallRadioButton,0,0);
layout->addWidget(largeRadioButton,1,0);
layout->addWidget(toolBarRadioButton,2,0);
layout->addWidget(listViewRadioButton,0,1);
layout->addWidget(iconViewRadioButton,1,1);
layout->addWidget(tabBarRadioButton,2,1);
layout->addLayout(otherSizeLayout,3,0,1,2);
layout->setRowStretch(4,1);
iconSizeGroupBox->setLayout(layout);
}
void MainWindow::createActions()
{
addImagesAct =newQAction(tr("&Add Images..."),this);
addImagesAct->setShortcut(tr("Ctrl+A"));
connect(addImagesAct, SIGNAL(triggered()),this, SLOT(addImages()));
removeAllImagesAct =newQAction(tr("&Remove All Images"),this);
removeAllImagesAct->setShortcut(tr("Ctrl+R"));
connect(removeAllImagesAct, SIGNAL(triggered()),this, SLOT(removeAllImages()));
exitAct =newQAction(tr("&Quit"),this);
exitAct->setShortcuts(QKeySequence::Quit);
connect(exitAct, SIGNAL(triggered()),this, SLOT(close()));
styleActionGroup =newQActionGroup(this);
foreach (QString styleName,QStyleFactory::keys()) {
QAction*action =newQAction(styleActionGroup);
action->setText(tr("%1 Style").arg(styleName));
action->setData(styleName);
action->setCheckable(true);
connect(action, SIGNAL(triggered(bool)),this, SLOT(changeStyle(bool)));
}
guessModeStateAct =newQAction(tr("&Guess Image Mode/State"),this);
guessModeStateAct->setCheckable(true);
guessModeStateAct->setChecked(true);
aboutAct =newQAction(tr("&About"),this);
connect(aboutAct, SIGNAL(triggered()),this, SLOT(about()));
aboutQtAct =newQAction(tr("About &Qt"),this);
connect(aboutQtAct, SIGNAL(triggered()), qApp, SLOT(aboutQt()));
}
void MainWindow::createMenus()
{
fileMenu = menuBar()->addMenu(tr("&File"));
fileMenu->addAction(addImagesAct);
fileMenu->addAction(removeAllImagesAct);
fileMenu->addSeparator();
fileMenu->addAction(exitAct);
viewMenu = menuBar()->addMenu(tr("&View"));
foreach (QAction*action, styleActionGroup->actions())
viewMenu->addAction(action);
viewMenu->addSeparator();
viewMenu->addAction(guessModeStateAct);
menuBar()->addSeparator();
helpMenu = menuBar()->addMenu(tr("&Help"));
helpMenu->addAction(aboutAct);
helpMenu->addAction(aboutQtAct);
}
void MainWindow::createContextMenu()
{
imagesTable->setContextMenuPolicy(Qt::ActionsContextMenu);
imagesTable->addAction(addImagesAct);
imagesTable->addAction(removeAllImagesAct);
}
void MainWindow::checkCurrentStyle()
{
foreach (QAction*action, styleActionGroup->actions()) {
QString styleName = action->data().toString();
QStyle*candidate =QStyleFactory::create(styleName);
Q_ASSERT(candidate);
if (candidate->metaObject()->className()
==QApplication::style()->metaObject()->className()) {
action->trigger();
return;
}
delete candidate;
}
}
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia.
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter
ou par MP !