Changeset 40228 in webkit


Ignore:
Timestamp:
Jan 25, 2009 9:29:05 AM (15 years ago)
Author:
Simon Hausmann
Message:

2009-01-25 Urs Wolfer <uwolfer@kde.org>

Reviewed by Simon Hausmann.

Add QWebPage::SelectAll to WebAction enum to select all content.

https://bugs.webkit.org/show_bug.cgi?id=22946

Location:
trunk/WebKit/qt
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebKit/qt/Api/qwebpage.cpp

    r40226 r40228  
    179179    "InsertLineBreak", // InsertLineSeparator
    180180
     181    "SelectAll", // SelectAll
     182
    181183    0 // WebActionCount
    182184};
     
    751753        { QKeySequence::InsertLineSeparator, QWebPage::InsertLineSeparator },
    752754#endif
     755        { QKeySequence::SelectAll, QWebPage::SelectAll },
    753756        { QKeySequence::UnknownKey, QWebPage::NoWebAction }
    754757    };
     
    11731176    \value InsertParagraphSeparator Insert a new paragraph.
    11741177    \value InsertLineSeparator Insert a new line.
     1178    \value SelectAll Selects all content.
    11751179    \omitvalue WebActionCount
    11761180
  • trunk/WebKit/qt/Api/qwebpage.h

    r39863 r40228  
    149149        InsertLineSeparator,
    150150
     151        SelectAll,
     152
    151153        WebActionCount
    152154    };
  • trunk/WebKit/qt/ChangeLog

    r40226 r40228  
     12009-01-25  Urs Wolfer  <uwolfer@kde.org>
     2
     3        Reviewed by Simon Hausmann.
     4
     5        Add QWebPage::SelectAll to WebAction enum to select all content.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=22946
     8
     9        * Api/qwebpage.cpp:
     10        (QWebPagePrivate::editorActionForKeyEvent):
     11        * Api/qwebpage.h:
     12
    1132009-01-25  David Boddie  <dboddie@trolltech.com>
    214
Note: See TracChangeset for help on using the changeset viewer.