Sophie

Sophie

distrib > CentOS > 5 > i386 > by-pkgid > d5f6a048a2b223e97fccd86095a60071 > files > 3152

qt4-doc-4.2.1-1.el5_7.1.i386.rpm

<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html
    PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
  <title>Qt 4.2: mainwindow.cpp Example File (mainwindows/recentfiles/mainwindow.cpp)</title>
  <link href="classic.css" rel="stylesheet" type="text/css" />
</head>
<body>
<table border="0" cellpadding="0" cellspacing="0" width="100%">
<tr>
<td align="left" valign="top" width="32"><a href="http://www.trolltech.com/products/qt"><img src="images/qt-logo.png" align="left" width="32" height="32" border="0" /></a></td>
<td width="1">&nbsp;&nbsp;</td><td class="postheader" valign="center"><a href="index.html"><font color="#004faf">Home</font></a>&nbsp;&middot; <a href="classes.html"><font color="#004faf">All&nbsp;Classes</font></a>&nbsp;&middot; <a href="mainclasses.html"><font color="#004faf">Main&nbsp;Classes</font></a>&nbsp;&middot; <a href="groups.html"><font color="#004faf">Grouped&nbsp;Classes</font></a>&nbsp;&middot; <a href="modules.html"><font color="#004faf">Modules</font></a>&nbsp;&middot; <a href="functions.html"><font color="#004faf">Functions</font></a></td>
<td align="right" valign="top" width="230"><a href="http://www.trolltech.com"><img src="images/trolltech-logo.png" align="right" width="203" height="32" border="0" /></a></td></tr></table><h1 align="center">mainwindow.cpp Example File<br /><sup><sup>mainwindows/recentfiles/mainwindow.cpp</sup></sup></h1>
<pre> /****************************************************************************
 **
 ** Copyright (C) 2004-2006 Trolltech ASA. All rights reserved.
 **
 ** This file is part of the example classes of the Qt Toolkit.
 **
 ** This file may be used under the terms of the GNU General Public
 ** License version 2.0 as published by the Free Software Foundation
 ** and appearing in the file LICENSE.GPL included in the packaging of
 ** this file.  Please review the following information to ensure GNU
 ** General Public Licensing requirements will be met:
 ** http:<span class="comment">//www.trolltech.com/products/qt/opensource.html</span>
 **
 ** If you are unsure which license is appropriate for your use, please
 ** review the following information:
 ** http:<span class="comment">//www.trolltech.com/products/qt/licensing.html or contact the</span>
 ** sales department at sales@trolltech.com.
 **
 ** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
 ** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
 **
 ****************************************************************************/

 #include &lt;QtGui&gt;

 #include &quot;mainwindow.h&quot;

 MainWindow::MainWindow()
 {
     setAttribute(Qt::WA_DeleteOnClose);

     textEdit = new QTextEdit;
     setCentralWidget(textEdit);

     createActions();
     createMenus();
     (void)statusBar();

     setWindowTitle(tr(&quot;Recent Files&quot;));
     resize(400, 300);
 }

 void MainWindow::newFile()
 {
     MainWindow *other = new MainWindow;
     other-&gt;show();
 }

 void MainWindow::open()
 {
     QString fileName = QFileDialog::getOpenFileName(this);
     if (!fileName.isEmpty())
         loadFile(fileName);
 }

 void MainWindow::save()
 {
     if (curFile.isEmpty())
         saveAs();
     else
         saveFile(curFile);
 }

 void MainWindow::saveAs()
 {
     QString fileName = QFileDialog::getSaveFileName(this);
     if (fileName.isEmpty())
         return;

     if (QFile::exists(fileName)) {
         QMessageBox::StandardButton ret;
         ret = QMessageBox::warning(this, tr(&quot;Recent Files&quot;),
                      tr(&quot;File %1 already exists.\n&quot;
                         &quot;Do you want to overwrite it?&quot;)
                      .arg(QDir::toNativeSeparators(fileName)),
                      QMessageBox::Yes | QMessageBox::Cancel);
         if (ret == QMessageBox::Cancel)
             return;
     }
     saveFile(fileName);
 }

 void MainWindow::openRecentFile()
 {
     QAction *action = qobject_cast&lt;QAction *&gt;(sender());
     if (action)
         loadFile(action-&gt;data().toString());
 }

 void MainWindow::about()
 {
    QMessageBox::about(this, tr(&quot;About Recent Files&quot;),
             tr(&quot;The &lt;b&gt;Recent Files&lt;/b&gt; example demonstrates how to provide a &quot;
                &quot;recently used file menu in a Qt application.&quot;));
 }

 void MainWindow::createActions()
 {
     newAct = new QAction(tr(&quot;&amp;New&quot;), this);
     newAct-&gt;setShortcut(tr(&quot;Ctrl+N&quot;));
     newAct-&gt;setStatusTip(tr(&quot;Create a new file&quot;));
     connect(newAct, SIGNAL(triggered()), this, SLOT(newFile()));

     openAct = new QAction(tr(&quot;&amp;Open...&quot;), this);
     openAct-&gt;setShortcut(tr(&quot;Ctrl+O&quot;));
     openAct-&gt;setStatusTip(tr(&quot;Open an existing file&quot;));
     connect(openAct, SIGNAL(triggered()), this, SLOT(open()));

     saveAct = new QAction(tr(&quot;&amp;Save&quot;), this);
     saveAct-&gt;setShortcut(tr(&quot;Ctrl+S&quot;));
     saveAct-&gt;setStatusTip(tr(&quot;Save the document to disk&quot;));
     connect(saveAct, SIGNAL(triggered()), this, SLOT(save()));

     saveAsAct = new QAction(tr(&quot;Save &amp;As...&quot;), this);
     saveAsAct-&gt;setStatusTip(tr(&quot;Save the document under a new name&quot;));
     connect(saveAsAct, SIGNAL(triggered()), this, SLOT(saveAs()));

     for (int i = 0; i &lt; MaxRecentFiles; ++i) {
         recentFileActs[i] = new QAction(this);
         recentFileActs[i]-&gt;setVisible(false);
         connect(recentFileActs[i], SIGNAL(triggered()),
                 this, SLOT(openRecentFile()));
     }

     exitAct = new QAction(tr(&quot;E&amp;xit&quot;), this);
     exitAct-&gt;setShortcut(tr(&quot;Ctrl+Q&quot;));
     exitAct-&gt;setStatusTip(tr(&quot;Exit the application&quot;));
     connect(exitAct, SIGNAL(triggered()), qApp, SLOT(closeAllWindows()));

     aboutAct = new QAction(tr(&quot;&amp;About&quot;), this);
     aboutAct-&gt;setStatusTip(tr(&quot;Show the application's About box&quot;));
     connect(aboutAct, SIGNAL(triggered()), this, SLOT(about()));

     aboutQtAct = new QAction(tr(&quot;About &amp;Qt&quot;), this);
     aboutQtAct-&gt;setStatusTip(tr(&quot;Show the Qt library's About box&quot;));
     connect(aboutQtAct, SIGNAL(triggered()), qApp, SLOT(aboutQt()));
 }

 void MainWindow::createMenus()
 {
     fileMenu = menuBar()-&gt;addMenu(tr(&quot;&amp;File&quot;));
     fileMenu-&gt;addAction(newAct);
     fileMenu-&gt;addAction(openAct);
     fileMenu-&gt;addAction(saveAct);
     fileMenu-&gt;addAction(saveAsAct);
     separatorAct = fileMenu-&gt;addSeparator();
     for (int i = 0; i &lt; MaxRecentFiles; ++i)
         fileMenu-&gt;addAction(recentFileActs[i]);
     fileMenu-&gt;addSeparator();
     fileMenu-&gt;addAction(exitAct);
     updateRecentFileActions();

     menuBar()-&gt;addSeparator();

     helpMenu = menuBar()-&gt;addMenu(tr(&quot;&amp;Help&quot;));
     helpMenu-&gt;addAction(aboutAct);
     helpMenu-&gt;addAction(aboutQtAct);
 }

 void MainWindow::loadFile(const QString &amp;fileName)
 {
     QFile file(fileName);
     if (!file.open(QFile::ReadOnly | QFile::Text)) {
         QMessageBox::warning(this, tr(&quot;Recent Files&quot;),
                              tr(&quot;Cannot read file %1:\n%2.&quot;)
                              .arg(fileName)
                              .arg(file.errorString()));
         return;
     }

     QTextStream in(&amp;file);
     QApplication::setOverrideCursor(Qt::WaitCursor);
     textEdit-&gt;setPlainText(in.readAll());
     QApplication::restoreOverrideCursor();

     setCurrentFile(fileName);
     statusBar()-&gt;showMessage(tr(&quot;File loaded&quot;), 2000);
 }

 void MainWindow::saveFile(const QString &amp;fileName)
 {
     QFile file(fileName);
     if (!file.open(QFile::WriteOnly | QFile::Text)) {
         QMessageBox::warning(this, tr(&quot;Recent Files&quot;),
                              tr(&quot;Cannot write file %1:\n%2.&quot;)
                              .arg(fileName)
                              .arg(file.errorString()));
         return;
     }

     QTextStream out(&amp;file);
     QApplication::setOverrideCursor(Qt::WaitCursor);
     out &lt;&lt; textEdit-&gt;toPlainText();
     QApplication::restoreOverrideCursor();

     setCurrentFile(fileName);
     statusBar()-&gt;showMessage(tr(&quot;File saved&quot;), 2000);
 }

 void MainWindow::setCurrentFile(const QString &amp;fileName)
 {
     curFile = fileName;
     if (curFile.isEmpty())
         setWindowTitle(tr(&quot;Recent Files&quot;));
     else
         setWindowTitle(tr(&quot;%1 - %2&quot;).arg(strippedName(curFile))
                                     .arg(tr(&quot;Recent Files&quot;)));

     QSettings settings(&quot;Trolltech&quot;, &quot;Recent Files Example&quot;);
     QStringList files = settings.value(&quot;recentFileList&quot;).toStringList();
     files.removeAll(fileName);
     files.prepend(fileName);
     while (files.size() &gt; MaxRecentFiles)
         files.removeLast();

     settings.setValue(&quot;recentFileList&quot;, files);

     foreach (QWidget *widget, QApplication::topLevelWidgets()) {
         MainWindow *mainWin = qobject_cast&lt;MainWindow *&gt;(widget);
         if (mainWin)
             mainWin-&gt;updateRecentFileActions();
     }
 }

 void MainWindow::updateRecentFileActions()
 {
     QSettings settings(&quot;Trolltech&quot;, &quot;Recent Files Example&quot;);
     QStringList files = settings.value(&quot;recentFileList&quot;).toStringList();

     int numRecentFiles = qMin(files.size(), (int)MaxRecentFiles);

     for (int i = 0; i &lt; numRecentFiles; ++i) {
         QString text = tr(&quot;&amp;%1 %2&quot;).arg(i + 1).arg(strippedName(files[i]));
         recentFileActs[i]-&gt;setText(text);
         recentFileActs[i]-&gt;setData(files[i]);
         recentFileActs[i]-&gt;setVisible(true);
     }
     for (int j = numRecentFiles; j &lt; MaxRecentFiles; ++j)
         recentFileActs[j]-&gt;setVisible(false);

     separatorAct-&gt;setVisible(numRecentFiles &gt; 0);
 }

 QString MainWindow::strippedName(const QString &amp;fullFileName)
 {
     return QFileInfo(fullFileName).fileName();
 }</pre>
<p /><address><hr /><div align="center">
<table width="100%" cellspacing="0" border="0"><tr class="address">
<td width="30%">Copyright &copy; 2006 <a href="trolltech.html">Trolltech</a></td>
<td width="40%" align="center"><a href="trademarks.html">Trademarks</a></td>
<td width="30%" align="right"><div align="right">Qt 4.2.1</div></td>
</tr></table></div></address></body>
</html>