QKeySequence Class Reference |
Constant | Value | Description |
---|---|---|
QKeySequence::NoMatch | 0 | The key sequences are different; not even partially matching. |
QKeySequence::PartialMatch | 1 | The key sequences match partially, but are not the same. |
QKeySequence::ExactMatch | 2 | The key sequences are the same. |
Constructs an empty key sequence.
Creates a key sequence from the key string. For example "Ctrl+O" gives CTRL+'O'. The strings "Ctrl", "Shift", "Alt" and "Meta" are recognized, as well as their translated equivalents in the "QShortcut" context (using QObject::tr()).
Up to four key codes may be entered by separating them with commas, e.g. "Alt+X,Ctrl+S,Q".
This contructor is typically used with tr(), so that shortcut keys can be replaced in translations:
QMenu *file = new QMenu(this); file->addAction(tr("&Open..."), this, SLOT(open()), QKeySequence(tr("Ctrl+O", "File|Open")));
Note the "File|Open" translator comment. It is by no means necessary, but it provides some context for the human translator.
Constructs a key sequence with up to 4 keys k1, k2, k3 and k4.
The key codes are listed in Qt::Key and can be combined with modifiers (see Qt::Modifier) such as Qt::SHIFT, Qt::CTRL, Qt::ALT, or Qt::META.
Copy constructor. Makes a copy of keysequence.
Destroys the key sequence.
Returns the number of keys in the key sequence. The maximum is 4.
Returns true if the key sequence is empty; otherwise returns false.
Matches the sequence with seq. Returns ExactMatch if successful, PartialMatch if seq matches incompletely, and NoMatch if the sequences have nothing in common. Returns NoMatch if seq is shorter.
Returns the shortcut key sequence for the mnemonic in text, or an empty key sequence if no mnemonics are found.
For example, mnemonic("E&xit") returns Qt::ALT+Qt::Key_X, mnemonic("&Quit") returns ALT+Key_Q, and mnemonic("Quit") returns an empty QKeySequence.
We provide a list of common mnemonics in English. At the time of writing, Microsoft and Open Group do not appear to have issued equivalent recommendations for other languages.
Creates a shortcut string for the key sequence.
For example, the value Qt::CTRL+Qt::Key_O results in "Ctrl+O". If the key sequence has multiple key codes, each is separated by commas in the string returned, such as "Alt+X, Ctrl+Y, Z". The strings, "Ctrl", "Shift", etc. are translated using QObject::tr() in the "QShortcut" scope.
If the key sequence has no keys, an empty string is returned.
On Mac OS X, the string returned resembles the sequence that is shown in the menubar.
Returns the key sequence as a QVariant
Returns true if this key sequence is not equal to the other key sequence; otherwise returns false.
Provides an arbitrary comparison of this key sequence and other key sequence. All that is guaranteed is that the operator returns false if both key sequences are equal and that (ks1 < ks2) == !( ks2 < ks1) if the key sequences are not equal.
This function is useful in some circumstances, for example if you want to use QKeySequence objects as keys in a QMap.
See also operator==(), operator!=(), operator>(), operator<=(), and operator>=().
Returns true if this key sequence is smaller or equal to the other key sequence; otherwise returns false.
See also operator==(), operator!=(), operator<(), operator>(), and operator>=().
Assignment operator. Assigns the other key sequence to this object.
Returns true if this key sequence is equal to the other key sequence; otherwise returns false.
Returns true if this key sequence is larger than the other key sequence; otherwise returns false.
See also operator==(), operator!=(), operator<(), operator<=(), and operator>=().
Returns true if this key sequence is larger or equal to the other key sequence; otherwise returns false.
See also operator==(), operator!=(), operator<(), operator>(), and operator<=().
Returns a reference to the element at position index in the key sequence. This can only be used to read an element.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
Writes the key sequence to the stream.
See also Format of the QDataStream operators.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
Reads a key sequence from the stream into the key sequence.
See also Format of the QDataStream operators.
Cette page est une traduction d'une page de la documentation de Qt, écrite par Nokia Corporation and/or its subsidiary(-ies). Les éventuels problèmes résultant d'une mauvaise traduction ne sont pas imputables à Nokia. | Qt 4.0 | |
Copyright © 2012 Developpez LLC. Tous droits réservés Developpez LLC. Aucune reproduction, même partielle, ne peut être faite de ce site et de l'ensemble de son contenu : textes, documents et images sans l'autorisation expresse de Developpez LLC. Sinon, vous encourez selon la loi jusqu'à 3 ans de prison et jusqu'à 300 000 E de dommages et intérêts. Cette page est déposée à la SACD. | ||
Vous avez déniché une erreur ? Un bug ? Une redirection cassée ? Ou tout autre problème, quel qu'il soit ? Ou bien vous désirez participer à ce projet de traduction ? N'hésitez pas à nous contacter ou par MP ! |
Copyright © 2000-2012 - www.developpez.com