Changeset 561 for trunk/tools/assistant/compat/mainwindow.cpp
- Timestamp:
- Feb 11, 2010, 11:19:06 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk
-
Property svn:mergeinfo
set to (toggle deleted branches)
/branches/vendor/nokia/qt/4.6.1 merged eligible /branches/vendor/nokia/qt/current merged eligible /branches/vendor/trolltech/qt/current 3-149
-
Property svn:mergeinfo
set to (toggle deleted branches)
-
trunk/tools/assistant/compat/mainwindow.cpp
r2 r561 2 2 ** 3 3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies). 4 ** Contact: Qt Software Information (qt-info@nokia.com) 4 ** All rights reserved. 5 ** Contact: Nokia Corporation (qt-info@nokia.com) 5 6 ** 6 7 ** This file is part of the Qt Assistant of the Qt Toolkit. … … 21 22 ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. 22 23 ** 23 ** In addition, as a special exception, Nokia gives you certain 24 ** additional rights. These rights are described in the Nokia Qt LGPL 25 ** Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this 26 ** package. 24 ** In addition, as a special exception, Nokia gives you certain additional 25 ** rights. These rights are described in the Nokia Qt LGPL Exception 26 ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. 27 27 ** 28 28 ** GNU General Public License Usage … … 34 34 ** met: http://www.gnu.org/copyleft/gpl.html. 35 35 ** 36 ** If you are unsure which license is appropriate for your use, please37 ** contact the sales department at qt-sales@nokia.com.36 ** If you have questions regarding the use of this file, please contact 37 ** Nokia at qt-info@nokia.com. 38 38 ** $QT_END_LICENSE$ 39 39 ** … … 141 141 ui.actionSyncToc->setIcon(QIcon(MacIconPath + QLatin1String("/synctoc.png"))); 142 142 ui.actionHelpWhatsThis->setIcon(QIcon(MacIconPath + QLatin1String("/whatsthis.png"))); 143 #elif defined(Q_WS_X11) 144 ui.actionGoNext->setIcon(QIcon::fromTheme("go-next" , ui.actionGoNext->icon())); 145 ui.actionGoPrevious->setIcon(QIcon::fromTheme("go-previous" , ui.actionGoPrevious->icon())); 146 ui.actionGoHome->setIcon(QIcon::fromTheme("user-home" , ui.actionGoHome->icon())); 147 ui.actionEditCopy->setIcon(QIcon::fromTheme("edit-copy" , ui.actionEditCopy->icon())); 148 ui.actionEditFind->setIcon(QIcon::fromTheme("edit-find" , ui.actionEditFind->icon())); 149 ui.actionFilePrint->setIcon(QIcon::fromTheme("document-print" , ui.actionFilePrint->icon())); 150 ui.actionZoomOut->setIcon(QIcon::fromTheme("zoom-out" , ui.actionZoomOut->icon())); 151 ui.actionZoomIn->setIcon(QIcon::fromTheme("zoom-in" , ui.actionZoomIn->icon())); 152 ui.actionSyncToc->setIcon(QIcon::fromTheme("view-refresh" , ui.actionSyncToc->icon())); 143 153 #endif 144 154 } … … 313 323 QMessageBox box(this); 314 324 315 // TODO: Remove these variables for 4.6.0. Must keep this way for 4.5.x due to string freeze.316 QString edition;317 QString info;318 QString moreInfo;319 320 325 box.setText(QString::fromLatin1("<center><img src=\":/trolltech/assistant/images/assistant-128.png\">" 321 326 "<h3>%1</h3>" 322 "<p>Version %2 %3</p></center>" 323 "<p>%4</p>" 324 "<p>%5</p>" 325 "<p>Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).</p>" 326 "<p>The program is provided AS IS with NO WARRANTY OF ANY KIND," 327 " INCLUDING THE WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A" 328 " PARTICULAR PURPOSE.<p/>") 329 .arg(tr("Qt Assistant")).arg(QLatin1String(QT_VERSION_STR)).arg(edition).arg(info).arg(moreInfo)); 327 "<p>Version %2</p></center>" 328 "<p>Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).</p>") 329 .arg(tr("Qt Assistant")).arg(QLatin1String(QT_VERSION_STR))); 330 330 box.setWindowTitle(tr("Qt Assistant")); 331 331 box.setIcon(QMessageBox::NoIcon); … … 399 399 } 400 400 401 #ifndef QT_NO_PRINTER 401 402 class PrintThread : public QThread 402 403 { … … 434 435 } 435 436 }; 437 #endif //QT_NO_PRINTER 436 438 437 439 void MainWindow::on_actionFilePrint_triggered()
Note:
See TracChangeset
for help on using the changeset viewer.