src/corelib/kernel/qcoreevent.cpp
changeset 18 2f34d5167611
parent 0 1918ee327afb
child 30 5dc02b23752f
equal deleted inserted replaced
3:41300fa6a67c 18:2f34d5167611
     1 /****************************************************************************
     1 /****************************************************************************
     2 **
     2 **
     3 ** Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
     3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     4 ** All rights reserved.
     4 ** All rights reserved.
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
     5 ** Contact: Nokia Corporation (qt-info@nokia.com)
     6 **
     6 **
     7 ** This file is part of the QtCore module of the Qt Toolkit.
     7 ** This file is part of the QtCore module of the Qt Toolkit.
     8 **
     8 **
   105     \value ApplicationDeactivate            The application has been suspended, and is unavailable to the user.
   105     \value ApplicationDeactivate            The application has been suspended, and is unavailable to the user.
   106     \value ApplicationFontChange            The default application font has changed.
   106     \value ApplicationFontChange            The default application font has changed.
   107     \value ApplicationLayoutDirectionChange The default application layout direction has changed.
   107     \value ApplicationLayoutDirectionChange The default application layout direction has changed.
   108     \value ApplicationPaletteChange         The default application palette has changed.
   108     \value ApplicationPaletteChange         The default application palette has changed.
   109     \value ApplicationWindowIconChange      The application's icon has changed.
   109     \value ApplicationWindowIconChange      The application's icon has changed.
   110     \value CloseSoftwareInputPanel          A widget wants to close the software input panel (SIP).
       
   111     \value ChildAdded                       An object gets a child (QChildEvent).
   110     \value ChildAdded                       An object gets a child (QChildEvent).
   112     \value ChildInserted                    An object gets a child (QChildEvent). Qt3Support only, use ChildAdded instead.
   111     \value ChildInserted                    An object gets a child (QChildEvent). Qt3Support only, use ChildAdded instead.
   113     \value ChildPolished                    A widget child gets polished (QChildEvent).
   112     \value ChildPolished                    A widget child gets polished (QChildEvent).
   114     \value ChildRemoved                     An object loses a child (QChildEvent).
   113     \value ChildRemoved                     An object loses a child (QChildEvent).
   115     \value Clipboard                        The clipboard contents have changed (QClipboardEvent).
   114     \value Clipboard                        The clipboard contents have changed (QClipboardEvent).
   116     \value Close                            Widget was closed (QCloseEvent).
   115     \value Close                            Widget was closed (QCloseEvent).
       
   116     \value CloseSoftwareInputPanel          A widget wants to close the software input panel (SIP).
   117     \value ContentsRectChange               The margins of the widget's content rect changed.
   117     \value ContentsRectChange               The margins of the widget's content rect changed.
   118     \value ContextMenu                      Context popup menu (QContextMenuEvent).
   118     \value ContextMenu                      Context popup menu (QContextMenuEvent).
   119     \value CursorChange                     The widget's cursor has changed.
   119     \value CursorChange                     The widget's cursor has changed.
   120     \value DeferredDelete                   The object will be deleted after it has cleaned up.
   120     \value DeferredDelete                   The object will be deleted after it has cleaned up.
   121     \value DragEnter                        The cursor enters a widget during a drag and drop operation (QDragEnterEvent).
   121     \value DragEnter                        The cursor enters a widget during a drag and drop operation (QDragEnterEvent).
   131     \value FocusOut                         Widget loses keyboard focus (QFocusEvent).
   131     \value FocusOut                         Widget loses keyboard focus (QFocusEvent).
   132     \value FontChange                       Widget's font has changed.
   132     \value FontChange                       Widget's font has changed.
   133     \value GrabKeyboard                     Item gains keyboard grab (QGraphicsItem only).
   133     \value GrabKeyboard                     Item gains keyboard grab (QGraphicsItem only).
   134     \value GrabMouse                        Item gains mouse grab (QGraphicsItem only).
   134     \value GrabMouse                        Item gains mouse grab (QGraphicsItem only).
   135     \value GraphicsSceneContextMenu         Context popup menu over a graphics scene (QGraphicsSceneContextMenuEvent).
   135     \value GraphicsSceneContextMenu         Context popup menu over a graphics scene (QGraphicsSceneContextMenuEvent).
   136     \value GraphicsSceneDragEnter           The cursor enters a graphics scene during a drag and drop operation.
   136     \value GraphicsSceneDragEnter           The cursor enters a graphics scene during a drag and drop operation (QGraphicsSceneDragDropEvent).
   137     \value GraphicsSceneDragLeave           The cursor leaves a graphics scene during a drag and drop operation.
   137     \value GraphicsSceneDragLeave           The cursor leaves a graphics scene during a drag and drop operation (QGraphicsSceneDragDropEvent).
   138     \value GraphicsSceneDragMove            A drag and drop operation is in progress over a scene.
   138     \value GraphicsSceneDragMove            A drag and drop operation is in progress over a scene (QGraphicsSceneDragDropEvent).
   139     \value GraphicsSceneDrop                A drag and drop operation is completed over a scene.
   139     \value GraphicsSceneDrop                A drag and drop operation is completed over a scene (QGraphicsSceneDragDropEvent).
   140     \value GraphicsSceneHelp                The user requests help for a graphics scene (QHelpEvent).
   140     \value GraphicsSceneHelp                The user requests help for a graphics scene (QHelpEvent).
   141     \value GraphicsSceneHoverEnter          The mouse cursor enters a hover item in a graphics scene (QGraphicsSceneHoverEvent).
   141     \value GraphicsSceneHoverEnter          The mouse cursor enters a hover item in a graphics scene (QGraphicsSceneHoverEvent).
   142     \value GraphicsSceneHoverLeave          The mouse cursor leaves a hover item in a graphics scene (QGraphicsSceneHoverEvent).
   142     \value GraphicsSceneHoverLeave          The mouse cursor leaves a hover item in a graphics scene (QGraphicsSceneHoverEvent).
   143     \value GraphicsSceneHoverMove           The mouse cursor moves inside a hover item in a graphics scene (QGraphicsSceneHoverEvent).
   143     \value GraphicsSceneHoverMove           The mouse cursor moves inside a hover item in a graphics scene (QGraphicsSceneHoverEvent).
   144     \value GraphicsSceneMouseDoubleClick    Mouse press again (double click) in a graphics scene (QGraphicsSceneMouseEvent).
   144     \value GraphicsSceneMouseDoubleClick    Mouse press again (double click) in a graphics scene (QGraphicsSceneMouseEvent).