source: trunk/doc/src/guibooks.qdoc@ 321

Last change on this file since 321 was 2, checked in by Dmitry A. Kuminov, 16 years ago

Initially imported qt-all-opensource-src-4.5.1 from Trolltech.

File size: 6.0 KB
Line 
1/****************************************************************************
2**
3** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
4** Contact: Qt Software Information ([email protected])
5**
6** This file is part of the documentation of the Qt Toolkit.
7**
8** $QT_BEGIN_LICENSE:LGPL$
9** Commercial Usage
10** Licensees holding valid Qt Commercial licenses may use this file in
11** accordance with the Qt Commercial License Agreement provided with the
12** Software or, alternatively, in accordance with the terms contained in
13** a written agreement between you and Nokia.
14**
15** GNU Lesser General Public License Usage
16** Alternatively, this file may be used under the terms of the GNU Lesser
17** General Public License version 2.1 as published by the Free Software
18** Foundation and appearing in the file LICENSE.LGPL included in the
19** packaging of this file. Please review the following information to
20** ensure the GNU Lesser General Public License version 2.1 requirements
21** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
22**
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.
27**
28** GNU General Public License Usage
29** Alternatively, this file may be used under the terms of the GNU
30** General Public License version 3.0 as published by the Free Software
31** Foundation and appearing in the file LICENSE.GPL included in the
32** packaging of this file. Please review the following information to
33** ensure the GNU General Public License version 3.0 requirements will be
34** met: http://www.gnu.org/copyleft/gpl.html.
35**
36** If you are unsure which license is appropriate for your use, please
37** contact the sales department at [email protected].
38** $QT_END_LICENSE$
39**
40****************************************************************************/
41
42/*!
43 \page guibooks.html
44
45 \title Books about GUI Design
46 \ingroup gui-programming
47
48 This is not a comprehensive list -- there are many other books worth
49 buying. Here we mention just a few user interface books that don't
50 gather dust on our shelves.
51
52 \bold{\l{http://www.amazon.com/gp/product/0132354160/ref=ase_trolltech/}{C++
53 GUI Programming with Qt 4, Second Edition}}
54 by Jasmin Blanchette and Mark
55 Summerfield, ISBN 0-13-235416-0. This is the official Qt book written
56 by two veteran Trolls. The first edition, which is based on Qt 4.1, is available
57 \l{http://www.qtrac.eu/C++-GUI-Programming-with-Qt-4-1st-ed.zip}{online}.
58
59 \bold{\l{http://www.amazon.com/exec/obidos/ASIN/0385267746/trolltech/t}{The Design of Everyday Things}}
60 by Donald Norman, ISBN 0-38526774-6, is one of the classics of human
61 interface design. Norman shows how badly something as simple as a
62 kitchen stove can be designed, and everyone should read it who will
63 design a dialog box, write an error message, or design just about
64 anything else humans are supposed to use.
65
66 \target fowler
67 \bold{\l{http://www.amazon.com/exec/obidos/ASIN/0070592748/trolltech/t}{GUI Design Handbook}}
68 by Susan Fowler, ISBN 0-07-059274-8, is an
69 alphabetical dictionary of widgets and other user interface elements,
70 with comprehensive coverage of each. Each chapter covers one widget
71 or other element, contains the most important recommendation from the
72 Macintosh, Windows and Motif style guides, notes about common
73 problems, comparison with other widgets that can serve some of the
74 same roles as this one, etc.
75
76 \target Design Patterns
77 \bold{\l{http://www.amazon.com/exec/obidos/ASIN/0201633612/103-8144203-3273444}
78 {Design Patterns - Elements of Reusable Object-Oriented Software}}
79 by Gamma, Helm, Johnson, and Vlissides, ISBN 0-201-63361-2, provides
80 more information on the Model-View-Controller (MVC) paradigm, explaining
81 MVC and its sub-patterns in detail.
82
83 \bold{\l{http://www.amazon.com/exec/obidos/ASIN/0201622165/trolltech/t}{Macintosh
84 Human Interface Guidelines}}, Second Edition, ISBN
85 0-201-62216-5, is worth buying for the \e {don't}s alone. Even
86 if you're not writing Macintosh software, avoiding most of what it
87 advises against will produce more easily comprehensible software.
88 Doing what it tells you to do may also help. This book is now available
89 \link http://developer.apple.com/techpubs/mac/HIGuidelines/HIGuidelines-2.html
90 online\endlink and there is a
91 \link http://developer.apple.com/techpubs/mac/HIGOS8Guide/thig-2.html Mac
92 OS 8 addendum.\endlink
93
94 \bold{\l{http://www.amazon.com/exec/obidos/ASIN/047159900X/trolltech/t}{The
95 Microsoft Windows User Experience}}, ISBN 1-55615-679-0,
96 is Microsoft's look and feel bible. Indispensable for everyone who
97 has customers that worship Microsoft, and it's quite good, too.
98 It is also available
99 \link http://msdn.microsoft.com/library/en-us/dnwue/html/welcome.asp online\endlink.
100
101 \bold{\l{http://www.amazon.com/exec/obidos/ASIN/047159900X/trolltech/t}{The Icon Book}}
102 by William Horton, ISBN 0-471-59900-X, is perhaps the only thorough
103 coverage of icons and icon use in software. In order for icons to be
104 successful, people must be able to do four things with them: decode,
105 recognize, find and activate them. This book explains these goals
106 from scratch and how to reach them, both with single icons and icon
107 families. Some 500 examples are scattered throughout the text.
108
109
110 \section1 Buying these Books from Amazon.com
111
112 These books are made available in association with Amazon.com, our
113 favorite online bookstore. Here is more information about
114 \link http://www.amazon.com/exec/obidos/subst/help/shipping-policy.html/t
115 Amazon.com's shipping options\endlink and its
116 \link http://www.amazon.com/exec/obidos/subst/help/desk.html/t
117 customer service.\endlink When you buy a book by following one of these
118 links, Amazon.com gives about 15% of the purchase price to
119 \link http://www.amnesty.org/ Amnesty International.\endlink
120
121*/
Note: See TracBrowser for help on using the repository browser.