Qt:Документация 4.3.2/qdesignerformwindowcursorinterface

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QDesignerFormWindowCursorInterface Class Reference
[ QtDesigner module]

The QDesignerFormWindowCursorInterface class allows you to query and modify a form window's widget selection, and in addition modify the properties of all the form's widgets. Далее...

 #include <QDesignerFormWindowCursorInterface>

[править] Открытые типы

[править] Открытые функции


[править] Подробное описание

The QDesignerFormWindowCursorInterface class allows you to query and modify a form window's widget selection, and in addition modify the properties of all the form's widgets.

QDesignerFormWindowCursorInterface is a convenience class that provides an interface to the associated form window's text cursor; it provides a collection of functions that enables you to query a given form window's selection and change the selection's focus according to defined modes ( MoveMode) and movements ( MoveOperation). You can also use the interface to query the form's widgets and change their properties.

The interface is not intended to be instantiated directly, but to provide access to the selections and widgets of Qt Designer's current form windows. QDesignerFormWindowInterface always provides an associated cursor interface. The form window for a given widget can be retrieved using the static QDesignerFormWindowInterface::findFormWindow() functions. Пример:

 QDesignerFormWindowInterface *formWindow = 0;
 formWindow = QDesignerFormWindowInterface::findFormWindow(myWidget);
 
 formWindow->cursor()->setProperty(myWidget, myProperty, newValue);

You can retrieve any of Qt Designers current form windows through Qt Designers form window manager.

Once you have a form window's cursor interface, you can check if the form window has a selection at all using the hasSelection() function. You can query the form window for its total widgetCount() and selectedWidgetCount(). You can retrieve the currently selected widget (or widgets) using the current() or selectedWidget() functions.

You can retrieve any of the form window's widgets using the widget() function, and check if a widget is selected using the isWidgetSelected() function. You can use the setProperty() function to set the selected widget's properties, and the setWidgetProperty() or resetWidgetProperty() functions to modify the properties of any given widget.

Finally, you can change the selection by changing the text cursor's position() using the setPosition() and movePosition() functions.

See also QDesignerFormWindowInterface and QDesignerFormWindowManagerInterface.


[править] Описание типов

[править]
enum QDesignerFormWindowCursorInterface::MoveMode

This enum describes the different modes that are used when the text cursor moves.


Константа Значение Описание
QDesignerFormWindowCursorInterface::MoveAnchor 0 The anchor moves with the cursor to its new location.
QDesignerFormWindowCursorInterface::KeepAnchor 1 The anchor remains at the cursor's old location.

[править]
enum QDesignerFormWindowCursorInterface::MoveOperation

This enum describes the types of text cursor operation that can occur in a form window.


Константа Значение Описание
QDesignerFormWindowCursorInterface::NoMove 0 The cursor does not move.
QDesignerFormWindowCursorInterface::Start 1 Moves the cursor to the start of the focus chain.
QDesignerFormWindowCursorInterface::End 2 Moves the cursor to the end of the focus chain.
QDesignerFormWindowCursorInterface::Next 3 Moves the cursor to the next widget in the focus chain.
QDesignerFormWindowCursorInterface::Prev 4 Moves the cursor to the previous widget in the focus chain.
QDesignerFormWindowCursorInterface::Left 5 The cursor moves to the left.
QDesignerFormWindowCursorInterface::Right 6 The cursor moves to the right.
QDesignerFormWindowCursorInterface::Up 7 The cursor moves upwards.
QDesignerFormWindowCursorInterface::Down 8 The cursor moves downwards.

[править] Описание функций-членов

[править]
QDesignerFormWindowCursorInterface::~QDesignerFormWindowCursorInterface () [virtual]

Destroys the cursor interface.

[править]
QWidget * QDesignerFormWindowCursorInterface::current () const [pure virtual]

Returns the currently selected widget in the form window.

See also selectedWidget().

[править]
QDesignerFormWindowInterface * QDesignerFormWindowCursorInterface::formWindow () const [pure virtual]

Returns the form window interface associated with this cursor interface.

[править]
bool QDesignerFormWindowCursorInterface::hasSelection () const [pure virtual]

Returns true if the form window contains a selection; otherwise returns false.

[править]
bool QDesignerFormWindowCursorInterface::isWidgetSelected ( QWidget * widget ) const

Returns true if the specified widget is selected; otherwise returns false.

[править]
bool QDesignerFormWindowCursorInterface::movePosition ( MoveOperation operation, MoveMode mode = MoveAnchor ) [pure virtual]

Performs the given operation on the cursor using the specified mode, and returns true if it completed successfully; otherwise returns false.

See also position() and setPosition().

[править]
int QDesignerFormWindowCursorInterface::position () const [pure virtual]

Returns the cursor position.

See also setPosition() and movePosition().

[править]
void QDesignerFormWindowCursorInterface::resetWidgetProperty ( QWidget * widget, const QString & name ) [pure virtual]

Resets the property with the given name for the specified widget to its default value.

See also setProperty() and setWidgetProperty().

[править]
QWidget * QDesignerFormWindowCursorInterface::selectedWidget ( int index ) const [pure virtual]

Returns the widget with the given index in the list of selected widgets.

See also current() and widget().

[править]
int QDesignerFormWindowCursorInterface::selectedWidgetCount () const [pure virtual]

Returns the number of selected widgets in the form window.

See also widgetCount().

[править]
void QDesignerFormWindowCursorInterface::setPosition ( int position, MoveMode mode = MoveAnchor ) [pure virtual]

Sets the position of the cursor to the given position using the mode to specify how it is moved there.

See also position() and movePosition().

[править]
void QDesignerFormWindowCursorInterface::setProperty ( const QString & name, const QVariant & value ) [pure virtual]

Sets the property with the given name for the currently selected widget to the specified value.

See also setWidgetProperty() and resetWidgetProperty().

[править]
void QDesignerFormWindowCursorInterface::setWidgetProperty ( QWidget * widget, const QString & name, const QVariant & value ) [pure virtual]

Sets the property with the given name for the given widget to the specified value.

See also resetWidgetProperty() and setProperty().

[править]
QWidget * QDesignerFormWindowCursorInterface::widget ( int index ) const [pure virtual]

Returns the widget with the given index in the list of widgets in the form window.

See also selectedWidget().

[править]
int QDesignerFormWindowCursorInterface::widgetCount () const [pure virtual]

Returns the number of widgets in the form window.

See also selectedWidgetCount().



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2