initial import
[vuplus_webkit] / Source / WebCore / bindings / gobject / WebKitDOMCustom.cpp
1 /*
2  *  Copyright (C) 2011 Igalia S.L.
3  *
4  *  This library is free software; you can redistribute it and/or
5  *  modify it under the terms of the GNU Lesser General Public
6  *  License as published by the Free Software Foundation; either
7  *  version 2 of the License, or (at your option) any later version.
8  *
9  *  This library is distributed in the hope that it will be useful,
10  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
11  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  *  Lesser General Public License for more details.
13  *
14  *  You should have received a copy of the GNU Lesser General Public
15  *  License along with this library; if not, write to the Free Software
16  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
17  */
18
19 #include "config.h"
20 #include "WebKitDOMCustom.h"
21
22 #include "WebKitDOMHTMLInputElement.h"
23 #include "WebKitDOMHTMLInputElementPrivate.h"
24 #include "WebKitDOMHTMLTextAreaElement.h"
25 #include "WebKitDOMHTMLTextAreaElementPrivate.h"
26
27 using namespace WebKit;
28
29 gboolean webkit_dom_html_text_area_element_is_edited(WebKitDOMHTMLTextAreaElement* area)
30 {
31     g_return_val_if_fail(WEBKIT_DOM_IS_HTML_TEXT_AREA_ELEMENT(area), FALSE);
32
33     return core(area)->lastChangeWasUserEdit();
34 }
35
36 gboolean webkit_dom_html_input_element_is_edited(WebKitDOMHTMLInputElement* input)
37 {
38     g_return_val_if_fail(WEBKIT_DOM_IS_HTML_INPUT_ELEMENT(input), FALSE);
39
40     return core(input)->lastChangeWasUserEdit();
41 }
42