[556] | 1 | /****************************************************************************
|
---|
| 2 | **
|
---|
| 3 | ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
|
---|
| 4 | ** All rights reserved.
|
---|
| 5 | ** Contact: Nokia Corporation ([email protected])
|
---|
| 6 | **
|
---|
| 7 | ** This file is part of the documentation of the Qt Toolkit.
|
---|
| 8 | **
|
---|
| 9 | ** $QT_BEGIN_LICENSE:LGPL$
|
---|
| 10 | ** Commercial Usage
|
---|
| 11 | ** Licensees holding valid Qt Commercial licenses may use this file in
|
---|
| 12 | ** accordance with the Qt Commercial License Agreement provided with the
|
---|
| 13 | ** Software or, alternatively, in accordance with the terms contained in
|
---|
| 14 | ** a written agreement between you and Nokia.
|
---|
| 15 | **
|
---|
| 16 | ** GNU Lesser General Public License Usage
|
---|
| 17 | ** Alternatively, this file may be used under the terms of the GNU Lesser
|
---|
| 18 | ** General Public License version 2.1 as published by the Free Software
|
---|
| 19 | ** Foundation and appearing in the file LICENSE.LGPL included in the
|
---|
| 20 | ** packaging of this file. Please review the following information to
|
---|
| 21 | ** ensure the GNU Lesser General Public License version 2.1 requirements
|
---|
| 22 | ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
---|
| 23 | **
|
---|
| 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 | **
|
---|
| 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 have questions regarding the use of this file, please contact
|
---|
| 37 | ** Nokia at [email protected].
|
---|
| 38 | ** $QT_END_LICENSE$
|
---|
| 39 | **
|
---|
| 40 | ****************************************************************************/
|
---|
| 41 |
|
---|
| 42 | /*!
|
---|
| 43 | \page guibooks.html
|
---|
| 44 | \title Books about GUI Design
|
---|
| 45 | \ingroup best-practices
|
---|
| 46 |
|
---|
| 47 | This is not a comprehensive list -- there are many other books worth
|
---|
| 48 | buying. Here we mention just a few user interface books that don't
|
---|
| 49 | gather dust on our shelves.
|
---|
| 50 |
|
---|
| 51 | \bold{\l{http://www.amazon.com/gp/product/0132354160/ref=ase_trolltech/}{C++
|
---|
| 52 | GUI Programming with Qt 4, Second Edition}}
|
---|
| 53 | by Jasmin Blanchette and Mark
|
---|
| 54 | Summerfield, ISBN 0-13-235416-0. This is the official Qt book written
|
---|
| 55 | by two veteran Trolls. The first edition, which is based on Qt 4.1, is
|
---|
| 56 | \l{http://www.qtrac.eu/C++-GUI-Programming-with-Qt-4-1st-ed.zip}{available online}.
|
---|
| 57 | The second edition, based on Qt 4.3, is
|
---|
| 58 | \l{http://www.informit.com/store/product.aspx?isbn=0132354160}{also available online}.
|
---|
| 59 |
|
---|
| 60 | \bold{\l{http://www.amazon.com/exec/obidos/ASIN/0385267746/trolltech/t}{The Design of Everyday Things}}
|
---|
| 61 | by Donald Norman, ISBN 0-38526774-6, is one of the classics of human
|
---|
| 62 | interface design. Norman shows how badly something as simple as a
|
---|
| 63 | kitchen stove can be designed, and everyone should read it who will
|
---|
| 64 | design a dialog box, write an error message, or design just about
|
---|
| 65 | anything else humans are supposed to use.
|
---|
| 66 |
|
---|
| 67 | \target fowler
|
---|
| 68 | \bold{\l{http://www.amazon.com/exec/obidos/ASIN/0070592748/trolltech/t}{GUI Design Handbook}}
|
---|
| 69 | by Susan Fowler, ISBN 0-07-059274-8, is an
|
---|
| 70 | alphabetical dictionary of widgets and other user interface elements,
|
---|
| 71 | with comprehensive coverage of each. Each chapter covers one widget
|
---|
| 72 | or other element, contains the most important recommendation from the
|
---|
| 73 | Macintosh, Windows and Motif style guides, notes about common
|
---|
| 74 | problems, comparison with other widgets that can serve some of the
|
---|
| 75 | same roles as this one, etc.
|
---|
| 76 |
|
---|
| 77 | \target Design Patterns
|
---|
| 78 | \bold{\l{http://www.amazon.com/exec/obidos/ASIN/0201633612/103-8144203-3273444}
|
---|
| 79 | {Design Patterns - Elements of Reusable Object-Oriented Software}}
|
---|
| 80 | by Gamma, Helm, Johnson, and Vlissides, ISBN 0-201-63361-2, provides
|
---|
| 81 | more information on the Model-View-Controller (MVC) paradigm, explaining
|
---|
| 82 | MVC and its sub-patterns in detail.
|
---|
| |
---|