summaryrefslogtreecommitdiffstats
path: root/doc/src/howtos
diff options
context:
space:
mode:
authorKai Köhne <kai.koehne@qt.io>2022-06-02 17:24:50 +0200
committerKai Köhne <kai.koehne@qt.io>2022-07-25 13:53:09 +0200
commit72a6eec7fe3307496fcef2b5dde7e570b9518f63 (patch)
tree2d6c3289ca1d7a7b9b8023a2136758b8d6c86678 /doc/src/howtos
parent5d9b4a1cff656219eb2f18b4adac759bc4fd813e (diff)
Delete Standard Accelerator Keys page
The page is not linked to, and therefore probably not used much. In addition, the mentioned technologies (CDE) and the mentioned Microsoft book (which is out of print) make it look dated. Overall I think the benefit of having such a list in our documentation is minor. Change-Id: Ie2921541d47fbcd3d3aa54354f1073f1ce708de7 Reviewed-by: Paul Wicking <paul.wicking@qt.io>
Diffstat (limited to 'doc/src/howtos')
-rw-r--r--doc/src/howtos/accelerators.qdoc102
1 files changed, 0 insertions, 102 deletions
diff --git a/doc/src/howtos/accelerators.qdoc b/doc/src/howtos/accelerators.qdoc
deleted file mode 100644
index 4a196b2dc..000000000
--- a/doc/src/howtos/accelerators.qdoc
+++ /dev/null
@@ -1,102 +0,0 @@
-// Copyright (C) 2016 The Qt Company Ltd.
-// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only
-
-/*!
- \page accelerators.html
- \title Standard Accelerator Keys
- \brief Recommended accelerator keys.
-
- \ingroup best-practices
-
- Applications invariably need to define accelerator keys for actions.
- Qt fully supports accelerators, for example with QShortcut. Platform
- defaults for key bindings can also be assigned using QKeySequence::StandardKey.
-
- Here are Microsoft's recommendations for accelerator keys, with
- comments about the Open Group's recommendations where they exist
- and differ. For most commands, the Open Group either has no advice or
- agrees with Microsoft.
-
- The emboldened letter plus Alt is Microsoft's recommended choice, and
- we recommend supporting it. For an Apply button, for example, we
- recommend QAbstractButton::setText(\link QObject::tr() tr \endlink("&Apply"));
-
- If you have conflicting commands (e.g. About and Apply buttons in the
- same dialog), you must decide for yourself.
-
- \list
- \li \b{\underline{A}}bout
- \li Always on \b{\underline{T}}op
- \li \b{\underline{A}}pply
- \li \b{\underline{B}}ack
- \li \b{\underline{B}}rowse
- \li \b{\underline{C}}lose (CDE: Alt+F4; Alt+F4 is "close window" in Windows)
- \li \b{\underline{C}}opy (CDE: Ctrl+C, Ctrl+Insert)
- \li \b{\underline{C}}opy Here
- \li Create \b{\underline{S}}hortcut
- \li Create \b{\underline{S}}hortcut Here
- \li Cu\b{\underline{t}}
- \li \b{\underline{D}}elete
- \li \b{\underline{E}}dit
- \li \b{\underline{E}}xit (CDE: E\b{\underline{x}}it)
- \li \b{\underline{E}}xplore
- \li \b{\underline{F}}ile
- \li \b{\underline{F}}ind
- \li \b{\underline{H}}elp
- \li Help \b{\underline{T}}opics
- \li \b{\underline{H}}ide
- \li \b{\underline{I}}nsert
- \li Insert \b{\underline{O}}bject
- \li \b{\underline{L}}ink Here
- \li Ma\b{\underline{x}}imize
- \li Mi\b{\underline{n}}imize
- \li \b{\underline{M}}ove
- \li \b{\underline{M}}ove Here
- \li \b{\underline{N}}ew
- \li \b{\underline{N}}ext
- \li \b{\underline{N}}o
- \li \b{\underline{O}}pen
- \li Open \b{\underline{W}}ith
- \li Page Set\b{\underline{u}}p
- \li \b{\underline{P}}aste
- \li Paste \b{\underline{L}}ink
- \li Paste \b{\underline{S}}hortcut
- \li Paste \b{\underline{S}}pecial
- \li \b{\underline{P}}ause
- \li \b{\underline{P}}lay
- \li \b{\underline{P}}rint
- \li \b{\underline{P}}rint Here
- \li P\b{\underline{r}}operties
- \li \b{\underline{Q}}uick View
- \li \b{\underline{R}}edo (CDE: Ctrl+Y, Shift+Alt+Backspace)
- \li \b{\underline{R}}epeat
- \li \b{\underline{R}}estore
- \li \b{\underline{R}}esume
- \li \b{\underline{R}}etry
- \li \b{\underline{R}}un
- \li \b{\underline{S}}ave
- \li Save \b{\underline{A}}s
- \li Select \b{\underline{A}}ll
- \li Se\b{\underline{n}}d To
- \li \b{\underline{S}}how
- \li \b{\underline{S}}ize
- \li S\b{\underline{p}}lit
- \li \b{\underline{S}}top
- \li \b{\underline{U}}ndo (CDE: Ctrl+Z or Alt+Backspace)
- \li \b{\underline{V}}iew
- \li \b{\underline{W}}hat's This?
- \li \b{\underline{W}}indow
- \li \b{\underline{Y}}es
- \endlist
-
- There are also a lot of other keys and actions (that use other
- modifier keys than Alt). See the Microsoft and The Open Group
- documentation for details.
-
- The
- \l{http://www.amazon.com/exec/obidos/ASIN/0735605661/trolltech/t}{Microsoft book}
- has ISBN 0735605661. The corresponding Open Group
- book is very hard to find, rather expensive and we cannot recommend
- it. However, if you really want it, ogpubs@opengroup.org might be able
- to help. Ask them for ISBN 1859121047.
-*/