forked from qt-creator/qt-creator
Doc: switch fixed links from Qt 4.8 to 5.0
Will look into changing automatically created links in another patch. Change-Id: I29b61c5301402c40d9e711762a6b57479088152b Reviewed-by: Jerome Pasion <jerome.pasion@digia.com>
This commit is contained in:
@@ -31,9 +31,9 @@
|
||||
\title Creating a Qt Widget Based Application
|
||||
|
||||
This tutorial describes how to use \QC to create a small Qt application,
|
||||
Text Finder. It is a simplified version of the QtUiTools
|
||||
\l{http://qt-project.org/doc/qt-4.8/uitools-textfinder.html}{Text Finder}
|
||||
example. The application user interface is constructed from Qt widgets by
|
||||
Text Finder. It is a simplified version of the Qt UI Tools
|
||||
\l{http://qt-project.org/doc/qt-5.0/qtuitools/textfinder.html}{Text Finder
|
||||
example}. The application user interface is constructed from Qt widgets by
|
||||
using \QD. The application logic is written in C++ by using the code editor.
|
||||
|
||||
\image qtcreator-textfinder-screenshot.png
|
||||
@@ -198,7 +198,7 @@
|
||||
\endlist
|
||||
|
||||
For more information about designing forms with \QD, see the
|
||||
\l{http://qt-project.org/doc/qt-4.8/designer-manual.html}{Qt Designer Manual}.
|
||||
\l{http://qt-project.org/doc/qt-5.0/qtdesigner/qtdesigner-manual.html}{Qt Designer Manual}.
|
||||
|
||||
\section2 Completing the Header File
|
||||
|
||||
@@ -232,7 +232,7 @@
|
||||
|
||||
\li Add code to load a text file using QFile, read it with QTextStream,
|
||||
and then display it on \c{textEdit} with
|
||||
\l{http://qt-project.org/doc/qt-4.8/qtextedit.html#plainText-prop}
|
||||
\l{http://qt-project.org/doc/qt-5.0/qtwidgets/qtextedit.html#plainText-prop}
|
||||
{setPlainText()}.
|
||||
This is illustrated by the following code snippet:
|
||||
|
||||
@@ -245,7 +245,7 @@
|
||||
|
||||
\li For the \c{on_findButton_clicked()} slot, add code to extract the
|
||||
search string and use the
|
||||
\l{http://qt-project.org/doc/qt-4.8/qtextedit.html#find}{find()}
|
||||
\l{http://qt-project.org/doc/qt-5.0/qtwidgets/qtextedit.html#find}{find()}
|
||||
function
|
||||
to look for the search string within the text file. This is
|
||||
illustrated by the following code snippet:
|
||||
|
||||
@@ -36,7 +36,7 @@
|
||||
\image qtcreator-formedit.png
|
||||
|
||||
For more information about \QD, see the
|
||||
\l{http://qt-project.org/doc/qt-4.8/designer-manual.html}{Qt Designer Manual}.
|
||||
\l{http://qt-project.org/doc/qt-5.0/qtdesigner/qtdesigner-manual.html}{Qt Designer Manual}.
|
||||
|
||||
Generally, the integrated \QD contains the same functions as the standalone
|
||||
\QD. The following sections describe the differences.
|
||||
|
||||
@@ -41,7 +41,7 @@
|
||||
and to change the default plugin path, see \l{How to Create Qt Plugins}.
|
||||
|
||||
For more information about how to create plugins for \QD, see
|
||||
\l{http://qt-project.org/doc/qt-4.8/designer-using-custom-widgets.html}
|
||||
\l{http://qt-project.org/doc/qt-5.0/qtdesigner/designer-using-custom-widgets.html}
|
||||
{Using Custom Widgets with Qt Designer}.
|
||||
|
||||
\section1 Locating Qt Designer Plugins
|
||||
@@ -75,7 +75,7 @@
|
||||
\QC uses its own set of Qt Libraries located in the bundle, and therefore,
|
||||
you need to configure the \QD plugins that you want to use with \QC.
|
||||
Fore more information about how to deploy applications to Mac OS, see
|
||||
\l{http://qt-project.org/doc/qt-4.8/deployment-mac.html}
|
||||
\l{http://qt-project.org/doc/qt-5.0/qtdoc/deployment-mac.html}
|
||||
{Deploying an Application on Mac OS X}.
|
||||
|
||||
The following example illustrates how to configure version 5.2.1 of the
|
||||
|
||||
Reference in New Issue
Block a user