QtUiTest Namespace Reference
|
Constant | Value | Description |
---|---|---|
QtUiTest::NoOptions | 0x0 | no options. |
QtUiTest::DemoMode | 0x1 | when simulating, force artificial delays between key and mouse events, and animate some events. |
QtUiTest::KeyRepeat | 0x2 | when simulating key press events, simulate auto-repeat key press events. The default is to simulate regular key press events. |
This enum provides mappings for high-level conceptual keys to platform-specific values of Qt::Key.
Constant | Value | Description |
---|---|---|
QtUiTest::Key_Activate | Qt::Key_Select | Key used to activate generic UI elements. |
QtUiTest::Key_ActivateButton | Qt::Key_Select | Key used to activate buttons. |
QtUiTest::Key_Select | Qt::Key_Select | Key used to select an item from lists. |
This enum type specifies different types of widgets which can be retrieved via QtUiTest::findWidget().
Constant | Value | Description |
---|---|---|
QtUiTest::Focus | 6 | The widget which currently has keyboard focus. Note that this need not be located in the current application. |
QtUiTest::InputMethod | 0 | A currently active input method widget. |
QtUiTest::SoftMenu | 1 | A currently displayed soft menu bar. |
QtUiTest::OptionsMenu | 2 | The context/options menu which is currently shown, or would be shown if the user attempted to raise a context menu (typically by pressing Qt::Key_Context1). |
QtUiTest::TabBar | 3 | The tab bar for the currently active tab widget, if one exists. QtUiTest is not designed to handle multiple nested tab widgets. |
QtUiTest::HomeScreen | 5 | The home screen widget. |
QtUiTest::Launcher | 4 | The widget (typically a grid-like menu) in the server process used for launching applications. |
QtUiTest::CallManager | 7 | An object which implements SelectWidget and knows how to select "accept" and "hangup" to manage calls. This need not map to a single actual widget. This is used to implement callAccept() and callHangup(). |
Returns the Qt::Key corresponding to c.
This function is commonly used in conjunction with keyClick() to enter a string of characters using the keypad.
Example:
using namespace QtUiTest;
QString text = "hello world";
// ...
foreach (QChar c, text) {
keyClick( asciiToKey(c.toLatin1()), asciiToModifiers(c.toLatin1()) );
}
Returns any Qt::KeyboardModifiers which would be required to input c.
This function is commonly used in conjunction with keyClick() to enter a string of characters using the keypad.
Example:
using namespace QtUiTest;
QString text = "hello world";
// ...
foreach (QChar c, text) {
keyClick( asciiToKey(c.toLatin1()), asciiToModifiers(c.toLatin1()) );
}
Creates a connection from the signal in the sender object to the method in the receiver object. Returns true if the connection succeeds; otherwise returns false.
This function behaves similarly to QObject::connect() with the following important differences.
This function is primarily used in conjunction with QtUiTestRecorder to ensure events are recorded in the correct order.
Note that this function cannot be used in a program which uses QSignalSpy.
See also QObject::connect() and QtUiTest::disconnectFirst().
Disconnects signal in object sender from method in object receiver. Returns true if the connection is successfully broken; otherwise returns false.
The connection must have been established with QtUiTest::connectFirst().
Passing null arguments has the same wildcard effects as documented in QObject::disconnect().
If the same connection has been established multiple times, disconnectFirst() will disconnect all instances of the connection. There is no way to disconnect a single instance of a connection. This behavior matches QObject::disconnect().
See also QObject::disconnect() and QtUiTest::connectFirst().
Returns a human-readable error string describing the last error which occurred while accessing a testwidget.
The error string is used to report directly to a tester any unexpected errors. The string will typically be used as a test failure message.
See also setErrorString().
Returns a widget or test widget wrapper of type.
QtUiTest will attempt to find widgets by calling QtUiTest::WidgetFactory::find() on all loaded widget factories.
Note that it is possible to call this function from an application where the only widget of type exists in the server. In this case, the reference implementation returns a special wrapper which transparently communicates with the server when calling functions. However, if custom factories are used which do not do this, this function is likely to return 0 in this case.
Example:
using namespace QtUiTest; bool MyTextEdit::enter(QVariant const& item) { // Instead of explicitly simulating mouse or key clicks, // enter the text via the current input method. // Note that this works whether or not the input method is located in // the current process. InputWidget *iw = qtuitest_cast<InputWidget*>(findWidget(InputMethod)); return (iw && iw->enter(item)); }
Simulate a key click event, using the given key and modifiers. key must be a valid Qt::Key or QtUiTest::Key. options are applied to the simulated event.
This is an overloaded member function, provided for convenience.
Simulate a key click event. Returns true if the event appears to be delivered to object within maximumUiTimeout() milliseconds. If it does not, the errorString() will be set accordingly.
This is an overloaded member function, provided for convenience.
Simulate a key click event. Returns true if object emits signal within maximumUiTimeout() milliseconds. If it does not, the errorString() will be set accordingly.
Simulate a key press event, using the given key and modifiers. key must be a valid Qt::Key or QtUiTest::Key. options are applied to the simulated event.
Simulate a key release event, using the given key and modifiers. key must be a valid Qt::Key or QtUiTest::Key. options are applied to the simulated event.
Returns the maximum amount of time, in milliseconds, the user interface is allowed to take to generate some response to a user's action.
This value is useful to determine how long test widgets should wait for certain events to occur after simulating key/mouse events. The value may be device-specific.
Simulate a mouse click event at the global co-ordinates given by pos, for the specified buttons. options are applied to the simulated event.
For Qt Extended, pos is interpreted as global screen co-ordinates. For all other platforms, pos is interpreted as local co-ordinates for the currently active window in this application.
This is an overloaded member function, provided for convenience.
Simulate a mouse click event. Returns true if the event appears to be delivered to object within maximumUiTimeout() milliseconds. If it does not, the errorString() will be set accordingly.
This is an overloaded member function, provided for convenience.
Simulate a mouse click event. Returns true if the event causes object to emit signal within maximumUiTimeout() milliseconds. If it does not, the errorString() will be set accordingly.
Returns true if widget interaction should prefer mouse events over key events.
For example, when Qt Extended is used on a touchscreen-only device, this function will return true.
Simulate a mouse press event at the co-ordinates given by pos, for the specified buttons. options are applied to the simulated event.
For Qt Extended, pos is interpreted as global screen co-ordinates. For all other platforms, pos is interpreted as local co-ordinates for the currently active window in this application.
Simulate a mouse release event at the global co-ordinates given by pos, for the specified buttons. options are applied to the simulated event.
For Qt Extended, pos is interpreted as global screen co-ordinates. For all other platforms, pos is interpreted as local co-ordinates for the currently active window in this application.
Casts object to the specified Qt Extended test widget interface T.
If object already implements T, it is simply casted and returned. Otherwise, QtUiTest will attempt to find or create a test widget to wrap object, using all loaded QtUiTest::WidgetFactory plugins. If a test widget cannot be created to wrap object, 0 is returned.
In either case, the returned value must not be deleted by the caller.
Example:
// Attempt to select the item "Foo" from the given widget
bool selectFoo(QWidget *widget) {
QtUiTest::SelectWidget* sw
= qtuitest_cast<QtUiTest::SelectWidget*>(widget);
if (!sw || !sw->canSelect("Foo")) {
return false;
}
return sw->select("Foo");
}
Sets the human-readable error string describing the last error which occurred while accessing a testwidget.
See also errorString().
Set or clear the specified option for subsequent simulated input events. The option is set if on is true, otherwise it is cleared.
Returns true if option is currently set.
Causes the process to wait for ms milliseconds. While waiting, events will be processed.
Causes the process to wait for ms milliseconds or until an event of any of the given types is received by object, whichever comes first.
While waiting, events will be processed.
Returns true if the event was received by object before timing out. When false is returned, errorString() is set accordingly.
If connectionType specifies a direct connection, this function will return immediately before the event is processed by object. If connectionType specifies a queued connection, this function will return once the event loop has run following the processing of the event.
This is an overloaded member function, provided for convenience.
Waits for an event of the given type.
Causes the process to wait for ms milliseconds or until signal is emitted from object, whichever comes first.
While waiting, events will be processed.
Returns true if signal was emitted from object before timing out. When false is returned, errorString() is set accordingly.
If connectionType specifies a direct connection, this function will return immediately when the signal occurs, possibly before some objects have received the signal. If connectionType specifies a queued connection, this function will return once the event loop has run following the emit.
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 qtextended4.4 | |
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