blob: 4e2d47b5f03798025827aedb603f74724ef362c3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
/****************************************************************************
**
** 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 documentation of the Qt Toolkit.
**
** $QT_BEGIN_LICENSE:FDL$
** No Commercial Usage
** This file contains pre-release code and may not be distributed.
** You may use this file in accordance with the terms and conditions
** contained in the Technology Preview License Agreement accompanying
** this package.
**
** GNU Free Documentation License
** Alternatively, this file may be used under the terms of the GNU Free
** Documentation License version 1.3 as published by the Free Software
** Foundation and appearing in the file included in the packaging of this
** file.
**
** If you have questions regarding the use of this file, please contact
** Nokia at qt-info@nokia.com.
** $QT_END_LICENSE$
**
****************************************************************************/
/*!
\page tutorials.html
\title チュートリアル
\contentspage How to Learn Qt
\nextpage Qt Examples
\brief Qt の学習を助けるチュートリアルやガイドの概要
\nextpage Qt Examples
Qt で提供されているこれらのチュートリアルやガイドは
新たに Qt の開発を始めるユーザの良い助けとなります。
これらのドキュメントでは ウィジェットの基本的な使い方から始まり
ステップバイステップでアプリケーションの使い方を学ぶことが出来ます。
\table
\row
\o{2,1} \l{ウィジェットのチュートリアル}{\bold ウィジェット}
\o{2,1} \l{チュートリアル: アドレス帳}{\bold {アドレス帳}}
\row
\o \image widget-examples.png Widgets
\o
ウィジェットとレイアウトを使って GUI アプリケーションを作成する
初心者向けのガイドです。
\o \image addressbook-tutorial.png AddressBook
\o
完全な機能を持つアドレス帳アプリケーションを作成する 7 章で構成されたガイドです。
\row
\o{2,1} \l{Qt Designer クイックガイド}{\bold{Qt Designer}}
\o{2,1} \l{Qt Linguist Manual: Programmers#Tutorials}{\bold {Qt Linguist}}
\row
\o \image designer-examples.png QtDesigner
\o
\QD を使ってフォームを生成する基本的な手順を説明するクイックガイドです。
\o \image linguist-examples.png QtLinguist
\o
\l{サンプル: こんにちは tr()}{こんにちは tr()}、
\l{サンプル: アローパッド}{アローパッド}、
\l{サンプル: トロールプリント}{トロールプリント}
の三例を通じて翻訳の方法を説明します。
\row
\o{2,1} \l{QTestLib チュートリアル}{\bold QTestLib}
\o{2,1} \l{qmake チュートリアル}{\bold qmake}
\row
\o{2,1}
Qt のユニットテストフレームワークである QTestLib の機能の初歩的な使い方を説明するチュートリアルです。
このチュートリアルは4章で構成されています。
\o{2,1}
\c qmake の使い方を説明するチュートリアルです。
このチュートリアルを卒業した後は \l{qmake Manual}{qmake user guide}(英語)
を読むことをお勧めします。
\endtable
*/
|