JSBase.h | JSBase.h | |||
---|---|---|---|---|
skipping to change at line 104 | skipping to change at line 104 | |||
/* Script Evaluation */ | /* Script Evaluation */ | |||
/*! | /*! | |||
@function JSEvaluateScript | @function JSEvaluateScript | |||
@abstract Evaluates a string of JavaScript. | @abstract Evaluates a string of JavaScript. | |||
@param ctx The execution context to use. | @param ctx The execution context to use. | |||
@param script A JSString containing the script to evaluate. | @param script A JSString containing the script to evaluate. | |||
@param thisObject The object to use as "this," or NULL to use the global ob ject as "this." | @param thisObject The object to use as "this," or NULL to use the global ob ject as "this." | |||
@param sourceURL A JSString containing a URL for the script's source file. This is only used when reporting exceptions. Pass NULL if you do not care t o include source file information in exceptions. | @param sourceURL A JSString containing a URL for the script's source file. This is only used when reporting exceptions. Pass NULL if you do not care t o include source file information in exceptions. | |||
@param startingLineNumber An integer value specifying the script's starting line number in the file located at sourceURL. This is only used when repor ting exceptions. | @param startingLineNumber An integer value specifying the script's starting line number in the file located at sourceURL. This is only used when repor ting exceptions. The value is one-based, so the first line is line 1 and in valid values are clamped to 1. | |||
@param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. | @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. | |||
@result The JSValue that results from evaluating script, or NULL if an exce ption is thrown. | @result The JSValue that results from evaluating script, or NULL if an exce ption is thrown. | |||
*/ | */ | |||
JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSV alueRef* exception); | JS_EXPORT JSValueRef JSEvaluateScript(JSContextRef ctx, JSStringRef script, JSObjectRef thisObject, JSStringRef sourceURL, int startingLineNumber, JSV alueRef* exception); | |||
/*! | /*! | |||
@function JSCheckScriptSyntax | @function JSCheckScriptSyntax | |||
@abstract Checks for syntax errors in a string of JavaScript. | @abstract Checks for syntax errors in a string of JavaScript. | |||
@param ctx The execution context to use. | @param ctx The execution context to use. | |||
@param script A JSString containing the script to check for syntax errors. | @param script A JSString containing the script to check for syntax errors. | |||
@param sourceURL A JSString containing a URL for the script's source file. This is only used when reporting exceptions. Pass NULL if you do not care t o include source file information in exceptions. | @param sourceURL A JSString containing a URL for the script's source file. This is only used when reporting exceptions. Pass NULL if you do not care t o include source file information in exceptions. | |||
@param startingLineNumber An integer value specifying the script's starting line number in the file located at sourceURL. This is only used when repor ting exceptions. | @param startingLineNumber An integer value specifying the script's starting line number in the file located at sourceURL. This is only used when repor ting exceptions. The value is one-based, so the first line is line 1 and in valid values are clamped to 1. | |||
@param exception A pointer to a JSValueRef in which to store a syntax error exception, if any. Pass NULL if you do not care to store a syntax error ex ception. | @param exception A pointer to a JSValueRef in which to store a syntax error exception, if any. Pass NULL if you do not care to store a syntax error ex ception. | |||
@result true if the script is syntactically correct, otherwise false. | @result true if the script is syntactically correct, otherwise false. | |||
*/ | */ | |||
JS_EXPORT bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JS StringRef sourceURL, int startingLineNumber, JSValueRef* exception); | JS_EXPORT bool JSCheckScriptSyntax(JSContextRef ctx, JSStringRef script, JS StringRef sourceURL, int startingLineNumber, JSValueRef* exception); | |||
/*! | /*! | |||
@function JSGarbageCollect | @function JSGarbageCollect | |||
@abstract Performs a JavaScript garbage collection. | @abstract Performs a JavaScript garbage collection. | |||
@param ctx The execution context to use. | @param ctx The execution context to use. | |||
@discussion JavaScript values that are on the machine stack, in a register, | @discussion JavaScript values that are on the machine stack, in a register, | |||
skipping to change at line 143 | skipping to change at line 143 | |||
to the context group is released. | to the context group is released. | |||
*/ | */ | |||
JS_EXPORT void JSGarbageCollect(JSContextRef ctx); | JS_EXPORT void JSGarbageCollect(JSContextRef ctx); | |||
#ifdef __cplusplus | #ifdef __cplusplus | |||
} | } | |||
#endif | #endif | |||
/* Enable the Objective-C API for platforms with a modern runtime. */ | /* Enable the Objective-C API for platforms with a modern runtime. */ | |||
#if !defined(JSC_OBJC_API_ENABLED) | #if !defined(JSC_OBJC_API_ENABLED) | |||
#define JSC_OBJC_API_ENABLED (defined(__clang__) && defined(__APPLE__) && d | #ifndef JSC_OBJC_API_AVAILABLE_MAC_OS_X_1080 | |||
efined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRED | #define JSC_OBJC_API_ENABLED (defined(__clang__) && defined(__APPLE__) && ( | |||
>= 1090 && !defined(__i386__)) | (defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRE | |||
D >= 1090 && !defined(__i386__)) || (defined(TARGET_OS_IPHONE) && TARGET_OS | ||||
_IPHONE))) | ||||
#else | ||||
#define JSC_OBJC_API_ENABLED (defined(__clang__) && defined(__APPLE__) && ( | ||||
(defined(__MAC_OS_X_VERSION_MIN_REQUIRED) && __MAC_OS_X_VERSION_MIN_REQUIRE | ||||
D >= 1080 && !defined(__i386__)) || (defined(TARGET_OS_IPHONE) && TARGET_OS | ||||
_IPHONE))) | ||||
#endif | ||||
#endif | #endif | |||
#endif /* JSBase_h */ | #endif /* JSBase_h */ | |||
End of changes. 3 change blocks. | ||||
5 lines changed or deleted | 13 lines changed or added | |||
JSContextRef.h | JSContextRef.h | |||
---|---|---|---|---|
skipping to change at line 51 | skipping to change at line 51 | |||
/*! | /*! | |||
@function | @function | |||
@abstract Creates a JavaScript context group. | @abstract Creates a JavaScript context group. | |||
@discussion A JSContextGroup associates JavaScript contexts with one anothe r. | @discussion A JSContextGroup associates JavaScript contexts with one anothe r. | |||
Contexts in the same group may share and exchange JavaScript objects. Shar ing and/or exchanging | Contexts in the same group may share and exchange JavaScript objects. Shar ing and/or exchanging | |||
JavaScript objects between contexts in different groups will produce undef ined behavior. | JavaScript objects between contexts in different groups will produce undef ined behavior. | |||
When objects from the same context group are used in multiple threads, exp licit | When objects from the same context group are used in multiple threads, exp licit | |||
synchronization is required. | synchronization is required. | |||
@result The created JSContextGroup. | @result The created JSContextGroup. | |||
*/ | */ | |||
JS_EXPORT JSContextGroupRef JSContextGroupCreate() AVAILABLE_IN_WEBKIT_VERS ION_4_0; | JS_EXPORT JSContextGroupRef JSContextGroupCreate() CF_AVAILABLE(10_6, 7_0); | |||
/*! | /*! | |||
@function | @function | |||
@abstract Retains a JavaScript context group. | @abstract Retains a JavaScript context group. | |||
@param group The JSContextGroup to retain. | @param group The JSContextGroup to retain. | |||
@result A JSContextGroup that is the same as group. | @result A JSContextGroup that is the same as group. | |||
*/ | */ | |||
JS_EXPORT JSContextGroupRef JSContextGroupRetain(JSContextGroupRef group) A VAILABLE_IN_WEBKIT_VERSION_4_0; | JS_EXPORT JSContextGroupRef JSContextGroupRetain(JSContextGroupRef group) C F_AVAILABLE(10_6, 7_0); | |||
/*! | /*! | |||
@function | @function | |||
@abstract Releases a JavaScript context group. | @abstract Releases a JavaScript context group. | |||
@param group The JSContextGroup to release. | @param group The JSContextGroup to release. | |||
*/ | */ | |||
JS_EXPORT void JSContextGroupRelease(JSContextGroupRef group) AVAILABLE_IN_ WEBKIT_VERSION_4_0; | JS_EXPORT void JSContextGroupRelease(JSContextGroupRef group) CF_AVAILABLE( 10_6, 7_0); | |||
/*! | /*! | |||
@function | @function | |||
@abstract Creates a global JavaScript execution context. | @abstract Creates a global JavaScript execution context. | |||
@discussion JSGlobalContextCreate allocates a global object and populates i t with all the | @discussion JSGlobalContextCreate allocates a global object and populates i t with all the | |||
built-in JavaScript objects, such as Object, Function, String, and Array. | built-in JavaScript objects, such as Object, Function, String, and Array. | |||
In WebKit version 4.0 and later, the context is created in a unique contex t group. | In WebKit version 4.0 and later, the context is created in a unique contex t group. | |||
Therefore, scripts may execute in it concurrently with scripts executing i n other contexts. | Therefore, scripts may execute in it concurrently with scripts executing i n other contexts. | |||
However, you may not use values created in the context in other contexts. | However, you may not use values created in the context in other contexts. | |||
@param globalObjectClass The class to use when creating the global object. Pass | @param globalObjectClass The class to use when creating the global object. Pass | |||
NULL to use the default object class. | NULL to use the default object class. | |||
@result A JSGlobalContext with a global object of class globalObjectClass. | @result A JSGlobalContext with a global object of class globalObjectClass. | |||
*/ | */ | |||
JS_EXPORT JSGlobalContextRef JSGlobalContextCreate(JSClassRef globalObjectC lass) AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER; | JS_EXPORT JSGlobalContextRef JSGlobalContextCreate(JSClassRef globalObjectC lass) CF_AVAILABLE(10_5, 7_0); | |||
/*! | /*! | |||
@function | @function | |||
@abstract Creates a global JavaScript execution context in the context grou p provided. | @abstract Creates a global JavaScript execution context in the context grou p provided. | |||
@discussion JSGlobalContextCreateInGroup allocates a global object and popu lates it with | @discussion JSGlobalContextCreateInGroup allocates a global object and popu lates it with | |||
all the built-in JavaScript objects, such as Object, Function, String, and Array. | all the built-in JavaScript objects, such as Object, Function, String, and Array. | |||
@param globalObjectClass The class to use when creating the global object. Pass | @param globalObjectClass The class to use when creating the global object. Pass | |||
NULL to use the default object class. | NULL to use the default object class. | |||
@param group The context group to use. The created global context retains t he group. | @param group The context group to use. The created global context retains t he group. | |||
Pass NULL to create a unique group for the context. | Pass NULL to create a unique group for the context. | |||
@result A JSGlobalContext with a global object of class globalObjectClass a nd a context | @result A JSGlobalContext with a global object of class globalObjectClass a nd a context | |||
group equal to group. | group equal to group. | |||
*/ | */ | |||
JS_EXPORT JSGlobalContextRef JSGlobalContextCreateInGroup(JSContextGroupRef group, JSClassRef globalObjectClass) AVAILABLE_IN_WEBKIT_VERSION_4_0; | JS_EXPORT JSGlobalContextRef JSGlobalContextCreateInGroup(JSContextGroupRef group, JSClassRef globalObjectClass) CF_AVAILABLE(10_6, 7_0); | |||
/*! | /*! | |||
@function | @function | |||
@abstract Retains a global JavaScript execution context. | @abstract Retains a global JavaScript execution context. | |||
@param ctx The JSGlobalContext to retain. | @param ctx The JSGlobalContext to retain. | |||
@result A JSGlobalContext that is the same as ctx. | @result A JSGlobalContext that is the same as ctx. | |||
*/ | */ | |||
JS_EXPORT JSGlobalContextRef JSGlobalContextRetain(JSGlobalContextRef ctx); | JS_EXPORT JSGlobalContextRef JSGlobalContextRetain(JSGlobalContextRef ctx); | |||
/*! | /*! | |||
skipping to change at line 126 | skipping to change at line 126 | |||
@result ctx's global object. | @result ctx's global object. | |||
*/ | */ | |||
JS_EXPORT JSObjectRef JSContextGetGlobalObject(JSContextRef ctx); | JS_EXPORT JSObjectRef JSContextGetGlobalObject(JSContextRef ctx); | |||
/*! | /*! | |||
@function | @function | |||
@abstract Gets the context group to which a JavaScript execution context be longs. | @abstract Gets the context group to which a JavaScript execution context be longs. | |||
@param ctx The JSContext whose group you want to get. | @param ctx The JSContext whose group you want to get. | |||
@result ctx's group. | @result ctx's group. | |||
*/ | */ | |||
JS_EXPORT JSContextGroupRef JSContextGetGroup(JSContextRef ctx) AVAILABLE_I | JS_EXPORT JSContextGroupRef JSContextGetGroup(JSContextRef ctx) CF_AVAILABL | |||
N_WEBKIT_VERSION_4_0; | E(10_6, 7_0); | |||
/*! | ||||
@function | ||||
@abstract Gets the global context of a JavaScript execution context. | ||||
@param ctx The JSContext whose global context you want to get. | ||||
@result ctx's global context. | ||||
*/ | ||||
JS_EXPORT JSGlobalContextRef JSContextGetGlobalContext(JSContextRef ctx) CF | ||||
_AVAILABLE(10_7, 7_0); | ||||
/*! | ||||
@function | ||||
@abstract Gets a copy of the name of a context. | ||||
@param ctx The JSGlobalContext whose name you want to get. | ||||
@result The name for ctx. | ||||
@discussion A JSGlobalContext's name is exposed for remote debugging to mak | ||||
e it | ||||
easier to identify the context you would like to attach to. | ||||
*/ | ||||
JS_EXPORT JSStringRef JSGlobalContextCopyName(JSGlobalContextRef ctx); | ||||
/*! | ||||
@function | ||||
@abstract Sets the remote debugging name for a context. | ||||
@param ctx The JSGlobalContext that you want to name. | ||||
@param name The remote debugging name to set on ctx. | ||||
*/ | ||||
JS_EXPORT void JSGlobalContextSetName(JSGlobalContextRef ctx, JSStringRef n | ||||
ame); | ||||
#ifdef __cplusplus | #ifdef __cplusplus | |||
} | } | |||
#endif | #endif | |||
#endif /* JSContextRef_h */ | #endif /* JSContextRef_h */ | |||
End of changes. 6 change blocks. | ||||
7 lines changed or deleted | 36 lines changed or added | |||
JSObjectRef.h | JSObjectRef.h | |||
---|---|---|---|---|
skipping to change at line 444 | skipping to change at line 444 | |||
@function | @function | |||
@abstract Creates a JavaScript Array object. | @abstract Creates a JavaScript Array object. | |||
@param ctx The execution context to use. | @param ctx The execution context to use. | |||
@param argumentCount An integer count of the number of arguments in argume nts. | @param argumentCount An integer count of the number of arguments in argume nts. | |||
@param arguments A JSValue array of data to populate the Array with. Pass NULL if argumentCount is 0. | @param arguments A JSValue array of data to populate the Array with. Pass NULL if argumentCount is 0. | |||
@param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. | @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. | |||
@result A JSObject that is an Array. | @result A JSObject that is an Array. | |||
@discussion The behavior of this function does not exactly match the behav ior of the built-in Array constructor. Specifically, if one argument | @discussion The behavior of this function does not exactly match the behav ior of the built-in Array constructor. Specifically, if one argument | |||
is supplied, this function returns an array with one element. | is supplied, this function returns an array with one element. | |||
*/ | */ | |||
JS_EXPORT JSObjectRef JSObjectMakeArray(JSContextRef ctx, size_t argumentCo unt, const JSValueRef arguments[], JSValueRef* exception) AVAILABLE_IN_WEBK IT_VERSION_4_0; | JS_EXPORT JSObjectRef JSObjectMakeArray(JSContextRef ctx, size_t argumentCo unt, const JSValueRef arguments[], JSValueRef* exception) CF_AVAILABLE(10_6 , 7_0); | |||
/*! | /*! | |||
@function | @function | |||
@abstract Creates a JavaScript Date object, as if by invoking the built-in Date constructor. | @abstract Creates a JavaScript Date object, as if by invoking the built-in Date constructor. | |||
@param ctx The execution context to use. | @param ctx The execution context to use. | |||
@param argumentCount An integer count of the number of arguments in argume nts. | @param argumentCount An integer count of the number of arguments in argume nts. | |||
@param arguments A JSValue array of arguments to pass to the Date Construc tor. Pass NULL if argumentCount is 0. | @param arguments A JSValue array of arguments to pass to the Date Construc tor. Pass NULL if argumentCount is 0. | |||
@param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. | @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. | |||
@result A JSObject that is a Date. | @result A JSObject that is a Date. | |||
*/ | */ | |||
JS_EXPORT JSObjectRef JSObjectMakeDate(JSContextRef ctx, size_t argumentCou nt, const JSValueRef arguments[], JSValueRef* exception) AVAILABLE_IN_WEBKI T_VERSION_4_0; | JS_EXPORT JSObjectRef JSObjectMakeDate(JSContextRef ctx, size_t argumentCou nt, const JSValueRef arguments[], JSValueRef* exception) CF_AVAILABLE(10_6, 7_0); | |||
/*! | /*! | |||
@function | @function | |||
@abstract Creates a JavaScript Error object, as if by invoking the built-i n Error constructor. | @abstract Creates a JavaScript Error object, as if by invoking the built-i n Error constructor. | |||
@param ctx The execution context to use. | @param ctx The execution context to use. | |||
@param argumentCount An integer count of the number of arguments in argume nts. | @param argumentCount An integer count of the number of arguments in argume nts. | |||
@param arguments A JSValue array of arguments to pass to the Error Constru ctor. Pass NULL if argumentCount is 0. | @param arguments A JSValue array of arguments to pass to the Error Constru ctor. Pass NULL if argumentCount is 0. | |||
@param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. | @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. | |||
@result A JSObject that is a Error. | @result A JSObject that is a Error. | |||
*/ | */ | |||
JS_EXPORT JSObjectRef JSObjectMakeError(JSContextRef ctx, size_t argumentCo unt, const JSValueRef arguments[], JSValueRef* exception) AVAILABLE_IN_WEBK IT_VERSION_4_0; | JS_EXPORT JSObjectRef JSObjectMakeError(JSContextRef ctx, size_t argumentCo unt, const JSValueRef arguments[], JSValueRef* exception) CF_AVAILABLE(10_6 , 7_0); | |||
/*! | /*! | |||
@function | @function | |||
@abstract Creates a JavaScript RegExp object, as if by invoking the built- in RegExp constructor. | @abstract Creates a JavaScript RegExp object, as if by invoking the built- in RegExp constructor. | |||
@param ctx The execution context to use. | @param ctx The execution context to use. | |||
@param argumentCount An integer count of the number of arguments in argume nts. | @param argumentCount An integer count of the number of arguments in argume nts. | |||
@param arguments A JSValue array of arguments to pass to the RegExp Constr uctor. Pass NULL if argumentCount is 0. | @param arguments A JSValue array of arguments to pass to the RegExp Constr uctor. Pass NULL if argumentCount is 0. | |||
@param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. | @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. | |||
@result A JSObject that is a RegExp. | @result A JSObject that is a RegExp. | |||
*/ | */ | |||
JS_EXPORT JSObjectRef JSObjectMakeRegExp(JSContextRef ctx, size_t argumentC ount, const JSValueRef arguments[], JSValueRef* exception) AVAILABLE_IN_WEB KIT_VERSION_4_0; | JS_EXPORT JSObjectRef JSObjectMakeRegExp(JSContextRef ctx, size_t argumentC ount, const JSValueRef arguments[], JSValueRef* exception) CF_AVAILABLE(10_ 6, 7_0); | |||
/*! | /*! | |||
@function | @function | |||
@abstract Creates a function with a given script as its body. | @abstract Creates a function with a given script as its body. | |||
@param ctx The execution context to use. | @param ctx The execution context to use. | |||
@param name A JSString containing the function's name. This will be used wh en converting the function to string. Pass NULL to create an anonymous func tion. | @param name A JSString containing the function's name. This will be used wh en converting the function to string. Pass NULL to create an anonymous func tion. | |||
@param parameterCount An integer count of the number of parameter names in parameterNames. | @param parameterCount An integer count of the number of parameter names in parameterNames. | |||
@param parameterNames A JSString array containing the names of the function 's parameters. Pass NULL if parameterCount is 0. | @param parameterNames A JSString array containing the names of the function 's parameters. Pass NULL if parameterCount is 0. | |||
@param body A JSString containing the script to use as the function's body. | @param body A JSString containing the script to use as the function's body. | |||
@param sourceURL A JSString containing a URL for the script's source file. This is only used when reporting exceptions. Pass NULL if you do not care t o include source file information in exceptions. | @param sourceURL A JSString containing a URL for the script's source file. This is only used when reporting exceptions. Pass NULL if you do not care t o include source file information in exceptions. | |||
@param startingLineNumber An integer value specifying the script's starting line number in the file located at sourceURL. This is only used when repor ting exceptions. | @param startingLineNumber An integer value specifying the script's starting line number in the file located at sourceURL. This is only used when repor ting exceptions. The value is one-based, so the first line is line 1 and in valid values are clamped to 1. | |||
@param exception A pointer to a JSValueRef in which to store a syntax error exception, if any. Pass NULL if you do not care to store a syntax error ex ception. | @param exception A pointer to a JSValueRef in which to store a syntax error exception, if any. Pass NULL if you do not care to store a syntax error ex ception. | |||
@result A JSObject that is a function, or NULL if either body or parameterN ames contains a syntax error. The object's prototype will be the default fu nction prototype. | @result A JSObject that is a function, or NULL if either body or parameterN ames contains a syntax error. The object's prototype will be the default fu nction prototype. | |||
@discussion Use this method when you want to execute a script repeatedly, t o avoid the cost of re-parsing the script before each execution. | @discussion Use this method when you want to execute a script repeatedly, t o avoid the cost of re-parsing the script before each execution. | |||
*/ | */ | |||
JS_EXPORT JSObjectRef JSObjectMakeFunction(JSContextRef ctx, JSStringRef na me, unsigned parameterCount, const JSStringRef parameterNames[], JSStringRe f body, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exceptio n); | JS_EXPORT JSObjectRef JSObjectMakeFunction(JSContextRef ctx, JSStringRef na me, unsigned parameterCount, const JSStringRef parameterNames[], JSStringRe f body, JSStringRef sourceURL, int startingLineNumber, JSValueRef* exceptio n); | |||
/*! | /*! | |||
@function | @function | |||
@abstract Gets an object's prototype. | @abstract Gets an object's prototype. | |||
@param ctx The execution context to use. | @param ctx The execution context to use. | |||
End of changes. 5 change blocks. | ||||
5 lines changed or deleted | 5 lines changed or added | |||
JSValueRef.h | JSValueRef.h | |||
---|---|---|---|---|
skipping to change at line 221 | skipping to change at line 221 | |||
/* Converting to and from JSON formatted strings */ | /* Converting to and from JSON formatted strings */ | |||
/*! | /*! | |||
@function | @function | |||
@abstract Creates a JavaScript value from a JSON formatted string. | @abstract Creates a JavaScript value from a JSON formatted string. | |||
@param ctx The execution context to use. | @param ctx The execution context to use. | |||
@param string The JSString containing the JSON string to be parsed. | @param string The JSString containing the JSON string to be parsed. | |||
@result A JSValue containing the parsed value, or NULL if the inpu t is invalid. | @result A JSValue containing the parsed value, or NULL if the inpu t is invalid. | |||
*/ | */ | |||
JS_EXPORT JSValueRef JSValueMakeFromJSONString(JSContextRef ctx, JSStringRe f string) AVAILABLE_AFTER_WEBKIT_VERSION_4_0; | JS_EXPORT JSValueRef JSValueMakeFromJSONString(JSContextRef ctx, JSStringRe f string) CF_AVAILABLE(10_7, 7_0); | |||
/*! | /*! | |||
@function | @function | |||
@abstract Creates a JavaScript string containing the JSON serialized representation of a JS value. | @abstract Creates a JavaScript string containing the JSON serialized representation of a JS value. | |||
@param ctx The execution context to use. | @param ctx The execution context to use. | |||
@param value The value to serialize. | @param value The value to serialize. | |||
@param indent The number of spaces to indent when nesting. If 0, the re sulting JSON will not contains newlines. The size of the indent is clamped to 10 spaces. | @param indent The number of spaces to indent when nesting. If 0, the re sulting JSON will not contains newlines. The size of the indent is clamped to 10 spaces. | |||
@param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. | @param exception A pointer to a JSValueRef in which to store an exception, if any. Pass NULL if you do not care to store an exception. | |||
@result A JSString with the result of serialization, or NULL if an exception is thrown. | @result A JSString with the result of serialization, or NULL if an exception is thrown. | |||
*/ | */ | |||
JS_EXPORT JSStringRef JSValueCreateJSONString(JSContextRef ctx, JSValueRef value, unsigned indent, JSValueRef* exception) AVAILABLE_AFTER_WEBKIT_VERSI ON_4_0; | JS_EXPORT JSStringRef JSValueCreateJSONString(JSContextRef ctx, JSValueRef value, unsigned indent, JSValueRef* exception) CF_AVAILABLE(10_7, 7_0); | |||
/* Converting to primitive values */ | /* Converting to primitive values */ | |||
/*! | /*! | |||
@function | @function | |||
@abstract Converts a JavaScript value to boolean and returns the resu lting boolean. | @abstract Converts a JavaScript value to boolean and returns the resu lting boolean. | |||
@param ctx The execution context to use. | @param ctx The execution context to use. | |||
@param value The JSValue to convert. | @param value The JSValue to convert. | |||
@result The boolean result of conversion. | @result The boolean result of conversion. | |||
*/ | */ | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
WebKitAvailability.h | WebKitAvailability.h | |||
---|---|---|---|---|
/* | /* | |||
* Copyright (C) 2008, 2009, 2010 Apple Inc. All Rights Reserved. | * Copyright (C) 2008, 2009, 2010, 2014 Apple Inc. All Rights Reserved. | |||
* | * | |||
* Redistribution and use in source and binary forms, with or without | * Redistribution and use in source and binary forms, with or without | |||
* modification, are permitted provided that the following conditions | * modification, are permitted provided that the following conditions | |||
* are met: | * are met: | |||
* 1. Redistributions of source code must retain the above copyright | * 1. Redistributions of source code must retain the above copyright | |||
* notice, this list of conditions and the following disclaimer. | * notice, this list of conditions and the following disclaimer. | |||
* 2. Redistributions in binary form must reproduce the above copyright | * 2. Redistributions in binary form must reproduce the above copyright | |||
* notice, this list of conditions and the following disclaimer in the | * notice, this list of conditions and the following disclaimer in the | |||
* documentation and/or other materials provided with the distribution. | * documentation and/or other materials provided with the distribution. | |||
* | * | |||
skipping to change at line 29 | skipping to change at line 29 | |||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | |||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | |||
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | |||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | |||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | |||
*/ | */ | |||
#ifndef __WebKitAvailability__ | #ifndef __WebKitAvailability__ | |||
#define __WebKitAvailability__ | #define __WebKitAvailability__ | |||
/* The structure of this header is based on AvailabilityMacros.h. The majo | ||||
r difference is that the availability | ||||
macros are defined in terms of WebKit version numbers rather than Mac OS | ||||
X system version numbers, as WebKit | ||||
releases span multiple versions of Mac OS X. | ||||
*/ | ||||
#define WEBKIT_VERSION_1_0 0x0100 | ||||
#define WEBKIT_VERSION_1_1 0x0110 | ||||
#define WEBKIT_VERSION_1_2 0x0120 | ||||
#define WEBKIT_VERSION_1_3 0x0130 | ||||
#define WEBKIT_VERSION_2_0 0x0200 | ||||
#define WEBKIT_VERSION_3_0 0x0300 | ||||
#define WEBKIT_VERSION_3_1 0x0310 | ||||
#define WEBKIT_VERSION_4_0 0x0400 | ||||
#define WEBKIT_VERSION_LATEST 0x9999 | ||||
#ifdef __APPLE__ | #ifdef __APPLE__ | |||
#include <AvailabilityMacros.h> | #include <AvailabilityMacros.h> | |||
#include <CoreFoundation/CoreFoundation.h> | ||||
#else | #else | |||
/* | #define CF_AVAILABLE(_mac, _ios) | |||
* For non-Mac platforms, require the newest version. | ||||
*/ | ||||
#define WEBKIT_VERSION_MIN_REQUIRED WEBKIT_VERSION_LATEST | ||||
/* | ||||
* only certain compilers support __attribute__((deprecated)) | ||||
*/ | ||||
#if defined(__GNUC__) && ((__GNUC__ >= 4) || ((__GNUC__ == 3) && (__GNUC_MI | ||||
NOR__ >= 1))) | ||||
#define DEPRECATED_ATTRIBUTE __attribute__((deprecated)) | ||||
#else | ||||
#define DEPRECATED_ATTRIBUTE | ||||
#endif | ||||
#endif | ||||
/* The versions of GCC that shipped with Xcode prior to 3.0 (GCC build numb | ||||
er < 5400) did not support attributes on methods. | ||||
If we are building with one of these versions, we need to omit the attri | ||||
bute. We achieve this by wrapping the annotation | ||||
in WEBKIT_OBJC_METHOD_ANNOTATION, which will remove the annotation when | ||||
an old version of GCC is in use and will otherwise | ||||
expand to the annotation. The same is needed for protocol methods. | ||||
*/ | ||||
#if defined(__APPLE_CC__) && __APPLE_CC__ < 5400 | ||||
#define WEBKIT_OBJC_METHOD_ANNOTATION(ANNOTATION) | ||||
#else | ||||
#define WEBKIT_OBJC_METHOD_ANNOTATION(ANNOTATION) ANNOTATION | ||||
#endif | ||||
/* If minimum WebKit version is not specified, assume the version that ship | ||||
ped with the target Mac OS X version */ | ||||
#ifndef WEBKIT_VERSION_MIN_REQUIRED | ||||
#if !defined(MAC_OS_X_VERSION_10_2) || MAC_OS_X_VERSION_MIN_REQUIRED < | ||||
MAC_OS_X_VERSION_10_2 | ||||
#error WebKit was not available prior to Mac OS X 10.2 | ||||
#elif !defined(MAC_OS_X_VERSION_10_3) || MAC_OS_X_VERSION_MIN_REQUIRED | ||||
< MAC_OS_X_VERSION_10_3 | ||||
/* WebKit 1.0 is the only version available on Mac OS X 10.2. */ | ||||
#define WEBKIT_VERSION_MIN_REQUIRED WEBKIT_VERSION_1_0 | ||||
#elif !defined(MAC_OS_X_VERSION_10_4) || MAC_OS_X_VERSION_MIN_REQUIRED | ||||
< MAC_OS_X_VERSION_10_4 | ||||
/* WebKit 1.1 is the version that shipped on Mac OS X 10.3. */ | ||||
#define WEBKIT_VERSION_MIN_REQUIRED WEBKIT_VERSION_1_1 | ||||
#elif !defined(MAC_OS_X_VERSION_10_5) || MAC_OS_X_VERSION_MIN_REQUIRED | ||||
< MAC_OS_X_VERSION_10_5 | ||||
/* WebKit 2.0 is the version that shipped on Mac OS X 10.4. */ | ||||
#define WEBKIT_VERSION_MIN_REQUIRED WEBKIT_VERSION_2_0 | ||||
#elif !defined(MAC_OS_X_VERSION_10_6) || MAC_OS_X_VERSION_MIN_REQUIRED | ||||
< MAC_OS_X_VERSION_10_6 | ||||
/* WebKit 3.0 is the version that shipped on Mac OS X 10.5. */ | ||||
#define WEBKIT_VERSION_MIN_REQUIRED WEBKIT_VERSION_3_0 | ||||
#elif !defined(MAC_OS_X_VERSION_10_7) || MAC_OS_X_VERSION_MIN_REQUIRED | ||||
< MAC_OS_X_VERSION_10_7 | ||||
/* WebKit 4.0 is the version that shipped on Mac OS X 10.6. */ | ||||
#define WEBKIT_VERSION_MIN_REQUIRED WEBKIT_VERSION_4_0 | ||||
#else | ||||
#define WEBKIT_VERSION_MIN_REQUIRED WEBKIT_VERSION_LATEST | ||||
#endif | ||||
#endif | ||||
/* If maximum WebKit version is not specified, assume largerof(latest, mini | ||||
mum) */ | ||||
#ifndef WEBKIT_VERSION_MAX_ALLOWED | ||||
#if WEBKIT_VERSION_MIN_REQUIRED > WEBKIT_VERSION_LATEST | ||||
#define WEBKIT_VERSION_MAX_ALLOWED WEBKIT_VERSION_MIN_REQUIRED | ||||
#else | ||||
#define WEBKIT_VERSION_MAX_ALLOWED WEBKIT_VERSION_LATEST | ||||
#endif | ||||
#endif | ||||
/* Sanity check the configured values */ | ||||
#if WEBKIT_VERSION_MAX_ALLOWED < WEBKIT_VERSION_MIN_REQUIRED | ||||
#error WEBKIT_VERSION_MAX_ALLOWED must be >= WEBKIT_VERSION_MIN_REQUIRE | ||||
D | ||||
#endif | ||||
#if WEBKIT_VERSION_MIN_REQUIRED < WEBKIT_VERSION_1_0 | ||||
#error WEBKIT_VERSION_MIN_REQUIRED must be >= WEBKIT_VERSION_1_0 | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER | ||||
* | ||||
* Used on functions introduced in WebKit 1.0 | ||||
*/ | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED | ||||
* | ||||
* Used on functions introduced in WebKit 1.0, | ||||
* and deprecated in WebKit 1.0 | ||||
*/ | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED DEPRECATED | ||||
_ATTRIBUTE | ||||
/* | ||||
* DEPRECATED_IN_WEBKIT_VERSION_1_0_AND_LATER | ||||
* | ||||
* Used on types deprecated in WebKit 1.0 | ||||
*/ | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_1_0_AND_LATER DEPRECATED_ATTRIBUTE | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER | ||||
* | ||||
* Used on declarations introduced in WebKit 1.1 | ||||
*/ | ||||
#if WEBKIT_VERSION_MAX_ALLOWED < WEBKIT_VERSION_1_1 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER UNAVAILABLE_ATTRIBUT | ||||
E | ||||
#elif WEBKIT_VERSION_MIN_REQUIRED < WEBKIT_VERSION_1_1 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER WEAK_IMPORT_ATTRIBUT | ||||
E | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED | ||||
* | ||||
* Used on declarations introduced in WebKit 1.1, | ||||
* and deprecated in WebKit 1.1 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_1_1 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED DEPREC | ||||
ATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED AVAILA | ||||
BLE_WEBKIT_VERSION_1_1_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
1_1 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.0, | ||||
* but later deprecated in WebKit 1.1 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_1_1 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_1_1 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_1_1 AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* DEPRECATED_IN_WEBKIT_VERSION_1_1_AND_LATER | ||||
* | ||||
* Used on types deprecated in WebKit 1.1 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_1_1 | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_1_1_AND_LATER DEPRECATED_ATTRIB | ||||
UTE | ||||
#else | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_1_1_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER | ||||
* | ||||
* Used on declarations introduced in WebKit 1.2 | ||||
*/ | ||||
#if WEBKIT_VERSION_MAX_ALLOWED < WEBKIT_VERSION_1_2 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER UNAVAILABLE_ATTRIBUT | ||||
E | ||||
#elif WEBKIT_VERSION_MIN_REQUIRED < WEBKIT_VERSION_1_2 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER WEAK_IMPORT_ATTRIBUT | ||||
E | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED | ||||
* | ||||
* Used on declarations introduced in WebKit 1.2, | ||||
* and deprecated in WebKit 1.2 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_1_2 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED DEPREC | ||||
ATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED AVAILA | ||||
BLE_WEBKIT_VERSION_1_2_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
1_2 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.0, | ||||
* but later deprecated in WebKit 1.2 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_1_2 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_1_2 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_1_2 AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
1_2 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.1, | ||||
* but later deprecated in WebKit 1.2 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_1_2 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_1_2 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_1_2 AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER | ||||
#endif | #endif | |||
/* | ||||
* DEPRECATED_IN_WEBKIT_VERSION_1_2_AND_LATER | ||||
* | ||||
* Used on types deprecated in WebKit 1.2 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_1_2 | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_1_2_AND_LATER DEPRECATED_ATTRIB | ||||
UTE | ||||
#else | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_1_2_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER | ||||
* | ||||
* Used on declarations introduced in WebKit 1.3 | ||||
*/ | ||||
#if WEBKIT_VERSION_MAX_ALLOWED < WEBKIT_VERSION_1_3 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER UNAVAILABLE_ATTRIBUT | ||||
E | ||||
#elif WEBKIT_VERSION_MIN_REQUIRED < WEBKIT_VERSION_1_3 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER WEAK_IMPORT_ATTRIBUT | ||||
E | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED | ||||
* | ||||
* Used on declarations introduced in WebKit 1.3, | ||||
* and deprecated in WebKit 1.3 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_1_3 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED DEPREC | ||||
ATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED AVAILA | ||||
BLE_WEBKIT_VERSION_1_3_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
1_3 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.0, | ||||
* but later deprecated in WebKit 1.3 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_1_3 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_1_3 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_1_3 AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
1_3 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.1, | ||||
* but later deprecated in WebKit 1.3 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_1_3 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_1_3 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_1_3 AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
1_3 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.2, | ||||
* but later deprecated in WebKit 1.3 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_1_3 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_1_3 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_1_3 AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER | ||||
#endif | ||||
/* | ||||
* DEPRECATED_IN_WEBKIT_VERSION_1_3_AND_LATER | ||||
* | ||||
* Used on types deprecated in WebKit 1.3 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_1_3 | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_1_3_AND_LATER DEPRECATED_ATTRIB | ||||
UTE | ||||
#else | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_1_3_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER | ||||
* | ||||
* Used on declarations introduced in WebKit 2.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MAX_ALLOWED < WEBKIT_VERSION_2_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER UNAVAILABLE_ATTRIBUT | ||||
E | ||||
#elif WEBKIT_VERSION_MIN_REQUIRED < WEBKIT_VERSION_2_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER WEAK_IMPORT_ATTRIBUT | ||||
E | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED | ||||
* | ||||
* Used on declarations introduced in WebKit 2.0, | ||||
* and deprecated in WebKit 2.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_2_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED DEPREC | ||||
ATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED AVAILA | ||||
BLE_WEBKIT_VERSION_2_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
2_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.0, | ||||
* but later deprecated in WebKit 2.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_2_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_2_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_2_0 AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
2_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.1, | ||||
* but later deprecated in WebKit 2.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_2_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_2_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_2_0 AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
2_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.2, | ||||
* but later deprecated in WebKit 2.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_2_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_2_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_2_0 AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
2_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.3, | ||||
* but later deprecated in WebKit 2.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_2_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_2_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_2_0 AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER | ||||
#endif | ||||
/* | ||||
* DEPRECATED_IN_WEBKIT_VERSION_2_0_AND_LATER | ||||
* | ||||
* Used on types deprecated in WebKit 2.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_2_0 | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_2_0_AND_LATER DEPRECATED_ATTRIB | ||||
UTE | ||||
#else | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_2_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER | ||||
* | ||||
* Used on declarations introduced in WebKit 3.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MAX_ALLOWED < WEBKIT_VERSION_3_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER UNAVAILABLE_ATTRIBUT | ||||
E | ||||
#elif WEBKIT_VERSION_MIN_REQUIRED < WEBKIT_VERSION_3_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER WEAK_IMPORT_ATTRIBUT | ||||
E | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER_BUT_DEPRECATED | ||||
* | ||||
* Used on declarations introduced in WebKit 3.0, | ||||
* and deprecated in WebKit 3.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER_BUT_DEPRECATED DEPREC | ||||
ATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER_BUT_DEPRECATED AVAILA | ||||
BLE_WEBKIT_VERSION_3_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
3_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.0, | ||||
* but later deprecated in WebKit 3.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_0 AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
3_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.1, | ||||
* but later deprecated in WebKit 3.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_0 AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
3_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.2, | ||||
* but later deprecated in WebKit 3.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_0 AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
3_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.3, | ||||
* but later deprecated in WebKit 3.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_0 AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
3_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 2.0, | ||||
* but later deprecated in WebKit 3.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_0 AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* DEPRECATED_IN_WEBKIT_VERSION_3_0_AND_LATER | ||||
* | ||||
* Used on types deprecated in WebKit 3.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_0 | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_3_0_AND_LATER DEPRECATED_ATTRIB | ||||
UTE | ||||
#else | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_3_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER | ||||
* | ||||
* Used on declarations introduced in WebKit 3.1 | ||||
*/ | ||||
#if WEBKIT_VERSION_MAX_ALLOWED < WEBKIT_VERSION_3_1 | ||||
#define AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER UNAVAILABLE_ATTRIBUT | ||||
E | ||||
#elif WEBKIT_VERSION_MIN_REQUIRED < WEBKIT_VERSION_3_1 | ||||
#define AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER WEAK_IMPORT_ATTRIBUT | ||||
E | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER_BUT_DEPRECATED | ||||
* | ||||
* Used on declarations introduced in WebKit 3.1, | ||||
* and deprecated in WebKit 3.1 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_1 | ||||
#define AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER_BUT_DEPRECATED DEPREC | ||||
ATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER_BUT_DEPRECATED AVAILA | ||||
BLE_WEBKIT_VERSION_3_1_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
3_1 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.0, | ||||
* but later deprecated in WebKit 3.1 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_1 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_1 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_1 AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
3_1 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.1, | ||||
* but later deprecated in WebKit 3.1 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_1 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_1 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_1 AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
3_1 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.2, | ||||
* but later deprecated in WebKit 3.1 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_1 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_1 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_1 AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
3_1 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.3, | ||||
* but later deprecated in WebKit 3.1 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_1 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_1 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_1 AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
3_1 | ||||
* | ||||
* Used on declarations introduced in WebKit 2.0, | ||||
* but later deprecated in WebKit 3.1 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_1 | ||||
#define AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_1 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_1 AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
3_1 | ||||
* | ||||
* Used on declarations introduced in WebKit 3.0, | ||||
* but later deprecated in WebKit 3.1 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_1 | ||||
#define AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_1 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_3_1 AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* DEPRECATED_IN_WEBKIT_VERSION_3_1_AND_LATER | ||||
* | ||||
* Used on types deprecated in WebKit 3.1 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_3_1 | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_3_1_AND_LATER DEPRECATED_ATTRIB | ||||
UTE | ||||
#else | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_3_1_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_IN_WEBKIT_VERSION_4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MAX_ALLOWED < WEBKIT_VERSION_4_0 | ||||
#define AVAILABLE_IN_WEBKIT_VERSION_4_0 UNAVAILABLE_ATTRIBUTE | ||||
#elif WEBKIT_VERSION_MIN_REQUIRED < WEBKIT_VERSION_4_0 | ||||
#define AVAILABLE_IN_WEBKIT_VERSION_4_0 WEAK_IMPORT_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_IN_WEBKIT_VERSION_4_0 | ||||
#endif | ||||
/* | ||||
* AVAILABLE_IN_WEBKIT_VERSION_4_0_BUT_DEPRECATED | ||||
* | ||||
* Used on declarations introduced in WebKit 4.0, | ||||
* and deprecated in WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_4_0 | ||||
#define AVAILABLE_IN_WEBKIT_VERSION_4_0_BUT_DEPRECATED DEPRECATED_AT | ||||
TRIBUTE | ||||
#else | ||||
#define AVAILABLE_IN_WEBKIT_VERSION_4_0_BUT_DEPRECATED AVAILABLE_IN_ | ||||
WEBKIT_VERSION_4_0 | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.0, | ||||
* but later deprecated in WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_4_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.1, | ||||
* but later deprecated in WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_4_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.2, | ||||
* but later deprecated in WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_4_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.3, | ||||
* but later deprecated in WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_4_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 2.0, | ||||
* but later deprecated in WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_4_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 3.0, | ||||
* but later deprecated in WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_4_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT_VERSION_ | ||||
4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 3.1, | ||||
* but later deprecated in WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_4_0 | ||||
#define AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER_BUT_DEPRECATED_IN_WEBKIT | ||||
_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER | ||||
#endif | ||||
/* | ||||
* DEPRECATED_IN_WEBKIT_VERSION_4_0 | ||||
* | ||||
* Used on types deprecated in WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_4_0 | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define DEPRECATED_IN_WEBKIT_VERSION_4_0 | ||||
#endif | ||||
/* | ||||
* AVAILABLE_AFTER_WEBKIT_VERSION_4_0 | ||||
* | ||||
* Used on declarations introduced after WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MAX_ALLOWED < WEBKIT_VERSION_LATEST | ||||
#define AVAILABLE_AFTER_WEBKIT_VERSION_4_0 UNAVAILABLE_ATTRIBUTE | ||||
#elif WEBKIT_VERSION_MIN_REQUIRED < WEBKIT_VERSION_LATEST | ||||
#define AVAILABLE_AFTER_WEBKIT_VERSION_4_0 WEAK_IMPORT_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_AFTER_WEBKIT_VERSION_4_0 | ||||
#endif | ||||
/* | ||||
* AVAILABLE_AFTER_WEBKIT_VERSION_4_0_BUT_DEPRECATED | ||||
* | ||||
* Used on declarations introduced after WebKit 4.0, | ||||
* and deprecated after WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_LATEST | ||||
#define AVAILABLE_AFTER_WEBKIT_VERSION_4_0_BUT_DEPRECATED DEPRECATED | ||||
_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_AFTER_WEBKIT_VERSION_4_0_BUT_DEPRECATED AVAILABLE_ | ||||
AFTER_WEBKIT_VERSION_4_0 | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_AFTER_WEBKIT_VERSI | ||||
ON_4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.0, | ||||
* but later deprecated after WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_LATEST | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_1_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_AFTER_WEBKIT_VERSI | ||||
ON_4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.1, | ||||
* but later deprecated after WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_LATEST | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_1_1_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_AFTER_WEBKIT_VERSI | ||||
ON_4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.2, | ||||
* but later deprecated after WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_LATEST | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_1_2_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_AFTER_WEBKIT_VERSI | ||||
ON_4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.3, | ||||
* but later deprecated after WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_LATEST | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED_AFTER_WEBKIT_VERSI | ||||
ON_4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 2.0, | ||||
* but later deprecated after WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_LATEST | ||||
#define AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_2_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER_BUT_DEPRECATED_AFTER_WEBKIT_VERSI | ||||
ON_4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 3.0, | ||||
* but later deprecated after WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_LATEST | ||||
#define AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_3_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER_BUT_DEPRECATED_AFTER_WEBKIT_VERSI | ||||
ON_4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 3.1, | ||||
* but later deprecated after WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_LATEST | ||||
#define AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_3_1_AND_LATER | ||||
#endif | ||||
/* | ||||
* AVAILABLE_WEBKIT_VERSION_4_0_AND_LATER_BUT_DEPRECATED_AFTER_WEBKIT_VERSI | ||||
ON_4_0 | ||||
* | ||||
* Used on declarations introduced in WebKit 4.0 | ||||
* but later deprecated after WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_LATEST | ||||
#define AVAILABLE_WEBKIT_VERSION_4_0_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define AVAILABLE_WEBKIT_VERSION_4_0_AND_LATER_BUT_DEPRECATED_AFTER_WEB | ||||
KIT_VERSION_4_0 AVAILABLE_WEBKIT_VERSION_4_0_AND_LATER | ||||
#endif | ||||
/* | ||||
* DEPRECATED_AFTER_WEBKIT_VERSION_4_0 | ||||
* | ||||
* Used on types deprecated after WebKit 4.0 | ||||
*/ | ||||
#if WEBKIT_VERSION_MIN_REQUIRED >= WEBKIT_VERSION_LATEST | ||||
#define DEPRECATED_AFTER_WEBKIT_VERSION_4_0 DEPRECATED_ATTRIBUTE | ||||
#else | ||||
#define DEPRECATED_AFTER_WEBKIT_VERSION_4_0 | ||||
#endif | ||||
/* | ||||
* AVAILABLE_AFTER_WEBKIT_VERSION_5_1 | ||||
* | ||||
* Used on functions introduced after WebKit 5.1 | ||||
*/ | ||||
#define AVAILABLE_AFTER_WEBKIT_VERSION_5_1 | ||||
/* AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_AFTER_WEBKIT_VERSI | ||||
ON_5_1 | ||||
* | ||||
* Used on declarations introduced in WebKit 1.3, | ||||
* but later deprecated after WebKit 5.1 | ||||
*/ | ||||
#define AVAILABLE_WEBKIT_VERSION_1_3_AND_LATER_BUT_DEPRECATED_AFTER_WEBKIT_ | ||||
VERSION_5_1 | ||||
#endif /* __WebKitAvailability__ */ | #endif /* __WebKitAvailability__ */ | |||
End of changes. 5 change blocks. | ||||
996 lines changed or deleted | 3 lines changed or added | |||
WebKitDOMAttr.h | WebKitDOMAttr.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMAttr_h | #ifndef WebKitDOMAttr_h | |||
#define WebKitDOMAttr_h | #define WebKitDOMAttr_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMNode.h> | #include <webkitdom/WebKitDOMNode.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMNodeClass parent_class; | WebKitDOMNodeClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_attr_get_type (void); | webkit_dom_attr_get_type (void); | |||
/** | /** | |||
* webkit_dom_attr_get_name: | * webkit_dom_attr_get_name: | |||
* @self: A #WebKitDOMAttr | * @self: A #WebKitDOMAttr | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_attr_get_name(WebKitDOMAttr* self); | webkit_dom_attr_get_name(WebKitDOMAttr* self); | |||
/** | /** | |||
* webkit_dom_attr_get_specified: | * webkit_dom_attr_get_specified: | |||
* @self: A #WebKitDOMAttr | * @self: A #WebKitDOMAttr | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_attr_get_specified(WebKitDOMAttr* self); | webkit_dom_attr_get_specified(WebKitDOMAttr* self); | |||
/** | /** | |||
* webkit_dom_attr_get_value: | * webkit_dom_attr_get_value: | |||
* @self: A #WebKitDOMAttr | * @self: A #WebKitDOMAttr | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_attr_get_value(WebKitDOMAttr* self); | webkit_dom_attr_get_value(WebKitDOMAttr* self); | |||
/** | /** | |||
* webkit_dom_attr_set_value: | * webkit_dom_attr_set_value: | |||
* @self: A #WebKitDOMAttr | * @self: A #WebKitDOMAttr | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_attr_set_value(WebKitDOMAttr* self, const gchar* value, GError** error); | webkit_dom_attr_set_value(WebKitDOMAttr* self, const gchar* value, GError** error); | |||
/** | /** | |||
* webkit_dom_attr_get_owner_element: | * webkit_dom_attr_get_owner_element: | |||
* @self: A #WebKitDOMAttr | * @self: A #WebKitDOMAttr | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_attr_get_owner_element(WebKitDOMAttr* self); | webkit_dom_attr_get_owner_element(WebKitDOMAttr* self); | |||
/** | /** | |||
* webkit_dom_attr_get_is_id: | * webkit_dom_attr_get_is_id: | |||
* @self: A #WebKitDOMAttr | * @self: A #WebKitDOMAttr | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_attr_get_is_id(WebKitDOMAttr* self); | webkit_dom_attr_get_is_id(WebKitDOMAttr* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMAttr_h */ | #endif /* WebKitDOMAttr_h */ | |||
End of changes. 7 change blocks. | ||||
31 lines changed or deleted | 24 lines changed or added | |||
WebKitDOMAudioTrack.h | WebKitDOMAudioTrack.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMAudioTrack_h | #ifndef WebKitDOMAudioTrack_h | |||
#define WebKitDOMAudioTrack_h | #define WebKitDOMAudioTrack_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_audio_track_get_type (void); | webkit_dom_audio_track_get_type (void); | |||
/** | /** | |||
* webkit_dom_audio_track_get_id: | * webkit_dom_audio_track_get_id: | |||
* @self: A #WebKitDOMAudioTrack | * @self: A #WebKitDOMAudioTrack | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_audio_track_get_id(WebKitDOMAudioTrack* self); | webkit_dom_audio_track_get_id(WebKitDOMAudioTrack* self); | |||
/** | /** | |||
* webkit_dom_audio_track_get_kind: | * webkit_dom_audio_track_get_kind: | |||
* @self: A #WebKitDOMAudioTrack | * @self: A #WebKitDOMAudioTrack | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_audio_track_get_kind(WebKitDOMAudioTrack* self); | webkit_dom_audio_track_get_kind(WebKitDOMAudioTrack* self); | |||
/** | /** | |||
* webkit_dom_audio_track_get_label: | * webkit_dom_audio_track_get_label: | |||
* @self: A #WebKitDOMAudioTrack | * @self: A #WebKitDOMAudioTrack | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_audio_track_get_label(WebKitDOMAudioTrack* self); | webkit_dom_audio_track_get_label(WebKitDOMAudioTrack* self); | |||
/** | /** | |||
* webkit_dom_audio_track_get_language: | * webkit_dom_audio_track_get_language: | |||
* @self: A #WebKitDOMAudioTrack | * @self: A #WebKitDOMAudioTrack | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_audio_track_get_language(WebKitDOMAudioTrack* self); | webkit_dom_audio_track_get_language(WebKitDOMAudioTrack* self); | |||
/** | /** | |||
* webkit_dom_audio_track_get_enabled: | * webkit_dom_audio_track_get_enabled: | |||
* @self: A #WebKitDOMAudioTrack | * @self: A #WebKitDOMAudioTrack | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_audio_track_get_enabled(WebKitDOMAudioTrack* self); | webkit_dom_audio_track_get_enabled(WebKitDOMAudioTrack* self); | |||
/** | /** | |||
* webkit_dom_audio_track_set_enabled: | * webkit_dom_audio_track_set_enabled: | |||
* @self: A #WebKitDOMAudioTrack | * @self: A #WebKitDOMAudioTrack | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_audio_track_set_enabled(WebKitDOMAudioTrack* self, gboolean valu e); | webkit_dom_audio_track_set_enabled(WebKitDOMAudioTrack* self, gboolean valu e); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMAudioTrack_h */ | #endif /* WebKitDOMAudioTrack_h */ | |||
End of changes. 7 change blocks. | ||||
31 lines changed or deleted | 24 lines changed or added | |||
WebKitDOMAudioTrackList.h | WebKitDOMAudioTrackList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMAudioTrackList_h | #ifndef WebKitDOMAudioTrackList_h | |||
#define WebKitDOMAudioTrackList_h | #define WebKitDOMAudioTrackList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_audio_track_list_get_type (void); | webkit_dom_audio_track_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_audio_track_list_item: | * webkit_dom_audio_track_list_item: | |||
* @self: A #WebKitDOMAudioTrackList | * @self: A #WebKitDOMAudioTrackList | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMAudioTrack | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMAudioTrack* | WEBKIT_API WebKitDOMAudioTrack* | |||
webkit_dom_audio_track_list_item(WebKitDOMAudioTrackList* self, gulong inde x); | webkit_dom_audio_track_list_item(WebKitDOMAudioTrackList* self, gulong inde x); | |||
/** | /** | |||
* webkit_dom_audio_track_list_get_track_by_id: | * webkit_dom_audio_track_list_get_track_by_id: | |||
* @self: A #WebKitDOMAudioTrackList | * @self: A #WebKitDOMAudioTrackList | |||
* @id: A #gchar | * @id: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMAudioTrack | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMAudioTrack* | WEBKIT_API WebKitDOMAudioTrack* | |||
webkit_dom_audio_track_list_get_track_by_id(WebKitDOMAudioTrackList* self, const gchar* id); | webkit_dom_audio_track_list_get_track_by_id(WebKitDOMAudioTrackList* self, const gchar* id); | |||
#if !defined(WEBKIT_DISABLE_DEPRECATED) | ||||
/** | /** | |||
* webkit_dom_audio_track_list_dispatch_event: | * webkit_dom_audio_track_list_dispatch_event: | |||
* @self: A #WebKitDOMAudioTrackList | * @self: A #WebKitDOMAudioTrackList | |||
* @evt: A #WebKitDOMEvent | * @evt: A #WebKitDOMEvent | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | * | |||
* Deprecated: 2.4: Use webkit_dom_event_target_dispatch_event() instead. | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_DEPRECATED_FOR(webkit_dom_event_target_dispatch_event) gboolean | |||
webkit_dom_audio_track_list_dispatch_event(WebKitDOMAudioTrackList* self, W ebKitDOMEvent* evt, GError** error); | webkit_dom_audio_track_list_dispatch_event(WebKitDOMAudioTrackList* self, W ebKitDOMEvent* evt, GError** error); | |||
#endif /* WEBKIT_DISABLE_DEPRECATED */ | ||||
/** | /** | |||
* webkit_dom_audio_track_list_get_length: | * webkit_dom_audio_track_list_get_length: | |||
* @self: A #WebKitDOMAudioTrackList | * @self: A #WebKitDOMAudioTrackList | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_audio_track_list_get_length(WebKitDOMAudioTrackList* self); | webkit_dom_audio_track_list_get_length(WebKitDOMAudioTrackList* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMAudioTrackList_h */ | #endif /* WebKitDOMAudioTrackList_h */ | |||
End of changes. 9 change blocks. | ||||
27 lines changed or deleted | 27 lines changed or added | |||
WebKitDOMBarProp.h | WebKitDOMBarProp.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMBarProp_h | #ifndef WebKitDOMBarProp_h | |||
#define WebKitDOMBarProp_h | #define WebKitDOMBarProp_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_bar_prop_get_type (void); | webkit_dom_bar_prop_get_type (void); | |||
/** | /** | |||
* webkit_dom_bar_prop_get_visible: | * webkit_dom_bar_prop_get_visible: | |||
* @self: A #WebKitDOMBarProp | * @self: A #WebKitDOMBarProp | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_bar_prop_get_visible(WebKitDOMBarProp* self); | webkit_dom_bar_prop_get_visible(WebKitDOMBarProp* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMBarProp_h */ | #endif /* WebKitDOMBarProp_h */ | |||
End of changes. 2 change blocks. | ||||
21 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMBatteryManager.h | WebKitDOMBatteryManager.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMBatteryManager_h | #ifndef WebKitDOMBatteryManager_h | |||
#define WebKitDOMBatteryManager_h | #define WebKitDOMBatteryManager_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 52 | skipping to change at line 52 | |||
WebKitDOMObject parent_instance; | WebKitDOMObject parent_instance; | |||
}; | }; | |||
struct _WebKitDOMBatteryManagerClass { | struct _WebKitDOMBatteryManagerClass { | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_battery_manager_get_type (void); | webkit_dom_battery_manager_get_type (void); | |||
#if !defined(WEBKIT_DISABLE_DEPRECATED) | ||||
/** | /** | |||
* webkit_dom_battery_manager_dispatch_event: | * webkit_dom_battery_manager_dispatch_event: | |||
* @self: A #WebKitDOMBatteryManager | * @self: A #WebKitDOMBatteryManager | |||
* @event: A #WebKitDOMEvent | * @event: A #WebKitDOMEvent | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | * | |||
* Deprecated: 2.4: Use webkit_dom_event_target_dispatch_event() instead. | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_DEPRECATED_FOR(webkit_dom_event_target_dispatch_event) gboolean | |||
webkit_dom_battery_manager_dispatch_event(WebKitDOMBatteryManager* self, We bKitDOMEvent* event, GError** error); | webkit_dom_battery_manager_dispatch_event(WebKitDOMBatteryManager* self, We bKitDOMEvent* event, GError** error); | |||
#endif /* WEBKIT_DISABLE_DEPRECATED */ | ||||
/** | /** | |||
* webkit_dom_battery_manager_get_charging: | * webkit_dom_battery_manager_get_charging: | |||
* @self: A #WebKitDOMBatteryManager | * @self: A #WebKitDOMBatteryManager | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_battery_manager_get_charging(WebKitDOMBatteryManager* self); | webkit_dom_battery_manager_get_charging(WebKitDOMBatteryManager* self); | |||
/** | /** | |||
* webkit_dom_battery_manager_get_charging_time: | * webkit_dom_battery_manager_get_charging_time: | |||
* @self: A #WebKitDOMBatteryManager | * @self: A #WebKitDOMBatteryManager | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_battery_manager_get_charging_time(WebKitDOMBatteryManager* self) ; | webkit_dom_battery_manager_get_charging_time(WebKitDOMBatteryManager* self) ; | |||
/** | /** | |||
* webkit_dom_battery_manager_get_discharging_time: | * webkit_dom_battery_manager_get_discharging_time: | |||
* @self: A #WebKitDOMBatteryManager | * @self: A #WebKitDOMBatteryManager | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_battery_manager_get_discharging_time(WebKitDOMBatteryManager* se lf); | webkit_dom_battery_manager_get_discharging_time(WebKitDOMBatteryManager* se lf); | |||
/** | /** | |||
* webkit_dom_battery_manager_get_level: | * webkit_dom_battery_manager_get_level: | |||
* @self: A #WebKitDOMBatteryManager | * @self: A #WebKitDOMBatteryManager | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_battery_manager_get_level(WebKitDOMBatteryManager* self); | webkit_dom_battery_manager_get_level(WebKitDOMBatteryManager* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMBatteryManager_h */ | #endif /* WebKitDOMBatteryManager_h */ | |||
End of changes. 10 change blocks. | ||||
29 lines changed or deleted | 28 lines changed or added | |||
WebKitDOMBlob.h | WebKitDOMBlob.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMBlob_h | #ifndef WebKitDOMBlob_h | |||
#define WebKitDOMBlob_h | #define WebKitDOMBlob_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 59 | skipping to change at line 59 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_blob_get_type (void); | webkit_dom_blob_get_type (void); | |||
/** | /** | |||
* webkit_dom_blob_slice: | * webkit_dom_blob_slice: | |||
* @self: A #WebKitDOMBlob | * @self: A #WebKitDOMBlob | |||
* @start: A #gint64 | * @start: A #gint64 | |||
* @end: A #gint64 | * @end: A #gint64 | |||
* @contentType: A #gchar | * @contentType: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMBlob | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMBlob* | WEBKIT_API WebKitDOMBlob* | |||
webkit_dom_blob_slice(WebKitDOMBlob* self, gint64 start, gint64 end, const gchar* contentType); | webkit_dom_blob_slice(WebKitDOMBlob* self, gint64 start, gint64 end, const gchar* contentType); | |||
/** | /** | |||
* webkit_dom_blob_get_size: | * webkit_dom_blob_get_size: | |||
* @self: A #WebKitDOMBlob | * @self: A #WebKitDOMBlob | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_blob_get_size(WebKitDOMBlob* self); | webkit_dom_blob_get_size(WebKitDOMBlob* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMBlob_h */ | #endif /* WebKitDOMBlob_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMCDATASection.h | WebKitDOMCDATASection.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMCDATASection_h | #ifndef WebKitDOMCDATASection_h | |||
#define WebKitDOMCDATASection_h | #define WebKitDOMCDATASection_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMText.h> | #include <webkitdom/WebKitDOMText.h> | |||
End of changes. 1 change blocks. | ||||
19 lines changed or deleted | 19 lines changed or added | |||
WebKitDOMCSSRule.h | WebKitDOMCSSRule.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMCSSRule_h | #ifndef WebKitDOMCSSRule_h | |||
#define WebKitDOMCSSRule_h | #define WebKitDOMCSSRule_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_css_rule_get_type (void); | webkit_dom_css_rule_get_type (void); | |||
/** | /** | |||
* webkit_dom_css_rule_get_css_text: | * webkit_dom_css_rule_get_css_text: | |||
* @self: A #WebKitDOMCSSRule | * @self: A #WebKitDOMCSSRule | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_css_rule_get_css_text(WebKitDOMCSSRule* self); | webkit_dom_css_rule_get_css_text(WebKitDOMCSSRule* self); | |||
/** | /** | |||
* webkit_dom_css_rule_set_css_text: | * webkit_dom_css_rule_set_css_text: | |||
* @self: A #WebKitDOMCSSRule | * @self: A #WebKitDOMCSSRule | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_css_rule_set_css_text(WebKitDOMCSSRule* self, const gchar* value , GError** error); | webkit_dom_css_rule_set_css_text(WebKitDOMCSSRule* self, const gchar* value , GError** error); | |||
/** | /** | |||
* webkit_dom_css_rule_get_parent_style_sheet: | * webkit_dom_css_rule_get_parent_style_sheet: | |||
* @self: A #WebKitDOMCSSRule | * @self: A #WebKitDOMCSSRule | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMCSSStyleSheet | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMCSSStyleSheet* | WEBKIT_API WebKitDOMCSSStyleSheet* | |||
webkit_dom_css_rule_get_parent_style_sheet(WebKitDOMCSSRule* self); | webkit_dom_css_rule_get_parent_style_sheet(WebKitDOMCSSRule* self); | |||
/** | /** | |||
* webkit_dom_css_rule_get_parent_rule: | * webkit_dom_css_rule_get_parent_rule: | |||
* @self: A #WebKitDOMCSSRule | * @self: A #WebKitDOMCSSRule | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMCSSRule | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMCSSRule* | WEBKIT_API WebKitDOMCSSRule* | |||
webkit_dom_css_rule_get_parent_rule(WebKitDOMCSSRule* self); | webkit_dom_css_rule_get_parent_rule(WebKitDOMCSSRule* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMCSSRule_h */ | #endif /* WebKitDOMCSSRule_h */ | |||
End of changes. 5 change blocks. | ||||
27 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMCSSRuleList.h | WebKitDOMCSSRuleList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMCSSRuleList_h | #ifndef WebKitDOMCSSRuleList_h | |||
#define WebKitDOMCSSRuleList_h | #define WebKitDOMCSSRuleList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_css_rule_list_get_type (void); | webkit_dom_css_rule_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_css_rule_list_item: | * webkit_dom_css_rule_list_item: | |||
* @self: A #WebKitDOMCSSRuleList | * @self: A #WebKitDOMCSSRuleList | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMCSSRule | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMCSSRule* | WEBKIT_API WebKitDOMCSSRule* | |||
webkit_dom_css_rule_list_item(WebKitDOMCSSRuleList* self, gulong index); | webkit_dom_css_rule_list_item(WebKitDOMCSSRuleList* self, gulong index); | |||
/** | /** | |||
* webkit_dom_css_rule_list_get_length: | * webkit_dom_css_rule_list_get_length: | |||
* @self: A #WebKitDOMCSSRuleList | * @self: A #WebKitDOMCSSRuleList | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_css_rule_list_get_length(WebKitDOMCSSRuleList* self); | webkit_dom_css_rule_list_get_length(WebKitDOMCSSRuleList* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMCSSRuleList_h */ | #endif /* WebKitDOMCSSRuleList_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMCSSStyleDeclaration.h | WebKitDOMCSSStyleDeclaration.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMCSSStyleDeclaration_h | #ifndef WebKitDOMCSSStyleDeclaration_h | |||
#define WebKitDOMCSSStyleDeclaration_h | #define WebKitDOMCSSStyleDeclaration_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_css_style_declaration_get_type (void); | webkit_dom_css_style_declaration_get_type (void); | |||
/** | /** | |||
* webkit_dom_css_style_declaration_get_property_value: | * webkit_dom_css_style_declaration_get_property_value: | |||
* @self: A #WebKitDOMCSSStyleDeclaration | * @self: A #WebKitDOMCSSStyleDeclaration | |||
* @propertyName: A #gchar | * @propertyName: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_css_style_declaration_get_property_value(WebKitDOMCSSStyleDeclar ation* self, const gchar* propertyName); | webkit_dom_css_style_declaration_get_property_value(WebKitDOMCSSStyleDeclar ation* self, const gchar* propertyName); | |||
/** | /** | |||
* webkit_dom_css_style_declaration_remove_property: | * webkit_dom_css_style_declaration_remove_property: | |||
* @self: A #WebKitDOMCSSStyleDeclaration | * @self: A #WebKitDOMCSSStyleDeclaration | |||
* @propertyName: A #gchar | * @propertyName: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_css_style_declaration_remove_property(WebKitDOMCSSStyleDeclarati on* self, const gchar* propertyName, GError** error); | webkit_dom_css_style_declaration_remove_property(WebKitDOMCSSStyleDeclarati on* self, const gchar* propertyName, GError** error); | |||
/** | /** | |||
* webkit_dom_css_style_declaration_get_property_priority: | * webkit_dom_css_style_declaration_get_property_priority: | |||
* @self: A #WebKitDOMCSSStyleDeclaration | * @self: A #WebKitDOMCSSStyleDeclaration | |||
* @propertyName: A #gchar | * @propertyName: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_css_style_declaration_get_property_priority(WebKitDOMCSSStyleDec laration* self, const gchar* propertyName); | webkit_dom_css_style_declaration_get_property_priority(WebKitDOMCSSStyleDec laration* self, const gchar* propertyName); | |||
/** | /** | |||
* webkit_dom_css_style_declaration_set_property: | * webkit_dom_css_style_declaration_set_property: | |||
* @self: A #WebKitDOMCSSStyleDeclaration | * @self: A #WebKitDOMCSSStyleDeclaration | |||
* @propertyName: A #gchar | * @propertyName: A #gchar | |||
* @value: A #gchar | * @value: A #gchar | |||
* @priority: A #gchar | * @priority: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_css_style_declaration_set_property(WebKitDOMCSSStyleDeclaration* self, const gchar* propertyName, const gchar* value, const gchar* priority , GError** error); | webkit_dom_css_style_declaration_set_property(WebKitDOMCSSStyleDeclaration* self, const gchar* propertyName, const gchar* value, const gchar* priority , GError** error); | |||
/** | /** | |||
* webkit_dom_css_style_declaration_item: | * webkit_dom_css_style_declaration_item: | |||
* @self: A #WebKitDOMCSSStyleDeclaration | * @self: A #WebKitDOMCSSStyleDeclaration | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_css_style_declaration_item(WebKitDOMCSSStyleDeclaration* self, g ulong index); | webkit_dom_css_style_declaration_item(WebKitDOMCSSStyleDeclaration* self, g ulong index); | |||
/** | /** | |||
* webkit_dom_css_style_declaration_get_property_shorthand: | * webkit_dom_css_style_declaration_get_property_shorthand: | |||
* @self: A #WebKitDOMCSSStyleDeclaration | * @self: A #WebKitDOMCSSStyleDeclaration | |||
* @propertyName: A #gchar | * @propertyName: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_css_style_declaration_get_property_shorthand(WebKitDOMCSSStyleDe claration* self, const gchar* propertyName); | webkit_dom_css_style_declaration_get_property_shorthand(WebKitDOMCSSStyleDe claration* self, const gchar* propertyName); | |||
/** | /** | |||
* webkit_dom_css_style_declaration_is_property_implicit: | * webkit_dom_css_style_declaration_is_property_implicit: | |||
* @self: A #WebKitDOMCSSStyleDeclaration | * @self: A #WebKitDOMCSSStyleDeclaration | |||
* @propertyName: A #gchar | * @propertyName: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_css_style_declaration_is_property_implicit(WebKitDOMCSSStyleDecl aration* self, const gchar* propertyName); | webkit_dom_css_style_declaration_is_property_implicit(WebKitDOMCSSStyleDecl aration* self, const gchar* propertyName); | |||
/** | /** | |||
* webkit_dom_css_style_declaration_get_css_text: | * webkit_dom_css_style_declaration_get_css_text: | |||
* @self: A #WebKitDOMCSSStyleDeclaration | * @self: A #WebKitDOMCSSStyleDeclaration | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_css_style_declaration_get_css_text(WebKitDOMCSSStyleDeclaration* self); | webkit_dom_css_style_declaration_get_css_text(WebKitDOMCSSStyleDeclaration* self); | |||
/** | /** | |||
* webkit_dom_css_style_declaration_set_css_text: | * webkit_dom_css_style_declaration_set_css_text: | |||
* @self: A #WebKitDOMCSSStyleDeclaration | * @self: A #WebKitDOMCSSStyleDeclaration | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_css_style_declaration_set_css_text(WebKitDOMCSSStyleDeclaration* self, const gchar* value, GError** error); | webkit_dom_css_style_declaration_set_css_text(WebKitDOMCSSStyleDeclaration* self, const gchar* value, GError** error); | |||
/** | /** | |||
* webkit_dom_css_style_declaration_get_length: | * webkit_dom_css_style_declaration_get_length: | |||
* @self: A #WebKitDOMCSSStyleDeclaration | * @self: A #WebKitDOMCSSStyleDeclaration | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_css_style_declaration_get_length(WebKitDOMCSSStyleDeclaration* s elf); | webkit_dom_css_style_declaration_get_length(WebKitDOMCSSStyleDeclaration* s elf); | |||
/** | /** | |||
* webkit_dom_css_style_declaration_get_parent_rule: | * webkit_dom_css_style_declaration_get_parent_rule: | |||
* @self: A #WebKitDOMCSSStyleDeclaration | * @self: A #WebKitDOMCSSStyleDeclaration | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMCSSRule | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMCSSRule* | WEBKIT_API WebKitDOMCSSRule* | |||
webkit_dom_css_style_declaration_get_parent_rule(WebKitDOMCSSStyleDeclarati on* self); | webkit_dom_css_style_declaration_get_parent_rule(WebKitDOMCSSStyleDeclarati on* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMCSSStyleDeclaration_h */ | #endif /* WebKitDOMCSSStyleDeclaration_h */ | |||
End of changes. 12 change blocks. | ||||
41 lines changed or deleted | 28 lines changed or added | |||
WebKitDOMCSSStyleSheet.h | WebKitDOMCSSStyleSheet.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMCSSStyleSheet_h | #ifndef WebKitDOMCSSStyleSheet_h | |||
#define WebKitDOMCSSStyleSheet_h | #define WebKitDOMCSSStyleSheet_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMStyleSheet.h> | #include <webkitdom/WebKitDOMStyleSheet.h> | |||
skipping to change at line 59 | skipping to change at line 59 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_css_style_sheet_get_type (void); | webkit_dom_css_style_sheet_get_type (void); | |||
/** | /** | |||
* webkit_dom_css_style_sheet_insert_rule: | * webkit_dom_css_style_sheet_insert_rule: | |||
* @self: A #WebKitDOMCSSStyleSheet | * @self: A #WebKitDOMCSSStyleSheet | |||
* @rule: A #gchar | * @rule: A #gchar | |||
* @index: A #gulong | * @index: A #gulong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_css_style_sheet_insert_rule(WebKitDOMCSSStyleSheet* self, const gchar* rule, gulong index, GError** error); | webkit_dom_css_style_sheet_insert_rule(WebKitDOMCSSStyleSheet* self, const gchar* rule, gulong index, GError** error); | |||
/** | /** | |||
* webkit_dom_css_style_sheet_delete_rule: | * webkit_dom_css_style_sheet_delete_rule: | |||
* @self: A #WebKitDOMCSSStyleSheet | * @self: A #WebKitDOMCSSStyleSheet | |||
* @index: A #gulong | * @index: A #gulong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_css_style_sheet_delete_rule(WebKitDOMCSSStyleSheet* self, gulong index, GError** error); | webkit_dom_css_style_sheet_delete_rule(WebKitDOMCSSStyleSheet* self, gulong index, GError** error); | |||
/** | /** | |||
* webkit_dom_css_style_sheet_add_rule: | * webkit_dom_css_style_sheet_add_rule: | |||
* @self: A #WebKitDOMCSSStyleSheet | * @self: A #WebKitDOMCSSStyleSheet | |||
* @selector: A #gchar | * @selector: A #gchar | |||
* @style: A #gchar | * @style: A #gchar | |||
* @index: A #gulong | * @index: A #gulong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_css_style_sheet_add_rule(WebKitDOMCSSStyleSheet* self, const gch ar* selector, const gchar* style, gulong index, GError** error); | webkit_dom_css_style_sheet_add_rule(WebKitDOMCSSStyleSheet* self, const gch ar* selector, const gchar* style, gulong index, GError** error); | |||
/** | /** | |||
* webkit_dom_css_style_sheet_remove_rule: | * webkit_dom_css_style_sheet_remove_rule: | |||
* @self: A #WebKitDOMCSSStyleSheet | * @self: A #WebKitDOMCSSStyleSheet | |||
* @index: A #gulong | * @index: A #gulong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_css_style_sheet_remove_rule(WebKitDOMCSSStyleSheet* self, gulong index, GError** error); | webkit_dom_css_style_sheet_remove_rule(WebKitDOMCSSStyleSheet* self, gulong index, GError** error); | |||
/** | /** | |||
* webkit_dom_css_style_sheet_get_owner_rule: | * webkit_dom_css_style_sheet_get_owner_rule: | |||
* @self: A #WebKitDOMCSSStyleSheet | * @self: A #WebKitDOMCSSStyleSheet | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMCSSRule | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMCSSRule* | WEBKIT_API WebKitDOMCSSRule* | |||
webkit_dom_css_style_sheet_get_owner_rule(WebKitDOMCSSStyleSheet* self); | webkit_dom_css_style_sheet_get_owner_rule(WebKitDOMCSSStyleSheet* self); | |||
/** | /** | |||
* webkit_dom_css_style_sheet_get_css_rules: | * webkit_dom_css_style_sheet_get_css_rules: | |||
* @self: A #WebKitDOMCSSStyleSheet | * @self: A #WebKitDOMCSSStyleSheet | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMCSSRuleList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMCSSRuleList* | WEBKIT_API WebKitDOMCSSRuleList* | |||
webkit_dom_css_style_sheet_get_css_rules(WebKitDOMCSSStyleSheet* self); | webkit_dom_css_style_sheet_get_css_rules(WebKitDOMCSSStyleSheet* self); | |||
/** | /** | |||
* webkit_dom_css_style_sheet_get_rules: | * webkit_dom_css_style_sheet_get_rules: | |||
* @self: A #WebKitDOMCSSStyleSheet | * @self: A #WebKitDOMCSSStyleSheet | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMCSSRuleList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMCSSRuleList* | WEBKIT_API WebKitDOMCSSRuleList* | |||
webkit_dom_css_style_sheet_get_rules(WebKitDOMCSSStyleSheet* self); | webkit_dom_css_style_sheet_get_rules(WebKitDOMCSSStyleSheet* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMCSSStyleSheet_h */ | #endif /* WebKitDOMCSSStyleSheet_h */ | |||
End of changes. 8 change blocks. | ||||
33 lines changed or deleted | 24 lines changed or added | |||
WebKitDOMCSSValue.h | WebKitDOMCSSValue.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMCSSValue_h | #ifndef WebKitDOMCSSValue_h | |||
#define WebKitDOMCSSValue_h | #define WebKitDOMCSSValue_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_css_value_get_type (void); | webkit_dom_css_value_get_type (void); | |||
/** | /** | |||
* webkit_dom_css_value_get_css_text: | * webkit_dom_css_value_get_css_text: | |||
* @self: A #WebKitDOMCSSValue | * @self: A #WebKitDOMCSSValue | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_css_value_get_css_text(WebKitDOMCSSValue* self); | webkit_dom_css_value_get_css_text(WebKitDOMCSSValue* self); | |||
/** | /** | |||
* webkit_dom_css_value_set_css_text: | * webkit_dom_css_value_set_css_text: | |||
* @self: A #WebKitDOMCSSValue | * @self: A #WebKitDOMCSSValue | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_css_value_set_css_text(WebKitDOMCSSValue* self, const gchar* val ue, GError** error); | webkit_dom_css_value_set_css_text(WebKitDOMCSSValue* self, const gchar* val ue, GError** error); | |||
/** | /** | |||
* webkit_dom_css_value_get_css_value_type: | * webkit_dom_css_value_get_css_value_type: | |||
* @self: A #WebKitDOMCSSValue | * @self: A #WebKitDOMCSSValue | |||
* | * | |||
* Returns: | * Returns: A #gushort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gushort | WEBKIT_API gushort | |||
webkit_dom_css_value_get_css_value_type(WebKitDOMCSSValue* self); | webkit_dom_css_value_get_css_value_type(WebKitDOMCSSValue* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMCSSValue_h */ | #endif /* WebKitDOMCSSValue_h */ | |||
End of changes. 4 change blocks. | ||||
25 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMCharacterData.h | WebKitDOMCharacterData.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMCharacterData_h | #ifndef WebKitDOMCharacterData_h | |||
#define WebKitDOMCharacterData_h | #define WebKitDOMCharacterData_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMNode.h> | #include <webkitdom/WebKitDOMNode.h> | |||
skipping to change at line 59 | skipping to change at line 59 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_character_data_get_type (void); | webkit_dom_character_data_get_type (void); | |||
/** | /** | |||
* webkit_dom_character_data_substring_data: | * webkit_dom_character_data_substring_data: | |||
* @self: A #WebKitDOMCharacterData | * @self: A #WebKitDOMCharacterData | |||
* @offset: A #gulong | * @offset: A #gulong | |||
* @length: A #gulong | * @length: A #gulong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_character_data_substring_data(WebKitDOMCharacterData* self, gulo ng offset, gulong length, GError** error); | webkit_dom_character_data_substring_data(WebKitDOMCharacterData* self, gulo ng offset, gulong length, GError** error); | |||
/** | /** | |||
* webkit_dom_character_data_append_data: | * webkit_dom_character_data_append_data: | |||
* @self: A #WebKitDOMCharacterData | * @self: A #WebKitDOMCharacterData | |||
* @data: A #gchar | * @data: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_character_data_append_data(WebKitDOMCharacterData* self, const g char* data, GError** error); | webkit_dom_character_data_append_data(WebKitDOMCharacterData* self, const g char* data, GError** error); | |||
/** | /** | |||
* webkit_dom_character_data_insert_data: | * webkit_dom_character_data_insert_data: | |||
* @self: A #WebKitDOMCharacterData | * @self: A #WebKitDOMCharacterData | |||
* @offset: A #gulong | * @offset: A #gulong | |||
* @data: A #gchar | * @data: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_character_data_insert_data(WebKitDOMCharacterData* self, gulong offset, const gchar* data, GError** error); | webkit_dom_character_data_insert_data(WebKitDOMCharacterData* self, gulong offset, const gchar* data, GError** error); | |||
/** | /** | |||
* webkit_dom_character_data_delete_data: | * webkit_dom_character_data_delete_data: | |||
* @self: A #WebKitDOMCharacterData | * @self: A #WebKitDOMCharacterData | |||
* @offset: A #gulong | * @offset: A #gulong | |||
* @length: A #gulong | * @length: A #gulong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_character_data_delete_data(WebKitDOMCharacterData* self, gulong offset, gulong length, GError** error); | webkit_dom_character_data_delete_data(WebKitDOMCharacterData* self, gulong offset, gulong length, GError** error); | |||
/** | /** | |||
* webkit_dom_character_data_replace_data: | * webkit_dom_character_data_replace_data: | |||
* @self: A #WebKitDOMCharacterData | * @self: A #WebKitDOMCharacterData | |||
* @offset: A #gulong | * @offset: A #gulong | |||
* @length: A #gulong | * @length: A #gulong | |||
* @data: A #gchar | * @data: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_character_data_replace_data(WebKitDOMCharacterData* self, gulong offset, gulong length, const gchar* data, GError** error); | webkit_dom_character_data_replace_data(WebKitDOMCharacterData* self, gulong offset, gulong length, const gchar* data, GError** error); | |||
/** | /** | |||
* webkit_dom_character_data_remove: | * webkit_dom_character_data_remove: | |||
* @self: A #WebKitDOMCharacterData | * @self: A #WebKitDOMCharacterData | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_character_data_remove(WebKitDOMCharacterData* self, GError** err or); | webkit_dom_character_data_remove(WebKitDOMCharacterData* self, GError** err or); | |||
/** | /** | |||
* webkit_dom_character_data_get_data: | * webkit_dom_character_data_get_data: | |||
* @self: A #WebKitDOMCharacterData | * @self: A #WebKitDOMCharacterData | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_character_data_get_data(WebKitDOMCharacterData* self); | webkit_dom_character_data_get_data(WebKitDOMCharacterData* self); | |||
/** | /** | |||
* webkit_dom_character_data_set_data: | * webkit_dom_character_data_set_data: | |||
* @self: A #WebKitDOMCharacterData | * @self: A #WebKitDOMCharacterData | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_character_data_set_data(WebKitDOMCharacterData* self, const gcha r* value, GError** error); | webkit_dom_character_data_set_data(WebKitDOMCharacterData* self, const gcha r* value, GError** error); | |||
/** | /** | |||
* webkit_dom_character_data_get_length: | * webkit_dom_character_data_get_length: | |||
* @self: A #WebKitDOMCharacterData | * @self: A #WebKitDOMCharacterData | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_character_data_get_length(WebKitDOMCharacterData* self); | webkit_dom_character_data_get_length(WebKitDOMCharacterData* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMCharacterData_h */ | #endif /* WebKitDOMCharacterData_h */ | |||
End of changes. 10 change blocks. | ||||
37 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMComment.h | WebKitDOMComment.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMComment_h | #ifndef WebKitDOMComment_h | |||
#define WebKitDOMComment_h | #define WebKitDOMComment_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMCharacterData.h> | #include <webkitdom/WebKitDOMCharacterData.h> | |||
End of changes. 1 change blocks. | ||||
19 lines changed or deleted | 19 lines changed or added | |||
WebKitDOMConsole.h | WebKitDOMConsole.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMConsole_h | #ifndef WebKitDOMConsole_h | |||
#define WebKitDOMConsole_h | #define WebKitDOMConsole_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_console_get_type (void); | webkit_dom_console_get_type (void); | |||
/** | /** | |||
* webkit_dom_console_time: | * webkit_dom_console_time: | |||
* @self: A #WebKitDOMConsole | * @self: A #WebKitDOMConsole | |||
* @title: A #gchar | * @title: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_console_time(WebKitDOMConsole* self, const gchar* title); | webkit_dom_console_time(WebKitDOMConsole* self, const gchar* title); | |||
/** | /** | |||
* webkit_dom_console_group_end: | * webkit_dom_console_group_end: | |||
* @self: A #WebKitDOMConsole | * @self: A #WebKitDOMConsole | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_console_group_end(WebKitDOMConsole* self); | webkit_dom_console_group_end(WebKitDOMConsole* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMConsole_h */ | #endif /* WebKitDOMConsole_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 19 lines changed or added | |||
WebKitDOMCustom.h | WebKitDOMCustom.h | |||
---|---|---|---|---|
skipping to change at line 32 | skipping to change at line 32 | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <glib.h> | #include <glib.h> | |||
#include <webkitdom/webkitdomdefines.h> | #include <webkitdom/webkitdomdefines.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
/** | /** | |||
* webkit_dom_html_text_area_element_is_edited: | * webkit_dom_html_text_area_element_is_edited: | |||
* @input: A #WebKitDOMHTMLTextAreaElement | * @input: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: A #gboolean | ||||
*/ | */ | |||
WEBKIT_API gboolean webkit_dom_html_text_area_element_is_edited(WebKitDOMHT MLTextAreaElement* input); | WEBKIT_API gboolean webkit_dom_html_text_area_element_is_edited(WebKitDOMHT MLTextAreaElement* input); | |||
/** | /** | |||
* webkit_dom_html_input_element_is_edited: | * webkit_dom_html_media_element_set_current_time: | |||
* @input: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * @value: A #gdouble | |||
*/ | * @error: #GError | |||
WEBKIT_API gboolean webkit_dom_html_input_element_is_edited(WebKitDOMHTMLIn | ||||
putElement* input); | ||||
/** | ||||
* webkit_dom_blob_webkit_slice: | ||||
* @self: A #WebKitDOMBlob | ||||
* @start: A #gint64 | ||||
* @end: A #gint64 | ||||
* @content_type: A #gchar | ||||
* | ||||
* Returns: (transfer none): | ||||
*/ | ||||
WEBKIT_API WebKitDOMBlob* webkit_dom_blob_webkit_slice(WebKitDOMBlob* self, | ||||
gint64 start, gint64 end, const gchar* content_type); | ||||
/** | ||||
* webkit_dom_html_element_get_class_name: | ||||
* @element: A #WebKitDOMHTMLElement | ||||
* | ||||
* Returns: | ||||
* | ||||
*/ | ||||
WEBKIT_API gchar* webkit_dom_html_element_get_class_name(WebKitDOMHTMLEleme | ||||
nt* element); | ||||
/** | ||||
* webkit_dom_html_element_set_class_name: | ||||
* @element: A #WebKitDOMHTMLElement | ||||
* @value: A #gchar | ||||
* | ||||
*/ | ||||
WEBKIT_API void webkit_dom_html_element_set_class_name(WebKitDOMHTMLElement | ||||
* element, const gchar* value); | ||||
/** | ||||
* webkit_dom_html_element_get_class_list: | ||||
* @element: A #WebKitDOMHTMLElement | ||||
* | ||||
* Returns: (transfer none): | ||||
* | ||||
*/ | ||||
WEBKIT_API WebKitDOMDOMTokenList* webkit_dom_html_element_get_class_list(We | ||||
bKitDOMHTMLElement* element); | ||||
/** | ||||
* webkit_dom_html_form_element_dispatch_form_change: | ||||
* @self: A #WebKitDOMHTMLFormElement | ||||
* | ||||
*/ | ||||
WEBKIT_API void webkit_dom_html_form_element_dispatch_form_change(WebKitDOM | ||||
HTMLFormElement* self); | ||||
/** | ||||
* webkit_dom_html_form_element_dispatch_form_input: | ||||
* @self: A #WebKitDOMHTMLFormElement | ||||
* | ||||
*/ | ||||
WEBKIT_API void webkit_dom_html_form_element_dispatch_form_input(WebKitDOMH | ||||
TMLFormElement* self); | ||||
/** | ||||
* webkit_dom_html_element_get_id: | ||||
* @self: A #WebKitDOMHTMLElement | ||||
* | ||||
* This method is deprecated. Use webkit_dom_element_set_id() instead. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gchar* webkit_dom_html_element_get_id(WebKitDOMHTMLElement* self | ||||
); | ||||
/** | ||||
* webkit_dom_html_element_set_id: | ||||
* @self: A #WebKitDOMHTMLElement | ||||
* @value: A #gchar | ||||
* | ||||
* This method is deprecated. Use webkit_dom_element_set_id() instead. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API void webkit_dom_html_element_set_id(WebKitDOMHTMLElement* self, | ||||
const gchar* value); | ||||
/** | ||||
* webkit_dom_webkit_named_flow_get_overflow: | ||||
* @flow: A #WebKitDOMWebKitNamedFlow | ||||
* | ||||
* Returns: | ||||
* | ||||
*/ | ||||
WEBKIT_API gboolean webkit_dom_webkit_named_flow_get_overflow(WebKitDOMWebK | ||||
itNamedFlow* flow); | ||||
/** | ||||
* webkit_dom_element_get_webkit_region_overflow: | ||||
* @element: A #WebKitDOMElement | ||||
* | ||||
* Returns: | ||||
* | ||||
*/ | ||||
WEBKIT_API gchar* webkit_dom_element_get_webkit_region_overflow(WebKitDOMEl | ||||
ement* element); | ||||
/** | ||||
* webkit_dom_webkit_named_flow_get_content_nodes: | ||||
* @flow: A #WebKitDOMWebKitNamedFlow | ||||
* | ||||
* Returns: (transfer none): | ||||
* | * | |||
*/ | */ | |||
WEBKIT_API WebKitDOMNodeList* webkit_dom_webkit_named_flow_get_content_node s(WebKitDOMWebKitNamedFlow* flow); | WEBKIT_API void webkit_dom_html_media_element_set_current_time(WebKitDOMHTM LMediaElement* self, gdouble value, GError** error); | |||
/** | /** | |||
* webkit_dom_webkit_named_flow_get_regions_by_content_node: | * webkit_dom_html_input_element_is_edited: | |||
* @flow: A #WebKitDOMWebKitNamedFlow | * @input: A #WebKitDOMHTMLInputElement | |||
* @content_node: A #WebKitDOMNode | ||||
* | ||||
* Returns: (transfer none): | ||||
* | * | |||
* Returns: A #gboolean | ||||
*/ | */ | |||
WEBKIT_API WebKitDOMNodeList* webkit_dom_webkit_named_flow_get_regions_by_c | WEBKIT_API gboolean webkit_dom_html_input_element_is_edited(WebKitDOMHTMLIn | |||
ontent_node(WebKitDOMWebKitNamedFlow* flow, WebKitDOMNode* content_node); | putElement* input); | |||
WEBKIT_API GType webkit_dom_bar_info_get_type(void); | ||||
/** | ||||
* webkit_dom_bar_info_get_visible: | ||||
* @self: A #WebKitDOMBarInfo | ||||
* | ||||
* The BarInfo type has been removed from the DOM spec, this function does | ||||
nothing. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gboolean webkit_dom_bar_info_get_visible(void* self); | ||||
/** | ||||
* webkit_dom_console_get_memory: | ||||
* @self: A #WebKitDOMConsole | ||||
* | ||||
* This functionality has been removed from WebKit, this function does noth | ||||
ing. | ||||
* | ||||
* Returns: (transfer none): | ||||
* | ||||
**/ | ||||
WEBKIT_API void* webkit_dom_console_get_memory(WebKitDOMConsole* self); | ||||
/** | ||||
* webkit_dom_css_style_declaration_get_property_css_value: | ||||
* @self: A #WebKitDOMCSSStyleDeclaration | ||||
* @propertyName: A #gchar | ||||
* | ||||
* This functionality has been removed from WebKit, this function does noth | ||||
ing. | ||||
* | ||||
* Returns: (transfer none): | ||||
* | ||||
**/ | ||||
WEBKIT_API WebKitDOMCSSValue* webkit_dom_css_style_declaration_get_property | ||||
_css_value(WebKitDOMCSSStyleDeclaration* self, const gchar* propertyName); | ||||
/** | ||||
* webkit_dom_document_get_webkit_hidden: | ||||
* @self: A #WebKitDOMDocument | ||||
* | ||||
* This functionality has been removed from WebKit, this function does noth | ||||
ing. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gboolean webkit_dom_document_get_webkit_hidden(WebKitDOMDocument | ||||
* self); | ||||
/** | ||||
* webkit_dom_document_get_webkit_visibility_state: | ||||
* @self: A #WebKitDOMDocument | ||||
* | ||||
* This functionality has been removed from WebKit, this function does noth | ||||
ing. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gchar* webkit_dom_document_get_webkit_visibility_state(WebKitDOM | ||||
Document* self); | ||||
/** | ||||
* webkit_dom_html_document_open: | ||||
* @self: A #WebKitDOMHTMLDocument | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API void webkit_dom_html_document_open(WebKitDOMHTMLDocument* self); | ||||
/** | ||||
* webkit_dom_html_element_set_item_id: | ||||
* @self: A #WebKitDOMHTMLElement | ||||
* @value: A #gchar | ||||
* | ||||
* This functionality has been removed from WebKit, this function does noth | ||||
ing. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API void webkit_dom_html_element_set_item_id(WebKitDOMHTMLElement* s | ||||
elf, const gchar* value); | ||||
/** | ||||
* webkit_dom_html_element_get_item_id: | ||||
* @self: A #WebKitDOMHTMLElement | ||||
* | ||||
* This functionality has been removed from WebKit, this function does noth | ||||
ing. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gchar* webkit_dom_html_element_get_item_id(WebKitDOMHTMLElement* | ||||
self); | ||||
/** | ||||
* webkit_dom_html_element_get_item_ref: | ||||
* @self: A #WebKitDOMHTMLElement | ||||
* | ||||
* This functionality has been removed from WebKit, this function does noth | ||||
ing. | ||||
* | ||||
* Returns: (transfer none): | ||||
* | ||||
**/ | ||||
WEBKIT_API WebKitDOMDOMSettableTokenList* webkit_dom_html_element_get_item_ | ||||
ref(WebKitDOMHTMLElement* self); | ||||
/** | ||||
* webkit_dom_html_element_get_item_prop: | ||||
* @self: A #WebKitDOMHTMLElement | ||||
* | ||||
* This functionality has been removed from WebKit, this function does noth | ||||
ing. | ||||
* | ||||
* Returns: (transfer none): | ||||
* | ||||
**/ | ||||
WEBKIT_API WebKitDOMDOMSettableTokenList* webkit_dom_html_element_get_item_ | ||||
prop(WebKitDOMHTMLElement* self); | ||||
/** | ||||
* webkit_dom_html_element_set_item_scope: | ||||
* @self: A #WebKitDOMHTMLElement | ||||
* @value: A #gboolean | ||||
* | ||||
* This functionality has been removed from WebKit, this function does noth | ||||
ing. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API void webkit_dom_html_element_set_item_scope(WebKitDOMHTMLElement | ||||
* self, gboolean value); | ||||
/** | ||||
* webkit_dom_html_element_get_item_scope: | ||||
* @self: A #WebKitDOMHTMLElement | ||||
* | ||||
* This functionality has been removed from WebKit, this function does noth | ||||
ing. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gboolean webkit_dom_html_element_get_item_scope(WebKitDOMHTMLEle | ||||
ment* self); | ||||
/** | ||||
* webkit_dom_html_element_get_item_type: | ||||
* @self: A #WebKitDOMHTMLElement | ||||
* | ||||
* This functionality has been removed from WebKit, this function does noth | ||||
ing. | ||||
* | ||||
* Returns: (transfer none): | ||||
* | ||||
**/ | ||||
WEBKIT_API void* webkit_dom_html_element_get_item_type(WebKitDOMHTMLElement | ||||
* self); | ||||
WEBKIT_API GType webkit_dom_html_properties_collection_get_type(void); | ||||
/** | ||||
* webkit_dom_html_properties_collection_item: | ||||
* @self: A #WebKitDOMHTMLPropertiesCollection | ||||
* @index: A #gulong | ||||
* | ||||
* The PropertiesCollection object has been removed from WebKit, this funct | ||||
ion does nothing. | ||||
* | ||||
* Returns: (transfer none): | ||||
* | ||||
**/ | ||||
WEBKIT_API WebKitDOMNode* webkit_dom_html_properties_collection_item(void* | ||||
self, gulong index); | ||||
/** | ||||
* webkit_dom_html_properties_collection_named_item: | ||||
* @self: A #WebKitDOMHTMLPropertiesCollection | ||||
* @name: A #gchar | ||||
* | ||||
* The PropertiesCollection object has been removed from WebKit, this funct | ||||
ion does nothing. | ||||
* | ||||
* Returns: (transfer none): | ||||
* | ||||
**/ | ||||
WEBKIT_API void* webkit_dom_html_properties_collection_named_item(void* sel | ||||
f, const gchar* name); | ||||
/** | ||||
* webkit_dom_html_properties_collection_get_length: | ||||
* @self: A #WebKitDOMHTMLPropertiesCollection | ||||
* | ||||
* The PropertiesCollection object has been removed from WebKit, this funct | ||||
ion does nothing. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gulong webkit_dom_html_properties_collection_get_length(void* se | ||||
lf); | ||||
/** | ||||
* webkit_dom_html_properties_collection_get_names: | ||||
* @self: A #WebKitDOMHTMLPropertiesCollection | ||||
* | ||||
* The PropertiesCollection object has been removed from WebKit, this funct | ||||
ion does nothing. | ||||
* | ||||
* Returns: (transfer none): | ||||
* | ||||
**/ | ||||
WEBKIT_API WebKitDOMDOMStringList* webkit_dom_html_properties_collection_ge | ||||
t_names(void* self); | ||||
/** | ||||
* webkit_dom_node_get_attributes: | ||||
* @self: A #WebKitDOMNode | ||||
* | ||||
* This functionality has been removed from WebKit, this function does noth | ||||
ing. | ||||
* | ||||
* Returns: (transfer none): | ||||
* | ||||
**/ | ||||
WEBKIT_API WebKitDOMNamedNodeMap* webkit_dom_node_get_attributes(WebKitDOMN | ||||
ode* self); | ||||
/** | ||||
* webkit_dom_node_has_attributes: | ||||
* @self: A #WebKitDOMNode | ||||
* | ||||
* This functionality has been removed from WebKit, this function does noth | ||||
ing. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gboolean webkit_dom_node_has_attributes(WebKitDOMNode* self); | ||||
WEBKIT_API GType webkit_dom_memory_info_get_type(void); | ||||
/** | ||||
* webkit_dom_memory_info_get_total_js_heap_size: | ||||
* @self: A #WebKitDOMMemoryInfo | ||||
* | ||||
* The MemoryInfo object has been removed from WebKit, this function does n | ||||
othing. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gulong webkit_dom_memory_info_get_total_js_heap_size(void* self) | ||||
; | ||||
/** | ||||
* webkit_dom_memory_info_get_used_js_heap_size: | ||||
* @self: A #WebKitDOMMemoryInfo | ||||
* | ||||
* The MemoryInfo object has been removed from WebKit, this function does n | ||||
othing. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gulong webkit_dom_memory_info_get_used_js_heap_size(void* self); | ||||
/** | ||||
* webkit_dom_memory_info_get_js_heap_size_limit: | ||||
* @self: A #WebKitDOMMemoryInfo | ||||
* | ||||
* The MemoryInfo object has been removed from WebKit, this function does n | ||||
othing. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gulong webkit_dom_memory_info_get_js_heap_size_limit(void* self) | ||||
; | ||||
WEBKIT_API GType webkit_dom_micro_data_item_value_get_type(void); | ||||
/** | ||||
* webkit_dom_performance_get_memory: | ||||
* @self: A #WebKitDOMPerformance | ||||
* | ||||
* This functionality has been removed from WebKit, this function does noth | ||||
ing. | ||||
* | ||||
* Returns: (transfer none): | ||||
* | ||||
**/ | ||||
WEBKIT_API void* webkit_dom_performance_get_memory(WebKitDOMPerformance* se | ||||
lf); | ||||
WEBKIT_API GType webkit_dom_property_node_list_get_type(void); | ||||
/** | ||||
* webkit_dom_property_node_list_item: | ||||
* @self: A #WebKitDOMPropertyNodeList | ||||
* @index: A #gulong | ||||
* | ||||
* The PropertyNodeList object has been removed from WebKit, this function | ||||
does nothing. | ||||
* | ||||
* Returns: (transfer none): | ||||
* | ||||
**/ | ||||
WEBKIT_API WebKitDOMNode* webkit_dom_property_node_list_item(void* self, gu | ||||
long index); | ||||
/** | ||||
* webkit_dom_property_node_list_get_length: | ||||
* @self: A #WebKitDOMPropertyNodeList | ||||
* | ||||
* The PropertyNodeList object has been removed from WebKit, this function | ||||
does nothing. | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gulong webkit_dom_property_node_list_get_length(void* self); | ||||
G_END_DECLS | G_END_DECLS | |||
#endif | #endif | |||
End of changes. 6 change blocks. | ||||
454 lines changed or deleted | 11 lines changed or added | |||
WebKitDOMDOMApplicationCache.h | WebKitDOMDOMApplicationCache.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMApplicationCache_h | #ifndef WebKitDOMDOMApplicationCache_h | |||
#define WebKitDOMDOMApplicationCache_h | #define WebKitDOMDOMApplicationCache_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_dom_application_cache_get_type (void); | webkit_dom_dom_application_cache_get_type (void); | |||
/** | /** | |||
* webkit_dom_dom_application_cache_update: | * webkit_dom_dom_application_cache_update: | |||
* @self: A #WebKitDOMDOMApplicationCache | * @self: A #WebKitDOMDOMApplicationCache | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_application_cache_update(WebKitDOMDOMApplicationCache* self, GError** error); | webkit_dom_dom_application_cache_update(WebKitDOMDOMApplicationCache* self, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_application_cache_swap_cache: | * webkit_dom_dom_application_cache_swap_cache: | |||
* @self: A #WebKitDOMDOMApplicationCache | * @self: A #WebKitDOMDOMApplicationCache | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_application_cache_swap_cache(WebKitDOMDOMApplicationCache* s elf, GError** error); | webkit_dom_dom_application_cache_swap_cache(WebKitDOMDOMApplicationCache* s elf, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_application_cache_abort: | * webkit_dom_dom_application_cache_abort: | |||
* @self: A #WebKitDOMDOMApplicationCache | * @self: A #WebKitDOMDOMApplicationCache | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_application_cache_abort(WebKitDOMDOMApplicationCache* self); | webkit_dom_dom_application_cache_abort(WebKitDOMDOMApplicationCache* self); | |||
#if !defined(WEBKIT_DISABLE_DEPRECATED) | ||||
/** | /** | |||
* webkit_dom_dom_application_cache_dispatch_event: | * webkit_dom_dom_application_cache_dispatch_event: | |||
* @self: A #WebKitDOMDOMApplicationCache | * @self: A #WebKitDOMDOMApplicationCache | |||
* @evt: A #WebKitDOMEvent | * @evt: A #WebKitDOMEvent | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | * | |||
* Deprecated: 2.4: Use webkit_dom_event_target_dispatch_event() instead. | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_DEPRECATED_FOR(webkit_dom_event_target_dispatch_event) gboolean | |||
webkit_dom_dom_application_cache_dispatch_event(WebKitDOMDOMApplicationCach e* self, WebKitDOMEvent* evt, GError** error); | webkit_dom_dom_application_cache_dispatch_event(WebKitDOMDOMApplicationCach e* self, WebKitDOMEvent* evt, GError** error); | |||
#endif /* WEBKIT_DISABLE_DEPRECATED */ | ||||
/** | /** | |||
* webkit_dom_dom_application_cache_get_status: | * webkit_dom_dom_application_cache_get_status: | |||
* @self: A #WebKitDOMDOMApplicationCache | * @self: A #WebKitDOMDOMApplicationCache | |||
* | * | |||
* Returns: | * Returns: A #gushort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gushort | WEBKIT_API gushort | |||
webkit_dom_dom_application_cache_get_status(WebKitDOMDOMApplicationCache* s elf); | webkit_dom_dom_application_cache_get_status(WebKitDOMDOMApplicationCache* s elf); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDOMApplicationCache_h */ | #endif /* WebKitDOMDOMApplicationCache_h */ | |||
End of changes. 10 change blocks. | ||||
29 lines changed or deleted | 25 lines changed or added | |||
WebKitDOMDOMImplementation.h | WebKitDOMDOMImplementation.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMImplementation_h | #ifndef WebKitDOMDOMImplementation_h | |||
#define WebKitDOMDOMImplementation_h | #define WebKitDOMDOMImplementation_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 58 | skipping to change at line 58 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_dom_implementation_get_type (void); | webkit_dom_dom_implementation_get_type (void); | |||
/** | /** | |||
* webkit_dom_dom_implementation_has_feature: | * webkit_dom_dom_implementation_has_feature: | |||
* @self: A #WebKitDOMDOMImplementation | * @self: A #WebKitDOMDOMImplementation | |||
* @feature: A #gchar | * @feature: A #gchar | |||
* @version: A #gchar | * @version: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_implementation_has_feature(WebKitDOMDOMImplementation* self, const gchar* feature, const gchar* version); | webkit_dom_dom_implementation_has_feature(WebKitDOMDOMImplementation* self, const gchar* feature, const gchar* version); | |||
/** | /** | |||
* webkit_dom_dom_implementation_create_document_type: | * webkit_dom_dom_implementation_create_document_type: | |||
* @self: A #WebKitDOMDOMImplementation | * @self: A #WebKitDOMDOMImplementation | |||
* @qualifiedName: A #gchar | * @qualifiedName: A #gchar | |||
* @publicId: A #gchar | * @publicId: A #gchar | |||
* @systemId: A #gchar | * @systemId: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDocumentType | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDocumentType* | WEBKIT_API WebKitDOMDocumentType* | |||
webkit_dom_dom_implementation_create_document_type(WebKitDOMDOMImplementati on* self, const gchar* qualifiedName, const gchar* publicId, const gchar* s ystemId, GError** error); | webkit_dom_dom_implementation_create_document_type(WebKitDOMDOMImplementati on* self, const gchar* qualifiedName, const gchar* publicId, const gchar* s ystemId, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_implementation_create_document: | * webkit_dom_dom_implementation_create_document: | |||
* @self: A #WebKitDOMDOMImplementation | * @self: A #WebKitDOMDOMImplementation | |||
* @namespaceURI: A #gchar | * @namespaceURI: (allow-none): A #gchar | |||
* @qualifiedName: A #gchar | * @qualifiedName: A #gchar | |||
* @doctype: A #WebKitDOMDocumentType | * @doctype: (allow-none): A #WebKitDOMDocumentType | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDocument | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDocument* | WEBKIT_API WebKitDOMDocument* | |||
webkit_dom_dom_implementation_create_document(WebKitDOMDOMImplementation* s elf, const gchar* namespaceURI, const gchar* qualifiedName, WebKitDOMDocume ntType* doctype, GError** error); | webkit_dom_dom_implementation_create_document(WebKitDOMDOMImplementation* s elf, const gchar* namespaceURI, const gchar* qualifiedName, WebKitDOMDocume ntType* doctype, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_implementation_create_css_style_sheet: | * webkit_dom_dom_implementation_create_css_style_sheet: | |||
* @self: A #WebKitDOMDOMImplementation | * @self: A #WebKitDOMDOMImplementation | |||
* @title: A #gchar | * @title: A #gchar | |||
* @media: A #gchar | * @media: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMCSSStyleSheet | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMCSSStyleSheet* | WEBKIT_API WebKitDOMCSSStyleSheet* | |||
webkit_dom_dom_implementation_create_css_style_sheet(WebKitDOMDOMImplementa tion* self, const gchar* title, const gchar* media, GError** error); | webkit_dom_dom_implementation_create_css_style_sheet(WebKitDOMDOMImplementa tion* self, const gchar* title, const gchar* media, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_implementation_create_html_document: | * webkit_dom_dom_implementation_create_html_document: | |||
* @self: A #WebKitDOMDOMImplementation | * @self: A #WebKitDOMDOMImplementation | |||
* @title: A #gchar | * @title: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLDocument | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLDocument* | WEBKIT_API WebKitDOMHTMLDocument* | |||
webkit_dom_dom_implementation_create_html_document(WebKitDOMDOMImplementati on* self, const gchar* title); | webkit_dom_dom_implementation_create_html_document(WebKitDOMDOMImplementati on* self, const gchar* title); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDOMImplementation_h */ | #endif /* WebKitDOMDOMImplementation_h */ | |||
End of changes. 8 change blocks. | ||||
31 lines changed or deleted | 26 lines changed or added | |||
WebKitDOMDOMMimeType.h | WebKitDOMDOMMimeType.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMMimeType_h | #ifndef WebKitDOMDOMMimeType_h | |||
#define WebKitDOMDOMMimeType_h | #define WebKitDOMDOMMimeType_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_dom_mime_type_get_type (void); | webkit_dom_dom_mime_type_get_type (void); | |||
/** | /** | |||
* webkit_dom_dom_mime_type_get_suffixes: | * webkit_dom_dom_mime_type_get_suffixes: | |||
* @self: A #WebKitDOMDOMMimeType | * @self: A #WebKitDOMDOMMimeType | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_dom_mime_type_get_suffixes(WebKitDOMDOMMimeType* self); | webkit_dom_dom_mime_type_get_suffixes(WebKitDOMDOMMimeType* self); | |||
/** | /** | |||
* webkit_dom_dom_mime_type_get_description: | * webkit_dom_dom_mime_type_get_description: | |||
* @self: A #WebKitDOMDOMMimeType | * @self: A #WebKitDOMDOMMimeType | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_dom_mime_type_get_description(WebKitDOMDOMMimeType* self); | webkit_dom_dom_mime_type_get_description(WebKitDOMDOMMimeType* self); | |||
/** | /** | |||
* webkit_dom_dom_mime_type_get_enabled_plugin: | * webkit_dom_dom_mime_type_get_enabled_plugin: | |||
* @self: A #WebKitDOMDOMMimeType | * @self: A #WebKitDOMDOMMimeType | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMPlugin | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMPlugin* | WEBKIT_API WebKitDOMDOMPlugin* | |||
webkit_dom_dom_mime_type_get_enabled_plugin(WebKitDOMDOMMimeType* self); | webkit_dom_dom_mime_type_get_enabled_plugin(WebKitDOMDOMMimeType* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDOMMimeType_h */ | #endif /* WebKitDOMDOMMimeType_h */ | |||
End of changes. 4 change blocks. | ||||
25 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMDOMMimeTypeArray.h | WebKitDOMDOMMimeTypeArray.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMMimeTypeArray_h | #ifndef WebKitDOMDOMMimeTypeArray_h | |||
#define WebKitDOMDOMMimeTypeArray_h | #define WebKitDOMDOMMimeTypeArray_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_dom_mime_type_array_get_type (void); | webkit_dom_dom_mime_type_array_get_type (void); | |||
/** | /** | |||
* webkit_dom_dom_mime_type_array_item: | * webkit_dom_dom_mime_type_array_item: | |||
* @self: A #WebKitDOMDOMMimeTypeArray | * @self: A #WebKitDOMDOMMimeTypeArray | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMMimeType | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMMimeType* | WEBKIT_API WebKitDOMDOMMimeType* | |||
webkit_dom_dom_mime_type_array_item(WebKitDOMDOMMimeTypeArray* self, gulong index); | webkit_dom_dom_mime_type_array_item(WebKitDOMDOMMimeTypeArray* self, gulong index); | |||
/** | /** | |||
* webkit_dom_dom_mime_type_array_named_item: | * webkit_dom_dom_mime_type_array_named_item: | |||
* @self: A #WebKitDOMDOMMimeTypeArray | * @self: A #WebKitDOMDOMMimeTypeArray | |||
* @name: A #gchar | * @name: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMMimeType | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMMimeType* | WEBKIT_API WebKitDOMDOMMimeType* | |||
webkit_dom_dom_mime_type_array_named_item(WebKitDOMDOMMimeTypeArray* self, const gchar* name); | webkit_dom_dom_mime_type_array_named_item(WebKitDOMDOMMimeTypeArray* self, const gchar* name); | |||
/** | /** | |||
* webkit_dom_dom_mime_type_array_get_length: | * webkit_dom_dom_mime_type_array_get_length: | |||
* @self: A #WebKitDOMDOMMimeTypeArray | * @self: A #WebKitDOMDOMMimeTypeArray | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_dom_mime_type_array_get_length(WebKitDOMDOMMimeTypeArray* self); | webkit_dom_dom_mime_type_array_get_length(WebKitDOMDOMMimeTypeArray* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDOMMimeTypeArray_h */ | #endif /* WebKitDOMDOMMimeTypeArray_h */ | |||
End of changes. 4 change blocks. | ||||
25 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMDOMNamedFlowCollection.h | WebKitDOMDOMNamedFlowCollection.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMNamedFlowCollection_h | #ifndef WebKitDOMDOMNamedFlowCollection_h | |||
#define WebKitDOMDOMNamedFlowCollection_h | #define WebKitDOMDOMNamedFlowCollection_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_dom_named_flow_collection_get_type (void); | webkit_dom_dom_named_flow_collection_get_type (void); | |||
/** | /** | |||
* webkit_dom_dom_named_flow_collection_item: | * webkit_dom_dom_named_flow_collection_item: | |||
* @self: A #WebKitDOMDOMNamedFlowCollection | * @self: A #WebKitDOMDOMNamedFlowCollection | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMWebKitNamedFlow | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMWebKitNamedFlow* | WEBKIT_API WebKitDOMWebKitNamedFlow* | |||
webkit_dom_dom_named_flow_collection_item(WebKitDOMDOMNamedFlowCollection* self, gulong index); | webkit_dom_dom_named_flow_collection_item(WebKitDOMDOMNamedFlowCollection* self, gulong index); | |||
/** | /** | |||
* webkit_dom_dom_named_flow_collection_named_item: | * webkit_dom_dom_named_flow_collection_named_item: | |||
* @self: A #WebKitDOMDOMNamedFlowCollection | * @self: A #WebKitDOMDOMNamedFlowCollection | |||
* @name: A #gchar | * @name: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMWebKitNamedFlow | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMWebKitNamedFlow* | WEBKIT_API WebKitDOMWebKitNamedFlow* | |||
webkit_dom_dom_named_flow_collection_named_item(WebKitDOMDOMNamedFlowCollec tion* self, const gchar* name); | webkit_dom_dom_named_flow_collection_named_item(WebKitDOMDOMNamedFlowCollec tion* self, const gchar* name); | |||
/** | /** | |||
* webkit_dom_dom_named_flow_collection_get_length: | * webkit_dom_dom_named_flow_collection_get_length: | |||
* @self: A #WebKitDOMDOMNamedFlowCollection | * @self: A #WebKitDOMDOMNamedFlowCollection | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_dom_named_flow_collection_get_length(WebKitDOMDOMNamedFlowCollec tion* self); | webkit_dom_dom_named_flow_collection_get_length(WebKitDOMDOMNamedFlowCollec tion* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDOMNamedFlowCollection_h */ | #endif /* WebKitDOMDOMNamedFlowCollection_h */ | |||
End of changes. 4 change blocks. | ||||
25 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMDOMPlugin.h | WebKitDOMDOMPlugin.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMPlugin_h | #ifndef WebKitDOMDOMPlugin_h | |||
#define WebKitDOMDOMPlugin_h | #define WebKitDOMDOMPlugin_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_dom_plugin_get_type (void); | webkit_dom_dom_plugin_get_type (void); | |||
/** | /** | |||
* webkit_dom_dom_plugin_item: | * webkit_dom_dom_plugin_item: | |||
* @self: A #WebKitDOMDOMPlugin | * @self: A #WebKitDOMDOMPlugin | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMMimeType | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMMimeType* | WEBKIT_API WebKitDOMDOMMimeType* | |||
webkit_dom_dom_plugin_item(WebKitDOMDOMPlugin* self, gulong index); | webkit_dom_dom_plugin_item(WebKitDOMDOMPlugin* self, gulong index); | |||
/** | /** | |||
* webkit_dom_dom_plugin_named_item: | * webkit_dom_dom_plugin_named_item: | |||
* @self: A #WebKitDOMDOMPlugin | * @self: A #WebKitDOMDOMPlugin | |||
* @name: A #gchar | * @name: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMMimeType | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMMimeType* | WEBKIT_API WebKitDOMDOMMimeType* | |||
webkit_dom_dom_plugin_named_item(WebKitDOMDOMPlugin* self, const gchar* nam e); | webkit_dom_dom_plugin_named_item(WebKitDOMDOMPlugin* self, const gchar* nam e); | |||
/** | /** | |||
* webkit_dom_dom_plugin_get_name: | * webkit_dom_dom_plugin_get_name: | |||
* @self: A #WebKitDOMDOMPlugin | * @self: A #WebKitDOMDOMPlugin | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_dom_plugin_get_name(WebKitDOMDOMPlugin* self); | webkit_dom_dom_plugin_get_name(WebKitDOMDOMPlugin* self); | |||
/** | /** | |||
* webkit_dom_dom_plugin_get_filename: | * webkit_dom_dom_plugin_get_filename: | |||
* @self: A #WebKitDOMDOMPlugin | * @self: A #WebKitDOMDOMPlugin | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_dom_plugin_get_filename(WebKitDOMDOMPlugin* self); | webkit_dom_dom_plugin_get_filename(WebKitDOMDOMPlugin* self); | |||
/** | /** | |||
* webkit_dom_dom_plugin_get_description: | * webkit_dom_dom_plugin_get_description: | |||
* @self: A #WebKitDOMDOMPlugin | * @self: A #WebKitDOMDOMPlugin | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_dom_plugin_get_description(WebKitDOMDOMPlugin* self); | webkit_dom_dom_plugin_get_description(WebKitDOMDOMPlugin* self); | |||
/** | /** | |||
* webkit_dom_dom_plugin_get_length: | * webkit_dom_dom_plugin_get_length: | |||
* @self: A #WebKitDOMDOMPlugin | * @self: A #WebKitDOMDOMPlugin | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_dom_plugin_get_length(WebKitDOMDOMPlugin* self); | webkit_dom_dom_plugin_get_length(WebKitDOMDOMPlugin* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDOMPlugin_h */ | #endif /* WebKitDOMDOMPlugin_h */ | |||
End of changes. 7 change blocks. | ||||
31 lines changed or deleted | 25 lines changed or added | |||
WebKitDOMDOMPluginArray.h | WebKitDOMDOMPluginArray.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMPluginArray_h | #ifndef WebKitDOMDOMPluginArray_h | |||
#define WebKitDOMDOMPluginArray_h | #define WebKitDOMDOMPluginArray_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_dom_plugin_array_get_type (void); | webkit_dom_dom_plugin_array_get_type (void); | |||
/** | /** | |||
* webkit_dom_dom_plugin_array_item: | * webkit_dom_dom_plugin_array_item: | |||
* @self: A #WebKitDOMDOMPluginArray | * @self: A #WebKitDOMDOMPluginArray | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMPlugin | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMPlugin* | WEBKIT_API WebKitDOMDOMPlugin* | |||
webkit_dom_dom_plugin_array_item(WebKitDOMDOMPluginArray* self, gulong inde x); | webkit_dom_dom_plugin_array_item(WebKitDOMDOMPluginArray* self, gulong inde x); | |||
/** | /** | |||
* webkit_dom_dom_plugin_array_named_item: | * webkit_dom_dom_plugin_array_named_item: | |||
* @self: A #WebKitDOMDOMPluginArray | * @self: A #WebKitDOMDOMPluginArray | |||
* @name: A #gchar | * @name: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMPlugin | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMPlugin* | WEBKIT_API WebKitDOMDOMPlugin* | |||
webkit_dom_dom_plugin_array_named_item(WebKitDOMDOMPluginArray* self, const gchar* name); | webkit_dom_dom_plugin_array_named_item(WebKitDOMDOMPluginArray* self, const gchar* name); | |||
/** | /** | |||
* webkit_dom_dom_plugin_array_refresh: | * webkit_dom_dom_plugin_array_refresh: | |||
* @self: A #WebKitDOMDOMPluginArray | * @self: A #WebKitDOMDOMPluginArray | |||
* @reload: A #gboolean | * @reload: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_plugin_array_refresh(WebKitDOMDOMPluginArray* self, gboolean reload); | webkit_dom_dom_plugin_array_refresh(WebKitDOMDOMPluginArray* self, gboolean reload); | |||
/** | /** | |||
* webkit_dom_dom_plugin_array_get_length: | * webkit_dom_dom_plugin_array_get_length: | |||
* @self: A #WebKitDOMDOMPluginArray | * @self: A #WebKitDOMDOMPluginArray | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_dom_plugin_array_get_length(WebKitDOMDOMPluginArray* self); | webkit_dom_dom_plugin_array_get_length(WebKitDOMDOMPluginArray* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDOMPluginArray_h */ | #endif /* WebKitDOMDOMPluginArray_h */ | |||
End of changes. 5 change blocks. | ||||
27 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMDOMSecurityPolicy.h | WebKitDOMDOMSecurityPolicy.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMSecurityPolicy_h | #ifndef WebKitDOMDOMSecurityPolicy_h | |||
#define WebKitDOMDOMSecurityPolicy_h | #define WebKitDOMDOMSecurityPolicy_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_dom_security_policy_get_type (void); | webkit_dom_dom_security_policy_get_type (void); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_allows_connection_to: | * webkit_dom_dom_security_policy_allows_connection_to: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* @url: A #gchar | * @url: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_security_policy_allows_connection_to(WebKitDOMDOMSecurityPol icy* self, const gchar* url); | webkit_dom_dom_security_policy_allows_connection_to(WebKitDOMDOMSecurityPol icy* self, const gchar* url); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_allows_font_from: | * webkit_dom_dom_security_policy_allows_font_from: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* @url: A #gchar | * @url: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_security_policy_allows_font_from(WebKitDOMDOMSecurityPolicy* self, const gchar* url); | webkit_dom_dom_security_policy_allows_font_from(WebKitDOMDOMSecurityPolicy* self, const gchar* url); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_allows_form_action: | * webkit_dom_dom_security_policy_allows_form_action: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* @url: A #gchar | * @url: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_security_policy_allows_form_action(WebKitDOMDOMSecurityPolic y* self, const gchar* url); | webkit_dom_dom_security_policy_allows_form_action(WebKitDOMDOMSecurityPolic y* self, const gchar* url); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_allows_frame_from: | * webkit_dom_dom_security_policy_allows_frame_from: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* @url: A #gchar | * @url: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_security_policy_allows_frame_from(WebKitDOMDOMSecurityPolicy * self, const gchar* url); | webkit_dom_dom_security_policy_allows_frame_from(WebKitDOMDOMSecurityPolicy * self, const gchar* url); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_allows_image_from: | * webkit_dom_dom_security_policy_allows_image_from: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* @url: A #gchar | * @url: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_security_policy_allows_image_from(WebKitDOMDOMSecurityPolicy * self, const gchar* url); | webkit_dom_dom_security_policy_allows_image_from(WebKitDOMDOMSecurityPolicy * self, const gchar* url); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_allows_media_from: | * webkit_dom_dom_security_policy_allows_media_from: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* @url: A #gchar | * @url: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_security_policy_allows_media_from(WebKitDOMDOMSecurityPolicy * self, const gchar* url); | webkit_dom_dom_security_policy_allows_media_from(WebKitDOMDOMSecurityPolicy * self, const gchar* url); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_allows_object_from: | * webkit_dom_dom_security_policy_allows_object_from: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* @url: A #gchar | * @url: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_security_policy_allows_object_from(WebKitDOMDOMSecurityPolic y* self, const gchar* url); | webkit_dom_dom_security_policy_allows_object_from(WebKitDOMDOMSecurityPolic y* self, const gchar* url); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_allows_plugin_type: | * webkit_dom_dom_security_policy_allows_plugin_type: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* @type: A #gchar | * @type: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_security_policy_allows_plugin_type(WebKitDOMDOMSecurityPolic y* self, const gchar* type); | webkit_dom_dom_security_policy_allows_plugin_type(WebKitDOMDOMSecurityPolic y* self, const gchar* type); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_allows_script_from: | * webkit_dom_dom_security_policy_allows_script_from: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* @url: A #gchar | * @url: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_security_policy_allows_script_from(WebKitDOMDOMSecurityPolic y* self, const gchar* url); | webkit_dom_dom_security_policy_allows_script_from(WebKitDOMDOMSecurityPolic y* self, const gchar* url); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_allows_style_from: | * webkit_dom_dom_security_policy_allows_style_from: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* @url: A #gchar | * @url: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_security_policy_allows_style_from(WebKitDOMDOMSecurityPolicy * self, const gchar* url); | webkit_dom_dom_security_policy_allows_style_from(WebKitDOMDOMSecurityPolicy * self, const gchar* url); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_get_allows_eval: | * webkit_dom_dom_security_policy_get_allows_eval: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_security_policy_get_allows_eval(WebKitDOMDOMSecurityPolicy* self); | webkit_dom_dom_security_policy_get_allows_eval(WebKitDOMDOMSecurityPolicy* self); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_get_allows_inline_script: | * webkit_dom_dom_security_policy_get_allows_inline_script: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_security_policy_get_allows_inline_script(WebKitDOMDOMSecurit yPolicy* self); | webkit_dom_dom_security_policy_get_allows_inline_script(WebKitDOMDOMSecurit yPolicy* self); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_get_allows_inline_style: | * webkit_dom_dom_security_policy_get_allows_inline_style: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_security_policy_get_allows_inline_style(WebKitDOMDOMSecurity Policy* self); | webkit_dom_dom_security_policy_get_allows_inline_style(WebKitDOMDOMSecurity Policy* self); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_get_is_active: | * webkit_dom_dom_security_policy_get_is_active: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_security_policy_get_is_active(WebKitDOMDOMSecurityPolicy* se lf); | webkit_dom_dom_security_policy_get_is_active(WebKitDOMDOMSecurityPolicy* se lf); | |||
/** | /** | |||
* webkit_dom_dom_security_policy_get_report_ur_is: | * webkit_dom_dom_security_policy_get_report_ur_is: | |||
* @self: A #WebKitDOMDOMSecurityPolicy | * @self: A #WebKitDOMDOMSecurityPolicy | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMStringList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMStringList* | WEBKIT_API WebKitDOMDOMStringList* | |||
webkit_dom_dom_security_policy_get_report_ur_is(WebKitDOMDOMSecurityPolicy* self); | webkit_dom_dom_security_policy_get_report_ur_is(WebKitDOMDOMSecurityPolicy* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDOMSecurityPolicy_h */ | #endif /* WebKitDOMDOMSecurityPolicy_h */ | |||
End of changes. 16 change blocks. | ||||
49 lines changed or deleted | 34 lines changed or added | |||
WebKitDOMDOMSelection.h | WebKitDOMDOMSelection.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMSelection_h | #ifndef WebKitDOMDOMSelection_h | |||
#define WebKitDOMDOMSelection_h | #define WebKitDOMDOMSelection_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 59 | skipping to change at line 59 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_dom_selection_get_type (void); | webkit_dom_dom_selection_get_type (void); | |||
/** | /** | |||
* webkit_dom_dom_selection_collapse: | * webkit_dom_dom_selection_collapse: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* @node: A #WebKitDOMNode | * @node: A #WebKitDOMNode | |||
* @index: A #glong | * @index: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_selection_collapse(WebKitDOMDOMSelection* self, WebKitDOMNod e* node, glong index, GError** error); | webkit_dom_dom_selection_collapse(WebKitDOMDOMSelection* self, WebKitDOMNod e* node, glong index, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_selection_collapse_to_end: | * webkit_dom_dom_selection_collapse_to_end: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_selection_collapse_to_end(WebKitDOMDOMSelection* self, GErro r** error); | webkit_dom_dom_selection_collapse_to_end(WebKitDOMDOMSelection* self, GErro r** error); | |||
/** | /** | |||
* webkit_dom_dom_selection_collapse_to_start: | * webkit_dom_dom_selection_collapse_to_start: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_selection_collapse_to_start(WebKitDOMDOMSelection* self, GEr ror** error); | webkit_dom_dom_selection_collapse_to_start(WebKitDOMDOMSelection* self, GEr ror** error); | |||
/** | /** | |||
* webkit_dom_dom_selection_delete_from_document: | * webkit_dom_dom_selection_delete_from_document: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_selection_delete_from_document(WebKitDOMDOMSelection* self); | webkit_dom_dom_selection_delete_from_document(WebKitDOMDOMSelection* self); | |||
/** | /** | |||
* webkit_dom_dom_selection_contains_node: | * webkit_dom_dom_selection_contains_node: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* @node: A #WebKitDOMNode | * @node: A #WebKitDOMNode | |||
* @allowPartial: A #gboolean | * @allowPartial: A #gboolean | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_selection_contains_node(WebKitDOMDOMSelection* self, WebKitD OMNode* node, gboolean allowPartial); | webkit_dom_dom_selection_contains_node(WebKitDOMDOMSelection* self, WebKitD OMNode* node, gboolean allowPartial); | |||
/** | /** | |||
* webkit_dom_dom_selection_select_all_children: | * webkit_dom_dom_selection_select_all_children: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* @node: A #WebKitDOMNode | * @node: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_selection_select_all_children(WebKitDOMDOMSelection* self, W ebKitDOMNode* node, GError** error); | webkit_dom_dom_selection_select_all_children(WebKitDOMDOMSelection* self, W ebKitDOMNode* node, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_selection_extend: | * webkit_dom_dom_selection_extend: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* @node: A #WebKitDOMNode | * @node: A #WebKitDOMNode | |||
* @offset: A #glong | * @offset: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_selection_extend(WebKitDOMDOMSelection* self, WebKitDOMNode* node, glong offset, GError** error); | webkit_dom_dom_selection_extend(WebKitDOMDOMSelection* self, WebKitDOMNode* node, glong offset, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_selection_get_range_at: | * webkit_dom_dom_selection_get_range_at: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* @index: A #glong | * @index: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMRange | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMRange* | WEBKIT_API WebKitDOMRange* | |||
webkit_dom_dom_selection_get_range_at(WebKitDOMDOMSelection* self, glong in dex, GError** error); | webkit_dom_dom_selection_get_range_at(WebKitDOMDOMSelection* self, glong in dex, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_selection_remove_all_ranges: | * webkit_dom_dom_selection_remove_all_ranges: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_selection_remove_all_ranges(WebKitDOMDOMSelection* self); | webkit_dom_dom_selection_remove_all_ranges(WebKitDOMDOMSelection* self); | |||
/** | /** | |||
* webkit_dom_dom_selection_add_range: | * webkit_dom_dom_selection_add_range: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* @range: A #WebKitDOMRange | * @range: A #WebKitDOMRange | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_selection_add_range(WebKitDOMDOMSelection* self, WebKitDOMRa nge* range); | webkit_dom_dom_selection_add_range(WebKitDOMDOMSelection* self, WebKitDOMRa nge* range); | |||
/** | /** | |||
* webkit_dom_dom_selection_modify: | * webkit_dom_dom_selection_modify: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* @alter: A #gchar | * @alter: A #gchar | |||
* @direction: A #gchar | * @direction: A #gchar | |||
* @granularity: A #gchar | * @granularity: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_selection_modify(WebKitDOMDOMSelection* self, const gchar* a lter, const gchar* direction, const gchar* granularity); | webkit_dom_dom_selection_modify(WebKitDOMDOMSelection* self, const gchar* a lter, const gchar* direction, const gchar* granularity); | |||
/** | /** | |||
* webkit_dom_dom_selection_set_base_and_extent: | * webkit_dom_dom_selection_set_base_and_extent: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* @baseNode: A #WebKitDOMNode | * @baseNode: A #WebKitDOMNode | |||
* @baseOffset: A #glong | * @baseOffset: A #glong | |||
* @extentNode: A #WebKitDOMNode | * @extentNode: A #WebKitDOMNode | |||
* @extentOffset: A #glong | * @extentOffset: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_selection_set_base_and_extent(WebKitDOMDOMSelection* self, W ebKitDOMNode* baseNode, glong baseOffset, WebKitDOMNode* extentNode, glong extentOffset, GError** error); | webkit_dom_dom_selection_set_base_and_extent(WebKitDOMDOMSelection* self, W ebKitDOMNode* baseNode, glong baseOffset, WebKitDOMNode* extentNode, glong extentOffset, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_selection_set_position: | * webkit_dom_dom_selection_set_position: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* @node: A #WebKitDOMNode | * @node: A #WebKitDOMNode | |||
* @offset: A #glong | * @offset: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_selection_set_position(WebKitDOMDOMSelection* self, WebKitDO MNode* node, glong offset, GError** error); | webkit_dom_dom_selection_set_position(WebKitDOMDOMSelection* self, WebKitDO MNode* node, glong offset, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_selection_empty: | * webkit_dom_dom_selection_empty: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_selection_empty(WebKitDOMDOMSelection* self); | webkit_dom_dom_selection_empty(WebKitDOMDOMSelection* self); | |||
/** | /** | |||
* webkit_dom_dom_selection_get_anchor_node: | * webkit_dom_dom_selection_get_anchor_node: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_dom_selection_get_anchor_node(WebKitDOMDOMSelection* self); | webkit_dom_dom_selection_get_anchor_node(WebKitDOMDOMSelection* self); | |||
/** | /** | |||
* webkit_dom_dom_selection_get_anchor_offset: | * webkit_dom_dom_selection_get_anchor_offset: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_selection_get_anchor_offset(WebKitDOMDOMSelection* self); | webkit_dom_dom_selection_get_anchor_offset(WebKitDOMDOMSelection* self); | |||
/** | /** | |||
* webkit_dom_dom_selection_get_focus_node: | * webkit_dom_dom_selection_get_focus_node: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_dom_selection_get_focus_node(WebKitDOMDOMSelection* self); | webkit_dom_dom_selection_get_focus_node(WebKitDOMDOMSelection* self); | |||
/** | /** | |||
* webkit_dom_dom_selection_get_focus_offset: | * webkit_dom_dom_selection_get_focus_offset: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_selection_get_focus_offset(WebKitDOMDOMSelection* self); | webkit_dom_dom_selection_get_focus_offset(WebKitDOMDOMSelection* self); | |||
/** | /** | |||
* webkit_dom_dom_selection_get_is_collapsed: | * webkit_dom_dom_selection_get_is_collapsed: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_selection_get_is_collapsed(WebKitDOMDOMSelection* self); | webkit_dom_dom_selection_get_is_collapsed(WebKitDOMDOMSelection* self); | |||
/** | /** | |||
* webkit_dom_dom_selection_get_range_count: | * webkit_dom_dom_selection_get_range_count: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_selection_get_range_count(WebKitDOMDOMSelection* self); | webkit_dom_dom_selection_get_range_count(WebKitDOMDOMSelection* self); | |||
/** | /** | |||
* webkit_dom_dom_selection_get_base_node: | * webkit_dom_dom_selection_get_base_node: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_dom_selection_get_base_node(WebKitDOMDOMSelection* self); | webkit_dom_dom_selection_get_base_node(WebKitDOMDOMSelection* self); | |||
/** | /** | |||
* webkit_dom_dom_selection_get_base_offset: | * webkit_dom_dom_selection_get_base_offset: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_selection_get_base_offset(WebKitDOMDOMSelection* self); | webkit_dom_dom_selection_get_base_offset(WebKitDOMDOMSelection* self); | |||
/** | /** | |||
* webkit_dom_dom_selection_get_extent_node: | * webkit_dom_dom_selection_get_extent_node: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_dom_selection_get_extent_node(WebKitDOMDOMSelection* self); | webkit_dom_dom_selection_get_extent_node(WebKitDOMDOMSelection* self); | |||
/** | /** | |||
* webkit_dom_dom_selection_get_extent_offset: | * webkit_dom_dom_selection_get_extent_offset: | |||
* @self: A #WebKitDOMDOMSelection | * @self: A #WebKitDOMDOMSelection | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_selection_get_extent_offset(WebKitDOMDOMSelection* self); | webkit_dom_dom_selection_get_extent_offset(WebKitDOMDOMSelection* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDOMSelection_h */ | #endif /* WebKitDOMDOMSelection_h */ | |||
End of changes. 25 change blocks. | ||||
67 lines changed or deleted | 31 lines changed or added | |||
WebKitDOMDOMSettableTokenList.h | WebKitDOMDOMSettableTokenList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMSettableTokenList_h | #ifndef WebKitDOMDOMSettableTokenList_h | |||
#define WebKitDOMDOMSettableTokenList_h | #define WebKitDOMDOMSettableTokenList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMDOMTokenList.h> | #include <webkitdom/WebKitDOMDOMTokenList.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMDOMTokenListClass parent_class; | WebKitDOMDOMTokenListClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_dom_settable_token_list_get_type (void); | webkit_dom_dom_settable_token_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_dom_settable_token_list_get_value: | * webkit_dom_dom_settable_token_list_get_value: | |||
* @self: A #WebKitDOMDOMSettableTokenList | * @self: A #WebKitDOMDOMSettableTokenList | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_dom_settable_token_list_get_value(WebKitDOMDOMSettableTokenList* self); | webkit_dom_dom_settable_token_list_get_value(WebKitDOMDOMSettableTokenList* self); | |||
/** | /** | |||
* webkit_dom_dom_settable_token_list_set_value: | * webkit_dom_dom_settable_token_list_set_value: | |||
* @self: A #WebKitDOMDOMSettableTokenList | * @self: A #WebKitDOMDOMSettableTokenList | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_settable_token_list_set_value(WebKitDOMDOMSettableTokenList* self, const gchar* value); | webkit_dom_dom_settable_token_list_set_value(WebKitDOMDOMSettableTokenList* self, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDOMSettableTokenList_h */ | #endif /* WebKitDOMDOMSettableTokenList_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMDOMStringList.h | WebKitDOMDOMStringList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMStringList_h | #ifndef WebKitDOMDOMStringList_h | |||
#define WebKitDOMDOMStringList_h | #define WebKitDOMDOMStringList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_dom_string_list_get_type (void); | webkit_dom_dom_string_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_dom_string_list_item: | * webkit_dom_dom_string_list_item: | |||
* @self: A #WebKitDOMDOMStringList | * @self: A #WebKitDOMDOMStringList | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_dom_string_list_item(WebKitDOMDOMStringList* self, gulong index) ; | webkit_dom_dom_string_list_item(WebKitDOMDOMStringList* self, gulong index) ; | |||
/** | /** | |||
* webkit_dom_dom_string_list_contains: | * webkit_dom_dom_string_list_contains: | |||
* @self: A #WebKitDOMDOMStringList | * @self: A #WebKitDOMDOMStringList | |||
* @string: A #gchar | * @string: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_string_list_contains(WebKitDOMDOMStringList* self, const gch ar* string); | webkit_dom_dom_string_list_contains(WebKitDOMDOMStringList* self, const gch ar* string); | |||
/** | /** | |||
* webkit_dom_dom_string_list_get_length: | * webkit_dom_dom_string_list_get_length: | |||
* @self: A #WebKitDOMDOMStringList | * @self: A #WebKitDOMDOMStringList | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_dom_string_list_get_length(WebKitDOMDOMStringList* self); | webkit_dom_dom_string_list_get_length(WebKitDOMDOMStringList* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDOMStringList_h */ | #endif /* WebKitDOMDOMStringList_h */ | |||
End of changes. 4 change blocks. | ||||
25 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMDOMStringMap.h | WebKitDOMDOMStringMap.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMStringMap_h | #ifndef WebKitDOMDOMStringMap_h | |||
#define WebKitDOMDOMStringMap_h | #define WebKitDOMDOMStringMap_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
End of changes. 1 change blocks. | ||||
19 lines changed or deleted | 19 lines changed or added | |||
WebKitDOMDOMTokenList.h | WebKitDOMDOMTokenList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMTokenList_h | #ifndef WebKitDOMDOMTokenList_h | |||
#define WebKitDOMDOMTokenList_h | #define WebKitDOMDOMTokenList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_dom_token_list_get_type (void); | webkit_dom_dom_token_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_dom_token_list_item: | * webkit_dom_dom_token_list_item: | |||
* @self: A #WebKitDOMDOMTokenList | * @self: A #WebKitDOMDOMTokenList | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_dom_token_list_item(WebKitDOMDOMTokenList* self, gulong index); | webkit_dom_dom_token_list_item(WebKitDOMDOMTokenList* self, gulong index); | |||
/** | /** | |||
* webkit_dom_dom_token_list_contains: | * webkit_dom_dom_token_list_contains: | |||
* @self: A #WebKitDOMDOMTokenList | * @self: A #WebKitDOMDOMTokenList | |||
* @token: A #gchar | * @token: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_token_list_contains(WebKitDOMDOMTokenList* self, const gchar * token, GError** error); | webkit_dom_dom_token_list_contains(WebKitDOMDOMTokenList* self, const gchar * token, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_token_list_add: | * webkit_dom_dom_token_list_add: | |||
* @self: A #WebKitDOMDOMTokenList | * @self: A #WebKitDOMDOMTokenList | |||
* @tokens: A #gchar | * @tokens: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_token_list_add(WebKitDOMDOMTokenList* self, const gchar* tok ens, GError** error); | webkit_dom_dom_token_list_add(WebKitDOMDOMTokenList* self, const gchar* tok ens, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_token_list_remove: | * webkit_dom_dom_token_list_remove: | |||
* @self: A #WebKitDOMDOMTokenList | * @self: A #WebKitDOMDOMTokenList | |||
* @tokens: A #gchar | * @tokens: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_token_list_remove(WebKitDOMDOMTokenList* self, const gchar* tokens, GError** error); | webkit_dom_dom_token_list_remove(WebKitDOMDOMTokenList* self, const gchar* tokens, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_token_list_toggle: | * webkit_dom_dom_token_list_toggle: | |||
* @self: A #WebKitDOMDOMTokenList | * @self: A #WebKitDOMDOMTokenList | |||
* @token: A #gchar | * @token: A #gchar | |||
* @force: A #gboolean | * @force: A #gboolean | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_token_list_toggle(WebKitDOMDOMTokenList* self, const gchar* token, gboolean force, GError** error); | webkit_dom_dom_token_list_toggle(WebKitDOMDOMTokenList* self, const gchar* token, gboolean force, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_token_list_get_length: | * webkit_dom_dom_token_list_get_length: | |||
* @self: A #WebKitDOMDOMTokenList | * @self: A #WebKitDOMDOMTokenList | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_dom_token_list_get_length(WebKitDOMDOMTokenList* self); | webkit_dom_dom_token_list_get_length(WebKitDOMDOMTokenList* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDOMTokenList_h */ | #endif /* WebKitDOMDOMTokenList_h */ | |||
End of changes. 7 change blocks. | ||||
31 lines changed or deleted | 23 lines changed or added | |||
WebKitDOMDOMWindow.h | WebKitDOMDOMWindow.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMWindow_h | #ifndef WebKitDOMDOMWindow_h | |||
#define WebKitDOMDOMWindow_h | #define WebKitDOMDOMWindow_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_dom_window_get_type (void); | webkit_dom_dom_window_get_type (void); | |||
/** | /** | |||
* webkit_dom_dom_window_get_selection: | * webkit_dom_dom_window_get_selection: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMSelection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMSelection* | WEBKIT_API WebKitDOMDOMSelection* | |||
webkit_dom_dom_window_get_selection(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_selection(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_focus: | * webkit_dom_dom_window_focus: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_focus(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_focus(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_blur: | * webkit_dom_dom_window_blur: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_blur(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_blur(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_close: | * webkit_dom_dom_window_close: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_close(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_close(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_print: | * webkit_dom_dom_window_print: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_print(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_print(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_stop: | * webkit_dom_dom_window_stop: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_stop(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_stop(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_alert: | * webkit_dom_dom_window_alert: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @message: A #gchar | * @message: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_alert(WebKitDOMDOMWindow* self, const gchar* message) ; | webkit_dom_dom_window_alert(WebKitDOMDOMWindow* self, const gchar* message) ; | |||
/** | /** | |||
* webkit_dom_dom_window_confirm: | * webkit_dom_dom_window_confirm: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @message: A #gchar | * @message: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_window_confirm(WebKitDOMDOMWindow* self, const gchar* messag e); | webkit_dom_dom_window_confirm(WebKitDOMDOMWindow* self, const gchar* messag e); | |||
/** | /** | |||
* webkit_dom_dom_window_prompt: | * webkit_dom_dom_window_prompt: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @message: A #gchar | * @message: A #gchar | |||
* @defaultValue: A #gchar | * @defaultValue: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_dom_window_prompt(WebKitDOMDOMWindow* self, const gchar* message , const gchar* defaultValue); | webkit_dom_dom_window_prompt(WebKitDOMDOMWindow* self, const gchar* message , const gchar* defaultValue); | |||
/** | /** | |||
* webkit_dom_dom_window_find: | * webkit_dom_dom_window_find: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @string: A #gchar | * @string: A #gchar | |||
* @caseSensitive: A #gboolean | * @caseSensitive: A #gboolean | |||
* @backwards: A #gboolean | * @backwards: A #gboolean | |||
* @wrap: A #gboolean | * @wrap: A #gboolean | |||
* @wholeWord: A #gboolean | * @wholeWord: A #gboolean | |||
* @searchInFrames: A #gboolean | * @searchInFrames: A #gboolean | |||
* @showDialog: A #gboolean | * @showDialog: A #gboolean | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_window_find(WebKitDOMDOMWindow* self, const gchar* string, g boolean caseSensitive, gboolean backwards, gboolean wrap, gboolean wholeWor d, gboolean searchInFrames, gboolean showDialog); | webkit_dom_dom_window_find(WebKitDOMDOMWindow* self, const gchar* string, g boolean caseSensitive, gboolean backwards, gboolean wrap, gboolean wholeWor d, gboolean searchInFrames, gboolean showDialog); | |||
/** | /** | |||
* webkit_dom_dom_window_scroll_by: | * webkit_dom_dom_window_scroll_by: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @x: A #glong | * @x: A #glong | |||
* @y: A #glong | * @y: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_scroll_by(WebKitDOMDOMWindow* self, glong x, glong y) ; | webkit_dom_dom_window_scroll_by(WebKitDOMDOMWindow* self, glong x, glong y) ; | |||
/** | /** | |||
* webkit_dom_dom_window_scroll_to: | * webkit_dom_dom_window_scroll_to: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @x: A #glong | * @x: A #glong | |||
* @y: A #glong | * @y: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_scroll_to(WebKitDOMDOMWindow* self, glong x, glong y) ; | webkit_dom_dom_window_scroll_to(WebKitDOMDOMWindow* self, glong x, glong y) ; | |||
/** | /** | |||
* webkit_dom_dom_window_scroll: | * webkit_dom_dom_window_scroll: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @x: A #glong | * @x: A #glong | |||
* @y: A #glong | * @y: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_scroll(WebKitDOMDOMWindow* self, glong x, glong y); | webkit_dom_dom_window_scroll(WebKitDOMDOMWindow* self, glong x, glong y); | |||
/** | /** | |||
* webkit_dom_dom_window_move_by: | * webkit_dom_dom_window_move_by: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @x: A #gfloat | * @x: A #gfloat | |||
* @y: A #gfloat | * @y: A #gfloat | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_move_by(WebKitDOMDOMWindow* self, gfloat x, gfloat y) ; | webkit_dom_dom_window_move_by(WebKitDOMDOMWindow* self, gfloat x, gfloat y) ; | |||
/** | /** | |||
* webkit_dom_dom_window_move_to: | * webkit_dom_dom_window_move_to: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @x: A #gfloat | * @x: A #gfloat | |||
* @y: A #gfloat | * @y: A #gfloat | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_move_to(WebKitDOMDOMWindow* self, gfloat x, gfloat y) ; | webkit_dom_dom_window_move_to(WebKitDOMDOMWindow* self, gfloat x, gfloat y) ; | |||
/** | /** | |||
* webkit_dom_dom_window_resize_by: | * webkit_dom_dom_window_resize_by: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @x: A #gfloat | * @x: A #gfloat | |||
* @y: A #gfloat | * @y: A #gfloat | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_resize_by(WebKitDOMDOMWindow* self, gfloat x, gfloat y); | webkit_dom_dom_window_resize_by(WebKitDOMDOMWindow* self, gfloat x, gfloat y); | |||
/** | /** | |||
* webkit_dom_dom_window_resize_to: | * webkit_dom_dom_window_resize_to: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @width: A #gfloat | * @width: A #gfloat | |||
* @height: A #gfloat | * @height: A #gfloat | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_resize_to(WebKitDOMDOMWindow* self, gfloat width, gfl oat height); | webkit_dom_dom_window_resize_to(WebKitDOMDOMWindow* self, gfloat width, gfl oat height); | |||
/** | /** | |||
* webkit_dom_dom_window_match_media: | * webkit_dom_dom_window_match_media: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @query: A #gchar | * @query: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMMediaQueryList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMMediaQueryList* | WEBKIT_API WebKitDOMMediaQueryList* | |||
webkit_dom_dom_window_match_media(WebKitDOMDOMWindow* self, const gchar* qu ery); | webkit_dom_dom_window_match_media(WebKitDOMDOMWindow* self, const gchar* qu ery); | |||
/** | /** | |||
* webkit_dom_dom_window_get_computed_style: | * webkit_dom_dom_window_get_computed_style: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @element: A #WebKitDOMElement | * @element: A #WebKitDOMElement | |||
* @pseudoElement: (allow-none): A #gchar | * @pseudoElement: (allow-none): A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMCSSStyleDeclaration | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMCSSStyleDeclaration* | WEBKIT_API WebKitDOMCSSStyleDeclaration* | |||
webkit_dom_dom_window_get_computed_style(WebKitDOMDOMWindow* self, WebKitDO MElement* element, const gchar* pseudoElement); | webkit_dom_dom_window_get_computed_style(WebKitDOMDOMWindow* self, WebKitDO MElement* element, const gchar* pseudoElement); | |||
/** | /** | |||
* webkit_dom_dom_window_webkit_convert_point_from_page_to_node: | * webkit_dom_dom_window_webkit_convert_point_from_page_to_node: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @node: A #WebKitDOMNode | * @node: A #WebKitDOMNode | |||
* @p: A #WebKitDOMWebKitPoint | * @p: A #WebKitDOMWebKitPoint | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMWebKitPoint | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMWebKitPoint* | WEBKIT_API WebKitDOMWebKitPoint* | |||
webkit_dom_dom_window_webkit_convert_point_from_page_to_node(WebKitDOMDOMWi ndow* self, WebKitDOMNode* node, WebKitDOMWebKitPoint* p); | webkit_dom_dom_window_webkit_convert_point_from_page_to_node(WebKitDOMDOMWi ndow* self, WebKitDOMNode* node, WebKitDOMWebKitPoint* p); | |||
/** | /** | |||
* webkit_dom_dom_window_webkit_convert_point_from_node_to_page: | * webkit_dom_dom_window_webkit_convert_point_from_node_to_page: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @node: A #WebKitDOMNode | * @node: A #WebKitDOMNode | |||
* @p: A #WebKitDOMWebKitPoint | * @p: A #WebKitDOMWebKitPoint | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMWebKitPoint | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMWebKitPoint* | WEBKIT_API WebKitDOMWebKitPoint* | |||
webkit_dom_dom_window_webkit_convert_point_from_node_to_page(WebKitDOMDOMWi ndow* self, WebKitDOMNode* node, WebKitDOMWebKitPoint* p); | webkit_dom_dom_window_webkit_convert_point_from_node_to_page(WebKitDOMDOMWi ndow* self, WebKitDOMNode* node, WebKitDOMWebKitPoint* p); | |||
/** | /** | |||
* webkit_dom_dom_window_cancel_animation_frame: | * webkit_dom_dom_window_cancel_animation_frame: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @id: A #glong | * @id: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_cancel_animation_frame(WebKitDOMDOMWindow* self, glon g id); | webkit_dom_dom_window_cancel_animation_frame(WebKitDOMDOMWindow* self, glon g id); | |||
/** | /** | |||
* webkit_dom_dom_window_webkit_cancel_animation_frame: | * webkit_dom_dom_window_webkit_cancel_animation_frame: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @id: A #glong | * @id: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_webkit_cancel_animation_frame(WebKitDOMDOMWindow* sel f, glong id); | webkit_dom_dom_window_webkit_cancel_animation_frame(WebKitDOMDOMWindow* sel f, glong id); | |||
/** | /** | |||
* webkit_dom_dom_window_webkit_cancel_request_animation_frame: | * webkit_dom_dom_window_webkit_cancel_request_animation_frame: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @id: A #glong | * @id: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_webkit_cancel_request_animation_frame(WebKitDOMDOMWin dow* self, glong id); | webkit_dom_dom_window_webkit_cancel_request_animation_frame(WebKitDOMDOMWin dow* self, glong id); | |||
#if !defined(WEBKIT_DISABLE_DEPRECATED) | ||||
/** | /** | |||
* webkit_dom_dom_window_dispatch_event: | * webkit_dom_dom_window_dispatch_event: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @evt: A #WebKitDOMEvent | * @evt: A #WebKitDOMEvent | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | * | |||
* Deprecated: 2.4: Use webkit_dom_event_target_dispatch_event() instead. | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_DEPRECATED_FOR(webkit_dom_event_target_dispatch_event) gboolean | |||
webkit_dom_dom_window_dispatch_event(WebKitDOMDOMWindow* self, WebKitDOMEve nt* evt, GError** error); | webkit_dom_dom_window_dispatch_event(WebKitDOMDOMWindow* self, WebKitDOMEve nt* evt, GError** error); | |||
#endif /* WEBKIT_DISABLE_DEPRECATED */ | ||||
/** | /** | |||
* webkit_dom_dom_window_capture_events: | * webkit_dom_dom_window_capture_events: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_capture_events(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_capture_events(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_release_events: | * webkit_dom_dom_window_release_events: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_release_events(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_release_events(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_atob: | * webkit_dom_dom_window_atob: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @string: A #gchar | * @string: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_dom_window_atob(WebKitDOMDOMWindow* self, const gchar* string, G Error** error); | webkit_dom_dom_window_atob(WebKitDOMDOMWindow* self, const gchar* string, G Error** error); | |||
/** | /** | |||
* webkit_dom_dom_window_btoa: | * webkit_dom_dom_window_btoa: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @string: A #gchar | * @string: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_dom_window_btoa(WebKitDOMDOMWindow* self, const gchar* string, G Error** error); | webkit_dom_dom_window_btoa(WebKitDOMDOMWindow* self, const gchar* string, G Error** error); | |||
/** | /** | |||
* webkit_dom_dom_window_clear_timeout: | * webkit_dom_dom_window_clear_timeout: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @handle: A #glong | * @handle: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_clear_timeout(WebKitDOMDOMWindow* self, glong handle) ; | webkit_dom_dom_window_clear_timeout(WebKitDOMDOMWindow* self, glong handle) ; | |||
/** | /** | |||
* webkit_dom_dom_window_clear_interval: | * webkit_dom_dom_window_clear_interval: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @handle: A #glong | * @handle: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_clear_interval(WebKitDOMDOMWindow* self, glong handle ); | webkit_dom_dom_window_clear_interval(WebKitDOMDOMWindow* self, glong handle ); | |||
/** | /** | |||
* webkit_dom_dom_window_get_screen: | * webkit_dom_dom_window_get_screen: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMScreen | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMScreen* | WEBKIT_API WebKitDOMScreen* | |||
webkit_dom_dom_window_get_screen(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_screen(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_history: | * webkit_dom_dom_window_get_history: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHistory | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHistory* | WEBKIT_API WebKitDOMHistory* | |||
webkit_dom_dom_window_get_history(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_history(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_locationbar: | * webkit_dom_dom_window_get_locationbar: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMBarProp | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMBarProp* | WEBKIT_API WebKitDOMBarProp* | |||
webkit_dom_dom_window_get_locationbar(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_locationbar(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_menubar: | * webkit_dom_dom_window_get_menubar: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMBarProp | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMBarProp* | WEBKIT_API WebKitDOMBarProp* | |||
webkit_dom_dom_window_get_menubar(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_menubar(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_personalbar: | * webkit_dom_dom_window_get_personalbar: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMBarProp | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMBarProp* | WEBKIT_API WebKitDOMBarProp* | |||
webkit_dom_dom_window_get_personalbar(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_personalbar(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_scrollbars: | * webkit_dom_dom_window_get_scrollbars: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMBarProp | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMBarProp* | WEBKIT_API WebKitDOMBarProp* | |||
webkit_dom_dom_window_get_scrollbars(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_scrollbars(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_statusbar: | * webkit_dom_dom_window_get_statusbar: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMBarProp | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMBarProp* | WEBKIT_API WebKitDOMBarProp* | |||
webkit_dom_dom_window_get_statusbar(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_statusbar(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_toolbar: | * webkit_dom_dom_window_get_toolbar: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMBarProp | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMBarProp* | WEBKIT_API WebKitDOMBarProp* | |||
webkit_dom_dom_window_get_toolbar(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_toolbar(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_navigator: | * webkit_dom_dom_window_get_navigator: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNavigator | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNavigator* | WEBKIT_API WebKitDOMNavigator* | |||
webkit_dom_dom_window_get_navigator(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_navigator(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_client_information: | * webkit_dom_dom_window_get_client_information: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNavigator | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNavigator* | WEBKIT_API WebKitDOMNavigator* | |||
webkit_dom_dom_window_get_client_information(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_client_information(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_frame_element: | * webkit_dom_dom_window_get_frame_element: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_dom_window_get_frame_element(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_frame_element(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_offscreen_buffering: | * webkit_dom_dom_window_get_offscreen_buffering: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_window_get_offscreen_buffering(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_offscreen_buffering(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_outer_height: | * webkit_dom_dom_window_get_outer_height: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_window_get_outer_height(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_outer_height(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_outer_width: | * webkit_dom_dom_window_get_outer_width: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_window_get_outer_width(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_outer_width(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_inner_height: | * webkit_dom_dom_window_get_inner_height: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_window_get_inner_height(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_inner_height(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_inner_width: | * webkit_dom_dom_window_get_inner_width: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_window_get_inner_width(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_inner_width(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_screen_x: | * webkit_dom_dom_window_get_screen_x: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_window_get_screen_x(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_screen_x(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_screen_y: | * webkit_dom_dom_window_get_screen_y: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_window_get_screen_y(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_screen_y(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_screen_left: | * webkit_dom_dom_window_get_screen_left: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_window_get_screen_left(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_screen_left(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_screen_top: | * webkit_dom_dom_window_get_screen_top: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_window_get_screen_top(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_screen_top(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_scroll_x: | * webkit_dom_dom_window_get_scroll_x: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_window_get_scroll_x(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_scroll_x(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_scroll_y: | * webkit_dom_dom_window_get_scroll_y: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_window_get_scroll_y(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_scroll_y(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_page_x_offset: | * webkit_dom_dom_window_get_page_x_offset: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_window_get_page_x_offset(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_page_x_offset(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_page_y_offset: | * webkit_dom_dom_window_get_page_y_offset: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_dom_window_get_page_y_offset(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_page_y_offset(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_closed: | * webkit_dom_dom_window_get_closed: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_window_get_closed(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_closed(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_length: | * webkit_dom_dom_window_get_length: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_dom_window_get_length(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_length(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_name: | * webkit_dom_dom_window_get_name: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_dom_window_get_name(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_name(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_set_name: | * webkit_dom_dom_window_set_name: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_set_name(WebKitDOMDOMWindow* self, const gchar* value ); | webkit_dom_dom_window_set_name(WebKitDOMDOMWindow* self, const gchar* value ); | |||
/** | /** | |||
* webkit_dom_dom_window_get_status: | * webkit_dom_dom_window_get_status: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_dom_window_get_status(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_status(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_set_status: | * webkit_dom_dom_window_set_status: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_set_status(WebKitDOMDOMWindow* self, const gchar* val ue); | webkit_dom_dom_window_set_status(WebKitDOMDOMWindow* self, const gchar* val ue); | |||
/** | /** | |||
* webkit_dom_dom_window_get_default_status: | * webkit_dom_dom_window_get_default_status: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_dom_window_get_default_status(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_default_status(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_set_default_status: | * webkit_dom_dom_window_set_default_status: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_dom_window_set_default_status(WebKitDOMDOMWindow* self, const gc har* value); | webkit_dom_dom_window_set_default_status(WebKitDOMDOMWindow* self, const gc har* value); | |||
/** | /** | |||
* webkit_dom_dom_window_get_self: | * webkit_dom_dom_window_get_self: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMWindow | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMWindow* | WEBKIT_API WebKitDOMDOMWindow* | |||
webkit_dom_dom_window_get_self(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_self(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_window: | * webkit_dom_dom_window_get_window: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMWindow | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMWindow* | WEBKIT_API WebKitDOMDOMWindow* | |||
webkit_dom_dom_window_get_window(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_window(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_frames: | * webkit_dom_dom_window_get_frames: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMWindow | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMWindow* | WEBKIT_API WebKitDOMDOMWindow* | |||
webkit_dom_dom_window_get_frames(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_frames(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_opener: | * webkit_dom_dom_window_get_opener: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMWindow | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMWindow* | WEBKIT_API WebKitDOMDOMWindow* | |||
webkit_dom_dom_window_get_opener(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_opener(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_parent: | * webkit_dom_dom_window_get_parent: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMWindow | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMWindow* | WEBKIT_API WebKitDOMDOMWindow* | |||
webkit_dom_dom_window_get_parent(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_parent(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_top: | * webkit_dom_dom_window_get_top: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMWindow | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMWindow* | WEBKIT_API WebKitDOMDOMWindow* | |||
webkit_dom_dom_window_get_top(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_top(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_document: | * webkit_dom_dom_window_get_document: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDocument | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDocument* | WEBKIT_API WebKitDOMDocument* | |||
webkit_dom_dom_window_get_document(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_document(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_style_media: | * webkit_dom_dom_window_get_style_media: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMStyleMedia | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMStyleMedia* | WEBKIT_API WebKitDOMStyleMedia* | |||
webkit_dom_dom_window_get_style_media(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_style_media(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_device_pixel_ratio: | * webkit_dom_dom_window_get_device_pixel_ratio: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_dom_window_get_device_pixel_ratio(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_device_pixel_ratio(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_application_cache: | * webkit_dom_dom_window_get_application_cache: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMApplicationCache | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMApplicationCache* | WEBKIT_API WebKitDOMDOMApplicationCache* | |||
webkit_dom_dom_window_get_application_cache(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_application_cache(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_session_storage: | * webkit_dom_dom_window_get_session_storage: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMStorage | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMStorage* | WEBKIT_API WebKitDOMStorage* | |||
webkit_dom_dom_window_get_session_storage(WebKitDOMDOMWindow* self, GError* * error); | webkit_dom_dom_window_get_session_storage(WebKitDOMDOMWindow* self, GError* * error); | |||
/** | /** | |||
* webkit_dom_dom_window_get_local_storage: | * webkit_dom_dom_window_get_local_storage: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMStorage | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMStorage* | WEBKIT_API WebKitDOMStorage* | |||
webkit_dom_dom_window_get_local_storage(WebKitDOMDOMWindow* self, GError** error); | webkit_dom_dom_window_get_local_storage(WebKitDOMDOMWindow* self, GError** error); | |||
/** | /** | |||
* webkit_dom_dom_window_get_console: | * webkit_dom_dom_window_get_console: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMConsole | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMConsole* | WEBKIT_API WebKitDOMConsole* | |||
webkit_dom_dom_window_get_console(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_console(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_performance: | * webkit_dom_dom_window_get_performance: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMPerformance | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMPerformance* | WEBKIT_API WebKitDOMPerformance* | |||
webkit_dom_dom_window_get_performance(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_performance(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_css: | * webkit_dom_dom_window_get_css: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMWindowCSS | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMWindowCSS* | WEBKIT_API WebKitDOMDOMWindowCSS* | |||
webkit_dom_dom_window_get_css(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_css(WebKitDOMDOMWindow* self); | |||
/** | /** | |||
* webkit_dom_dom_window_get_webkit_storage_info: | * webkit_dom_dom_window_get_webkit_storage_info: | |||
* @self: A #WebKitDOMDOMWindow | * @self: A #WebKitDOMDOMWindow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMStorageInfo | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMStorageInfo* | WEBKIT_API WebKitDOMStorageInfo* | |||
webkit_dom_dom_window_get_webkit_storage_info(WebKitDOMDOMWindow* self); | webkit_dom_dom_window_get_webkit_storage_info(WebKitDOMDOMWindow* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDOMWindow_h */ | #endif /* WebKitDOMDOMWindow_h */ | |||
End of changes. 84 change blocks. | ||||
177 lines changed or deleted | 79 lines changed or added | |||
WebKitDOMDOMWindowCSS.h | WebKitDOMDOMWindowCSS.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDOMWindowCSS_h | #ifndef WebKitDOMDOMWindowCSS_h | |||
#define WebKitDOMDOMWindowCSS_h | #define WebKitDOMDOMWindowCSS_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 58 | skipping to change at line 58 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_dom_window_css_get_type (void); | webkit_dom_dom_window_css_get_type (void); | |||
/** | /** | |||
* webkit_dom_dom_window_css_supports: | * webkit_dom_dom_window_css_supports: | |||
* @self: A #WebKitDOMDOMWindowCSS | * @self: A #WebKitDOMDOMWindowCSS | |||
* @property: A #gchar | * @property: A #gchar | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_dom_window_css_supports(WebKitDOMDOMWindowCSS* self, const gchar * property, const gchar* value); | webkit_dom_dom_window_css_supports(WebKitDOMDOMWindowCSS* self, const gchar * property, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDOMWindowCSS_h */ | #endif /* WebKitDOMDOMWindowCSS_h */ | |||
End of changes. 2 change blocks. | ||||
21 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMDatabase.h | WebKitDOMDatabase.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDatabase_h | #ifndef WebKitDOMDatabase_h | |||
#define WebKitDOMDatabase_h | #define WebKitDOMDatabase_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_database_get_type (void); | webkit_dom_database_get_type (void); | |||
/** | /** | |||
* webkit_dom_database_get_version: | * webkit_dom_database_get_version: | |||
* @self: A #WebKitDOMDatabase | * @self: A #WebKitDOMDatabase | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_database_get_version(WebKitDOMDatabase* self); | webkit_dom_database_get_version(WebKitDOMDatabase* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDatabase_h */ | #endif /* WebKitDOMDatabase_h */ | |||
End of changes. 2 change blocks. | ||||
21 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMDocument.h | WebKitDOMDocument.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDocument_h | #ifndef WebKitDOMDocument_h | |||
#define WebKitDOMDocument_h | #define WebKitDOMDocument_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMNode.h> | #include <webkitdom/WebKitDOMNode.h> | |||
skipping to change at line 58 | skipping to change at line 58 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_document_get_type (void); | webkit_dom_document_get_type (void); | |||
/** | /** | |||
* webkit_dom_document_create_element: | * webkit_dom_document_create_element: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @tagName: A #gchar | * @tagName: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_document_create_element(WebKitDOMDocument* self, const gchar* ta gName, GError** error); | webkit_dom_document_create_element(WebKitDOMDocument* self, const gchar* ta gName, GError** error); | |||
/** | /** | |||
* webkit_dom_document_create_document_fragment: | * webkit_dom_document_create_document_fragment: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDocumentFragment | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDocumentFragment* | WEBKIT_API WebKitDOMDocumentFragment* | |||
webkit_dom_document_create_document_fragment(WebKitDOMDocument* self); | webkit_dom_document_create_document_fragment(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_create_text_node: | * webkit_dom_document_create_text_node: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @data: A #gchar | * @data: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMText | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMText* | WEBKIT_API WebKitDOMText* | |||
webkit_dom_document_create_text_node(WebKitDOMDocument* self, const gchar* data); | webkit_dom_document_create_text_node(WebKitDOMDocument* self, const gchar* data); | |||
/** | /** | |||
* webkit_dom_document_create_comment: | * webkit_dom_document_create_comment: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @data: A #gchar | * @data: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMComment | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMComment* | WEBKIT_API WebKitDOMComment* | |||
webkit_dom_document_create_comment(WebKitDOMDocument* self, const gchar* da ta); | webkit_dom_document_create_comment(WebKitDOMDocument* self, const gchar* da ta); | |||
/** | /** | |||
* webkit_dom_document_create_cdata_section: | * webkit_dom_document_create_cdata_section: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @data: A #gchar | * @data: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMCDATASection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMCDATASection* | WEBKIT_API WebKitDOMCDATASection* | |||
webkit_dom_document_create_cdata_section(WebKitDOMDocument* self, const gch ar* data, GError** error); | webkit_dom_document_create_cdata_section(WebKitDOMDocument* self, const gch ar* data, GError** error); | |||
/** | /** | |||
* webkit_dom_document_create_processing_instruction: | * webkit_dom_document_create_processing_instruction: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @target: A #gchar | * @target: A #gchar | |||
* @data: A #gchar | * @data: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMProcessingInstruction | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMProcessingInstruction* | WEBKIT_API WebKitDOMProcessingInstruction* | |||
webkit_dom_document_create_processing_instruction(WebKitDOMDocument* self, const gchar* target, const gchar* data, GError** error); | webkit_dom_document_create_processing_instruction(WebKitDOMDocument* self, const gchar* target, const gchar* data, GError** error); | |||
/** | /** | |||
* webkit_dom_document_create_attribute: | * webkit_dom_document_create_attribute: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @name: A #gchar | * @name: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMAttr | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMAttr* | WEBKIT_API WebKitDOMAttr* | |||
webkit_dom_document_create_attribute(WebKitDOMDocument* self, const gchar* name, GError** error); | webkit_dom_document_create_attribute(WebKitDOMDocument* self, const gchar* name, GError** error); | |||
/** | /** | |||
* webkit_dom_document_create_entity_reference: | * webkit_dom_document_create_entity_reference: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @name: A #gchar | * @name: (allow-none): A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMEntityReference | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMEntityReference* | WEBKIT_API WebKitDOMEntityReference* | |||
webkit_dom_document_create_entity_reference(WebKitDOMDocument* self, const gchar* name, GError** error); | webkit_dom_document_create_entity_reference(WebKitDOMDocument* self, const gchar* name, GError** error); | |||
/** | /** | |||
* webkit_dom_document_get_elements_by_tag_name: | * webkit_dom_document_get_elements_by_tag_name: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @tagname: A #gchar | * @tagname: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_document_get_elements_by_tag_name(WebKitDOMDocument* self, const gchar* tagname); | webkit_dom_document_get_elements_by_tag_name(WebKitDOMDocument* self, const gchar* tagname); | |||
/** | /** | |||
* webkit_dom_document_import_node: | * webkit_dom_document_import_node: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @importedNode: A #WebKitDOMNode | * @importedNode: A #WebKitDOMNode | |||
* @deep: A #gboolean | * @deep: A #gboolean | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_document_import_node(WebKitDOMDocument* self, WebKitDOMNode* imp ortedNode, gboolean deep, GError** error); | webkit_dom_document_import_node(WebKitDOMDocument* self, WebKitDOMNode* imp ortedNode, gboolean deep, GError** error); | |||
/** | /** | |||
* webkit_dom_document_create_element_ns: | * webkit_dom_document_create_element_ns: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @namespaceURI: A #gchar | * @namespaceURI: (allow-none): A #gchar | |||
* @qualifiedName: A #gchar | * @qualifiedName: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_document_create_element_ns(WebKitDOMDocument* self, const gchar* namespaceURI, const gchar* qualifiedName, GError** error); | webkit_dom_document_create_element_ns(WebKitDOMDocument* self, const gchar* namespaceURI, const gchar* qualifiedName, GError** error); | |||
/** | /** | |||
* webkit_dom_document_create_attribute_ns: | * webkit_dom_document_create_attribute_ns: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @namespaceURI: A #gchar | * @namespaceURI: (allow-none): A #gchar | |||
* @qualifiedName: A #gchar | * @qualifiedName: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMAttr | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMAttr* | WEBKIT_API WebKitDOMAttr* | |||
webkit_dom_document_create_attribute_ns(WebKitDOMDocument* self, const gcha r* namespaceURI, const gchar* qualifiedName, GError** error); | webkit_dom_document_create_attribute_ns(WebKitDOMDocument* self, const gcha r* namespaceURI, const gchar* qualifiedName, GError** error); | |||
/** | /** | |||
* webkit_dom_document_get_elements_by_tag_name_ns: | * webkit_dom_document_get_elements_by_tag_name_ns: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @namespaceURI: A #gchar | * @namespaceURI: A #gchar | |||
* @localName: A #gchar | * @localName: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_document_get_elements_by_tag_name_ns(WebKitDOMDocument* self, co nst gchar* namespaceURI, const gchar* localName); | webkit_dom_document_get_elements_by_tag_name_ns(WebKitDOMDocument* self, co nst gchar* namespaceURI, const gchar* localName); | |||
/** | /** | |||
* webkit_dom_document_get_element_by_id: | * webkit_dom_document_get_element_by_id: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @elementId: A #gchar | * @elementId: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_document_get_element_by_id(WebKitDOMDocument* self, const gchar* elementId); | webkit_dom_document_get_element_by_id(WebKitDOMDocument* self, const gchar* elementId); | |||
/** | /** | |||
* webkit_dom_document_adopt_node: | * webkit_dom_document_adopt_node: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @source: A #WebKitDOMNode | * @source: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_document_adopt_node(WebKitDOMDocument* self, WebKitDOMNode* sour ce, GError** error); | webkit_dom_document_adopt_node(WebKitDOMDocument* self, WebKitDOMNode* sour ce, GError** error); | |||
/** | /** | |||
* webkit_dom_document_create_event: | * webkit_dom_document_create_event: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @eventType: A #gchar | * @eventType: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMEvent | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMEvent* | WEBKIT_API WebKitDOMEvent* | |||
webkit_dom_document_create_event(WebKitDOMDocument* self, const gchar* even tType, GError** error); | webkit_dom_document_create_event(WebKitDOMDocument* self, const gchar* even tType, GError** error); | |||
/** | /** | |||
* webkit_dom_document_create_range: | * webkit_dom_document_create_range: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMRange | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMRange* | WEBKIT_API WebKitDOMRange* | |||
webkit_dom_document_create_range(WebKitDOMDocument* self); | webkit_dom_document_create_range(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_create_node_iterator: | * webkit_dom_document_create_node_iterator: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @root: A #WebKitDOMNode | * @root: A #WebKitDOMNode | |||
* @whatToShow: A #gulong | * @whatToShow: A #gulong | |||
* @filter: A #WebKitDOMNodeFilter | * @filter: A #WebKitDOMNodeFilter | |||
* @expandEntityReferences: A #gboolean | * @expandEntityReferences: A #gboolean | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeIterator | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeIterator* | WEBKIT_API WebKitDOMNodeIterator* | |||
webkit_dom_document_create_node_iterator(WebKitDOMDocument* self, WebKitDOM Node* root, gulong whatToShow, WebKitDOMNodeFilter* filter, gboolean expand EntityReferences, GError** error); | webkit_dom_document_create_node_iterator(WebKitDOMDocument* self, WebKitDOM Node* root, gulong whatToShow, WebKitDOMNodeFilter* filter, gboolean expand EntityReferences, GError** error); | |||
/** | /** | |||
* webkit_dom_document_create_tree_walker: | * webkit_dom_document_create_tree_walker: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @root: A #WebKitDOMNode | * @root: A #WebKitDOMNode | |||
* @whatToShow: A #gulong | * @whatToShow: A #gulong | |||
* @filter: A #WebKitDOMNodeFilter | * @filter: A #WebKitDOMNodeFilter | |||
* @expandEntityReferences: A #gboolean | * @expandEntityReferences: A #gboolean | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMTreeWalker | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMTreeWalker* | WEBKIT_API WebKitDOMTreeWalker* | |||
webkit_dom_document_create_tree_walker(WebKitDOMDocument* self, WebKitDOMNo de* root, gulong whatToShow, WebKitDOMNodeFilter* filter, gboolean expandEn tityReferences, GError** error); | webkit_dom_document_create_tree_walker(WebKitDOMDocument* self, WebKitDOMNo de* root, gulong whatToShow, WebKitDOMNodeFilter* filter, gboolean expandEn tityReferences, GError** error); | |||
/** | /** | |||
* webkit_dom_document_get_override_style: | * webkit_dom_document_get_override_style: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @element: A #WebKitDOMElement | * @element: A #WebKitDOMElement | |||
* @pseudoElement: A #gchar | * @pseudoElement: (allow-none): A #gchar | |||
* | ||||
* Returns: (transfer none): | ||||
* | * | |||
* Returns: (transfer none): A #WebKitDOMCSSStyleDeclaration | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMCSSStyleDeclaration* | WEBKIT_API WebKitDOMCSSStyleDeclaration* | |||
webkit_dom_document_get_override_style(WebKitDOMDocument* self, WebKitDOMEl ement* element, const gchar* pseudoElement); | webkit_dom_document_get_override_style(WebKitDOMDocument* self, WebKitDOMEl ement* element, const gchar* pseudoElement); | |||
/** | /** | |||
* webkit_dom_document_create_expression: | * webkit_dom_document_create_expression: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @expression: A #gchar | * @expression: A #gchar | |||
* @resolver: A #WebKitDOMXPathNSResolver | * @resolver: A #WebKitDOMXPathNSResolver | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMXPathExpression | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMXPathExpression* | WEBKIT_API WebKitDOMXPathExpression* | |||
webkit_dom_document_create_expression(WebKitDOMDocument* self, const gchar* expression, WebKitDOMXPathNSResolver* resolver, GError** error); | webkit_dom_document_create_expression(WebKitDOMDocument* self, const gchar* expression, WebKitDOMXPathNSResolver* resolver, GError** error); | |||
/** | /** | |||
* webkit_dom_document_create_ns_resolver: | * webkit_dom_document_create_ns_resolver: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @nodeResolver: A #WebKitDOMNode | * @nodeResolver: A #WebKitDOMNode | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMXPathNSResolver | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMXPathNSResolver* | WEBKIT_API WebKitDOMXPathNSResolver* | |||
webkit_dom_document_create_ns_resolver(WebKitDOMDocument* self, WebKitDOMNo de* nodeResolver); | webkit_dom_document_create_ns_resolver(WebKitDOMDocument* self, WebKitDOMNo de* nodeResolver); | |||
/** | /** | |||
* webkit_dom_document_evaluate: | * webkit_dom_document_evaluate: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @expression: A #gchar | * @expression: A #gchar | |||
* @contextNode: A #WebKitDOMNode | * @contextNode: A #WebKitDOMNode | |||
* @resolver: (allow-none): A #WebKitDOMXPathNSResolver | * @resolver: (allow-none): A #WebKitDOMXPathNSResolver | |||
* @type: A #gushort | * @type: A #gushort | |||
* @inResult: (allow-none): A #WebKitDOMXPathResult | * @inResult: (allow-none): A #WebKitDOMXPathResult | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMXPathResult | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMXPathResult* | WEBKIT_API WebKitDOMXPathResult* | |||
webkit_dom_document_evaluate(WebKitDOMDocument* self, const gchar* expressi on, WebKitDOMNode* contextNode, WebKitDOMXPathNSResolver* resolver, gushort type, WebKitDOMXPathResult* inResult, GError** error); | webkit_dom_document_evaluate(WebKitDOMDocument* self, const gchar* expressi on, WebKitDOMNode* contextNode, WebKitDOMXPathNSResolver* resolver, gushort type, WebKitDOMXPathResult* inResult, GError** error); | |||
/** | /** | |||
* webkit_dom_document_exec_command: | * webkit_dom_document_exec_command: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @command: A #gchar | * @command: A #gchar | |||
* @userInterface: A #gboolean | * @userInterface: A #gboolean | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_document_exec_command(WebKitDOMDocument* self, const gchar* comm and, gboolean userInterface, const gchar* value); | webkit_dom_document_exec_command(WebKitDOMDocument* self, const gchar* comm and, gboolean userInterface, const gchar* value); | |||
/** | /** | |||
* webkit_dom_document_query_command_enabled: | * webkit_dom_document_query_command_enabled: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @command: A #gchar | * @command: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_document_query_command_enabled(WebKitDOMDocument* self, const gc har* command); | webkit_dom_document_query_command_enabled(WebKitDOMDocument* self, const gc har* command); | |||
/** | /** | |||
* webkit_dom_document_query_command_indeterm: | * webkit_dom_document_query_command_indeterm: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @command: A #gchar | * @command: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_document_query_command_indeterm(WebKitDOMDocument* self, const g char* command); | webkit_dom_document_query_command_indeterm(WebKitDOMDocument* self, const g char* command); | |||
/** | /** | |||
* webkit_dom_document_query_command_state: | * webkit_dom_document_query_command_state: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @command: A #gchar | * @command: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_document_query_command_state(WebKitDOMDocument* self, const gcha r* command); | webkit_dom_document_query_command_state(WebKitDOMDocument* self, const gcha r* command); | |||
/** | /** | |||
* webkit_dom_document_query_command_supported: | * webkit_dom_document_query_command_supported: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @command: A #gchar | * @command: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_document_query_command_supported(WebKitDOMDocument* self, const gchar* command); | webkit_dom_document_query_command_supported(WebKitDOMDocument* self, const gchar* command); | |||
/** | /** | |||
* webkit_dom_document_query_command_value: | * webkit_dom_document_query_command_value: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @command: A #gchar | * @command: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_query_command_value(WebKitDOMDocument* self, const gcha r* command); | webkit_dom_document_query_command_value(WebKitDOMDocument* self, const gcha r* command); | |||
/** | /** | |||
* webkit_dom_document_get_elements_by_name: | * webkit_dom_document_get_elements_by_name: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @elementName: A #gchar | * @elementName: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_document_get_elements_by_name(WebKitDOMDocument* self, const gch ar* elementName); | webkit_dom_document_get_elements_by_name(WebKitDOMDocument* self, const gch ar* elementName); | |||
/** | /** | |||
* webkit_dom_document_element_from_point: | * webkit_dom_document_element_from_point: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @x: A #glong | * @x: A #glong | |||
* @y: A #glong | * @y: A #glong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_document_element_from_point(WebKitDOMDocument* self, glong x, gl ong y); | webkit_dom_document_element_from_point(WebKitDOMDocument* self, glong x, gl ong y); | |||
/** | /** | |||
* webkit_dom_document_caret_range_from_point: | * webkit_dom_document_caret_range_from_point: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @x: A #glong | * @x: A #glong | |||
* @y: A #glong | * @y: A #glong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMRange | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMRange* | WEBKIT_API WebKitDOMRange* | |||
webkit_dom_document_caret_range_from_point(WebKitDOMDocument* self, glong x , glong y); | webkit_dom_document_caret_range_from_point(WebKitDOMDocument* self, glong x , glong y); | |||
/** | /** | |||
* webkit_dom_document_create_css_style_declaration: | * webkit_dom_document_create_css_style_declaration: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMCSSStyleDeclaration | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMCSSStyleDeclaration* | WEBKIT_API WebKitDOMCSSStyleDeclaration* | |||
webkit_dom_document_create_css_style_declaration(WebKitDOMDocument* self); | webkit_dom_document_create_css_style_declaration(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_elements_by_class_name: | * webkit_dom_document_get_elements_by_class_name: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @tagname: A #gchar | * @tagname: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_document_get_elements_by_class_name(WebKitDOMDocument* self, con st gchar* tagname); | webkit_dom_document_get_elements_by_class_name(WebKitDOMDocument* self, con st gchar* tagname); | |||
/** | /** | |||
* webkit_dom_document_query_selector: | * webkit_dom_document_query_selector: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @selectors: A #gchar | * @selectors: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_document_query_selector(WebKitDOMDocument* self, const gchar* se lectors, GError** error); | webkit_dom_document_query_selector(WebKitDOMDocument* self, const gchar* se lectors, GError** error); | |||
/** | /** | |||
* webkit_dom_document_query_selector_all: | * webkit_dom_document_query_selector_all: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @selectors: A #gchar | * @selectors: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_document_query_selector_all(WebKitDOMDocument* self, const gchar * selectors, GError** error); | webkit_dom_document_query_selector_all(WebKitDOMDocument* self, const gchar * selectors, GError** error); | |||
/** | /** | |||
* webkit_dom_document_webkit_cancel_full_screen: | * webkit_dom_document_webkit_cancel_full_screen: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_document_webkit_cancel_full_screen(WebKitDOMDocument* self); | webkit_dom_document_webkit_cancel_full_screen(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_webkit_exit_fullscreen: | * webkit_dom_document_webkit_exit_fullscreen: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_document_webkit_exit_fullscreen(WebKitDOMDocument* self); | webkit_dom_document_webkit_exit_fullscreen(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_webkit_exit_pointer_lock: | * webkit_dom_document_webkit_exit_pointer_lock: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_document_webkit_exit_pointer_lock(WebKitDOMDocument* self); | webkit_dom_document_webkit_exit_pointer_lock(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_webkit_get_named_flows: | * webkit_dom_document_webkit_get_named_flows: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMNamedFlowCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMNamedFlowCollection* | WEBKIT_API WebKitDOMDOMNamedFlowCollection* | |||
webkit_dom_document_webkit_get_named_flows(WebKitDOMDocument* self); | webkit_dom_document_webkit_get_named_flows(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_doctype: | * webkit_dom_document_get_doctype: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDocumentType | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDocumentType* | WEBKIT_API WebKitDOMDocumentType* | |||
webkit_dom_document_get_doctype(WebKitDOMDocument* self); | webkit_dom_document_get_doctype(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_implementation: | * webkit_dom_document_get_implementation: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMImplementation | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMImplementation* | WEBKIT_API WebKitDOMDOMImplementation* | |||
webkit_dom_document_get_implementation(WebKitDOMDocument* self); | webkit_dom_document_get_implementation(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_document_element: | * webkit_dom_document_get_document_element: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_document_get_document_element(WebKitDOMDocument* self); | webkit_dom_document_get_document_element(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_input_encoding: | * webkit_dom_document_get_input_encoding: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_input_encoding(WebKitDOMDocument* self); | webkit_dom_document_get_input_encoding(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_xml_encoding: | * webkit_dom_document_get_xml_encoding: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_xml_encoding(WebKitDOMDocument* self); | webkit_dom_document_get_xml_encoding(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_xml_version: | * webkit_dom_document_get_xml_version: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_xml_version(WebKitDOMDocument* self); | webkit_dom_document_get_xml_version(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_set_xml_version: | * webkit_dom_document_set_xml_version: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_document_set_xml_version(WebKitDOMDocument* self, const gchar* v alue, GError** error); | webkit_dom_document_set_xml_version(WebKitDOMDocument* self, const gchar* v alue, GError** error); | |||
/** | /** | |||
* webkit_dom_document_get_xml_standalone: | * webkit_dom_document_get_xml_standalone: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_document_get_xml_standalone(WebKitDOMDocument* self); | webkit_dom_document_get_xml_standalone(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_set_xml_standalone: | * webkit_dom_document_set_xml_standalone: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_document_set_xml_standalone(WebKitDOMDocument* self, gboolean va lue, GError** error); | webkit_dom_document_set_xml_standalone(WebKitDOMDocument* self, gboolean va lue, GError** error); | |||
/** | /** | |||
* webkit_dom_document_get_document_uri: | * webkit_dom_document_get_document_uri: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_document_uri(WebKitDOMDocument* self); | webkit_dom_document_get_document_uri(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_set_document_uri: | * webkit_dom_document_set_document_uri: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_document_set_document_uri(WebKitDOMDocument* self, const gchar* value); | webkit_dom_document_set_document_uri(WebKitDOMDocument* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_document_get_default_view: | * webkit_dom_document_get_default_view: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMWindow | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMWindow* | WEBKIT_API WebKitDOMDOMWindow* | |||
webkit_dom_document_get_default_view(WebKitDOMDocument* self); | webkit_dom_document_get_default_view(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_style_sheets: | * webkit_dom_document_get_style_sheets: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMStyleSheetList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMStyleSheetList* | WEBKIT_API WebKitDOMStyleSheetList* | |||
webkit_dom_document_get_style_sheets(WebKitDOMDocument* self); | webkit_dom_document_get_style_sheets(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_title: | * webkit_dom_document_get_title: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_title(WebKitDOMDocument* self); | webkit_dom_document_get_title(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_set_title: | * webkit_dom_document_set_title: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_document_set_title(WebKitDOMDocument* self, const gchar* value); | webkit_dom_document_set_title(WebKitDOMDocument* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_document_get_referrer: | * webkit_dom_document_get_referrer: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_referrer(WebKitDOMDocument* self); | webkit_dom_document_get_referrer(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_domain: | * webkit_dom_document_get_domain: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_domain(WebKitDOMDocument* self); | webkit_dom_document_get_domain(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_url: | ||||
* @self: A #WebKitDOMDocument | ||||
* | ||||
* Returns: A #gchar | ||||
**/ | ||||
WEBKIT_API gchar* | ||||
webkit_dom_document_get_url(WebKitDOMDocument* self); | ||||
/** | ||||
* webkit_dom_document_get_cookie: | * webkit_dom_document_get_cookie: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_cookie(WebKitDOMDocument* self, GError** error); | webkit_dom_document_get_cookie(WebKitDOMDocument* self, GError** error); | |||
/** | /** | |||
* webkit_dom_document_set_cookie: | * webkit_dom_document_set_cookie: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_document_set_cookie(WebKitDOMDocument* self, const gchar* value, GError** error); | webkit_dom_document_set_cookie(WebKitDOMDocument* self, const gchar* value, GError** error); | |||
/** | /** | |||
* webkit_dom_document_get_body: | * webkit_dom_document_get_body: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLElement* | WEBKIT_API WebKitDOMHTMLElement* | |||
webkit_dom_document_get_body(WebKitDOMDocument* self); | webkit_dom_document_get_body(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_set_body: | * webkit_dom_document_set_body: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @value: A #WebKitDOMHTMLElement | * @value: A #WebKitDOMHTMLElement | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_document_set_body(WebKitDOMDocument* self, WebKitDOMHTMLElement* value, GError** error); | webkit_dom_document_set_body(WebKitDOMDocument* self, WebKitDOMHTMLElement* value, GError** error); | |||
/** | /** | |||
* webkit_dom_document_get_head: | * webkit_dom_document_get_head: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLHeadElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLHeadElement* | WEBKIT_API WebKitDOMHTMLHeadElement* | |||
webkit_dom_document_get_head(WebKitDOMDocument* self); | webkit_dom_document_get_head(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_images: | * webkit_dom_document_get_images: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_document_get_images(WebKitDOMDocument* self); | webkit_dom_document_get_images(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_applets: | * webkit_dom_document_get_applets: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_document_get_applets(WebKitDOMDocument* self); | webkit_dom_document_get_applets(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_links: | * webkit_dom_document_get_links: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_document_get_links(WebKitDOMDocument* self); | webkit_dom_document_get_links(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_forms: | * webkit_dom_document_get_forms: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_document_get_forms(WebKitDOMDocument* self); | webkit_dom_document_get_forms(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_anchors: | * webkit_dom_document_get_anchors: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_document_get_anchors(WebKitDOMDocument* self); | webkit_dom_document_get_anchors(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_last_modified: | * webkit_dom_document_get_last_modified: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_last_modified(WebKitDOMDocument* self); | webkit_dom_document_get_last_modified(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_charset: | * webkit_dom_document_get_charset: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_charset(WebKitDOMDocument* self); | webkit_dom_document_get_charset(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_set_charset: | * webkit_dom_document_set_charset: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_document_set_charset(WebKitDOMDocument* self, const gchar* value ); | webkit_dom_document_set_charset(WebKitDOMDocument* self, const gchar* value ); | |||
/** | /** | |||
* webkit_dom_document_get_default_charset: | * webkit_dom_document_get_default_charset: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_default_charset(WebKitDOMDocument* self); | webkit_dom_document_get_default_charset(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_ready_state: | * webkit_dom_document_get_ready_state: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_ready_state(WebKitDOMDocument* self); | webkit_dom_document_get_ready_state(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_character_set: | * webkit_dom_document_get_character_set: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_character_set(WebKitDOMDocument* self); | webkit_dom_document_get_character_set(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_preferred_stylesheet_set: | * webkit_dom_document_get_preferred_stylesheet_set: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_preferred_stylesheet_set(WebKitDOMDocument* self); | webkit_dom_document_get_preferred_stylesheet_set(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_selected_stylesheet_set: | * webkit_dom_document_get_selected_stylesheet_set: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_selected_stylesheet_set(WebKitDOMDocument* self); | webkit_dom_document_get_selected_stylesheet_set(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_set_selected_stylesheet_set: | * webkit_dom_document_set_selected_stylesheet_set: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_document_set_selected_stylesheet_set(WebKitDOMDocument* self, co nst gchar* value); | webkit_dom_document_set_selected_stylesheet_set(WebKitDOMDocument* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_document_get_compat_mode: | * webkit_dom_document_get_compat_mode: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_compat_mode(WebKitDOMDocument* self); | webkit_dom_document_get_compat_mode(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_webkit_is_full_screen: | * webkit_dom_document_get_webkit_is_full_screen: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_document_get_webkit_is_full_screen(WebKitDOMDocument* self); | webkit_dom_document_get_webkit_is_full_screen(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_webkit_full_screen_keyboard_input_allowed: | * webkit_dom_document_get_webkit_full_screen_keyboard_input_allowed: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_document_get_webkit_full_screen_keyboard_input_allowed(WebKitDOM Document* self); | webkit_dom_document_get_webkit_full_screen_keyboard_input_allowed(WebKitDOM Document* self); | |||
/** | /** | |||
* webkit_dom_document_get_webkit_current_full_screen_element: | * webkit_dom_document_get_webkit_current_full_screen_element: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_document_get_webkit_current_full_screen_element(WebKitDOMDocumen t* self); | webkit_dom_document_get_webkit_current_full_screen_element(WebKitDOMDocumen t* self); | |||
/** | /** | |||
* webkit_dom_document_get_webkit_fullscreen_enabled: | * webkit_dom_document_get_webkit_fullscreen_enabled: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_document_get_webkit_fullscreen_enabled(WebKitDOMDocument* self); | webkit_dom_document_get_webkit_fullscreen_enabled(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_webkit_fullscreen_element: | * webkit_dom_document_get_webkit_fullscreen_element: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_document_get_webkit_fullscreen_element(WebKitDOMDocument* self); | webkit_dom_document_get_webkit_fullscreen_element(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_webkit_pointer_lock_element: | * webkit_dom_document_get_webkit_pointer_lock_element: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_document_get_webkit_pointer_lock_element(WebKitDOMDocument* self ); | webkit_dom_document_get_webkit_pointer_lock_element(WebKitDOMDocument* self ); | |||
/** | /** | |||
* webkit_dom_document_get_visibility_state: | * webkit_dom_document_get_visibility_state: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_get_visibility_state(WebKitDOMDocument* self); | webkit_dom_document_get_visibility_state(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_hidden: | * webkit_dom_document_get_hidden: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_document_get_hidden(WebKitDOMDocument* self); | webkit_dom_document_get_hidden(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_security_policy: | * webkit_dom_document_get_security_policy: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMSecurityPolicy | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMSecurityPolicy* | WEBKIT_API WebKitDOMDOMSecurityPolicy* | |||
webkit_dom_document_get_security_policy(WebKitDOMDocument* self); | webkit_dom_document_get_security_policy(WebKitDOMDocument* self); | |||
/** | /** | |||
* webkit_dom_document_get_current_script: | * webkit_dom_document_get_current_script: | |||
* @self: A #WebKitDOMDocument | * @self: A #WebKitDOMDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLScriptElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLScriptElement* | WEBKIT_API WebKitDOMHTMLScriptElement* | |||
webkit_dom_document_get_current_script(WebKitDOMDocument* self); | webkit_dom_document_get_current_script(WebKitDOMDocument* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDocument_h */ | #endif /* WebKitDOMDocument_h */ | |||
End of changes. 93 change blocks. | ||||
197 lines changed or deleted | 108 lines changed or added | |||
WebKitDOMDocumentFragment.h | WebKitDOMDocumentFragment.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDocumentFragment_h | #ifndef WebKitDOMDocumentFragment_h | |||
#define WebKitDOMDocumentFragment_h | #define WebKitDOMDocumentFragment_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMNode.h> | #include <webkitdom/WebKitDOMNode.h> | |||
skipping to change at line 58 | skipping to change at line 58 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_document_fragment_get_type (void); | webkit_dom_document_fragment_get_type (void); | |||
/** | /** | |||
* webkit_dom_document_fragment_query_selector: | * webkit_dom_document_fragment_query_selector: | |||
* @self: A #WebKitDOMDocumentFragment | * @self: A #WebKitDOMDocumentFragment | |||
* @selectors: A #gchar | * @selectors: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_document_fragment_query_selector(WebKitDOMDocumentFragment* self , const gchar* selectors, GError** error); | webkit_dom_document_fragment_query_selector(WebKitDOMDocumentFragment* self , const gchar* selectors, GError** error); | |||
/** | /** | |||
* webkit_dom_document_fragment_query_selector_all: | * webkit_dom_document_fragment_query_selector_all: | |||
* @self: A #WebKitDOMDocumentFragment | * @self: A #WebKitDOMDocumentFragment | |||
* @selectors: A #gchar | * @selectors: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_document_fragment_query_selector_all(WebKitDOMDocumentFragment* self, const gchar* selectors, GError** error); | webkit_dom_document_fragment_query_selector_all(WebKitDOMDocumentFragment* self, const gchar* selectors, GError** error); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDocumentFragment_h */ | #endif /* WebKitDOMDocumentFragment_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMDocumentType.h | WebKitDOMDocumentType.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMDocumentType_h | #ifndef WebKitDOMDocumentType_h | |||
#define WebKitDOMDocumentType_h | #define WebKitDOMDocumentType_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMNode.h> | #include <webkitdom/WebKitDOMNode.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_document_type_get_type (void); | webkit_dom_document_type_get_type (void); | |||
/** | /** | |||
* webkit_dom_document_type_remove: | * webkit_dom_document_type_remove: | |||
* @self: A #WebKitDOMDocumentType | * @self: A #WebKitDOMDocumentType | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_document_type_remove(WebKitDOMDocumentType* self, GError** error ); | webkit_dom_document_type_remove(WebKitDOMDocumentType* self, GError** error ); | |||
/** | /** | |||
* webkit_dom_document_type_get_name: | * webkit_dom_document_type_get_name: | |||
* @self: A #WebKitDOMDocumentType | * @self: A #WebKitDOMDocumentType | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_type_get_name(WebKitDOMDocumentType* self); | webkit_dom_document_type_get_name(WebKitDOMDocumentType* self); | |||
/** | /** | |||
* webkit_dom_document_type_get_entities: | * webkit_dom_document_type_get_entities: | |||
* @self: A #WebKitDOMDocumentType | * @self: A #WebKitDOMDocumentType | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNamedNodeMap | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNamedNodeMap* | WEBKIT_API WebKitDOMNamedNodeMap* | |||
webkit_dom_document_type_get_entities(WebKitDOMDocumentType* self); | webkit_dom_document_type_get_entities(WebKitDOMDocumentType* self); | |||
/** | /** | |||
* webkit_dom_document_type_get_notations: | * webkit_dom_document_type_get_notations: | |||
* @self: A #WebKitDOMDocumentType | * @self: A #WebKitDOMDocumentType | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNamedNodeMap | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNamedNodeMap* | WEBKIT_API WebKitDOMNamedNodeMap* | |||
webkit_dom_document_type_get_notations(WebKitDOMDocumentType* self); | webkit_dom_document_type_get_notations(WebKitDOMDocumentType* self); | |||
/** | /** | |||
* webkit_dom_document_type_get_public_id: | * webkit_dom_document_type_get_public_id: | |||
* @self: A #WebKitDOMDocumentType | * @self: A #WebKitDOMDocumentType | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_type_get_public_id(WebKitDOMDocumentType* self); | webkit_dom_document_type_get_public_id(WebKitDOMDocumentType* self); | |||
/** | /** | |||
* webkit_dom_document_type_get_system_id: | * webkit_dom_document_type_get_system_id: | |||
* @self: A #WebKitDOMDocumentType | * @self: A #WebKitDOMDocumentType | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_type_get_system_id(WebKitDOMDocumentType* self); | webkit_dom_document_type_get_system_id(WebKitDOMDocumentType* self); | |||
/** | /** | |||
* webkit_dom_document_type_get_internal_subset: | * webkit_dom_document_type_get_internal_subset: | |||
* @self: A #WebKitDOMDocumentType | * @self: A #WebKitDOMDocumentType | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_document_type_get_internal_subset(WebKitDOMDocumentType* self); | webkit_dom_document_type_get_internal_subset(WebKitDOMDocumentType* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMDocumentType_h */ | #endif /* WebKitDOMDocumentType_h */ | |||
End of changes. 8 change blocks. | ||||
33 lines changed or deleted | 25 lines changed or added | |||
WebKitDOMElement.h | WebKitDOMElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMElement_h | #ifndef WebKitDOMElement_h | |||
#define WebKitDOMElement_h | #define WebKitDOMElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMNode.h> | #include <webkitdom/WebKitDOMNode.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_element_get_type (void); | webkit_dom_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_element_get_attribute: | * webkit_dom_element_get_attribute: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @name: A #gchar | * @name: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_element_get_attribute(WebKitDOMElement* self, const gchar* name) ; | webkit_dom_element_get_attribute(WebKitDOMElement* self, const gchar* name) ; | |||
/** | /** | |||
* webkit_dom_element_set_attribute: | * webkit_dom_element_set_attribute: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @name: A #gchar | * @name: A #gchar | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_set_attribute(WebKitDOMElement* self, const gchar* name, const gchar* value, GError** error); | webkit_dom_element_set_attribute(WebKitDOMElement* self, const gchar* name, const gchar* value, GError** error); | |||
/** | /** | |||
* webkit_dom_element_remove_attribute: | * webkit_dom_element_remove_attribute: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @name: A #gchar | * @name: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_remove_attribute(WebKitDOMElement* self, const gchar* na me); | webkit_dom_element_remove_attribute(WebKitDOMElement* self, const gchar* na me); | |||
/** | /** | |||
* webkit_dom_element_get_attribute_node: | * webkit_dom_element_get_attribute_node: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @name: A #gchar | * @name: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMAttr | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMAttr* | WEBKIT_API WebKitDOMAttr* | |||
webkit_dom_element_get_attribute_node(WebKitDOMElement* self, const gchar* name); | webkit_dom_element_get_attribute_node(WebKitDOMElement* self, const gchar* name); | |||
/** | /** | |||
* webkit_dom_element_set_attribute_node: | * webkit_dom_element_set_attribute_node: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @newAttr: A #WebKitDOMAttr | * @newAttr: A #WebKitDOMAttr | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMAttr | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMAttr* | WEBKIT_API WebKitDOMAttr* | |||
webkit_dom_element_set_attribute_node(WebKitDOMElement* self, WebKitDOMAttr * newAttr, GError** error); | webkit_dom_element_set_attribute_node(WebKitDOMElement* self, WebKitDOMAttr * newAttr, GError** error); | |||
/** | /** | |||
* webkit_dom_element_remove_attribute_node: | * webkit_dom_element_remove_attribute_node: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @oldAttr: A #WebKitDOMAttr | * @oldAttr: A #WebKitDOMAttr | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMAttr | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMAttr* | WEBKIT_API WebKitDOMAttr* | |||
webkit_dom_element_remove_attribute_node(WebKitDOMElement* self, WebKitDOMA ttr* oldAttr, GError** error); | webkit_dom_element_remove_attribute_node(WebKitDOMElement* self, WebKitDOMA ttr* oldAttr, GError** error); | |||
/** | /** | |||
* webkit_dom_element_get_elements_by_tag_name: | * webkit_dom_element_get_elements_by_tag_name: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @name: A #gchar | * @name: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_element_get_elements_by_tag_name(WebKitDOMElement* self, const g char* name); | webkit_dom_element_get_elements_by_tag_name(WebKitDOMElement* self, const g char* name); | |||
/** | /** | |||
* webkit_dom_element_has_attributes: | * webkit_dom_element_has_attributes: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_element_has_attributes(WebKitDOMElement* self); | webkit_dom_element_has_attributes(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_attribute_ns: | * webkit_dom_element_get_attribute_ns: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @namespaceURI: A #gchar | * @namespaceURI: A #gchar | |||
* @localName: A #gchar | * @localName: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_element_get_attribute_ns(WebKitDOMElement* self, const gchar* na mespaceURI, const gchar* localName); | webkit_dom_element_get_attribute_ns(WebKitDOMElement* self, const gchar* na mespaceURI, const gchar* localName); | |||
/** | /** | |||
* webkit_dom_element_set_attribute_ns: | * webkit_dom_element_set_attribute_ns: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @namespaceURI: A #gchar | * @namespaceURI: (allow-none): A #gchar | |||
* @qualifiedName: A #gchar | * @qualifiedName: A #gchar | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_set_attribute_ns(WebKitDOMElement* self, const gchar* na mespaceURI, const gchar* qualifiedName, const gchar* value, GError** error) ; | webkit_dom_element_set_attribute_ns(WebKitDOMElement* self, const gchar* na mespaceURI, const gchar* qualifiedName, const gchar* value, GError** error) ; | |||
/** | /** | |||
* webkit_dom_element_remove_attribute_ns: | * webkit_dom_element_remove_attribute_ns: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @namespaceURI: A #gchar | * @namespaceURI: A #gchar | |||
* @localName: A #gchar | * @localName: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_remove_attribute_ns(WebKitDOMElement* self, const gchar* namespaceURI, const gchar* localName); | webkit_dom_element_remove_attribute_ns(WebKitDOMElement* self, const gchar* namespaceURI, const gchar* localName); | |||
/** | /** | |||
* webkit_dom_element_get_elements_by_tag_name_ns: | * webkit_dom_element_get_elements_by_tag_name_ns: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @namespaceURI: A #gchar | * @namespaceURI: A #gchar | |||
* @localName: A #gchar | * @localName: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_element_get_elements_by_tag_name_ns(WebKitDOMElement* self, cons t gchar* namespaceURI, const gchar* localName); | webkit_dom_element_get_elements_by_tag_name_ns(WebKitDOMElement* self, cons t gchar* namespaceURI, const gchar* localName); | |||
/** | /** | |||
* webkit_dom_element_get_attribute_node_ns: | * webkit_dom_element_get_attribute_node_ns: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @namespaceURI: A #gchar | * @namespaceURI: A #gchar | |||
* @localName: A #gchar | * @localName: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMAttr | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMAttr* | WEBKIT_API WebKitDOMAttr* | |||
webkit_dom_element_get_attribute_node_ns(WebKitDOMElement* self, const gcha r* namespaceURI, const gchar* localName); | webkit_dom_element_get_attribute_node_ns(WebKitDOMElement* self, const gcha r* namespaceURI, const gchar* localName); | |||
/** | /** | |||
* webkit_dom_element_set_attribute_node_ns: | * webkit_dom_element_set_attribute_node_ns: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @newAttr: A #WebKitDOMAttr | * @newAttr: A #WebKitDOMAttr | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMAttr | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMAttr* | WEBKIT_API WebKitDOMAttr* | |||
webkit_dom_element_set_attribute_node_ns(WebKitDOMElement* self, WebKitDOMA ttr* newAttr, GError** error); | webkit_dom_element_set_attribute_node_ns(WebKitDOMElement* self, WebKitDOMA ttr* newAttr, GError** error); | |||
/** | /** | |||
* webkit_dom_element_has_attribute: | * webkit_dom_element_has_attribute: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @name: A #gchar | * @name: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_element_has_attribute(WebKitDOMElement* self, const gchar* name) ; | webkit_dom_element_has_attribute(WebKitDOMElement* self, const gchar* name) ; | |||
/** | /** | |||
* webkit_dom_element_has_attribute_ns: | * webkit_dom_element_has_attribute_ns: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @namespaceURI: A #gchar | * @namespaceURI: A #gchar | |||
* @localName: A #gchar | * @localName: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_element_has_attribute_ns(WebKitDOMElement* self, const gchar* na mespaceURI, const gchar* localName); | webkit_dom_element_has_attribute_ns(WebKitDOMElement* self, const gchar* na mespaceURI, const gchar* localName); | |||
/** | /** | |||
* webkit_dom_element_focus: | * webkit_dom_element_focus: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_focus(WebKitDOMElement* self); | webkit_dom_element_focus(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_blur: | * webkit_dom_element_blur: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_blur(WebKitDOMElement* self); | webkit_dom_element_blur(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_scroll_into_view: | * webkit_dom_element_scroll_into_view: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @alignWithTop: A #gboolean | * @alignWithTop: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_scroll_into_view(WebKitDOMElement* self, gboolean alignW ithTop); | webkit_dom_element_scroll_into_view(WebKitDOMElement* self, gboolean alignW ithTop); | |||
/** | /** | |||
* webkit_dom_element_scroll_into_view_if_needed: | * webkit_dom_element_scroll_into_view_if_needed: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @centerIfNeeded: A #gboolean | * @centerIfNeeded: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_scroll_into_view_if_needed(WebKitDOMElement* self, gbool ean centerIfNeeded); | webkit_dom_element_scroll_into_view_if_needed(WebKitDOMElement* self, gbool ean centerIfNeeded); | |||
/** | /** | |||
* webkit_dom_element_scroll_by_lines: | * webkit_dom_element_scroll_by_lines: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @lines: A #glong | * @lines: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_scroll_by_lines(WebKitDOMElement* self, glong lines); | webkit_dom_element_scroll_by_lines(WebKitDOMElement* self, glong lines); | |||
/** | /** | |||
* webkit_dom_element_scroll_by_pages: | * webkit_dom_element_scroll_by_pages: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @pages: A #glong | * @pages: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_scroll_by_pages(WebKitDOMElement* self, glong pages); | webkit_dom_element_scroll_by_pages(WebKitDOMElement* self, glong pages); | |||
/** | /** | |||
* webkit_dom_element_get_elements_by_class_name: | * webkit_dom_element_get_elements_by_class_name: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @name: A #gchar | * @name: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_element_get_elements_by_class_name(WebKitDOMElement* self, const gchar* name); | webkit_dom_element_get_elements_by_class_name(WebKitDOMElement* self, const gchar* name); | |||
/** | /** | |||
* webkit_dom_element_query_selector: | * webkit_dom_element_query_selector: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @selectors: A #gchar | * @selectors: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_element_query_selector(WebKitDOMElement* self, const gchar* sele ctors, GError** error); | webkit_dom_element_query_selector(WebKitDOMElement* self, const gchar* sele ctors, GError** error); | |||
/** | /** | |||
* webkit_dom_element_query_selector_all: | * webkit_dom_element_query_selector_all: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @selectors: A #gchar | * @selectors: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_element_query_selector_all(WebKitDOMElement* self, const gchar* selectors, GError** error); | webkit_dom_element_query_selector_all(WebKitDOMElement* self, const gchar* selectors, GError** error); | |||
/** | /** | |||
* webkit_dom_element_webkit_matches_selector: | * webkit_dom_element_webkit_matches_selector: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @selectors: A #gchar | * @selectors: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_element_webkit_matches_selector(WebKitDOMElement* self, const gc har* selectors, GError** error); | webkit_dom_element_webkit_matches_selector(WebKitDOMElement* self, const gc har* selectors, GError** error); | |||
/** | /** | |||
* webkit_dom_element_webkit_request_full_screen: | * webkit_dom_element_webkit_request_full_screen: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @flags: A #gushort | * @flags: A #gushort | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_webkit_request_full_screen(WebKitDOMElement* self, gusho rt flags); | webkit_dom_element_webkit_request_full_screen(WebKitDOMElement* self, gusho rt flags); | |||
/** | /** | |||
* webkit_dom_element_webkit_request_fullscreen: | * webkit_dom_element_webkit_request_fullscreen: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_webkit_request_fullscreen(WebKitDOMElement* self); | webkit_dom_element_webkit_request_fullscreen(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_webkit_request_pointer_lock: | * webkit_dom_element_webkit_request_pointer_lock: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_webkit_request_pointer_lock(WebKitDOMElement* self); | webkit_dom_element_webkit_request_pointer_lock(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_remove: | * webkit_dom_element_remove: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_remove(WebKitDOMElement* self, GError** error); | webkit_dom_element_remove(WebKitDOMElement* self, GError** error); | |||
/** | /** | |||
* webkit_dom_element_get_tag_name: | * webkit_dom_element_get_tag_name: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_element_get_tag_name(WebKitDOMElement* self); | webkit_dom_element_get_tag_name(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_attributes: | * webkit_dom_element_get_attributes: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNamedNodeMap | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNamedNodeMap* | WEBKIT_API WebKitDOMNamedNodeMap* | |||
webkit_dom_element_get_attributes(WebKitDOMElement* self); | webkit_dom_element_get_attributes(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_style: | * webkit_dom_element_get_style: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMCSSStyleDeclaration | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMCSSStyleDeclaration* | WEBKIT_API WebKitDOMCSSStyleDeclaration* | |||
webkit_dom_element_get_style(WebKitDOMElement* self); | webkit_dom_element_get_style(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_id: | * webkit_dom_element_get_id: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_element_get_id(WebKitDOMElement* self); | webkit_dom_element_get_id(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_set_id: | * webkit_dom_element_set_id: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_set_id(WebKitDOMElement* self, const gchar* value); | webkit_dom_element_set_id(WebKitDOMElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_element_get_offset_left: | * webkit_dom_element_get_offset_left: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_element_get_offset_left(WebKitDOMElement* self); | webkit_dom_element_get_offset_left(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_offset_top: | * webkit_dom_element_get_offset_top: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_element_get_offset_top(WebKitDOMElement* self); | webkit_dom_element_get_offset_top(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_offset_width: | * webkit_dom_element_get_offset_width: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_element_get_offset_width(WebKitDOMElement* self); | webkit_dom_element_get_offset_width(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_offset_height: | * webkit_dom_element_get_offset_height: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_element_get_offset_height(WebKitDOMElement* self); | webkit_dom_element_get_offset_height(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_offset_parent: | * webkit_dom_element_get_offset_parent: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_element_get_offset_parent(WebKitDOMElement* self); | webkit_dom_element_get_offset_parent(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_client_left: | * webkit_dom_element_get_client_left: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_element_get_client_left(WebKitDOMElement* self); | webkit_dom_element_get_client_left(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_client_top: | * webkit_dom_element_get_client_top: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_element_get_client_top(WebKitDOMElement* self); | webkit_dom_element_get_client_top(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_client_width: | * webkit_dom_element_get_client_width: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_element_get_client_width(WebKitDOMElement* self); | webkit_dom_element_get_client_width(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_client_height: | * webkit_dom_element_get_client_height: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_element_get_client_height(WebKitDOMElement* self); | webkit_dom_element_get_client_height(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_scroll_left: | * webkit_dom_element_get_scroll_left: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_element_get_scroll_left(WebKitDOMElement* self); | webkit_dom_element_get_scroll_left(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_set_scroll_left: | * webkit_dom_element_set_scroll_left: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_set_scroll_left(WebKitDOMElement* self, glong value); | webkit_dom_element_set_scroll_left(WebKitDOMElement* self, glong value); | |||
/** | /** | |||
* webkit_dom_element_get_scroll_top: | * webkit_dom_element_get_scroll_top: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_element_get_scroll_top(WebKitDOMElement* self); | webkit_dom_element_get_scroll_top(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_set_scroll_top: | * webkit_dom_element_set_scroll_top: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_set_scroll_top(WebKitDOMElement* self, glong value); | webkit_dom_element_set_scroll_top(WebKitDOMElement* self, glong value); | |||
/** | /** | |||
* webkit_dom_element_get_scroll_width: | * webkit_dom_element_get_scroll_width: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_element_get_scroll_width(WebKitDOMElement* self); | webkit_dom_element_get_scroll_width(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_scroll_height: | * webkit_dom_element_get_scroll_height: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_element_get_scroll_height(WebKitDOMElement* self); | webkit_dom_element_get_scroll_height(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_class_name: | * webkit_dom_element_get_class_name: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_element_get_class_name(WebKitDOMElement* self); | webkit_dom_element_get_class_name(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_set_class_name: | * webkit_dom_element_set_class_name: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_element_set_class_name(WebKitDOMElement* self, const gchar* valu e); | webkit_dom_element_set_class_name(WebKitDOMElement* self, const gchar* valu e); | |||
/** | /** | |||
* webkit_dom_element_get_class_list: | * webkit_dom_element_get_class_list: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMTokenList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMTokenList* | WEBKIT_API WebKitDOMDOMTokenList* | |||
webkit_dom_element_get_class_list(WebKitDOMElement* self); | webkit_dom_element_get_class_list(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_first_element_child: | * webkit_dom_element_get_first_element_child: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_element_get_first_element_child(WebKitDOMElement* self); | webkit_dom_element_get_first_element_child(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_last_element_child: | * webkit_dom_element_get_last_element_child: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_element_get_last_element_child(WebKitDOMElement* self); | webkit_dom_element_get_last_element_child(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_previous_element_sibling: | * webkit_dom_element_get_previous_element_sibling: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_element_get_previous_element_sibling(WebKitDOMElement* self); | webkit_dom_element_get_previous_element_sibling(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_next_element_sibling: | * webkit_dom_element_get_next_element_sibling: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_element_get_next_element_sibling(WebKitDOMElement* self); | webkit_dom_element_get_next_element_sibling(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_child_element_count: | * webkit_dom_element_get_child_element_count: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_element_get_child_element_count(WebKitDOMElement* self); | webkit_dom_element_get_child_element_count(WebKitDOMElement* self); | |||
/** | /** | |||
* webkit_dom_element_get_webkit_region_overset: | * webkit_dom_element_get_webkit_region_overset: | |||
* @self: A #WebKitDOMElement | * @self: A #WebKitDOMElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_element_get_webkit_region_overset(WebKitDOMElement* self); | webkit_dom_element_get_webkit_region_overset(WebKitDOMElement* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMElement_h */ | #endif /* WebKitDOMElement_h */ | |||
End of changes. 61 change blocks. | ||||
138 lines changed or deleted | 61 lines changed or added | |||
WebKitDOMEntityReference.h | WebKitDOMEntityReference.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMEntityReference_h | #ifndef WebKitDOMEntityReference_h | |||
#define WebKitDOMEntityReference_h | #define WebKitDOMEntityReference_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMNode.h> | #include <webkitdom/WebKitDOMNode.h> | |||
End of changes. 1 change blocks. | ||||
19 lines changed or deleted | 19 lines changed or added | |||
WebKitDOMEvent.h | WebKitDOMEvent.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMEvent_h | #ifndef WebKitDOMEvent_h | |||
#define WebKitDOMEvent_h | #define WebKitDOMEvent_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_event_get_type (void); | webkit_dom_event_get_type (void); | |||
/** | /** | |||
* webkit_dom_event_stop_propagation: | * webkit_dom_event_stop_propagation: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_event_stop_propagation(WebKitDOMEvent* self); | webkit_dom_event_stop_propagation(WebKitDOMEvent* self); | |||
/** | /** | |||
* webkit_dom_event_prevent_default: | * webkit_dom_event_prevent_default: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_event_prevent_default(WebKitDOMEvent* self); | webkit_dom_event_prevent_default(WebKitDOMEvent* self); | |||
/** | /** | |||
* webkit_dom_event_init_event: | * webkit_dom_event_init_event: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* @eventTypeArg: A #gchar | * @eventTypeArg: A #gchar | |||
* @canBubbleArg: A #gboolean | * @canBubbleArg: A #gboolean | |||
* @cancelableArg: A #gboolean | * @cancelableArg: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_event_init_event(WebKitDOMEvent* self, const gchar* eventTypeArg , gboolean canBubbleArg, gboolean cancelableArg); | webkit_dom_event_init_event(WebKitDOMEvent* self, const gchar* eventTypeArg , gboolean canBubbleArg, gboolean cancelableArg); | |||
/** | /** | |||
* webkit_dom_event_stop_immediate_propagation: | * webkit_dom_event_stop_immediate_propagation: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_event_stop_immediate_propagation(WebKitDOMEvent* self); | webkit_dom_event_stop_immediate_propagation(WebKitDOMEvent* self); | |||
/** | /** | |||
* webkit_dom_event_get_target: | * webkit_dom_event_get_target: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMEventTarget | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMEventTarget* | WEBKIT_API WebKitDOMEventTarget* | |||
webkit_dom_event_get_target(WebKitDOMEvent* self); | webkit_dom_event_get_target(WebKitDOMEvent* self); | |||
/** | /** | |||
* webkit_dom_event_get_current_target: | * webkit_dom_event_get_current_target: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMEventTarget | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMEventTarget* | WEBKIT_API WebKitDOMEventTarget* | |||
webkit_dom_event_get_current_target(WebKitDOMEvent* self); | webkit_dom_event_get_current_target(WebKitDOMEvent* self); | |||
/** | /** | |||
* webkit_dom_event_get_event_phase: | * webkit_dom_event_get_event_phase: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* | * | |||
* Returns: | * Returns: A #gushort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gushort | WEBKIT_API gushort | |||
webkit_dom_event_get_event_phase(WebKitDOMEvent* self); | webkit_dom_event_get_event_phase(WebKitDOMEvent* self); | |||
/** | /** | |||
* webkit_dom_event_get_bubbles: | * webkit_dom_event_get_bubbles: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_event_get_bubbles(WebKitDOMEvent* self); | webkit_dom_event_get_bubbles(WebKitDOMEvent* self); | |||
/** | /** | |||
* webkit_dom_event_get_cancelable: | * webkit_dom_event_get_cancelable: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_event_get_cancelable(WebKitDOMEvent* self); | webkit_dom_event_get_cancelable(WebKitDOMEvent* self); | |||
/** | /** | |||
* webkit_dom_event_get_time_stamp: | * webkit_dom_event_get_time_stamp: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* | * | |||
* Returns: | * Returns: A #guint32 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint32 | WEBKIT_API guint32 | |||
webkit_dom_event_get_time_stamp(WebKitDOMEvent* self); | webkit_dom_event_get_time_stamp(WebKitDOMEvent* self); | |||
/** | /** | |||
* webkit_dom_event_get_default_prevented: | * webkit_dom_event_get_default_prevented: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_event_get_default_prevented(WebKitDOMEvent* self); | webkit_dom_event_get_default_prevented(WebKitDOMEvent* self); | |||
/** | /** | |||
* webkit_dom_event_get_src_element: | * webkit_dom_event_get_src_element: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMEventTarget | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMEventTarget* | WEBKIT_API WebKitDOMEventTarget* | |||
webkit_dom_event_get_src_element(WebKitDOMEvent* self); | webkit_dom_event_get_src_element(WebKitDOMEvent* self); | |||
/** | /** | |||
* webkit_dom_event_get_return_value: | * webkit_dom_event_get_return_value: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_event_get_return_value(WebKitDOMEvent* self); | webkit_dom_event_get_return_value(WebKitDOMEvent* self); | |||
/** | /** | |||
* webkit_dom_event_set_return_value: | * webkit_dom_event_set_return_value: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_event_set_return_value(WebKitDOMEvent* self, gboolean value); | webkit_dom_event_set_return_value(WebKitDOMEvent* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_event_get_cancel_bubble: | * webkit_dom_event_get_cancel_bubble: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_event_get_cancel_bubble(WebKitDOMEvent* self); | webkit_dom_event_get_cancel_bubble(WebKitDOMEvent* self); | |||
/** | /** | |||
* webkit_dom_event_set_cancel_bubble: | * webkit_dom_event_set_cancel_bubble: | |||
* @self: A #WebKitDOMEvent | * @self: A #WebKitDOMEvent | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_event_set_cancel_bubble(WebKitDOMEvent* self, gboolean value); | webkit_dom_event_set_cancel_bubble(WebKitDOMEvent* self, gboolean value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMEvent_h */ | #endif /* WebKitDOMEvent_h */ | |||
End of changes. 17 change blocks. | ||||
51 lines changed or deleted | 29 lines changed or added | |||
WebKitDOMEventTarget.h | WebKitDOMEventTarget.h | |||
---|---|---|---|---|
skipping to change at line 39 | skipping to change at line 39 | |||
#define WEBKIT_DOM_EVENT_TARGET_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST (( obj), WEBKIT_TYPE_DOM_EVENT_TARGET, WebKitDOMEventTargetIface)) | #define WEBKIT_DOM_EVENT_TARGET_CLASS(obj) (G_TYPE_CHECK_CLASS_CAST (( obj), WEBKIT_TYPE_DOM_EVENT_TARGET, WebKitDOMEventTargetIface)) | |||
#define WEBKIT_DOM_IS_EVENT_TARGET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), WEBKIT_TYPE_DOM_EVENT_TARGET)) | #define WEBKIT_DOM_IS_EVENT_TARGET(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), WEBKIT_TYPE_DOM_EVENT_TARGET)) | |||
#define WEBKIT_DOM_EVENT_TARGET_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERF ACE ((obj), WEBKIT_TYPE_DOM_EVENT_TARGET, WebKitDOMEventTargetIface)) | #define WEBKIT_DOM_EVENT_TARGET_GET_IFACE(obj) (G_TYPE_INSTANCE_GET_INTERF ACE ((obj), WEBKIT_TYPE_DOM_EVENT_TARGET, WebKitDOMEventTargetIface)) | |||
typedef struct _WebKitDOMEventTargetIface WebKitDOMEventTargetIface; | typedef struct _WebKitDOMEventTargetIface WebKitDOMEventTargetIface; | |||
struct _WebKitDOMEventTargetIface { | struct _WebKitDOMEventTargetIface { | |||
GTypeInterface gIface; | GTypeInterface gIface; | |||
/* virtual table */ | /* virtual table */ | |||
void (* dispatch_event)(WebKitDOMEventTarget *target, | gboolean (* dispatch_event)(WebKitDOMEventTarget *target, | |||
WebKitDOMEvent *event, | WebKitDOMEvent *event, | |||
GError **error); | GError **error); | |||
gboolean (* add_event_listener)(WebKitDOMEventTarget *target, | gboolean (* add_event_listener)(WebKitDOMEventTarget *target, | |||
const char *event_name, | const char *event_name, | |||
GCallback handler, | GClosure *handler, | |||
gboolean bubble, | gboolean use_capture) | |||
gpointer user_data); | ; | |||
gboolean (* remove_event_listener)(WebKitDOMEventTarget *target, | gboolean (* remove_event_listener)(WebKitDOMEventTarget *target, | |||
const char *event_nam e, | const char *event_nam e, | |||
GCallback handler, | GClosure *handler, | |||
gboolean bubble); | gboolean use_captu | |||
re); | ||||
}; | }; | |||
WEBKIT_API GType webkit_dom_event_target_get_type(void) G_GNUC_CONST; | WEBKIT_API GType webkit_dom_event_target_get_type(void) G_GNUC_CONST; | |||
WEBKIT_API void webkit_dom_event_target_dispatch_event(WebKitDOMEventT | /** | |||
arget *target, | * webkit_dom_event_target_dispatch_event: | |||
* @target: A #WebKitDOMEventTarget | ||||
* @event: A #WebKitDOMEvent | ||||
* @error: return location for an error or %NULL | ||||
* | ||||
* Returns: a #gboolean | ||||
*/ | ||||
WEBKIT_API gboolean webkit_dom_event_target_dispatch_event(WebKitDOMEventT | ||||
arget *target, | ||||
WebKitDOMEvent *event, | WebKitDOMEvent *event, | |||
GError **error); | GError **error); | |||
/** | /** | |||
* webkit_dom_event_target_add_event_listener: | * webkit_dom_event_target_add_event_listener: | |||
* @target: A #WebKitDOMEventTarget | * @target: A #WebKitDOMEventTarget | |||
* @event_name: A #gchar | * @event_name: A #gchar | |||
* @handler: (scope async): A #GCallback | * @handler: (scope async): A #GCallback | |||
* @bubble: A #gboolean | * @use_capture: A #gboolean | |||
* @user_data: A #gpointer | * @user_data: A #gpointer | |||
* | * | |||
* Returns: a #gboolean | ||||
*/ | */ | |||
WEBKIT_API gboolean webkit_dom_event_target_add_event_listener(WebKitDOMEv entTarget *target, | WEBKIT_API gboolean webkit_dom_event_target_add_event_listener(WebKitDOMEv entTarget *target, | |||
const char *event_name, | const char *event_name, | |||
GCallback handler, | GCallback handler, | |||
gboolean bubble, | gboolean use_capture, | |||
gpointer user_data); | gpointer user_data); | |||
/** | /** | |||
* webkit_dom_event_target_remove_event_listener: | * webkit_dom_event_target_remove_event_listener: | |||
* @target: A #WebKitDOMEventTarget | * @target: A #WebKitDOMEventTarget | |||
* @event_name: A #gchar | * @event_name: A #gchar | |||
* @handler: (scope call): A #GCallback | * @handler: (scope call): A #GCallback | |||
* @bubble: A #gboolean | * @use_capture: A #gboolean | |||
* | * | |||
* Returns: a #gboolean | ||||
*/ | */ | |||
WEBKIT_API gboolean webkit_dom_event_target_remove_event_listener(WebKitDO MEventTarget *target, | WEBKIT_API gboolean webkit_dom_event_target_remove_event_listener(WebKitDO MEventTarget *target, | |||
const ch ar *event_name, | const ch ar *event_name, | |||
GCallbac k handler, | GCallbac k handler, | |||
gboolean | gboolean | |||
bubble); | use_capture); | |||
/** | ||||
* webkit_dom_event_target_add_event_listener_with_closure: (rename-to webk | ||||
it_dom_event_target_add_event_listener) | ||||
* @target: A #WebKitDOMEventTarget | ||||
* @event_name: A #gchar | ||||
* @handler: A #GClosure | ||||
* @use_capture: A #gboolean | ||||
* | ||||
* Version of webkit_dom_event_target_add_event_listener() using a closure | ||||
* instead of a callbacks for easier binding in other languages. | ||||
* | ||||
* Returns: a #gboolean | ||||
*/ | ||||
WEBKIT_API gboolean webkit_dom_event_target_add_event_listener_with_closure | ||||
(WebKitDOMEventTarget *target, | ||||
const char *event_name, | ||||
GClosure *handler, | ||||
gboolean use_capture); | ||||
/** | ||||
* webkit_dom_event_target_remove_event_listener_with_closure: (rename-to w | ||||
ebkit_dom_event_target_remove_event_listener) | ||||
* @target: A #WebKitDOMEventTarget | ||||
* @event_name: A #gchar | ||||
* @handler: A #GClosure | ||||
* @use_capture: A #gboolean | ||||
* | ||||
* Version of webkit_dom_event_target_remove_event_listener() using a closu | ||||
re | ||||
* instead of a callbacks for easier binding in other languages. | ||||
* | ||||
* Returns: a #gboolean | ||||
*/ | ||||
WEBKIT_API gboolean webkit_dom_event_target_remove_event_listener_with_clos | ||||
ure(WebKitDOMEventTarget *target, | ||||
const char *event_name, | ||||
GClosure *handler, | ||||
gboolean use_capture); | ||||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMEventTarget_h */ | #endif /* WebKitDOMEventTarget_h */ | |||
End of changes. 10 change blocks. | ||||
13 lines changed or deleted | 69 lines changed or added | |||
WebKitDOMFile.h | WebKitDOMFile.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMFile_h | #ifndef WebKitDOMFile_h | |||
#define WebKitDOMFile_h | #define WebKitDOMFile_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMBlob.h> | #include <webkitdom/WebKitDOMBlob.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMBlobClass parent_class; | WebKitDOMBlobClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_file_get_type (void); | webkit_dom_file_get_type (void); | |||
/** | /** | |||
* webkit_dom_file_get_name: | * webkit_dom_file_get_name: | |||
* @self: A #WebKitDOMFile | * @self: A #WebKitDOMFile | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_file_get_name(WebKitDOMFile* self); | webkit_dom_file_get_name(WebKitDOMFile* self); | |||
/** | /** | |||
* webkit_dom_file_get_webkit_relative_path: | * webkit_dom_file_get_webkit_relative_path: | |||
* @self: A #WebKitDOMFile | * @self: A #WebKitDOMFile | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_file_get_webkit_relative_path(WebKitDOMFile* self); | webkit_dom_file_get_webkit_relative_path(WebKitDOMFile* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMFile_h */ | #endif /* WebKitDOMFile_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMFileList.h | WebKitDOMFileList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMFileList_h | #ifndef WebKitDOMFileList_h | |||
#define WebKitDOMFileList_h | #define WebKitDOMFileList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_file_list_get_type (void); | webkit_dom_file_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_file_list_item: | * webkit_dom_file_list_item: | |||
* @self: A #WebKitDOMFileList | * @self: A #WebKitDOMFileList | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMFile | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMFile* | WEBKIT_API WebKitDOMFile* | |||
webkit_dom_file_list_item(WebKitDOMFileList* self, gulong index); | webkit_dom_file_list_item(WebKitDOMFileList* self, gulong index); | |||
/** | /** | |||
* webkit_dom_file_list_get_length: | * webkit_dom_file_list_get_length: | |||
* @self: A #WebKitDOMFileList | * @self: A #WebKitDOMFileList | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_file_list_get_length(WebKitDOMFileList* self); | webkit_dom_file_list_get_length(WebKitDOMFileList* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMFileList_h */ | #endif /* WebKitDOMFileList_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMGamepad.h | WebKitDOMGamepad.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMGamepad_h | #ifndef WebKitDOMGamepad_h | |||
#define WebKitDOMGamepad_h | #define WebKitDOMGamepad_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_gamepad_get_type (void); | webkit_dom_gamepad_get_type (void); | |||
/** | /** | |||
* webkit_dom_gamepad_get_id: | * webkit_dom_gamepad_get_id: | |||
* @self: A #WebKitDOMGamepad | * @self: A #WebKitDOMGamepad | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_gamepad_get_id(WebKitDOMGamepad* self); | webkit_dom_gamepad_get_id(WebKitDOMGamepad* self); | |||
/** | /** | |||
* webkit_dom_gamepad_get_index: | * webkit_dom_gamepad_get_index: | |||
* @self: A #WebKitDOMGamepad | * @self: A #WebKitDOMGamepad | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_gamepad_get_index(WebKitDOMGamepad* self); | webkit_dom_gamepad_get_index(WebKitDOMGamepad* self); | |||
/** | /** | |||
* webkit_dom_gamepad_get_timestamp: | * webkit_dom_gamepad_get_timestamp: | |||
* @self: A #WebKitDOMGamepad | * @self: A #WebKitDOMGamepad | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_gamepad_get_timestamp(WebKitDOMGamepad* self); | webkit_dom_gamepad_get_timestamp(WebKitDOMGamepad* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMGamepad_h */ | #endif /* WebKitDOMGamepad_h */ | |||
End of changes. 4 change blocks. | ||||
25 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMGamepadList.h | WebKitDOMGamepadList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMGamepadList_h | #ifndef WebKitDOMGamepadList_h | |||
#define WebKitDOMGamepadList_h | #define WebKitDOMGamepadList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_gamepad_list_get_type (void); | webkit_dom_gamepad_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_gamepad_list_item: | * webkit_dom_gamepad_list_item: | |||
* @self: A #WebKitDOMGamepadList | * @self: A #WebKitDOMGamepadList | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMGamepad | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMGamepad* | WEBKIT_API WebKitDOMGamepad* | |||
webkit_dom_gamepad_list_item(WebKitDOMGamepadList* self, gulong index); | webkit_dom_gamepad_list_item(WebKitDOMGamepadList* self, gulong index); | |||
/** | /** | |||
* webkit_dom_gamepad_list_get_length: | * webkit_dom_gamepad_list_get_length: | |||
* @self: A #WebKitDOMGamepadList | * @self: A #WebKitDOMGamepadList | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_gamepad_list_get_length(WebKitDOMGamepadList* self); | webkit_dom_gamepad_list_get_length(WebKitDOMGamepadList* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMGamepadList_h */ | #endif /* WebKitDOMGamepadList_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMGeolocation.h | WebKitDOMGeolocation.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMGeolocation_h | #ifndef WebKitDOMGeolocation_h | |||
#define WebKitDOMGeolocation_h | #define WebKitDOMGeolocation_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_geolocation_get_type (void); | webkit_dom_geolocation_get_type (void); | |||
/** | /** | |||
* webkit_dom_geolocation_clear_watch: | * webkit_dom_geolocation_clear_watch: | |||
* @self: A #WebKitDOMGeolocation | * @self: A #WebKitDOMGeolocation | |||
* @watchID: A #glong | * @watchID: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_geolocation_clear_watch(WebKitDOMGeolocation* self, glong watchI D); | webkit_dom_geolocation_clear_watch(WebKitDOMGeolocation* self, glong watchI D); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMGeolocation_h */ | #endif /* WebKitDOMGeolocation_h */ | |||
End of changes. 2 change blocks. | ||||
21 lines changed or deleted | 19 lines changed or added | |||
WebKitDOMHTMLAnchorElement.h | WebKitDOMHTMLAnchorElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLAnchorElement_h | #ifndef WebKitDOMHTMLAnchorElement_h | |||
#define WebKitDOMHTMLAnchorElement_h | #define WebKitDOMHTMLAnchorElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_anchor_element_get_type (void); | webkit_dom_html_anchor_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_charset: | * webkit_dom_html_anchor_element_get_charset: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_charset(WebKitDOMHTMLAnchorElement* self ); | webkit_dom_html_anchor_element_get_charset(WebKitDOMHTMLAnchorElement* self ); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_charset: | * webkit_dom_html_anchor_element_set_charset: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_charset(WebKitDOMHTMLAnchorElement* self , const gchar* value); | webkit_dom_html_anchor_element_set_charset(WebKitDOMHTMLAnchorElement* self , const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_coords: | * webkit_dom_html_anchor_element_get_coords: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_coords(WebKitDOMHTMLAnchorElement* self) ; | webkit_dom_html_anchor_element_get_coords(WebKitDOMHTMLAnchorElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_coords: | * webkit_dom_html_anchor_element_set_coords: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_coords(WebKitDOMHTMLAnchorElement* self, const gchar* value); | webkit_dom_html_anchor_element_set_coords(WebKitDOMHTMLAnchorElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_download: | * webkit_dom_html_anchor_element_get_download: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_download(WebKitDOMHTMLAnchorElement* sel f); | webkit_dom_html_anchor_element_get_download(WebKitDOMHTMLAnchorElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_download: | * webkit_dom_html_anchor_element_set_download: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_download(WebKitDOMHTMLAnchorElement* sel f, const gchar* value); | webkit_dom_html_anchor_element_set_download(WebKitDOMHTMLAnchorElement* sel f, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_href: | * webkit_dom_html_anchor_element_get_href: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_href(WebKitDOMHTMLAnchorElement* self); | webkit_dom_html_anchor_element_get_href(WebKitDOMHTMLAnchorElement* self); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_href: | * webkit_dom_html_anchor_element_set_href: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_href(WebKitDOMHTMLAnchorElement* self, c onst gchar* value); | webkit_dom_html_anchor_element_set_href(WebKitDOMHTMLAnchorElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_hreflang: | * webkit_dom_html_anchor_element_get_hreflang: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_hreflang(WebKitDOMHTMLAnchorElement* sel f); | webkit_dom_html_anchor_element_get_hreflang(WebKitDOMHTMLAnchorElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_hreflang: | * webkit_dom_html_anchor_element_set_hreflang: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_hreflang(WebKitDOMHTMLAnchorElement* sel f, const gchar* value); | webkit_dom_html_anchor_element_set_hreflang(WebKitDOMHTMLAnchorElement* sel f, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_name: | * webkit_dom_html_anchor_element_get_name: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_name(WebKitDOMHTMLAnchorElement* self); | webkit_dom_html_anchor_element_get_name(WebKitDOMHTMLAnchorElement* self); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_name: | * webkit_dom_html_anchor_element_set_name: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_name(WebKitDOMHTMLAnchorElement* self, c onst gchar* value); | webkit_dom_html_anchor_element_set_name(WebKitDOMHTMLAnchorElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_ping: | * webkit_dom_html_anchor_element_get_ping: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_ping(WebKitDOMHTMLAnchorElement* self); | webkit_dom_html_anchor_element_get_ping(WebKitDOMHTMLAnchorElement* self); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_ping: | * webkit_dom_html_anchor_element_set_ping: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_ping(WebKitDOMHTMLAnchorElement* self, c onst gchar* value); | webkit_dom_html_anchor_element_set_ping(WebKitDOMHTMLAnchorElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_rel: | * webkit_dom_html_anchor_element_get_rel: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_rel(WebKitDOMHTMLAnchorElement* self); | webkit_dom_html_anchor_element_get_rel(WebKitDOMHTMLAnchorElement* self); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_rel: | * webkit_dom_html_anchor_element_set_rel: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_rel(WebKitDOMHTMLAnchorElement* self, co nst gchar* value); | webkit_dom_html_anchor_element_set_rel(WebKitDOMHTMLAnchorElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_rev: | * webkit_dom_html_anchor_element_get_rev: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_rev(WebKitDOMHTMLAnchorElement* self); | webkit_dom_html_anchor_element_get_rev(WebKitDOMHTMLAnchorElement* self); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_rev: | * webkit_dom_html_anchor_element_set_rev: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_rev(WebKitDOMHTMLAnchorElement* self, co nst gchar* value); | webkit_dom_html_anchor_element_set_rev(WebKitDOMHTMLAnchorElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_shape: | * webkit_dom_html_anchor_element_get_shape: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_shape(WebKitDOMHTMLAnchorElement* self); | webkit_dom_html_anchor_element_get_shape(WebKitDOMHTMLAnchorElement* self); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_shape: | * webkit_dom_html_anchor_element_set_shape: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_shape(WebKitDOMHTMLAnchorElement* self, const gchar* value); | webkit_dom_html_anchor_element_set_shape(WebKitDOMHTMLAnchorElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_target: | * webkit_dom_html_anchor_element_get_target: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_target(WebKitDOMHTMLAnchorElement* self) ; | webkit_dom_html_anchor_element_get_target(WebKitDOMHTMLAnchorElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_target: | * webkit_dom_html_anchor_element_set_target: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_target(WebKitDOMHTMLAnchorElement* self, const gchar* value); | webkit_dom_html_anchor_element_set_target(WebKitDOMHTMLAnchorElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_hash: | * webkit_dom_html_anchor_element_get_hash: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_hash(WebKitDOMHTMLAnchorElement* self); | webkit_dom_html_anchor_element_get_hash(WebKitDOMHTMLAnchorElement* self); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_hash: | * webkit_dom_html_anchor_element_set_hash: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_hash(WebKitDOMHTMLAnchorElement* self, c onst gchar* value); | webkit_dom_html_anchor_element_set_hash(WebKitDOMHTMLAnchorElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_host: | * webkit_dom_html_anchor_element_get_host: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_host(WebKitDOMHTMLAnchorElement* self); | webkit_dom_html_anchor_element_get_host(WebKitDOMHTMLAnchorElement* self); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_host: | * webkit_dom_html_anchor_element_set_host: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_host(WebKitDOMHTMLAnchorElement* self, c onst gchar* value); | webkit_dom_html_anchor_element_set_host(WebKitDOMHTMLAnchorElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_hostname: | * webkit_dom_html_anchor_element_get_hostname: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_hostname(WebKitDOMHTMLAnchorElement* sel f); | webkit_dom_html_anchor_element_get_hostname(WebKitDOMHTMLAnchorElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_hostname: | * webkit_dom_html_anchor_element_set_hostname: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_hostname(WebKitDOMHTMLAnchorElement* sel f, const gchar* value); | webkit_dom_html_anchor_element_set_hostname(WebKitDOMHTMLAnchorElement* sel f, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_pathname: | * webkit_dom_html_anchor_element_get_pathname: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_pathname(WebKitDOMHTMLAnchorElement* sel f); | webkit_dom_html_anchor_element_get_pathname(WebKitDOMHTMLAnchorElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_pathname: | * webkit_dom_html_anchor_element_set_pathname: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_pathname(WebKitDOMHTMLAnchorElement* sel f, const gchar* value); | webkit_dom_html_anchor_element_set_pathname(WebKitDOMHTMLAnchorElement* sel f, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_port: | * webkit_dom_html_anchor_element_get_port: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_port(WebKitDOMHTMLAnchorElement* self); | webkit_dom_html_anchor_element_get_port(WebKitDOMHTMLAnchorElement* self); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_port: | * webkit_dom_html_anchor_element_set_port: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_port(WebKitDOMHTMLAnchorElement* self, c onst gchar* value); | webkit_dom_html_anchor_element_set_port(WebKitDOMHTMLAnchorElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_protocol: | * webkit_dom_html_anchor_element_get_protocol: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_protocol(WebKitDOMHTMLAnchorElement* sel f); | webkit_dom_html_anchor_element_get_protocol(WebKitDOMHTMLAnchorElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_protocol: | * webkit_dom_html_anchor_element_set_protocol: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_protocol(WebKitDOMHTMLAnchorElement* sel f, const gchar* value); | webkit_dom_html_anchor_element_set_protocol(WebKitDOMHTMLAnchorElement* sel f, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_search: | * webkit_dom_html_anchor_element_get_search: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_search(WebKitDOMHTMLAnchorElement* self) ; | webkit_dom_html_anchor_element_get_search(WebKitDOMHTMLAnchorElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_anchor_element_set_search: | * webkit_dom_html_anchor_element_set_search: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_anchor_element_set_search(WebKitDOMHTMLAnchorElement* self, const gchar* value); | webkit_dom_html_anchor_element_set_search(WebKitDOMHTMLAnchorElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_origin: | * webkit_dom_html_anchor_element_get_origin: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_origin(WebKitDOMHTMLAnchorElement* self) ; | webkit_dom_html_anchor_element_get_origin(WebKitDOMHTMLAnchorElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_anchor_element_get_text: | * webkit_dom_html_anchor_element_get_text: | |||
* @self: A #WebKitDOMHTMLAnchorElement | * @self: A #WebKitDOMHTMLAnchorElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_anchor_element_get_text(WebKitDOMHTMLAnchorElement* self); | webkit_dom_html_anchor_element_get_text(WebKitDOMHTMLAnchorElement* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLAnchorElement_h */ | #endif /* WebKitDOMHTMLAnchorElement_h */ | |||
End of changes. 39 change blocks. | ||||
95 lines changed or deleted | 39 lines changed or added | |||
WebKitDOMHTMLAppletElement.h | WebKitDOMHTMLAppletElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLAppletElement_h | #ifndef WebKitDOMHTMLAppletElement_h | |||
#define WebKitDOMHTMLAppletElement_h | #define WebKitDOMHTMLAppletElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_applet_element_get_type (void); | webkit_dom_html_applet_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_applet_element_get_align: | * webkit_dom_html_applet_element_get_align: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_applet_element_get_align(WebKitDOMHTMLAppletElement* self); | webkit_dom_html_applet_element_get_align(WebKitDOMHTMLAppletElement* self); | |||
/** | /** | |||
* webkit_dom_html_applet_element_set_align: | * webkit_dom_html_applet_element_set_align: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_applet_element_set_align(WebKitDOMHTMLAppletElement* self, const gchar* value); | webkit_dom_html_applet_element_set_align(WebKitDOMHTMLAppletElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_applet_element_get_alt: | * webkit_dom_html_applet_element_get_alt: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_applet_element_get_alt(WebKitDOMHTMLAppletElement* self); | webkit_dom_html_applet_element_get_alt(WebKitDOMHTMLAppletElement* self); | |||
/** | /** | |||
* webkit_dom_html_applet_element_set_alt: | * webkit_dom_html_applet_element_set_alt: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_applet_element_set_alt(WebKitDOMHTMLAppletElement* self, co nst gchar* value); | webkit_dom_html_applet_element_set_alt(WebKitDOMHTMLAppletElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_applet_element_get_archive: | * webkit_dom_html_applet_element_get_archive: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_applet_element_get_archive(WebKitDOMHTMLAppletElement* self ); | webkit_dom_html_applet_element_get_archive(WebKitDOMHTMLAppletElement* self ); | |||
/** | /** | |||
* webkit_dom_html_applet_element_set_archive: | * webkit_dom_html_applet_element_set_archive: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_applet_element_set_archive(WebKitDOMHTMLAppletElement* self , const gchar* value); | webkit_dom_html_applet_element_set_archive(WebKitDOMHTMLAppletElement* self , const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_applet_element_get_code: | * webkit_dom_html_applet_element_get_code: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_applet_element_get_code(WebKitDOMHTMLAppletElement* self); | webkit_dom_html_applet_element_get_code(WebKitDOMHTMLAppletElement* self); | |||
/** | /** | |||
* webkit_dom_html_applet_element_set_code: | * webkit_dom_html_applet_element_set_code: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_applet_element_set_code(WebKitDOMHTMLAppletElement* self, c onst gchar* value); | webkit_dom_html_applet_element_set_code(WebKitDOMHTMLAppletElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_applet_element_get_code_base: | * webkit_dom_html_applet_element_get_code_base: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_applet_element_get_code_base(WebKitDOMHTMLAppletElement* se lf); | webkit_dom_html_applet_element_get_code_base(WebKitDOMHTMLAppletElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_applet_element_set_code_base: | * webkit_dom_html_applet_element_set_code_base: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_applet_element_set_code_base(WebKitDOMHTMLAppletElement* se lf, const gchar* value); | webkit_dom_html_applet_element_set_code_base(WebKitDOMHTMLAppletElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_applet_element_get_height: | * webkit_dom_html_applet_element_get_height: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_applet_element_get_height(WebKitDOMHTMLAppletElement* self) ; | webkit_dom_html_applet_element_get_height(WebKitDOMHTMLAppletElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_applet_element_set_height: | * webkit_dom_html_applet_element_set_height: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_applet_element_set_height(WebKitDOMHTMLAppletElement* self, const gchar* value); | webkit_dom_html_applet_element_set_height(WebKitDOMHTMLAppletElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_applet_element_get_hspace: | * webkit_dom_html_applet_element_get_hspace: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_applet_element_get_hspace(WebKitDOMHTMLAppletElement* self) ; | webkit_dom_html_applet_element_get_hspace(WebKitDOMHTMLAppletElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_applet_element_set_hspace: | * webkit_dom_html_applet_element_set_hspace: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_applet_element_set_hspace(WebKitDOMHTMLAppletElement* self, glong value); | webkit_dom_html_applet_element_set_hspace(WebKitDOMHTMLAppletElement* self, glong value); | |||
/** | /** | |||
* webkit_dom_html_applet_element_get_name: | * webkit_dom_html_applet_element_get_name: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_applet_element_get_name(WebKitDOMHTMLAppletElement* self); | webkit_dom_html_applet_element_get_name(WebKitDOMHTMLAppletElement* self); | |||
/** | /** | |||
* webkit_dom_html_applet_element_set_name: | * webkit_dom_html_applet_element_set_name: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_applet_element_set_name(WebKitDOMHTMLAppletElement* self, c onst gchar* value); | webkit_dom_html_applet_element_set_name(WebKitDOMHTMLAppletElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_applet_element_get_object: | * webkit_dom_html_applet_element_get_object: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_applet_element_get_object(WebKitDOMHTMLAppletElement* self) ; | webkit_dom_html_applet_element_get_object(WebKitDOMHTMLAppletElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_applet_element_set_object: | * webkit_dom_html_applet_element_set_object: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_applet_element_set_object(WebKitDOMHTMLAppletElement* self, const gchar* value); | webkit_dom_html_applet_element_set_object(WebKitDOMHTMLAppletElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_applet_element_get_vspace: | * webkit_dom_html_applet_element_get_vspace: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_applet_element_get_vspace(WebKitDOMHTMLAppletElement* self) ; | webkit_dom_html_applet_element_get_vspace(WebKitDOMHTMLAppletElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_applet_element_set_vspace: | * webkit_dom_html_applet_element_set_vspace: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_applet_element_set_vspace(WebKitDOMHTMLAppletElement* self, glong value); | webkit_dom_html_applet_element_set_vspace(WebKitDOMHTMLAppletElement* self, glong value); | |||
/** | /** | |||
* webkit_dom_html_applet_element_get_width: | * webkit_dom_html_applet_element_get_width: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_applet_element_get_width(WebKitDOMHTMLAppletElement* self); | webkit_dom_html_applet_element_get_width(WebKitDOMHTMLAppletElement* self); | |||
/** | /** | |||
* webkit_dom_html_applet_element_set_width: | * webkit_dom_html_applet_element_set_width: | |||
* @self: A #WebKitDOMHTMLAppletElement | * @self: A #WebKitDOMHTMLAppletElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_applet_element_set_width(WebKitDOMHTMLAppletElement* self, const gchar* value); | webkit_dom_html_applet_element_set_width(WebKitDOMHTMLAppletElement* self, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLAppletElement_h */ | #endif /* WebKitDOMHTMLAppletElement_h */ | |||
End of changes. 23 change blocks. | ||||
63 lines changed or deleted | 30 lines changed or added | |||
WebKitDOMHTMLAreaElement.h | WebKitDOMHTMLAreaElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLAreaElement_h | #ifndef WebKitDOMHTMLAreaElement_h | |||
#define WebKitDOMHTMLAreaElement_h | #define WebKitDOMHTMLAreaElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_area_element_get_type (void); | webkit_dom_html_area_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_area_element_get_alt: | * webkit_dom_html_area_element_get_alt: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_area_element_get_alt(WebKitDOMHTMLAreaElement* self); | webkit_dom_html_area_element_get_alt(WebKitDOMHTMLAreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_area_element_set_alt: | * webkit_dom_html_area_element_set_alt: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_area_element_set_alt(WebKitDOMHTMLAreaElement* self, const gchar* value); | webkit_dom_html_area_element_set_alt(WebKitDOMHTMLAreaElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_area_element_get_coords: | * webkit_dom_html_area_element_get_coords: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_area_element_get_coords(WebKitDOMHTMLAreaElement* self); | webkit_dom_html_area_element_get_coords(WebKitDOMHTMLAreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_area_element_set_coords: | * webkit_dom_html_area_element_set_coords: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_area_element_set_coords(WebKitDOMHTMLAreaElement* self, con st gchar* value); | webkit_dom_html_area_element_set_coords(WebKitDOMHTMLAreaElement* self, con st gchar* value); | |||
/** | /** | |||
* webkit_dom_html_area_element_get_href: | * webkit_dom_html_area_element_get_href: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_area_element_get_href(WebKitDOMHTMLAreaElement* self); | webkit_dom_html_area_element_get_href(WebKitDOMHTMLAreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_area_element_set_href: | * webkit_dom_html_area_element_set_href: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_area_element_set_href(WebKitDOMHTMLAreaElement* self, const gchar* value); | webkit_dom_html_area_element_set_href(WebKitDOMHTMLAreaElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_area_element_get_no_href: | * webkit_dom_html_area_element_get_no_href: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_area_element_get_no_href(WebKitDOMHTMLAreaElement* self); | webkit_dom_html_area_element_get_no_href(WebKitDOMHTMLAreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_area_element_set_no_href: | * webkit_dom_html_area_element_set_no_href: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_area_element_set_no_href(WebKitDOMHTMLAreaElement* self, gb oolean value); | webkit_dom_html_area_element_set_no_href(WebKitDOMHTMLAreaElement* self, gb oolean value); | |||
/** | /** | |||
* webkit_dom_html_area_element_get_ping: | * webkit_dom_html_area_element_get_ping: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_area_element_get_ping(WebKitDOMHTMLAreaElement* self); | webkit_dom_html_area_element_get_ping(WebKitDOMHTMLAreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_area_element_set_ping: | * webkit_dom_html_area_element_set_ping: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_area_element_set_ping(WebKitDOMHTMLAreaElement* self, const gchar* value); | webkit_dom_html_area_element_set_ping(WebKitDOMHTMLAreaElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_area_element_get_shape: | * webkit_dom_html_area_element_get_shape: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_area_element_get_shape(WebKitDOMHTMLAreaElement* self); | webkit_dom_html_area_element_get_shape(WebKitDOMHTMLAreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_area_element_set_shape: | * webkit_dom_html_area_element_set_shape: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_area_element_set_shape(WebKitDOMHTMLAreaElement* self, cons t gchar* value); | webkit_dom_html_area_element_set_shape(WebKitDOMHTMLAreaElement* self, cons t gchar* value); | |||
/** | /** | |||
* webkit_dom_html_area_element_get_target: | * webkit_dom_html_area_element_get_target: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_area_element_get_target(WebKitDOMHTMLAreaElement* self); | webkit_dom_html_area_element_get_target(WebKitDOMHTMLAreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_area_element_set_target: | * webkit_dom_html_area_element_set_target: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_area_element_set_target(WebKitDOMHTMLAreaElement* self, con st gchar* value); | webkit_dom_html_area_element_set_target(WebKitDOMHTMLAreaElement* self, con st gchar* value); | |||
/** | /** | |||
* webkit_dom_html_area_element_get_hash: | * webkit_dom_html_area_element_get_hash: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_area_element_get_hash(WebKitDOMHTMLAreaElement* self); | webkit_dom_html_area_element_get_hash(WebKitDOMHTMLAreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_area_element_get_host: | * webkit_dom_html_area_element_get_host: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_area_element_get_host(WebKitDOMHTMLAreaElement* self); | webkit_dom_html_area_element_get_host(WebKitDOMHTMLAreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_area_element_get_hostname: | * webkit_dom_html_area_element_get_hostname: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_area_element_get_hostname(WebKitDOMHTMLAreaElement* self); | webkit_dom_html_area_element_get_hostname(WebKitDOMHTMLAreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_area_element_get_pathname: | * webkit_dom_html_area_element_get_pathname: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_area_element_get_pathname(WebKitDOMHTMLAreaElement* self); | webkit_dom_html_area_element_get_pathname(WebKitDOMHTMLAreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_area_element_get_port: | * webkit_dom_html_area_element_get_port: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_area_element_get_port(WebKitDOMHTMLAreaElement* self); | webkit_dom_html_area_element_get_port(WebKitDOMHTMLAreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_area_element_get_protocol: | * webkit_dom_html_area_element_get_protocol: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_area_element_get_protocol(WebKitDOMHTMLAreaElement* self); | webkit_dom_html_area_element_get_protocol(WebKitDOMHTMLAreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_area_element_get_search: | * webkit_dom_html_area_element_get_search: | |||
* @self: A #WebKitDOMHTMLAreaElement | * @self: A #WebKitDOMHTMLAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_area_element_get_search(WebKitDOMHTMLAreaElement* self); | webkit_dom_html_area_element_get_search(WebKitDOMHTMLAreaElement* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLAreaElement_h */ | #endif /* WebKitDOMHTMLAreaElement_h */ | |||
End of changes. 22 change blocks. | ||||
61 lines changed or deleted | 33 lines changed or added | |||
WebKitDOMHTMLAudioElement.h | WebKitDOMHTMLAudioElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLAudioElement_h | #ifndef WebKitDOMHTMLAudioElement_h | |||
#define WebKitDOMHTMLAudioElement_h | #define WebKitDOMHTMLAudioElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLMediaElement.h> | #include <webkitdom/WebKitDOMHTMLMediaElement.h> | |||
End of changes. 1 change blocks. | ||||
19 lines changed or deleted | 19 lines changed or added | |||
WebKitDOMHTMLBRElement.h | WebKitDOMHTMLBRElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLBRElement_h | #ifndef WebKitDOMHTMLBRElement_h | |||
#define WebKitDOMHTMLBRElement_h | #define WebKitDOMHTMLBRElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_htmlbr_element_get_type (void); | webkit_dom_htmlbr_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_htmlbr_element_get_clear: | * webkit_dom_htmlbr_element_get_clear: | |||
* @self: A #WebKitDOMHTMLBRElement | * @self: A #WebKitDOMHTMLBRElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_htmlbr_element_get_clear(WebKitDOMHTMLBRElement* self); | webkit_dom_htmlbr_element_get_clear(WebKitDOMHTMLBRElement* self); | |||
/** | /** | |||
* webkit_dom_htmlbr_element_set_clear: | * webkit_dom_htmlbr_element_set_clear: | |||
* @self: A #WebKitDOMHTMLBRElement | * @self: A #WebKitDOMHTMLBRElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_htmlbr_element_set_clear(WebKitDOMHTMLBRElement* self, const gch ar* value); | webkit_dom_htmlbr_element_set_clear(WebKitDOMHTMLBRElement* self, const gch ar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLBRElement_h */ | #endif /* WebKitDOMHTMLBRElement_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMHTMLBaseElement.h | WebKitDOMHTMLBaseElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLBaseElement_h | #ifndef WebKitDOMHTMLBaseElement_h | |||
#define WebKitDOMHTMLBaseElement_h | #define WebKitDOMHTMLBaseElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_base_element_get_type (void); | webkit_dom_html_base_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_base_element_get_href: | * webkit_dom_html_base_element_get_href: | |||
* @self: A #WebKitDOMHTMLBaseElement | * @self: A #WebKitDOMHTMLBaseElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_base_element_get_href(WebKitDOMHTMLBaseElement* self); | webkit_dom_html_base_element_get_href(WebKitDOMHTMLBaseElement* self); | |||
/** | /** | |||
* webkit_dom_html_base_element_set_href: | * webkit_dom_html_base_element_set_href: | |||
* @self: A #WebKitDOMHTMLBaseElement | * @self: A #WebKitDOMHTMLBaseElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_base_element_set_href(WebKitDOMHTMLBaseElement* self, const gchar* value); | webkit_dom_html_base_element_set_href(WebKitDOMHTMLBaseElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_base_element_get_target: | * webkit_dom_html_base_element_get_target: | |||
* @self: A #WebKitDOMHTMLBaseElement | * @self: A #WebKitDOMHTMLBaseElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_base_element_get_target(WebKitDOMHTMLBaseElement* self); | webkit_dom_html_base_element_get_target(WebKitDOMHTMLBaseElement* self); | |||
/** | /** | |||
* webkit_dom_html_base_element_set_target: | * webkit_dom_html_base_element_set_target: | |||
* @self: A #WebKitDOMHTMLBaseElement | * @self: A #WebKitDOMHTMLBaseElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_base_element_set_target(WebKitDOMHTMLBaseElement* self, con st gchar* value); | webkit_dom_html_base_element_set_target(WebKitDOMHTMLBaseElement* self, con st gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLBaseElement_h */ | #endif /* WebKitDOMHTMLBaseElement_h */ | |||
End of changes. 5 change blocks. | ||||
27 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMHTMLBaseFontElement.h | WebKitDOMHTMLBaseFontElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLBaseFontElement_h | #ifndef WebKitDOMHTMLBaseFontElement_h | |||
#define WebKitDOMHTMLBaseFontElement_h | #define WebKitDOMHTMLBaseFontElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_base_font_element_get_type (void); | webkit_dom_html_base_font_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_base_font_element_get_color: | * webkit_dom_html_base_font_element_get_color: | |||
* @self: A #WebKitDOMHTMLBaseFontElement | * @self: A #WebKitDOMHTMLBaseFontElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_base_font_element_get_color(WebKitDOMHTMLBaseFontElement* s elf); | webkit_dom_html_base_font_element_get_color(WebKitDOMHTMLBaseFontElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_base_font_element_set_color: | * webkit_dom_html_base_font_element_set_color: | |||
* @self: A #WebKitDOMHTMLBaseFontElement | * @self: A #WebKitDOMHTMLBaseFontElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_base_font_element_set_color(WebKitDOMHTMLBaseFontElement* s elf, const gchar* value); | webkit_dom_html_base_font_element_set_color(WebKitDOMHTMLBaseFontElement* s elf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_base_font_element_get_face: | * webkit_dom_html_base_font_element_get_face: | |||
* @self: A #WebKitDOMHTMLBaseFontElement | * @self: A #WebKitDOMHTMLBaseFontElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_base_font_element_get_face(WebKitDOMHTMLBaseFontElement* se lf); | webkit_dom_html_base_font_element_get_face(WebKitDOMHTMLBaseFontElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_base_font_element_set_face: | * webkit_dom_html_base_font_element_set_face: | |||
* @self: A #WebKitDOMHTMLBaseFontElement | * @self: A #WebKitDOMHTMLBaseFontElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_base_font_element_set_face(WebKitDOMHTMLBaseFontElement* se lf, const gchar* value); | webkit_dom_html_base_font_element_set_face(WebKitDOMHTMLBaseFontElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_base_font_element_get_size: | * webkit_dom_html_base_font_element_get_size: | |||
* @self: A #WebKitDOMHTMLBaseFontElement | * @self: A #WebKitDOMHTMLBaseFontElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_base_font_element_get_size(WebKitDOMHTMLBaseFontElement* se lf); | webkit_dom_html_base_font_element_get_size(WebKitDOMHTMLBaseFontElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_base_font_element_set_size: | * webkit_dom_html_base_font_element_set_size: | |||
* @self: A #WebKitDOMHTMLBaseFontElement | * @self: A #WebKitDOMHTMLBaseFontElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_base_font_element_set_size(WebKitDOMHTMLBaseFontElement* se lf, glong value); | webkit_dom_html_base_font_element_set_size(WebKitDOMHTMLBaseFontElement* se lf, glong value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLBaseFontElement_h */ | #endif /* WebKitDOMHTMLBaseFontElement_h */ | |||
End of changes. 7 change blocks. | ||||
31 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMHTMLBodyElement.h | WebKitDOMHTMLBodyElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLBodyElement_h | #ifndef WebKitDOMHTMLBodyElement_h | |||
#define WebKitDOMHTMLBodyElement_h | #define WebKitDOMHTMLBodyElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_body_element_get_type (void); | webkit_dom_html_body_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_body_element_get_a_link: | * webkit_dom_html_body_element_get_a_link: | |||
* @self: A #WebKitDOMHTMLBodyElement | * @self: A #WebKitDOMHTMLBodyElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_body_element_get_a_link(WebKitDOMHTMLBodyElement* self); | webkit_dom_html_body_element_get_a_link(WebKitDOMHTMLBodyElement* self); | |||
/** | /** | |||
* webkit_dom_html_body_element_set_a_link: | * webkit_dom_html_body_element_set_a_link: | |||
* @self: A #WebKitDOMHTMLBodyElement | * @self: A #WebKitDOMHTMLBodyElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_body_element_set_a_link(WebKitDOMHTMLBodyElement* self, con st gchar* value); | webkit_dom_html_body_element_set_a_link(WebKitDOMHTMLBodyElement* self, con st gchar* value); | |||
/** | /** | |||
* webkit_dom_html_body_element_get_background: | * webkit_dom_html_body_element_get_background: | |||
* @self: A #WebKitDOMHTMLBodyElement | * @self: A #WebKitDOMHTMLBodyElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_body_element_get_background(WebKitDOMHTMLBodyElement* self) ; | webkit_dom_html_body_element_get_background(WebKitDOMHTMLBodyElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_body_element_set_background: | * webkit_dom_html_body_element_set_background: | |||
* @self: A #WebKitDOMHTMLBodyElement | * @self: A #WebKitDOMHTMLBodyElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_body_element_set_background(WebKitDOMHTMLBodyElement* self, const gchar* value); | webkit_dom_html_body_element_set_background(WebKitDOMHTMLBodyElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_body_element_get_bg_color: | * webkit_dom_html_body_element_get_bg_color: | |||
* @self: A #WebKitDOMHTMLBodyElement | * @self: A #WebKitDOMHTMLBodyElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_body_element_get_bg_color(WebKitDOMHTMLBodyElement* self); | webkit_dom_html_body_element_get_bg_color(WebKitDOMHTMLBodyElement* self); | |||
/** | /** | |||
* webkit_dom_html_body_element_set_bg_color: | * webkit_dom_html_body_element_set_bg_color: | |||
* @self: A #WebKitDOMHTMLBodyElement | * @self: A #WebKitDOMHTMLBodyElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_body_element_set_bg_color(WebKitDOMHTMLBodyElement* self, c onst gchar* value); | webkit_dom_html_body_element_set_bg_color(WebKitDOMHTMLBodyElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_body_element_get_link: | * webkit_dom_html_body_element_get_link: | |||
* @self: A #WebKitDOMHTMLBodyElement | * @self: A #WebKitDOMHTMLBodyElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_body_element_get_link(WebKitDOMHTMLBodyElement* self); | webkit_dom_html_body_element_get_link(WebKitDOMHTMLBodyElement* self); | |||
/** | /** | |||
* webkit_dom_html_body_element_set_link: | * webkit_dom_html_body_element_set_link: | |||
* @self: A #WebKitDOMHTMLBodyElement | * @self: A #WebKitDOMHTMLBodyElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_body_element_set_link(WebKitDOMHTMLBodyElement* self, const gchar* value); | webkit_dom_html_body_element_set_link(WebKitDOMHTMLBodyElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_body_element_get_text: | * webkit_dom_html_body_element_get_text: | |||
* @self: A #WebKitDOMHTMLBodyElement | * @self: A #WebKitDOMHTMLBodyElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_body_element_get_text(WebKitDOMHTMLBodyElement* self); | webkit_dom_html_body_element_get_text(WebKitDOMHTMLBodyElement* self); | |||
/** | /** | |||
* webkit_dom_html_body_element_set_text: | * webkit_dom_html_body_element_set_text: | |||
* @self: A #WebKitDOMHTMLBodyElement | * @self: A #WebKitDOMHTMLBodyElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_body_element_set_text(WebKitDOMHTMLBodyElement* self, const gchar* value); | webkit_dom_html_body_element_set_text(WebKitDOMHTMLBodyElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_body_element_get_v_link: | * webkit_dom_html_body_element_get_v_link: | |||
* @self: A #WebKitDOMHTMLBodyElement | * @self: A #WebKitDOMHTMLBodyElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_body_element_get_v_link(WebKitDOMHTMLBodyElement* self); | webkit_dom_html_body_element_get_v_link(WebKitDOMHTMLBodyElement* self); | |||
/** | /** | |||
* webkit_dom_html_body_element_set_v_link: | * webkit_dom_html_body_element_set_v_link: | |||
* @self: A #WebKitDOMHTMLBodyElement | * @self: A #WebKitDOMHTMLBodyElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_body_element_set_v_link(WebKitDOMHTMLBodyElement* self, con st gchar* value); | webkit_dom_html_body_element_set_v_link(WebKitDOMHTMLBodyElement* self, con st gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLBodyElement_h */ | #endif /* WebKitDOMHTMLBodyElement_h */ | |||
End of changes. 13 change blocks. | ||||
43 lines changed or deleted | 25 lines changed or added | |||
WebKitDOMHTMLButtonElement.h | WebKitDOMHTMLButtonElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLButtonElement_h | #ifndef WebKitDOMHTMLButtonElement_h | |||
#define WebKitDOMHTMLButtonElement_h | #define WebKitDOMHTMLButtonElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_button_element_get_type (void); | webkit_dom_html_button_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_button_element_check_validity: | * webkit_dom_html_button_element_check_validity: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_button_element_check_validity(WebKitDOMHTMLButtonElement* s elf); | webkit_dom_html_button_element_check_validity(WebKitDOMHTMLButtonElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_button_element_set_custom_validity: | * webkit_dom_html_button_element_set_custom_validity: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* @error: A #gchar | * @error: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_button_element_set_custom_validity(WebKitDOMHTMLButtonEleme nt* self, const gchar* error); | webkit_dom_html_button_element_set_custom_validity(WebKitDOMHTMLButtonEleme nt* self, const gchar* error); | |||
/** | /** | |||
* webkit_dom_html_button_element_get_autofocus: | * webkit_dom_html_button_element_get_autofocus: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_button_element_get_autofocus(WebKitDOMHTMLButtonElement* se lf); | webkit_dom_html_button_element_get_autofocus(WebKitDOMHTMLButtonElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_button_element_set_autofocus: | * webkit_dom_html_button_element_set_autofocus: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_button_element_set_autofocus(WebKitDOMHTMLButtonElement* se lf, gboolean value); | webkit_dom_html_button_element_set_autofocus(WebKitDOMHTMLButtonElement* se lf, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_button_element_get_disabled: | * webkit_dom_html_button_element_get_disabled: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_button_element_get_disabled(WebKitDOMHTMLButtonElement* sel f); | webkit_dom_html_button_element_get_disabled(WebKitDOMHTMLButtonElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_button_element_set_disabled: | * webkit_dom_html_button_element_set_disabled: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_button_element_set_disabled(WebKitDOMHTMLButtonElement* sel f, gboolean value); | webkit_dom_html_button_element_set_disabled(WebKitDOMHTMLButtonElement* sel f, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_button_element_get_form: | * webkit_dom_html_button_element_get_form: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLFormElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLFormElement* | WEBKIT_API WebKitDOMHTMLFormElement* | |||
webkit_dom_html_button_element_get_form(WebKitDOMHTMLButtonElement* self); | webkit_dom_html_button_element_get_form(WebKitDOMHTMLButtonElement* self); | |||
/** | /** | |||
* webkit_dom_html_button_element_get_form_action: | * webkit_dom_html_button_element_get_form_action: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_button_element_get_form_action(WebKitDOMHTMLButtonElement* self); | webkit_dom_html_button_element_get_form_action(WebKitDOMHTMLButtonElement* self); | |||
/** | /** | |||
* webkit_dom_html_button_element_set_form_action: | * webkit_dom_html_button_element_set_form_action: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_button_element_set_form_action(WebKitDOMHTMLButtonElement* self, const gchar* value); | webkit_dom_html_button_element_set_form_action(WebKitDOMHTMLButtonElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_button_element_get_form_enctype: | * webkit_dom_html_button_element_get_form_enctype: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_button_element_get_form_enctype(WebKitDOMHTMLButtonElement* self); | webkit_dom_html_button_element_get_form_enctype(WebKitDOMHTMLButtonElement* self); | |||
/** | /** | |||
* webkit_dom_html_button_element_set_form_enctype: | * webkit_dom_html_button_element_set_form_enctype: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_button_element_set_form_enctype(WebKitDOMHTMLButtonElement* self, const gchar* value); | webkit_dom_html_button_element_set_form_enctype(WebKitDOMHTMLButtonElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_button_element_get_form_method: | * webkit_dom_html_button_element_get_form_method: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_button_element_get_form_method(WebKitDOMHTMLButtonElement* self); | webkit_dom_html_button_element_get_form_method(WebKitDOMHTMLButtonElement* self); | |||
/** | /** | |||
* webkit_dom_html_button_element_set_form_method: | * webkit_dom_html_button_element_set_form_method: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_button_element_set_form_method(WebKitDOMHTMLButtonElement* self, const gchar* value); | webkit_dom_html_button_element_set_form_method(WebKitDOMHTMLButtonElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_button_element_get_form_no_validate: | * webkit_dom_html_button_element_get_form_no_validate: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_button_element_get_form_no_validate(WebKitDOMHTMLButtonElem ent* self); | webkit_dom_html_button_element_get_form_no_validate(WebKitDOMHTMLButtonElem ent* self); | |||
/** | /** | |||
* webkit_dom_html_button_element_set_form_no_validate: | * webkit_dom_html_button_element_set_form_no_validate: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_button_element_set_form_no_validate(WebKitDOMHTMLButtonElem ent* self, gboolean value); | webkit_dom_html_button_element_set_form_no_validate(WebKitDOMHTMLButtonElem ent* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_button_element_get_form_target: | * webkit_dom_html_button_element_get_form_target: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_button_element_get_form_target(WebKitDOMHTMLButtonElement* self); | webkit_dom_html_button_element_get_form_target(WebKitDOMHTMLButtonElement* self); | |||
/** | /** | |||
* webkit_dom_html_button_element_set_form_target: | * webkit_dom_html_button_element_set_form_target: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_button_element_set_form_target(WebKitDOMHTMLButtonElement* self, const gchar* value); | webkit_dom_html_button_element_set_form_target(WebKitDOMHTMLButtonElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_button_element_get_name: | * webkit_dom_html_button_element_get_name: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_button_element_get_name(WebKitDOMHTMLButtonElement* self); | webkit_dom_html_button_element_get_name(WebKitDOMHTMLButtonElement* self); | |||
/** | /** | |||
* webkit_dom_html_button_element_set_name: | * webkit_dom_html_button_element_set_name: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_button_element_set_name(WebKitDOMHTMLButtonElement* self, c onst gchar* value); | webkit_dom_html_button_element_set_name(WebKitDOMHTMLButtonElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_button_element_get_value: | * webkit_dom_html_button_element_get_value: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_button_element_get_value(WebKitDOMHTMLButtonElement* self); | webkit_dom_html_button_element_get_value(WebKitDOMHTMLButtonElement* self); | |||
/** | /** | |||
* webkit_dom_html_button_element_set_value: | * webkit_dom_html_button_element_set_value: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_button_element_set_value(WebKitDOMHTMLButtonElement* self, const gchar* value); | webkit_dom_html_button_element_set_value(WebKitDOMHTMLButtonElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_button_element_get_will_validate: | * webkit_dom_html_button_element_get_will_validate: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_button_element_get_will_validate(WebKitDOMHTMLButtonElement * self); | webkit_dom_html_button_element_get_will_validate(WebKitDOMHTMLButtonElement * self); | |||
/** | /** | |||
* webkit_dom_html_button_element_get_validity: | * webkit_dom_html_button_element_get_validity: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMValidityState | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMValidityState* | WEBKIT_API WebKitDOMValidityState* | |||
webkit_dom_html_button_element_get_validity(WebKitDOMHTMLButtonElement* sel f); | webkit_dom_html_button_element_get_validity(WebKitDOMHTMLButtonElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_button_element_get_validation_message: | * webkit_dom_html_button_element_get_validation_message: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_button_element_get_validation_message(WebKitDOMHTMLButtonEl ement* self); | webkit_dom_html_button_element_get_validation_message(WebKitDOMHTMLButtonEl ement* self); | |||
/** | /** | |||
* webkit_dom_html_button_element_get_labels: | * webkit_dom_html_button_element_get_labels: | |||
* @self: A #WebKitDOMHTMLButtonElement | * @self: A #WebKitDOMHTMLButtonElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_html_button_element_get_labels(WebKitDOMHTMLButtonElement* self) ; | webkit_dom_html_button_element_get_labels(WebKitDOMHTMLButtonElement* self) ; | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLButtonElement_h */ | #endif /* WebKitDOMHTMLButtonElement_h */ | |||
End of changes. 26 change blocks. | ||||
69 lines changed or deleted | 34 lines changed or added | |||
WebKitDOMHTMLCanvasElement.h | WebKitDOMHTMLCanvasElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLCanvasElement_h | #ifndef WebKitDOMHTMLCanvasElement_h | |||
#define WebKitDOMHTMLCanvasElement_h | #define WebKitDOMHTMLCanvasElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_canvas_element_get_type (void); | webkit_dom_html_canvas_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_canvas_element_get_width: | * webkit_dom_html_canvas_element_get_width: | |||
* @self: A #WebKitDOMHTMLCanvasElement | * @self: A #WebKitDOMHTMLCanvasElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_canvas_element_get_width(WebKitDOMHTMLCanvasElement* self); | webkit_dom_html_canvas_element_get_width(WebKitDOMHTMLCanvasElement* self); | |||
/** | /** | |||
* webkit_dom_html_canvas_element_set_width: | * webkit_dom_html_canvas_element_set_width: | |||
* @self: A #WebKitDOMHTMLCanvasElement | * @self: A #WebKitDOMHTMLCanvasElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_canvas_element_set_width(WebKitDOMHTMLCanvasElement* self, glong value); | webkit_dom_html_canvas_element_set_width(WebKitDOMHTMLCanvasElement* self, glong value); | |||
/** | /** | |||
* webkit_dom_html_canvas_element_get_height: | * webkit_dom_html_canvas_element_get_height: | |||
* @self: A #WebKitDOMHTMLCanvasElement | * @self: A #WebKitDOMHTMLCanvasElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_canvas_element_get_height(WebKitDOMHTMLCanvasElement* self) ; | webkit_dom_html_canvas_element_get_height(WebKitDOMHTMLCanvasElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_canvas_element_set_height: | * webkit_dom_html_canvas_element_set_height: | |||
* @self: A #WebKitDOMHTMLCanvasElement | * @self: A #WebKitDOMHTMLCanvasElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_canvas_element_set_height(WebKitDOMHTMLCanvasElement* self, glong value); | webkit_dom_html_canvas_element_set_height(WebKitDOMHTMLCanvasElement* self, glong value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLCanvasElement_h */ | #endif /* WebKitDOMHTMLCanvasElement_h */ | |||
End of changes. 5 change blocks. | ||||
27 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMHTMLCollection.h | WebKitDOMHTMLCollection.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLCollection_h | #ifndef WebKitDOMHTMLCollection_h | |||
#define WebKitDOMHTMLCollection_h | #define WebKitDOMHTMLCollection_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_collection_get_type (void); | webkit_dom_html_collection_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_collection_item: | * webkit_dom_html_collection_item: | |||
* @self: A #WebKitDOMHTMLCollection | * @self: A #WebKitDOMHTMLCollection | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_html_collection_item(WebKitDOMHTMLCollection* self, gulong index ); | webkit_dom_html_collection_item(WebKitDOMHTMLCollection* self, gulong index ); | |||
/** | /** | |||
* webkit_dom_html_collection_named_item: | * webkit_dom_html_collection_named_item: | |||
* @self: A #WebKitDOMHTMLCollection | * @self: A #WebKitDOMHTMLCollection | |||
* @name: A #gchar | * @name: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_html_collection_named_item(WebKitDOMHTMLCollection* self, const gchar* name); | webkit_dom_html_collection_named_item(WebKitDOMHTMLCollection* self, const gchar* name); | |||
/** | /** | |||
* webkit_dom_html_collection_get_length: | * webkit_dom_html_collection_get_length: | |||
* @self: A #WebKitDOMHTMLCollection | * @self: A #WebKitDOMHTMLCollection | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_collection_get_length(WebKitDOMHTMLCollection* self); | webkit_dom_html_collection_get_length(WebKitDOMHTMLCollection* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLCollection_h */ | #endif /* WebKitDOMHTMLCollection_h */ | |||
End of changes. 4 change blocks. | ||||
25 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMHTMLDListElement.h | WebKitDOMHTMLDListElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLDListElement_h | #ifndef WebKitDOMHTMLDListElement_h | |||
#define WebKitDOMHTMLDListElement_h | #define WebKitDOMHTMLDListElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_htmld_list_element_get_type (void); | webkit_dom_htmld_list_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_htmld_list_element_get_compact: | * webkit_dom_htmld_list_element_get_compact: | |||
* @self: A #WebKitDOMHTMLDListElement | * @self: A #WebKitDOMHTMLDListElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_htmld_list_element_get_compact(WebKitDOMHTMLDListElement* self); | webkit_dom_htmld_list_element_get_compact(WebKitDOMHTMLDListElement* self); | |||
/** | /** | |||
* webkit_dom_htmld_list_element_set_compact: | * webkit_dom_htmld_list_element_set_compact: | |||
* @self: A #WebKitDOMHTMLDListElement | * @self: A #WebKitDOMHTMLDListElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_htmld_list_element_set_compact(WebKitDOMHTMLDListElement* self, gboolean value); | webkit_dom_htmld_list_element_set_compact(WebKitDOMHTMLDListElement* self, gboolean value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLDListElement_h */ | #endif /* WebKitDOMHTMLDListElement_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMHTMLDetailsElement.h | WebKitDOMHTMLDetailsElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLDetailsElement_h | #ifndef WebKitDOMHTMLDetailsElement_h | |||
#define WebKitDOMHTMLDetailsElement_h | #define WebKitDOMHTMLDetailsElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_details_element_get_type (void); | webkit_dom_html_details_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_details_element_get_open: | * webkit_dom_html_details_element_get_open: | |||
* @self: A #WebKitDOMHTMLDetailsElement | * @self: A #WebKitDOMHTMLDetailsElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_details_element_get_open(WebKitDOMHTMLDetailsElement* self) ; | webkit_dom_html_details_element_get_open(WebKitDOMHTMLDetailsElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_details_element_set_open: | * webkit_dom_html_details_element_set_open: | |||
* @self: A #WebKitDOMHTMLDetailsElement | * @self: A #WebKitDOMHTMLDetailsElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_details_element_set_open(WebKitDOMHTMLDetailsElement* self, gboolean value); | webkit_dom_html_details_element_set_open(WebKitDOMHTMLDetailsElement* self, gboolean value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLDetailsElement_h */ | #endif /* WebKitDOMHTMLDetailsElement_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMHTMLDirectoryElement.h | WebKitDOMHTMLDirectoryElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLDirectoryElement_h | #ifndef WebKitDOMHTMLDirectoryElement_h | |||
#define WebKitDOMHTMLDirectoryElement_h | #define WebKitDOMHTMLDirectoryElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_directory_element_get_type (void); | webkit_dom_html_directory_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_directory_element_get_compact: | * webkit_dom_html_directory_element_get_compact: | |||
* @self: A #WebKitDOMHTMLDirectoryElement | * @self: A #WebKitDOMHTMLDirectoryElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_directory_element_get_compact(WebKitDOMHTMLDirectoryElement * self); | webkit_dom_html_directory_element_get_compact(WebKitDOMHTMLDirectoryElement * self); | |||
/** | /** | |||
* webkit_dom_html_directory_element_set_compact: | * webkit_dom_html_directory_element_set_compact: | |||
* @self: A #WebKitDOMHTMLDirectoryElement | * @self: A #WebKitDOMHTMLDirectoryElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_directory_element_set_compact(WebKitDOMHTMLDirectoryElement * self, gboolean value); | webkit_dom_html_directory_element_set_compact(WebKitDOMHTMLDirectoryElement * self, gboolean value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLDirectoryElement_h */ | #endif /* WebKitDOMHTMLDirectoryElement_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMHTMLDivElement.h | WebKitDOMHTMLDivElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLDivElement_h | #ifndef WebKitDOMHTMLDivElement_h | |||
#define WebKitDOMHTMLDivElement_h | #define WebKitDOMHTMLDivElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_div_element_get_type (void); | webkit_dom_html_div_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_div_element_get_align: | * webkit_dom_html_div_element_get_align: | |||
* @self: A #WebKitDOMHTMLDivElement | * @self: A #WebKitDOMHTMLDivElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_div_element_get_align(WebKitDOMHTMLDivElement* self); | webkit_dom_html_div_element_get_align(WebKitDOMHTMLDivElement* self); | |||
/** | /** | |||
* webkit_dom_html_div_element_set_align: | * webkit_dom_html_div_element_set_align: | |||
* @self: A #WebKitDOMHTMLDivElement | * @self: A #WebKitDOMHTMLDivElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_div_element_set_align(WebKitDOMHTMLDivElement* self, const gchar* value); | webkit_dom_html_div_element_set_align(WebKitDOMHTMLDivElement* self, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLDivElement_h */ | #endif /* WebKitDOMHTMLDivElement_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMHTMLDocument.h | WebKitDOMHTMLDocument.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLDocument_h | #ifndef WebKitDOMHTMLDocument_h | |||
#define WebKitDOMHTMLDocument_h | #define WebKitDOMHTMLDocument_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMDocument.h> | #include <webkitdom/WebKitDOMDocument.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMDocumentClass parent_class; | WebKitDOMDocumentClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_document_get_type (void); | webkit_dom_html_document_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_document_close: | * webkit_dom_html_document_close: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_document_close(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_close(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_clear: | * webkit_dom_html_document_clear: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_document_clear(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_clear(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_capture_events: | * webkit_dom_html_document_capture_events: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_document_capture_events(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_capture_events(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_release_events: | * webkit_dom_html_document_release_events: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_document_release_events(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_release_events(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_has_focus: | * webkit_dom_html_document_has_focus: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_document_has_focus(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_has_focus(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_get_embeds: | * webkit_dom_html_document_get_embeds: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_html_document_get_embeds(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_get_embeds(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_get_plugins: | * webkit_dom_html_document_get_plugins: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_html_document_get_plugins(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_get_plugins(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_get_scripts: | * webkit_dom_html_document_get_scripts: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_html_document_get_scripts(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_get_scripts(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_get_width: | * webkit_dom_html_document_get_width: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_document_get_width(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_get_width(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_get_height: | * webkit_dom_html_document_get_height: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_document_get_height(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_get_height(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_get_dir: | * webkit_dom_html_document_get_dir: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_document_get_dir(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_get_dir(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_set_dir: | * webkit_dom_html_document_set_dir: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_document_set_dir(WebKitDOMHTMLDocument* self, const gchar* value); | webkit_dom_html_document_set_dir(WebKitDOMHTMLDocument* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_document_get_design_mode: | * webkit_dom_html_document_get_design_mode: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_document_get_design_mode(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_get_design_mode(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_set_design_mode: | * webkit_dom_html_document_set_design_mode: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_document_set_design_mode(WebKitDOMHTMLDocument* self, const gchar* value); | webkit_dom_html_document_set_design_mode(WebKitDOMHTMLDocument* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_document_get_compat_mode: | * webkit_dom_html_document_get_compat_mode: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_document_get_compat_mode(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_get_compat_mode(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_get_active_element: | * webkit_dom_html_document_get_active_element: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_html_document_get_active_element(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_get_active_element(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_get_bg_color: | * webkit_dom_html_document_get_bg_color: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_document_get_bg_color(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_get_bg_color(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_set_bg_color: | * webkit_dom_html_document_set_bg_color: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_document_set_bg_color(WebKitDOMHTMLDocument* self, const gc har* value); | webkit_dom_html_document_set_bg_color(WebKitDOMHTMLDocument* self, const gc har* value); | |||
/** | /** | |||
* webkit_dom_html_document_get_fg_color: | * webkit_dom_html_document_get_fg_color: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_document_get_fg_color(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_get_fg_color(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_set_fg_color: | * webkit_dom_html_document_set_fg_color: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_document_set_fg_color(WebKitDOMHTMLDocument* self, const gc har* value); | webkit_dom_html_document_set_fg_color(WebKitDOMHTMLDocument* self, const gc har* value); | |||
/** | /** | |||
* webkit_dom_html_document_get_alink_color: | * webkit_dom_html_document_get_alink_color: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_document_get_alink_color(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_get_alink_color(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_set_alink_color: | * webkit_dom_html_document_set_alink_color: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_document_set_alink_color(WebKitDOMHTMLDocument* self, const gchar* value); | webkit_dom_html_document_set_alink_color(WebKitDOMHTMLDocument* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_document_get_link_color: | * webkit_dom_html_document_get_link_color: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_document_get_link_color(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_get_link_color(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_set_link_color: | * webkit_dom_html_document_set_link_color: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_document_set_link_color(WebKitDOMHTMLDocument* self, const gchar* value); | webkit_dom_html_document_set_link_color(WebKitDOMHTMLDocument* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_document_get_vlink_color: | * webkit_dom_html_document_get_vlink_color: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_document_get_vlink_color(WebKitDOMHTMLDocument* self); | webkit_dom_html_document_get_vlink_color(WebKitDOMHTMLDocument* self); | |||
/** | /** | |||
* webkit_dom_html_document_set_vlink_color: | * webkit_dom_html_document_set_vlink_color: | |||
* @self: A #WebKitDOMHTMLDocument | * @self: A #WebKitDOMHTMLDocument | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_document_set_vlink_color(WebKitDOMHTMLDocument* self, const gchar* value); | webkit_dom_html_document_set_vlink_color(WebKitDOMHTMLDocument* self, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLDocument_h */ | #endif /* WebKitDOMHTMLDocument_h */ | |||
End of changes. 27 change blocks. | ||||
71 lines changed or deleted | 34 lines changed or added | |||
WebKitDOMHTMLElement.h | WebKitDOMHTMLElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLElement_h | #ifndef WebKitDOMHTMLElement_h | |||
#define WebKitDOMHTMLElement_h | #define WebKitDOMHTMLElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMElement.h> | #include <webkitdom/WebKitDOMElement.h> | |||
skipping to change at line 59 | skipping to change at line 59 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_element_get_type (void); | webkit_dom_html_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_element_insert_adjacent_element: | * webkit_dom_html_element_insert_adjacent_element: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @where: A #gchar | * @where: A #gchar | |||
* @element: A #WebKitDOMElement | * @element: A #WebKitDOMElement | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_html_element_insert_adjacent_element(WebKitDOMHTMLElement* self, const gchar* where, WebKitDOMElement* element, GError** error); | webkit_dom_html_element_insert_adjacent_element(WebKitDOMHTMLElement* self, const gchar* where, WebKitDOMElement* element, GError** error); | |||
/** | /** | |||
* webkit_dom_html_element_insert_adjacent_html: | * webkit_dom_html_element_insert_adjacent_html: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @where: A #gchar | * @where: A #gchar | |||
* @html: A #gchar | * @html: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_insert_adjacent_html(WebKitDOMHTMLElement* self, co nst gchar* where, const gchar* html, GError** error); | webkit_dom_html_element_insert_adjacent_html(WebKitDOMHTMLElement* self, co nst gchar* where, const gchar* html, GError** error); | |||
/** | /** | |||
* webkit_dom_html_element_insert_adjacent_text: | * webkit_dom_html_element_insert_adjacent_text: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @where: A #gchar | * @where: A #gchar | |||
* @text: A #gchar | * @text: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_insert_adjacent_text(WebKitDOMHTMLElement* self, co nst gchar* where, const gchar* text, GError** error); | webkit_dom_html_element_insert_adjacent_text(WebKitDOMHTMLElement* self, co nst gchar* where, const gchar* text, GError** error); | |||
/** | /** | |||
* webkit_dom_html_element_click: | * webkit_dom_html_element_click: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_click(WebKitDOMHTMLElement* self); | webkit_dom_html_element_click(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_get_title: | * webkit_dom_html_element_get_title: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_element_get_title(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_title(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_title: | * webkit_dom_html_element_set_title: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_title(WebKitDOMHTMLElement* self, const gchar* value); | webkit_dom_html_element_set_title(WebKitDOMHTMLElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_element_get_lang: | * webkit_dom_html_element_get_lang: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_element_get_lang(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_lang(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_lang: | * webkit_dom_html_element_set_lang: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_lang(WebKitDOMHTMLElement* self, const gchar* v alue); | webkit_dom_html_element_set_lang(WebKitDOMHTMLElement* self, const gchar* v alue); | |||
/** | /** | |||
* webkit_dom_html_element_get_translate: | * webkit_dom_html_element_get_translate: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_element_get_translate(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_translate(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_translate: | * webkit_dom_html_element_set_translate: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_translate(WebKitDOMHTMLElement* self, gboolean value); | webkit_dom_html_element_set_translate(WebKitDOMHTMLElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_element_get_dir: | * webkit_dom_html_element_get_dir: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_element_get_dir(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_dir(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_dir: | * webkit_dom_html_element_set_dir: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_dir(WebKitDOMHTMLElement* self, const gchar* va lue); | webkit_dom_html_element_set_dir(WebKitDOMHTMLElement* self, const gchar* va lue); | |||
/** | /** | |||
* webkit_dom_html_element_get_tab_index: | * webkit_dom_html_element_get_tab_index: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_element_get_tab_index(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_tab_index(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_tab_index: | * webkit_dom_html_element_set_tab_index: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_tab_index(WebKitDOMHTMLElement* self, glong val ue); | webkit_dom_html_element_set_tab_index(WebKitDOMHTMLElement* self, glong val ue); | |||
/** | /** | |||
* webkit_dom_html_element_get_draggable: | * webkit_dom_html_element_get_draggable: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_element_get_draggable(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_draggable(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_draggable: | * webkit_dom_html_element_set_draggable: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_draggable(WebKitDOMHTMLElement* self, gboolean value); | webkit_dom_html_element_set_draggable(WebKitDOMHTMLElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_element_get_webkitdropzone: | * webkit_dom_html_element_get_webkitdropzone: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_element_get_webkitdropzone(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_webkitdropzone(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_webkitdropzone: | * webkit_dom_html_element_set_webkitdropzone: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_webkitdropzone(WebKitDOMHTMLElement* self, cons t gchar* value); | webkit_dom_html_element_set_webkitdropzone(WebKitDOMHTMLElement* self, cons t gchar* value); | |||
/** | /** | |||
* webkit_dom_html_element_get_hidden: | * webkit_dom_html_element_get_hidden: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_element_get_hidden(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_hidden(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_hidden: | * webkit_dom_html_element_set_hidden: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_hidden(WebKitDOMHTMLElement* self, gboolean val ue); | webkit_dom_html_element_set_hidden(WebKitDOMHTMLElement* self, gboolean val ue); | |||
/** | /** | |||
* webkit_dom_html_element_get_access_key: | * webkit_dom_html_element_get_access_key: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_element_get_access_key(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_access_key(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_access_key: | * webkit_dom_html_element_set_access_key: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_access_key(WebKitDOMHTMLElement* self, const gc har* value); | webkit_dom_html_element_set_access_key(WebKitDOMHTMLElement* self, const gc har* value); | |||
/** | /** | |||
* webkit_dom_html_element_get_inner_html: | * webkit_dom_html_element_get_inner_html: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_element_get_inner_html(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_inner_html(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_inner_html: | * webkit_dom_html_element_set_inner_html: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_inner_html(WebKitDOMHTMLElement* self, const gc har* value, GError** error); | webkit_dom_html_element_set_inner_html(WebKitDOMHTMLElement* self, const gc har* value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_element_get_inner_text: | * webkit_dom_html_element_get_inner_text: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_element_get_inner_text(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_inner_text(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_inner_text: | * webkit_dom_html_element_set_inner_text: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_inner_text(WebKitDOMHTMLElement* self, const gc har* value, GError** error); | webkit_dom_html_element_set_inner_text(WebKitDOMHTMLElement* self, const gc har* value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_element_get_outer_html: | * webkit_dom_html_element_get_outer_html: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_element_get_outer_html(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_outer_html(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_outer_html: | * webkit_dom_html_element_set_outer_html: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_outer_html(WebKitDOMHTMLElement* self, const gc har* value, GError** error); | webkit_dom_html_element_set_outer_html(WebKitDOMHTMLElement* self, const gc har* value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_element_get_outer_text: | * webkit_dom_html_element_get_outer_text: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_element_get_outer_text(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_outer_text(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_outer_text: | * webkit_dom_html_element_set_outer_text: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_outer_text(WebKitDOMHTMLElement* self, const gc har* value, GError** error); | webkit_dom_html_element_set_outer_text(WebKitDOMHTMLElement* self, const gc har* value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_element_get_children: | * webkit_dom_html_element_get_children: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_html_element_get_children(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_children(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_get_content_editable: | * webkit_dom_html_element_get_content_editable: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_element_get_content_editable(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_content_editable(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_content_editable: | * webkit_dom_html_element_set_content_editable: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_content_editable(WebKitDOMHTMLElement* self, co nst gchar* value, GError** error); | webkit_dom_html_element_set_content_editable(WebKitDOMHTMLElement* self, co nst gchar* value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_element_get_is_content_editable: | * webkit_dom_html_element_get_is_content_editable: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_element_get_is_content_editable(WebKitDOMHTMLElement* self) ; | webkit_dom_html_element_get_is_content_editable(WebKitDOMHTMLElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_element_get_spellcheck: | * webkit_dom_html_element_get_spellcheck: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_element_get_spellcheck(WebKitDOMHTMLElement* self); | webkit_dom_html_element_get_spellcheck(WebKitDOMHTMLElement* self); | |||
/** | /** | |||
* webkit_dom_html_element_set_spellcheck: | * webkit_dom_html_element_set_spellcheck: | |||
* @self: A #WebKitDOMHTMLElement | * @self: A #WebKitDOMHTMLElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_element_set_spellcheck(WebKitDOMHTMLElement* self, gboolean value); | webkit_dom_html_element_set_spellcheck(WebKitDOMHTMLElement* self, gboolean value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLElement_h */ | #endif /* WebKitDOMHTMLElement_h */ | |||
End of changes. 37 change blocks. | ||||
91 lines changed or deleted | 37 lines changed or added | |||
WebKitDOMHTMLEmbedElement.h | WebKitDOMHTMLEmbedElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLEmbedElement_h | #ifndef WebKitDOMHTMLEmbedElement_h | |||
#define WebKitDOMHTMLEmbedElement_h | #define WebKitDOMHTMLEmbedElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_embed_element_get_type (void); | webkit_dom_html_embed_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_embed_element_get_align: | * webkit_dom_html_embed_element_get_align: | |||
* @self: A #WebKitDOMHTMLEmbedElement | * @self: A #WebKitDOMHTMLEmbedElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_embed_element_get_align(WebKitDOMHTMLEmbedElement* self); | webkit_dom_html_embed_element_get_align(WebKitDOMHTMLEmbedElement* self); | |||
/** | /** | |||
* webkit_dom_html_embed_element_set_align: | * webkit_dom_html_embed_element_set_align: | |||
* @self: A #WebKitDOMHTMLEmbedElement | * @self: A #WebKitDOMHTMLEmbedElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_embed_element_set_align(WebKitDOMHTMLEmbedElement* self, co nst gchar* value); | webkit_dom_html_embed_element_set_align(WebKitDOMHTMLEmbedElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_embed_element_get_height: | * webkit_dom_html_embed_element_get_height: | |||
* @self: A #WebKitDOMHTMLEmbedElement | * @self: A #WebKitDOMHTMLEmbedElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_embed_element_get_height(WebKitDOMHTMLEmbedElement* self); | webkit_dom_html_embed_element_get_height(WebKitDOMHTMLEmbedElement* self); | |||
/** | /** | |||
* webkit_dom_html_embed_element_set_height: | * webkit_dom_html_embed_element_set_height: | |||
* @self: A #WebKitDOMHTMLEmbedElement | * @self: A #WebKitDOMHTMLEmbedElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_embed_element_set_height(WebKitDOMHTMLEmbedElement* self, g long value); | webkit_dom_html_embed_element_set_height(WebKitDOMHTMLEmbedElement* self, g long value); | |||
/** | /** | |||
* webkit_dom_html_embed_element_get_name: | * webkit_dom_html_embed_element_get_name: | |||
* @self: A #WebKitDOMHTMLEmbedElement | * @self: A #WebKitDOMHTMLEmbedElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_embed_element_get_name(WebKitDOMHTMLEmbedElement* self); | webkit_dom_html_embed_element_get_name(WebKitDOMHTMLEmbedElement* self); | |||
/** | /** | |||
* webkit_dom_html_embed_element_set_name: | * webkit_dom_html_embed_element_set_name: | |||
* @self: A #WebKitDOMHTMLEmbedElement | * @self: A #WebKitDOMHTMLEmbedElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_embed_element_set_name(WebKitDOMHTMLEmbedElement* self, con st gchar* value); | webkit_dom_html_embed_element_set_name(WebKitDOMHTMLEmbedElement* self, con st gchar* value); | |||
/** | /** | |||
* webkit_dom_html_embed_element_get_src: | * webkit_dom_html_embed_element_get_src: | |||
* @self: A #WebKitDOMHTMLEmbedElement | * @self: A #WebKitDOMHTMLEmbedElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_embed_element_get_src(WebKitDOMHTMLEmbedElement* self); | webkit_dom_html_embed_element_get_src(WebKitDOMHTMLEmbedElement* self); | |||
/** | /** | |||
* webkit_dom_html_embed_element_set_src: | * webkit_dom_html_embed_element_set_src: | |||
* @self: A #WebKitDOMHTMLEmbedElement | * @self: A #WebKitDOMHTMLEmbedElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_embed_element_set_src(WebKitDOMHTMLEmbedElement* self, cons t gchar* value); | webkit_dom_html_embed_element_set_src(WebKitDOMHTMLEmbedElement* self, cons t gchar* value); | |||
/** | /** | |||
* webkit_dom_html_embed_element_get_width: | * webkit_dom_html_embed_element_get_width: | |||
* @self: A #WebKitDOMHTMLEmbedElement | * @self: A #WebKitDOMHTMLEmbedElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_embed_element_get_width(WebKitDOMHTMLEmbedElement* self); | webkit_dom_html_embed_element_get_width(WebKitDOMHTMLEmbedElement* self); | |||
/** | /** | |||
* webkit_dom_html_embed_element_set_width: | * webkit_dom_html_embed_element_set_width: | |||
* @self: A #WebKitDOMHTMLEmbedElement | * @self: A #WebKitDOMHTMLEmbedElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_embed_element_set_width(WebKitDOMHTMLEmbedElement* self, gl ong value); | webkit_dom_html_embed_element_set_width(WebKitDOMHTMLEmbedElement* self, gl ong value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLEmbedElement_h */ | #endif /* WebKitDOMHTMLEmbedElement_h */ | |||
End of changes. 11 change blocks. | ||||
39 lines changed or deleted | 24 lines changed or added | |||
WebKitDOMHTMLFieldSetElement.h | WebKitDOMHTMLFieldSetElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLFieldSetElement_h | #ifndef WebKitDOMHTMLFieldSetElement_h | |||
#define WebKitDOMHTMLFieldSetElement_h | #define WebKitDOMHTMLFieldSetElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_field_set_element_get_type (void); | webkit_dom_html_field_set_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_field_set_element_check_validity: | * webkit_dom_html_field_set_element_check_validity: | |||
* @self: A #WebKitDOMHTMLFieldSetElement | * @self: A #WebKitDOMHTMLFieldSetElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_field_set_element_check_validity(WebKitDOMHTMLFieldSetEleme nt* self); | webkit_dom_html_field_set_element_check_validity(WebKitDOMHTMLFieldSetEleme nt* self); | |||
/** | /** | |||
* webkit_dom_html_field_set_element_set_custom_validity: | * webkit_dom_html_field_set_element_set_custom_validity: | |||
* @self: A #WebKitDOMHTMLFieldSetElement | * @self: A #WebKitDOMHTMLFieldSetElement | |||
* @error: A #gchar | * @error: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_field_set_element_set_custom_validity(WebKitDOMHTMLFieldSet Element* self, const gchar* error); | webkit_dom_html_field_set_element_set_custom_validity(WebKitDOMHTMLFieldSet Element* self, const gchar* error); | |||
/** | /** | |||
* webkit_dom_html_field_set_element_get_disabled: | * webkit_dom_html_field_set_element_get_disabled: | |||
* @self: A #WebKitDOMHTMLFieldSetElement | * @self: A #WebKitDOMHTMLFieldSetElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_field_set_element_get_disabled(WebKitDOMHTMLFieldSetElement * self); | webkit_dom_html_field_set_element_get_disabled(WebKitDOMHTMLFieldSetElement * self); | |||
/** | /** | |||
* webkit_dom_html_field_set_element_set_disabled: | * webkit_dom_html_field_set_element_set_disabled: | |||
* @self: A #WebKitDOMHTMLFieldSetElement | * @self: A #WebKitDOMHTMLFieldSetElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_field_set_element_set_disabled(WebKitDOMHTMLFieldSetElement * self, gboolean value); | webkit_dom_html_field_set_element_set_disabled(WebKitDOMHTMLFieldSetElement * self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_field_set_element_get_form: | * webkit_dom_html_field_set_element_get_form: | |||
* @self: A #WebKitDOMHTMLFieldSetElement | * @self: A #WebKitDOMHTMLFieldSetElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLFormElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLFormElement* | WEBKIT_API WebKitDOMHTMLFormElement* | |||
webkit_dom_html_field_set_element_get_form(WebKitDOMHTMLFieldSetElement* se lf); | webkit_dom_html_field_set_element_get_form(WebKitDOMHTMLFieldSetElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_field_set_element_get_name: | * webkit_dom_html_field_set_element_get_name: | |||
* @self: A #WebKitDOMHTMLFieldSetElement | * @self: A #WebKitDOMHTMLFieldSetElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_field_set_element_get_name(WebKitDOMHTMLFieldSetElement* se lf); | webkit_dom_html_field_set_element_get_name(WebKitDOMHTMLFieldSetElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_field_set_element_set_name: | * webkit_dom_html_field_set_element_set_name: | |||
* @self: A #WebKitDOMHTMLFieldSetElement | * @self: A #WebKitDOMHTMLFieldSetElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_field_set_element_set_name(WebKitDOMHTMLFieldSetElement* se lf, const gchar* value); | webkit_dom_html_field_set_element_set_name(WebKitDOMHTMLFieldSetElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_field_set_element_get_elements: | * webkit_dom_html_field_set_element_get_elements: | |||
* @self: A #WebKitDOMHTMLFieldSetElement | * @self: A #WebKitDOMHTMLFieldSetElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_html_field_set_element_get_elements(WebKitDOMHTMLFieldSetElement * self); | webkit_dom_html_field_set_element_get_elements(WebKitDOMHTMLFieldSetElement * self); | |||
/** | /** | |||
* webkit_dom_html_field_set_element_get_will_validate: | * webkit_dom_html_field_set_element_get_will_validate: | |||
* @self: A #WebKitDOMHTMLFieldSetElement | * @self: A #WebKitDOMHTMLFieldSetElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_field_set_element_get_will_validate(WebKitDOMHTMLFieldSetEl ement* self); | webkit_dom_html_field_set_element_get_will_validate(WebKitDOMHTMLFieldSetEl ement* self); | |||
/** | /** | |||
* webkit_dom_html_field_set_element_get_validity: | * webkit_dom_html_field_set_element_get_validity: | |||
* @self: A #WebKitDOMHTMLFieldSetElement | * @self: A #WebKitDOMHTMLFieldSetElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMValidityState | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMValidityState* | WEBKIT_API WebKitDOMValidityState* | |||
webkit_dom_html_field_set_element_get_validity(WebKitDOMHTMLFieldSetElement * self); | webkit_dom_html_field_set_element_get_validity(WebKitDOMHTMLFieldSetElement * self); | |||
/** | /** | |||
* webkit_dom_html_field_set_element_get_validation_message: | * webkit_dom_html_field_set_element_get_validation_message: | |||
* @self: A #WebKitDOMHTMLFieldSetElement | * @self: A #WebKitDOMHTMLFieldSetElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_field_set_element_get_validation_message(WebKitDOMHTMLField SetElement* self); | webkit_dom_html_field_set_element_get_validation_message(WebKitDOMHTMLField SetElement* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLFieldSetElement_h */ | #endif /* WebKitDOMHTMLFieldSetElement_h */ | |||
End of changes. 12 change blocks. | ||||
41 lines changed or deleted | 27 lines changed or added | |||
WebKitDOMHTMLFontElement.h | WebKitDOMHTMLFontElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLFontElement_h | #ifndef WebKitDOMHTMLFontElement_h | |||
#define WebKitDOMHTMLFontElement_h | #define WebKitDOMHTMLFontElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_font_element_get_type (void); | webkit_dom_html_font_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_font_element_get_color: | * webkit_dom_html_font_element_get_color: | |||
* @self: A #WebKitDOMHTMLFontElement | * @self: A #WebKitDOMHTMLFontElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_font_element_get_color(WebKitDOMHTMLFontElement* self); | webkit_dom_html_font_element_get_color(WebKitDOMHTMLFontElement* self); | |||
/** | /** | |||
* webkit_dom_html_font_element_set_color: | * webkit_dom_html_font_element_set_color: | |||
* @self: A #WebKitDOMHTMLFontElement | * @self: A #WebKitDOMHTMLFontElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_font_element_set_color(WebKitDOMHTMLFontElement* self, cons t gchar* value); | webkit_dom_html_font_element_set_color(WebKitDOMHTMLFontElement* self, cons t gchar* value); | |||
/** | /** | |||
* webkit_dom_html_font_element_get_face: | * webkit_dom_html_font_element_get_face: | |||
* @self: A #WebKitDOMHTMLFontElement | * @self: A #WebKitDOMHTMLFontElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_font_element_get_face(WebKitDOMHTMLFontElement* self); | webkit_dom_html_font_element_get_face(WebKitDOMHTMLFontElement* self); | |||
/** | /** | |||
* webkit_dom_html_font_element_set_face: | * webkit_dom_html_font_element_set_face: | |||
* @self: A #WebKitDOMHTMLFontElement | * @self: A #WebKitDOMHTMLFontElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_font_element_set_face(WebKitDOMHTMLFontElement* self, const gchar* value); | webkit_dom_html_font_element_set_face(WebKitDOMHTMLFontElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_font_element_get_size: | * webkit_dom_html_font_element_get_size: | |||
* @self: A #WebKitDOMHTMLFontElement | * @self: A #WebKitDOMHTMLFontElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_font_element_get_size(WebKitDOMHTMLFontElement* self); | webkit_dom_html_font_element_get_size(WebKitDOMHTMLFontElement* self); | |||
/** | /** | |||
* webkit_dom_html_font_element_set_size: | * webkit_dom_html_font_element_set_size: | |||
* @self: A #WebKitDOMHTMLFontElement | * @self: A #WebKitDOMHTMLFontElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_font_element_set_size(WebKitDOMHTMLFontElement* self, const gchar* value); | webkit_dom_html_font_element_set_size(WebKitDOMHTMLFontElement* self, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLFontElement_h */ | #endif /* WebKitDOMHTMLFontElement_h */ | |||
End of changes. 7 change blocks. | ||||
31 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMHTMLFormElement.h | WebKitDOMHTMLFormElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLFormElement_h | #ifndef WebKitDOMHTMLFormElement_h | |||
#define WebKitDOMHTMLFormElement_h | #define WebKitDOMHTMLFormElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_form_element_get_type (void); | webkit_dom_html_form_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_form_element_submit: | * webkit_dom_html_form_element_submit: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_form_element_submit(WebKitDOMHTMLFormElement* self); | webkit_dom_html_form_element_submit(WebKitDOMHTMLFormElement* self); | |||
/** | /** | |||
* webkit_dom_html_form_element_reset: | * webkit_dom_html_form_element_reset: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_form_element_reset(WebKitDOMHTMLFormElement* self); | webkit_dom_html_form_element_reset(WebKitDOMHTMLFormElement* self); | |||
/** | /** | |||
* webkit_dom_html_form_element_check_validity: | * webkit_dom_html_form_element_check_validity: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_form_element_check_validity(WebKitDOMHTMLFormElement* self) ; | webkit_dom_html_form_element_check_validity(WebKitDOMHTMLFormElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_form_element_get_accept_charset: | * webkit_dom_html_form_element_get_accept_charset: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_form_element_get_accept_charset(WebKitDOMHTMLFormElement* s elf); | webkit_dom_html_form_element_get_accept_charset(WebKitDOMHTMLFormElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_form_element_set_accept_charset: | * webkit_dom_html_form_element_set_accept_charset: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_form_element_set_accept_charset(WebKitDOMHTMLFormElement* s elf, const gchar* value); | webkit_dom_html_form_element_set_accept_charset(WebKitDOMHTMLFormElement* s elf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_form_element_get_action: | * webkit_dom_html_form_element_get_action: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_form_element_get_action(WebKitDOMHTMLFormElement* self); | webkit_dom_html_form_element_get_action(WebKitDOMHTMLFormElement* self); | |||
/** | /** | |||
* webkit_dom_html_form_element_set_action: | * webkit_dom_html_form_element_set_action: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_form_element_set_action(WebKitDOMHTMLFormElement* self, con st gchar* value); | webkit_dom_html_form_element_set_action(WebKitDOMHTMLFormElement* self, con st gchar* value); | |||
/** | /** | |||
* webkit_dom_html_form_element_get_autocomplete: | * webkit_dom_html_form_element_get_autocomplete: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_form_element_get_autocomplete(WebKitDOMHTMLFormElement* sel f); | webkit_dom_html_form_element_get_autocomplete(WebKitDOMHTMLFormElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_form_element_set_autocomplete: | * webkit_dom_html_form_element_set_autocomplete: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_form_element_set_autocomplete(WebKitDOMHTMLFormElement* sel f, const gchar* value); | webkit_dom_html_form_element_set_autocomplete(WebKitDOMHTMLFormElement* sel f, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_form_element_get_enctype: | * webkit_dom_html_form_element_get_enctype: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_form_element_get_enctype(WebKitDOMHTMLFormElement* self); | webkit_dom_html_form_element_get_enctype(WebKitDOMHTMLFormElement* self); | |||
/** | /** | |||
* webkit_dom_html_form_element_set_enctype: | * webkit_dom_html_form_element_set_enctype: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_form_element_set_enctype(WebKitDOMHTMLFormElement* self, co nst gchar* value); | webkit_dom_html_form_element_set_enctype(WebKitDOMHTMLFormElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_form_element_get_encoding: | * webkit_dom_html_form_element_get_encoding: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_form_element_get_encoding(WebKitDOMHTMLFormElement* self); | webkit_dom_html_form_element_get_encoding(WebKitDOMHTMLFormElement* self); | |||
/** | /** | |||
* webkit_dom_html_form_element_set_encoding: | * webkit_dom_html_form_element_set_encoding: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_form_element_set_encoding(WebKitDOMHTMLFormElement* self, c onst gchar* value); | webkit_dom_html_form_element_set_encoding(WebKitDOMHTMLFormElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_form_element_get_method: | * webkit_dom_html_form_element_get_method: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_form_element_get_method(WebKitDOMHTMLFormElement* self); | webkit_dom_html_form_element_get_method(WebKitDOMHTMLFormElement* self); | |||
/** | /** | |||
* webkit_dom_html_form_element_set_method: | * webkit_dom_html_form_element_set_method: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_form_element_set_method(WebKitDOMHTMLFormElement* self, con st gchar* value); | webkit_dom_html_form_element_set_method(WebKitDOMHTMLFormElement* self, con st gchar* value); | |||
/** | /** | |||
* webkit_dom_html_form_element_get_name: | * webkit_dom_html_form_element_get_name: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_form_element_get_name(WebKitDOMHTMLFormElement* self); | webkit_dom_html_form_element_get_name(WebKitDOMHTMLFormElement* self); | |||
/** | /** | |||
* webkit_dom_html_form_element_set_name: | * webkit_dom_html_form_element_set_name: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_form_element_set_name(WebKitDOMHTMLFormElement* self, const gchar* value); | webkit_dom_html_form_element_set_name(WebKitDOMHTMLFormElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_form_element_get_no_validate: | * webkit_dom_html_form_element_get_no_validate: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_form_element_get_no_validate(WebKitDOMHTMLFormElement* self ); | webkit_dom_html_form_element_get_no_validate(WebKitDOMHTMLFormElement* self ); | |||
/** | /** | |||
* webkit_dom_html_form_element_set_no_validate: | * webkit_dom_html_form_element_set_no_validate: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_form_element_set_no_validate(WebKitDOMHTMLFormElement* self , gboolean value); | webkit_dom_html_form_element_set_no_validate(WebKitDOMHTMLFormElement* self , gboolean value); | |||
/** | /** | |||
* webkit_dom_html_form_element_get_target: | * webkit_dom_html_form_element_get_target: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_form_element_get_target(WebKitDOMHTMLFormElement* self); | webkit_dom_html_form_element_get_target(WebKitDOMHTMLFormElement* self); | |||
/** | /** | |||
* webkit_dom_html_form_element_set_target: | * webkit_dom_html_form_element_set_target: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_form_element_set_target(WebKitDOMHTMLFormElement* self, con st gchar* value); | webkit_dom_html_form_element_set_target(WebKitDOMHTMLFormElement* self, con st gchar* value); | |||
/** | /** | |||
* webkit_dom_html_form_element_get_elements: | * webkit_dom_html_form_element_get_elements: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_html_form_element_get_elements(WebKitDOMHTMLFormElement* self); | webkit_dom_html_form_element_get_elements(WebKitDOMHTMLFormElement* self); | |||
/** | /** | |||
* webkit_dom_html_form_element_get_length: | * webkit_dom_html_form_element_get_length: | |||
* @self: A #WebKitDOMHTMLFormElement | * @self: A #WebKitDOMHTMLFormElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_form_element_get_length(WebKitDOMHTMLFormElement* self); | webkit_dom_html_form_element_get_length(WebKitDOMHTMLFormElement* self); | |||
/** | ||||
* webkit_dom_html_form_element_get_autocorrect: | ||||
* @self: A #WebKitDOMHTMLFormElement | ||||
* | ||||
* Returns: A #gboolean | ||||
**/ | ||||
WEBKIT_API gboolean | ||||
webkit_dom_html_form_element_get_autocorrect(WebKitDOMHTMLFormElement* self | ||||
); | ||||
/** | ||||
* webkit_dom_html_form_element_set_autocorrect: | ||||
* @self: A #WebKitDOMHTMLFormElement | ||||
* @value: A #gboolean | ||||
* | ||||
**/ | ||||
WEBKIT_API void | ||||
webkit_dom_html_form_element_set_autocorrect(WebKitDOMHTMLFormElement* self | ||||
, gboolean value); | ||||
/** | ||||
* webkit_dom_html_form_element_get_autocapitalize: | ||||
* @self: A #WebKitDOMHTMLFormElement | ||||
* | ||||
* Returns: A #gchar | ||||
**/ | ||||
WEBKIT_API gchar* | ||||
webkit_dom_html_form_element_get_autocapitalize(WebKitDOMHTMLFormElement* s | ||||
elf); | ||||
/** | ||||
* webkit_dom_html_form_element_set_autocapitalize: | ||||
* @self: A #WebKitDOMHTMLFormElement | ||||
* @value: A #gchar | ||||
* | ||||
**/ | ||||
WEBKIT_API void | ||||
webkit_dom_html_form_element_set_autocapitalize(WebKitDOMHTMLFormElement* s | ||||
elf, const gchar* value); | ||||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLFormElement_h */ | #endif /* WebKitDOMHTMLFormElement_h */ | |||
End of changes. 25 change blocks. | ||||
65 lines changed or deleted | 71 lines changed or added | |||
WebKitDOMHTMLFrameElement.h | WebKitDOMHTMLFrameElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLFrameElement_h | #ifndef WebKitDOMHTMLFrameElement_h | |||
#define WebKitDOMHTMLFrameElement_h | #define WebKitDOMHTMLFrameElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_frame_element_get_type (void); | webkit_dom_html_frame_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_frame_element_get_frame_border: | * webkit_dom_html_frame_element_get_frame_border: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_frame_element_get_frame_border(WebKitDOMHTMLFrameElement* s elf); | webkit_dom_html_frame_element_get_frame_border(WebKitDOMHTMLFrameElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_frame_element_set_frame_border: | * webkit_dom_html_frame_element_set_frame_border: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_frame_element_set_frame_border(WebKitDOMHTMLFrameElement* s elf, const gchar* value); | webkit_dom_html_frame_element_set_frame_border(WebKitDOMHTMLFrameElement* s elf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_frame_element_get_long_desc: | * webkit_dom_html_frame_element_get_long_desc: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_frame_element_get_long_desc(WebKitDOMHTMLFrameElement* self ); | webkit_dom_html_frame_element_get_long_desc(WebKitDOMHTMLFrameElement* self ); | |||
/** | /** | |||
* webkit_dom_html_frame_element_set_long_desc: | * webkit_dom_html_frame_element_set_long_desc: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_frame_element_set_long_desc(WebKitDOMHTMLFrameElement* self , const gchar* value); | webkit_dom_html_frame_element_set_long_desc(WebKitDOMHTMLFrameElement* self , const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_frame_element_get_margin_height: | * webkit_dom_html_frame_element_get_margin_height: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_frame_element_get_margin_height(WebKitDOMHTMLFrameElement* self); | webkit_dom_html_frame_element_get_margin_height(WebKitDOMHTMLFrameElement* self); | |||
/** | /** | |||
* webkit_dom_html_frame_element_set_margin_height: | * webkit_dom_html_frame_element_set_margin_height: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_frame_element_set_margin_height(WebKitDOMHTMLFrameElement* self, const gchar* value); | webkit_dom_html_frame_element_set_margin_height(WebKitDOMHTMLFrameElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_frame_element_get_margin_width: | * webkit_dom_html_frame_element_get_margin_width: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_frame_element_get_margin_width(WebKitDOMHTMLFrameElement* s elf); | webkit_dom_html_frame_element_get_margin_width(WebKitDOMHTMLFrameElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_frame_element_set_margin_width: | * webkit_dom_html_frame_element_set_margin_width: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_frame_element_set_margin_width(WebKitDOMHTMLFrameElement* s elf, const gchar* value); | webkit_dom_html_frame_element_set_margin_width(WebKitDOMHTMLFrameElement* s elf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_frame_element_get_name: | * webkit_dom_html_frame_element_get_name: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_frame_element_get_name(WebKitDOMHTMLFrameElement* self); | webkit_dom_html_frame_element_get_name(WebKitDOMHTMLFrameElement* self); | |||
/** | /** | |||
* webkit_dom_html_frame_element_set_name: | * webkit_dom_html_frame_element_set_name: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_frame_element_set_name(WebKitDOMHTMLFrameElement* self, con st gchar* value); | webkit_dom_html_frame_element_set_name(WebKitDOMHTMLFrameElement* self, con st gchar* value); | |||
/** | /** | |||
* webkit_dom_html_frame_element_get_no_resize: | * webkit_dom_html_frame_element_get_no_resize: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_frame_element_get_no_resize(WebKitDOMHTMLFrameElement* self ); | webkit_dom_html_frame_element_get_no_resize(WebKitDOMHTMLFrameElement* self ); | |||
/** | /** | |||
* webkit_dom_html_frame_element_set_no_resize: | * webkit_dom_html_frame_element_set_no_resize: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_frame_element_set_no_resize(WebKitDOMHTMLFrameElement* self , gboolean value); | webkit_dom_html_frame_element_set_no_resize(WebKitDOMHTMLFrameElement* self , gboolean value); | |||
/** | /** | |||
* webkit_dom_html_frame_element_get_scrolling: | * webkit_dom_html_frame_element_get_scrolling: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_frame_element_get_scrolling(WebKitDOMHTMLFrameElement* self ); | webkit_dom_html_frame_element_get_scrolling(WebKitDOMHTMLFrameElement* self ); | |||
/** | /** | |||
* webkit_dom_html_frame_element_set_scrolling: | * webkit_dom_html_frame_element_set_scrolling: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_frame_element_set_scrolling(WebKitDOMHTMLFrameElement* self , const gchar* value); | webkit_dom_html_frame_element_set_scrolling(WebKitDOMHTMLFrameElement* self , const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_frame_element_get_src: | * webkit_dom_html_frame_element_get_src: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_frame_element_get_src(WebKitDOMHTMLFrameElement* self); | webkit_dom_html_frame_element_get_src(WebKitDOMHTMLFrameElement* self); | |||
/** | /** | |||
* webkit_dom_html_frame_element_set_src: | * webkit_dom_html_frame_element_set_src: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_frame_element_set_src(WebKitDOMHTMLFrameElement* self, cons t gchar* value); | webkit_dom_html_frame_element_set_src(WebKitDOMHTMLFrameElement* self, cons t gchar* value); | |||
/** | /** | |||
* webkit_dom_html_frame_element_get_content_document: | * webkit_dom_html_frame_element_get_content_document: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDocument | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDocument* | WEBKIT_API WebKitDOMDocument* | |||
webkit_dom_html_frame_element_get_content_document(WebKitDOMHTMLFrameElemen t* self); | webkit_dom_html_frame_element_get_content_document(WebKitDOMHTMLFrameElemen t* self); | |||
/** | /** | |||
* webkit_dom_html_frame_element_get_content_window: | * webkit_dom_html_frame_element_get_content_window: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMWindow | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMWindow* | WEBKIT_API WebKitDOMDOMWindow* | |||
webkit_dom_html_frame_element_get_content_window(WebKitDOMHTMLFrameElement* self); | webkit_dom_html_frame_element_get_content_window(WebKitDOMHTMLFrameElement* self); | |||
/** | /** | |||
* webkit_dom_html_frame_element_get_width: | * webkit_dom_html_frame_element_get_width: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_frame_element_get_width(WebKitDOMHTMLFrameElement* self); | webkit_dom_html_frame_element_get_width(WebKitDOMHTMLFrameElement* self); | |||
/** | /** | |||
* webkit_dom_html_frame_element_get_height: | * webkit_dom_html_frame_element_get_height: | |||
* @self: A #WebKitDOMHTMLFrameElement | * @self: A #WebKitDOMHTMLFrameElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_frame_element_get_height(WebKitDOMHTMLFrameElement* self); | webkit_dom_html_frame_element_get_height(WebKitDOMHTMLFrameElement* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLFrameElement_h */ | #endif /* WebKitDOMHTMLFrameElement_h */ | |||
End of changes. 21 change blocks. | ||||
59 lines changed or deleted | 31 lines changed or added | |||
WebKitDOMHTMLFrameSetElement.h | WebKitDOMHTMLFrameSetElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLFrameSetElement_h | #ifndef WebKitDOMHTMLFrameSetElement_h | |||
#define WebKitDOMHTMLFrameSetElement_h | #define WebKitDOMHTMLFrameSetElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_frame_set_element_get_type (void); | webkit_dom_html_frame_set_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_frame_set_element_get_cols: | * webkit_dom_html_frame_set_element_get_cols: | |||
* @self: A #WebKitDOMHTMLFrameSetElement | * @self: A #WebKitDOMHTMLFrameSetElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_frame_set_element_get_cols(WebKitDOMHTMLFrameSetElement* se lf); | webkit_dom_html_frame_set_element_get_cols(WebKitDOMHTMLFrameSetElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_frame_set_element_set_cols: | * webkit_dom_html_frame_set_element_set_cols: | |||
* @self: A #WebKitDOMHTMLFrameSetElement | * @self: A #WebKitDOMHTMLFrameSetElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_frame_set_element_set_cols(WebKitDOMHTMLFrameSetElement* se lf, const gchar* value); | webkit_dom_html_frame_set_element_set_cols(WebKitDOMHTMLFrameSetElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_frame_set_element_get_rows: | * webkit_dom_html_frame_set_element_get_rows: | |||
* @self: A #WebKitDOMHTMLFrameSetElement | * @self: A #WebKitDOMHTMLFrameSetElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_frame_set_element_get_rows(WebKitDOMHTMLFrameSetElement* se lf); | webkit_dom_html_frame_set_element_get_rows(WebKitDOMHTMLFrameSetElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_frame_set_element_set_rows: | * webkit_dom_html_frame_set_element_set_rows: | |||
* @self: A #WebKitDOMHTMLFrameSetElement | * @self: A #WebKitDOMHTMLFrameSetElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_frame_set_element_set_rows(WebKitDOMHTMLFrameSetElement* se lf, const gchar* value); | webkit_dom_html_frame_set_element_set_rows(WebKitDOMHTMLFrameSetElement* se lf, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLFrameSetElement_h */ | #endif /* WebKitDOMHTMLFrameSetElement_h */ | |||
End of changes. 5 change blocks. | ||||
27 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMHTMLHRElement.h | WebKitDOMHTMLHRElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLHRElement_h | #ifndef WebKitDOMHTMLHRElement_h | |||
#define WebKitDOMHTMLHRElement_h | #define WebKitDOMHTMLHRElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_htmlhr_element_get_type (void); | webkit_dom_htmlhr_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_htmlhr_element_get_align: | * webkit_dom_htmlhr_element_get_align: | |||
* @self: A #WebKitDOMHTMLHRElement | * @self: A #WebKitDOMHTMLHRElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_htmlhr_element_get_align(WebKitDOMHTMLHRElement* self); | webkit_dom_htmlhr_element_get_align(WebKitDOMHTMLHRElement* self); | |||
/** | /** | |||
* webkit_dom_htmlhr_element_set_align: | * webkit_dom_htmlhr_element_set_align: | |||
* @self: A #WebKitDOMHTMLHRElement | * @self: A #WebKitDOMHTMLHRElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_htmlhr_element_set_align(WebKitDOMHTMLHRElement* self, const gch ar* value); | webkit_dom_htmlhr_element_set_align(WebKitDOMHTMLHRElement* self, const gch ar* value); | |||
/** | /** | |||
* webkit_dom_htmlhr_element_get_no_shade: | * webkit_dom_htmlhr_element_get_no_shade: | |||
* @self: A #WebKitDOMHTMLHRElement | * @self: A #WebKitDOMHTMLHRElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_htmlhr_element_get_no_shade(WebKitDOMHTMLHRElement* self); | webkit_dom_htmlhr_element_get_no_shade(WebKitDOMHTMLHRElement* self); | |||
/** | /** | |||
* webkit_dom_htmlhr_element_set_no_shade: | * webkit_dom_htmlhr_element_set_no_shade: | |||
* @self: A #WebKitDOMHTMLHRElement | * @self: A #WebKitDOMHTMLHRElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_htmlhr_element_set_no_shade(WebKitDOMHTMLHRElement* self, gboole an value); | webkit_dom_htmlhr_element_set_no_shade(WebKitDOMHTMLHRElement* self, gboole an value); | |||
/** | /** | |||
* webkit_dom_htmlhr_element_get_size: | * webkit_dom_htmlhr_element_get_size: | |||
* @self: A #WebKitDOMHTMLHRElement | * @self: A #WebKitDOMHTMLHRElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_htmlhr_element_get_size(WebKitDOMHTMLHRElement* self); | webkit_dom_htmlhr_element_get_size(WebKitDOMHTMLHRElement* self); | |||
/** | /** | |||
* webkit_dom_htmlhr_element_set_size: | * webkit_dom_htmlhr_element_set_size: | |||
* @self: A #WebKitDOMHTMLHRElement | * @self: A #WebKitDOMHTMLHRElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_htmlhr_element_set_size(WebKitDOMHTMLHRElement* self, const gcha r* value); | webkit_dom_htmlhr_element_set_size(WebKitDOMHTMLHRElement* self, const gcha r* value); | |||
/** | /** | |||
* webkit_dom_htmlhr_element_get_width: | * webkit_dom_htmlhr_element_get_width: | |||
* @self: A #WebKitDOMHTMLHRElement | * @self: A #WebKitDOMHTMLHRElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_htmlhr_element_get_width(WebKitDOMHTMLHRElement* self); | webkit_dom_htmlhr_element_get_width(WebKitDOMHTMLHRElement* self); | |||
/** | /** | |||
* webkit_dom_htmlhr_element_set_width: | * webkit_dom_htmlhr_element_set_width: | |||
* @self: A #WebKitDOMHTMLHRElement | * @self: A #WebKitDOMHTMLHRElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_htmlhr_element_set_width(WebKitDOMHTMLHRElement* self, const gch ar* value); | webkit_dom_htmlhr_element_set_width(WebKitDOMHTMLHRElement* self, const gch ar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLHRElement_h */ | #endif /* WebKitDOMHTMLHRElement_h */ | |||
End of changes. 9 change blocks. | ||||
35 lines changed or deleted | 23 lines changed or added | |||
WebKitDOMHTMLHeadElement.h | WebKitDOMHTMLHeadElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLHeadElement_h | #ifndef WebKitDOMHTMLHeadElement_h | |||
#define WebKitDOMHTMLHeadElement_h | #define WebKitDOMHTMLHeadElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_head_element_get_type (void); | webkit_dom_html_head_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_head_element_get_profile: | * webkit_dom_html_head_element_get_profile: | |||
* @self: A #WebKitDOMHTMLHeadElement | * @self: A #WebKitDOMHTMLHeadElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_head_element_get_profile(WebKitDOMHTMLHeadElement* self); | webkit_dom_html_head_element_get_profile(WebKitDOMHTMLHeadElement* self); | |||
/** | /** | |||
* webkit_dom_html_head_element_set_profile: | * webkit_dom_html_head_element_set_profile: | |||
* @self: A #WebKitDOMHTMLHeadElement | * @self: A #WebKitDOMHTMLHeadElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_head_element_set_profile(WebKitDOMHTMLHeadElement* self, co nst gchar* value); | webkit_dom_html_head_element_set_profile(WebKitDOMHTMLHeadElement* self, co nst gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLHeadElement_h */ | #endif /* WebKitDOMHTMLHeadElement_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMHTMLHeadingElement.h | WebKitDOMHTMLHeadingElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLHeadingElement_h | #ifndef WebKitDOMHTMLHeadingElement_h | |||
#define WebKitDOMHTMLHeadingElement_h | #define WebKitDOMHTMLHeadingElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_heading_element_get_type (void); | webkit_dom_html_heading_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_heading_element_get_align: | * webkit_dom_html_heading_element_get_align: | |||
* @self: A #WebKitDOMHTMLHeadingElement | * @self: A #WebKitDOMHTMLHeadingElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_heading_element_get_align(WebKitDOMHTMLHeadingElement* self ); | webkit_dom_html_heading_element_get_align(WebKitDOMHTMLHeadingElement* self ); | |||
/** | /** | |||
* webkit_dom_html_heading_element_set_align: | * webkit_dom_html_heading_element_set_align: | |||
* @self: A #WebKitDOMHTMLHeadingElement | * @self: A #WebKitDOMHTMLHeadingElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_heading_element_set_align(WebKitDOMHTMLHeadingElement* self , const gchar* value); | webkit_dom_html_heading_element_set_align(WebKitDOMHTMLHeadingElement* self , const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLHeadingElement_h */ | #endif /* WebKitDOMHTMLHeadingElement_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMHTMLHtmlElement.h | WebKitDOMHTMLHtmlElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLHtmlElement_h | #ifndef WebKitDOMHTMLHtmlElement_h | |||
#define WebKitDOMHTMLHtmlElement_h | #define WebKitDOMHTMLHtmlElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_html_element_get_type (void); | webkit_dom_html_html_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_html_element_get_version: | * webkit_dom_html_html_element_get_version: | |||
* @self: A #WebKitDOMHTMLHtmlElement | * @self: A #WebKitDOMHTMLHtmlElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_html_element_get_version(WebKitDOMHTMLHtmlElement* self); | webkit_dom_html_html_element_get_version(WebKitDOMHTMLHtmlElement* self); | |||
/** | /** | |||
* webkit_dom_html_html_element_set_version: | * webkit_dom_html_html_element_set_version: | |||
* @self: A #WebKitDOMHTMLHtmlElement | * @self: A #WebKitDOMHTMLHtmlElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_html_element_set_version(WebKitDOMHTMLHtmlElement* self, co nst gchar* value); | webkit_dom_html_html_element_set_version(WebKitDOMHTMLHtmlElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_html_element_get_manifest: | * webkit_dom_html_html_element_get_manifest: | |||
* @self: A #WebKitDOMHTMLHtmlElement | * @self: A #WebKitDOMHTMLHtmlElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_html_element_get_manifest(WebKitDOMHTMLHtmlElement* self); | webkit_dom_html_html_element_get_manifest(WebKitDOMHTMLHtmlElement* self); | |||
/** | /** | |||
* webkit_dom_html_html_element_set_manifest: | * webkit_dom_html_html_element_set_manifest: | |||
* @self: A #WebKitDOMHTMLHtmlElement | * @self: A #WebKitDOMHTMLHtmlElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_html_element_set_manifest(WebKitDOMHTMLHtmlElement* self, c onst gchar* value); | webkit_dom_html_html_element_set_manifest(WebKitDOMHTMLHtmlElement* self, c onst gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLHtmlElement_h */ | #endif /* WebKitDOMHTMLHtmlElement_h */ | |||
End of changes. 5 change blocks. | ||||
27 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMHTMLIFrameElement.h | WebKitDOMHTMLIFrameElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLIFrameElement_h | #ifndef WebKitDOMHTMLIFrameElement_h | |||
#define WebKitDOMHTMLIFrameElement_h | #define WebKitDOMHTMLIFrameElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_iframe_element_get_type (void); | webkit_dom_html_iframe_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_align: | * webkit_dom_html_iframe_element_get_align: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_iframe_element_get_align(WebKitDOMHTMLIFrameElement* self); | webkit_dom_html_iframe_element_get_align(WebKitDOMHTMLIFrameElement* self); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_set_align: | * webkit_dom_html_iframe_element_set_align: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_iframe_element_set_align(WebKitDOMHTMLIFrameElement* self, const gchar* value); | webkit_dom_html_iframe_element_set_align(WebKitDOMHTMLIFrameElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_frame_border: | * webkit_dom_html_iframe_element_get_frame_border: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_iframe_element_get_frame_border(WebKitDOMHTMLIFrameElement* self); | webkit_dom_html_iframe_element_get_frame_border(WebKitDOMHTMLIFrameElement* self); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_set_frame_border: | * webkit_dom_html_iframe_element_set_frame_border: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_iframe_element_set_frame_border(WebKitDOMHTMLIFrameElement* self, const gchar* value); | webkit_dom_html_iframe_element_set_frame_border(WebKitDOMHTMLIFrameElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_height: | * webkit_dom_html_iframe_element_get_height: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_iframe_element_get_height(WebKitDOMHTMLIFrameElement* self) ; | webkit_dom_html_iframe_element_get_height(WebKitDOMHTMLIFrameElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_iframe_element_set_height: | * webkit_dom_html_iframe_element_set_height: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_iframe_element_set_height(WebKitDOMHTMLIFrameElement* self, const gchar* value); | webkit_dom_html_iframe_element_set_height(WebKitDOMHTMLIFrameElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_long_desc: | * webkit_dom_html_iframe_element_get_long_desc: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_iframe_element_get_long_desc(WebKitDOMHTMLIFrameElement* se lf); | webkit_dom_html_iframe_element_get_long_desc(WebKitDOMHTMLIFrameElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_set_long_desc: | * webkit_dom_html_iframe_element_set_long_desc: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_iframe_element_set_long_desc(WebKitDOMHTMLIFrameElement* se lf, const gchar* value); | webkit_dom_html_iframe_element_set_long_desc(WebKitDOMHTMLIFrameElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_margin_height: | * webkit_dom_html_iframe_element_get_margin_height: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_iframe_element_get_margin_height(WebKitDOMHTMLIFrameElement * self); | webkit_dom_html_iframe_element_get_margin_height(WebKitDOMHTMLIFrameElement * self); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_set_margin_height: | * webkit_dom_html_iframe_element_set_margin_height: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_iframe_element_set_margin_height(WebKitDOMHTMLIFrameElement * self, const gchar* value); | webkit_dom_html_iframe_element_set_margin_height(WebKitDOMHTMLIFrameElement * self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_margin_width: | * webkit_dom_html_iframe_element_get_margin_width: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_iframe_element_get_margin_width(WebKitDOMHTMLIFrameElement* self); | webkit_dom_html_iframe_element_get_margin_width(WebKitDOMHTMLIFrameElement* self); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_set_margin_width: | * webkit_dom_html_iframe_element_set_margin_width: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_iframe_element_set_margin_width(WebKitDOMHTMLIFrameElement* self, const gchar* value); | webkit_dom_html_iframe_element_set_margin_width(WebKitDOMHTMLIFrameElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_name: | * webkit_dom_html_iframe_element_get_name: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_iframe_element_get_name(WebKitDOMHTMLIFrameElement* self); | webkit_dom_html_iframe_element_get_name(WebKitDOMHTMLIFrameElement* self); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_set_name: | * webkit_dom_html_iframe_element_set_name: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_iframe_element_set_name(WebKitDOMHTMLIFrameElement* self, c onst gchar* value); | webkit_dom_html_iframe_element_set_name(WebKitDOMHTMLIFrameElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_sandbox: | * webkit_dom_html_iframe_element_get_sandbox: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_iframe_element_get_sandbox(WebKitDOMHTMLIFrameElement* self ); | webkit_dom_html_iframe_element_get_sandbox(WebKitDOMHTMLIFrameElement* self ); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_set_sandbox: | * webkit_dom_html_iframe_element_set_sandbox: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_iframe_element_set_sandbox(WebKitDOMHTMLIFrameElement* self , const gchar* value); | webkit_dom_html_iframe_element_set_sandbox(WebKitDOMHTMLIFrameElement* self , const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_seamless: | * webkit_dom_html_iframe_element_get_seamless: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_iframe_element_get_seamless(WebKitDOMHTMLIFrameElement* sel f); | webkit_dom_html_iframe_element_get_seamless(WebKitDOMHTMLIFrameElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_set_seamless: | * webkit_dom_html_iframe_element_set_seamless: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_iframe_element_set_seamless(WebKitDOMHTMLIFrameElement* sel f, gboolean value); | webkit_dom_html_iframe_element_set_seamless(WebKitDOMHTMLIFrameElement* sel f, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_scrolling: | * webkit_dom_html_iframe_element_get_scrolling: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_iframe_element_get_scrolling(WebKitDOMHTMLIFrameElement* se lf); | webkit_dom_html_iframe_element_get_scrolling(WebKitDOMHTMLIFrameElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_set_scrolling: | * webkit_dom_html_iframe_element_set_scrolling: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_iframe_element_set_scrolling(WebKitDOMHTMLIFrameElement* se lf, const gchar* value); | webkit_dom_html_iframe_element_set_scrolling(WebKitDOMHTMLIFrameElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_src: | * webkit_dom_html_iframe_element_get_src: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_iframe_element_get_src(WebKitDOMHTMLIFrameElement* self); | webkit_dom_html_iframe_element_get_src(WebKitDOMHTMLIFrameElement* self); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_set_src: | * webkit_dom_html_iframe_element_set_src: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_iframe_element_set_src(WebKitDOMHTMLIFrameElement* self, co nst gchar* value); | webkit_dom_html_iframe_element_set_src(WebKitDOMHTMLIFrameElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_srcdoc: | * webkit_dom_html_iframe_element_get_srcdoc: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_iframe_element_get_srcdoc(WebKitDOMHTMLIFrameElement* self) ; | webkit_dom_html_iframe_element_get_srcdoc(WebKitDOMHTMLIFrameElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_iframe_element_set_srcdoc: | * webkit_dom_html_iframe_element_set_srcdoc: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_iframe_element_set_srcdoc(WebKitDOMHTMLIFrameElement* self, const gchar* value); | webkit_dom_html_iframe_element_set_srcdoc(WebKitDOMHTMLIFrameElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_width: | * webkit_dom_html_iframe_element_get_width: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_iframe_element_get_width(WebKitDOMHTMLIFrameElement* self); | webkit_dom_html_iframe_element_get_width(WebKitDOMHTMLIFrameElement* self); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_set_width: | * webkit_dom_html_iframe_element_set_width: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_iframe_element_set_width(WebKitDOMHTMLIFrameElement* self, const gchar* value); | webkit_dom_html_iframe_element_set_width(WebKitDOMHTMLIFrameElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_content_document: | * webkit_dom_html_iframe_element_get_content_document: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDocument | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDocument* | WEBKIT_API WebKitDOMDocument* | |||
webkit_dom_html_iframe_element_get_content_document(WebKitDOMHTMLIFrameElem ent* self); | webkit_dom_html_iframe_element_get_content_document(WebKitDOMHTMLIFrameElem ent* self); | |||
/** | /** | |||
* webkit_dom_html_iframe_element_get_content_window: | * webkit_dom_html_iframe_element_get_content_window: | |||
* @self: A #WebKitDOMHTMLIFrameElement | * @self: A #WebKitDOMHTMLIFrameElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMWindow | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMWindow* | WEBKIT_API WebKitDOMDOMWindow* | |||
webkit_dom_html_iframe_element_get_content_window(WebKitDOMHTMLIFrameElemen t* self); | webkit_dom_html_iframe_element_get_content_window(WebKitDOMHTMLIFrameElemen t* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLIFrameElement_h */ | #endif /* WebKitDOMHTMLIFrameElement_h */ | |||
End of changes. 29 change blocks. | ||||
75 lines changed or deleted | 34 lines changed or added | |||
WebKitDOMHTMLImageElement.h | WebKitDOMHTMLImageElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLImageElement_h | #ifndef WebKitDOMHTMLImageElement_h | |||
#define WebKitDOMHTMLImageElement_h | #define WebKitDOMHTMLImageElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_image_element_get_type (void); | webkit_dom_html_image_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_name: | * webkit_dom_html_image_element_get_name: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_image_element_get_name(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_name(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_name: | * webkit_dom_html_image_element_set_name: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_name(WebKitDOMHTMLImageElement* self, con st gchar* value); | webkit_dom_html_image_element_set_name(WebKitDOMHTMLImageElement* self, con st gchar* value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_align: | * webkit_dom_html_image_element_get_align: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_image_element_get_align(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_align(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_align: | * webkit_dom_html_image_element_set_align: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_align(WebKitDOMHTMLImageElement* self, co nst gchar* value); | webkit_dom_html_image_element_set_align(WebKitDOMHTMLImageElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_alt: | * webkit_dom_html_image_element_get_alt: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_image_element_get_alt(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_alt(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_alt: | * webkit_dom_html_image_element_set_alt: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_alt(WebKitDOMHTMLImageElement* self, cons t gchar* value); | webkit_dom_html_image_element_set_alt(WebKitDOMHTMLImageElement* self, cons t gchar* value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_border: | * webkit_dom_html_image_element_get_border: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_image_element_get_border(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_border(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_border: | * webkit_dom_html_image_element_set_border: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_border(WebKitDOMHTMLImageElement* self, c onst gchar* value); | webkit_dom_html_image_element_set_border(WebKitDOMHTMLImageElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_cross_origin: | * webkit_dom_html_image_element_get_cross_origin: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_image_element_get_cross_origin(WebKitDOMHTMLImageElement* s elf); | webkit_dom_html_image_element_get_cross_origin(WebKitDOMHTMLImageElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_cross_origin: | * webkit_dom_html_image_element_set_cross_origin: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_cross_origin(WebKitDOMHTMLImageElement* s elf, const gchar* value); | webkit_dom_html_image_element_set_cross_origin(WebKitDOMHTMLImageElement* s elf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_height: | * webkit_dom_html_image_element_get_height: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_image_element_get_height(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_height(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_height: | * webkit_dom_html_image_element_set_height: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_height(WebKitDOMHTMLImageElement* self, g long value); | webkit_dom_html_image_element_set_height(WebKitDOMHTMLImageElement* self, g long value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_hspace: | * webkit_dom_html_image_element_get_hspace: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_image_element_get_hspace(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_hspace(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_hspace: | * webkit_dom_html_image_element_set_hspace: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_hspace(WebKitDOMHTMLImageElement* self, g long value); | webkit_dom_html_image_element_set_hspace(WebKitDOMHTMLImageElement* self, g long value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_is_map: | * webkit_dom_html_image_element_get_is_map: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_image_element_get_is_map(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_is_map(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_is_map: | * webkit_dom_html_image_element_set_is_map: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_is_map(WebKitDOMHTMLImageElement* self, g boolean value); | webkit_dom_html_image_element_set_is_map(WebKitDOMHTMLImageElement* self, g boolean value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_long_desc: | * webkit_dom_html_image_element_get_long_desc: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_image_element_get_long_desc(WebKitDOMHTMLImageElement* self ); | webkit_dom_html_image_element_get_long_desc(WebKitDOMHTMLImageElement* self ); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_long_desc: | * webkit_dom_html_image_element_set_long_desc: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_long_desc(WebKitDOMHTMLImageElement* self , const gchar* value); | webkit_dom_html_image_element_set_long_desc(WebKitDOMHTMLImageElement* self , const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_src: | * webkit_dom_html_image_element_get_src: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_image_element_get_src(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_src(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_src: | * webkit_dom_html_image_element_set_src: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_src(WebKitDOMHTMLImageElement* self, cons t gchar* value); | webkit_dom_html_image_element_set_src(WebKitDOMHTMLImageElement* self, cons t gchar* value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_srcset: | * webkit_dom_html_image_element_get_srcset: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_image_element_get_srcset(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_srcset(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_srcset: | * webkit_dom_html_image_element_set_srcset: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_srcset(WebKitDOMHTMLImageElement* self, c onst gchar* value); | webkit_dom_html_image_element_set_srcset(WebKitDOMHTMLImageElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_use_map: | * webkit_dom_html_image_element_get_use_map: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_image_element_get_use_map(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_use_map(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_use_map: | * webkit_dom_html_image_element_set_use_map: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_use_map(WebKitDOMHTMLImageElement* self, const gchar* value); | webkit_dom_html_image_element_set_use_map(WebKitDOMHTMLImageElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_vspace: | * webkit_dom_html_image_element_get_vspace: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_image_element_get_vspace(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_vspace(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_vspace: | * webkit_dom_html_image_element_set_vspace: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_vspace(WebKitDOMHTMLImageElement* self, g long value); | webkit_dom_html_image_element_set_vspace(WebKitDOMHTMLImageElement* self, g long value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_width: | * webkit_dom_html_image_element_get_width: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_image_element_get_width(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_width(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_width: | * webkit_dom_html_image_element_set_width: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_width(WebKitDOMHTMLImageElement* self, gl ong value); | webkit_dom_html_image_element_set_width(WebKitDOMHTMLImageElement* self, gl ong value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_complete: | * webkit_dom_html_image_element_get_complete: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_image_element_get_complete(WebKitDOMHTMLImageElement* self) ; | webkit_dom_html_image_element_get_complete(WebKitDOMHTMLImageElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_image_element_get_lowsrc: | * webkit_dom_html_image_element_get_lowsrc: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_image_element_get_lowsrc(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_lowsrc(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_set_lowsrc: | * webkit_dom_html_image_element_set_lowsrc: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_image_element_set_lowsrc(WebKitDOMHTMLImageElement* self, c onst gchar* value); | webkit_dom_html_image_element_set_lowsrc(WebKitDOMHTMLImageElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_natural_height: | * webkit_dom_html_image_element_get_natural_height: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_image_element_get_natural_height(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_natural_height(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_natural_width: | * webkit_dom_html_image_element_get_natural_width: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_image_element_get_natural_width(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_natural_width(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_x: | * webkit_dom_html_image_element_get_x: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_image_element_get_x(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_x(WebKitDOMHTMLImageElement* self); | |||
/** | /** | |||
* webkit_dom_html_image_element_get_y: | * webkit_dom_html_image_element_get_y: | |||
* @self: A #WebKitDOMHTMLImageElement | * @self: A #WebKitDOMHTMLImageElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_image_element_get_y(WebKitDOMHTMLImageElement* self); | webkit_dom_html_image_element_get_y(WebKitDOMHTMLImageElement* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLImageElement_h */ | #endif /* WebKitDOMHTMLImageElement_h */ | |||
End of changes. 36 change blocks. | ||||
89 lines changed or deleted | 39 lines changed or added | |||
WebKitDOMHTMLInputElement.h | WebKitDOMHTMLInputElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLInputElement_h | #ifndef WebKitDOMHTMLInputElement_h | |||
#define WebKitDOMHTMLInputElement_h | #define WebKitDOMHTMLInputElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 58 | skipping to change at line 58 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_input_element_get_type (void); | webkit_dom_html_input_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_input_element_step_up: | * webkit_dom_html_input_element_step_up: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @n: A #glong | * @n: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_step_up(WebKitDOMHTMLInputElement* self, glon g n, GError** error); | webkit_dom_html_input_element_step_up(WebKitDOMHTMLInputElement* self, glon g n, GError** error); | |||
/** | /** | |||
* webkit_dom_html_input_element_step_down: | * webkit_dom_html_input_element_step_down: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @n: A #glong | * @n: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_step_down(WebKitDOMHTMLInputElement* self, gl ong n, GError** error); | webkit_dom_html_input_element_step_down(WebKitDOMHTMLInputElement* self, gl ong n, GError** error); | |||
/** | /** | |||
* webkit_dom_html_input_element_check_validity: | * webkit_dom_html_input_element_check_validity: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_check_validity(WebKitDOMHTMLInputElement* sel f); | webkit_dom_html_input_element_check_validity(WebKitDOMHTMLInputElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_custom_validity: | * webkit_dom_html_input_element_set_custom_validity: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @error: A #gchar | * @error: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_custom_validity(WebKitDOMHTMLInputElement * self, const gchar* error); | webkit_dom_html_input_element_set_custom_validity(WebKitDOMHTMLInputElement * self, const gchar* error); | |||
/** | /** | |||
* webkit_dom_html_input_element_select: | * webkit_dom_html_input_element_select: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_select(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_select(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_range_text: | * webkit_dom_html_input_element_set_range_text: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @replacement: A #gchar | * @replacement: A #gchar | |||
* @start: A #gulong | * @start: A #gulong | |||
* @end: A #gulong | * @end: A #gulong | |||
* @selectionMode: A #gchar | * @selectionMode: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_range_text(WebKitDOMHTMLInputElement* sel f, const gchar* replacement, gulong start, gulong end, const gchar* selecti onMode, GError** error); | webkit_dom_html_input_element_set_range_text(WebKitDOMHTMLInputElement* sel f, const gchar* replacement, gulong start, gulong end, const gchar* selecti onMode, GError** error); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_value_for_user: | * webkit_dom_html_input_element_set_value_for_user: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_value_for_user(WebKitDOMHTMLInputElement* self, const gchar* value); | webkit_dom_html_input_element_set_value_for_user(WebKitDOMHTMLInputElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_accept: | * webkit_dom_html_input_element_get_accept: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_accept(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_accept(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_accept: | * webkit_dom_html_input_element_set_accept: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_accept(WebKitDOMHTMLInputElement* self, c onst gchar* value); | webkit_dom_html_input_element_set_accept(WebKitDOMHTMLInputElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_alt: | * webkit_dom_html_input_element_get_alt: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_alt(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_alt(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_alt: | * webkit_dom_html_input_element_set_alt: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_alt(WebKitDOMHTMLInputElement* self, cons t gchar* value); | webkit_dom_html_input_element_set_alt(WebKitDOMHTMLInputElement* self, cons t gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_autocomplete: | * webkit_dom_html_input_element_get_autocomplete: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_autocomplete(WebKitDOMHTMLInputElement* s elf); | webkit_dom_html_input_element_get_autocomplete(WebKitDOMHTMLInputElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_autocomplete: | * webkit_dom_html_input_element_set_autocomplete: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_autocomplete(WebKitDOMHTMLInputElement* s elf, const gchar* value); | webkit_dom_html_input_element_set_autocomplete(WebKitDOMHTMLInputElement* s elf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_autofocus: | * webkit_dom_html_input_element_get_autofocus: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_get_autofocus(WebKitDOMHTMLInputElement* self ); | webkit_dom_html_input_element_get_autofocus(WebKitDOMHTMLInputElement* self ); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_autofocus: | * webkit_dom_html_input_element_set_autofocus: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_autofocus(WebKitDOMHTMLInputElement* self , gboolean value); | webkit_dom_html_input_element_set_autofocus(WebKitDOMHTMLInputElement* self , gboolean value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_default_checked: | * webkit_dom_html_input_element_get_default_checked: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_get_default_checked(WebKitDOMHTMLInputElement * self); | webkit_dom_html_input_element_get_default_checked(WebKitDOMHTMLInputElement * self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_default_checked: | * webkit_dom_html_input_element_set_default_checked: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_default_checked(WebKitDOMHTMLInputElement * self, gboolean value); | webkit_dom_html_input_element_set_default_checked(WebKitDOMHTMLInputElement * self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_checked: | * webkit_dom_html_input_element_get_checked: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_get_checked(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_checked(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_checked: | * webkit_dom_html_input_element_set_checked: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_checked(WebKitDOMHTMLInputElement* self, gboolean value); | webkit_dom_html_input_element_set_checked(WebKitDOMHTMLInputElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_dir_name: | * webkit_dom_html_input_element_get_dir_name: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_dir_name(WebKitDOMHTMLInputElement* self) ; | webkit_dom_html_input_element_get_dir_name(WebKitDOMHTMLInputElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_input_element_set_dir_name: | * webkit_dom_html_input_element_set_dir_name: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_dir_name(WebKitDOMHTMLInputElement* self, const gchar* value); | webkit_dom_html_input_element_set_dir_name(WebKitDOMHTMLInputElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_disabled: | * webkit_dom_html_input_element_get_disabled: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_get_disabled(WebKitDOMHTMLInputElement* self) ; | webkit_dom_html_input_element_get_disabled(WebKitDOMHTMLInputElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_input_element_set_disabled: | * webkit_dom_html_input_element_set_disabled: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_disabled(WebKitDOMHTMLInputElement* self, gboolean value); | webkit_dom_html_input_element_set_disabled(WebKitDOMHTMLInputElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_form: | * webkit_dom_html_input_element_get_form: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLFormElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLFormElement* | WEBKIT_API WebKitDOMHTMLFormElement* | |||
webkit_dom_html_input_element_get_form(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_form(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_files: | * webkit_dom_html_input_element_get_files: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMFileList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMFileList* | WEBKIT_API WebKitDOMFileList* | |||
webkit_dom_html_input_element_get_files(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_files(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_files: | * webkit_dom_html_input_element_set_files: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #WebKitDOMFileList | * @value: A #WebKitDOMFileList | |||
* | * | |||
* Returns: (transfer none): | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_files(WebKitDOMHTMLInputElement* self, We bKitDOMFileList* value); | webkit_dom_html_input_element_set_files(WebKitDOMHTMLInputElement* self, We bKitDOMFileList* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_form_action: | * webkit_dom_html_input_element_get_form_action: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_form_action(WebKitDOMHTMLInputElement* se lf); | webkit_dom_html_input_element_get_form_action(WebKitDOMHTMLInputElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_form_action: | * webkit_dom_html_input_element_set_form_action: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_form_action(WebKitDOMHTMLInputElement* se lf, const gchar* value); | webkit_dom_html_input_element_set_form_action(WebKitDOMHTMLInputElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_form_enctype: | * webkit_dom_html_input_element_get_form_enctype: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_form_enctype(WebKitDOMHTMLInputElement* s elf); | webkit_dom_html_input_element_get_form_enctype(WebKitDOMHTMLInputElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_form_enctype: | * webkit_dom_html_input_element_set_form_enctype: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_form_enctype(WebKitDOMHTMLInputElement* s elf, const gchar* value); | webkit_dom_html_input_element_set_form_enctype(WebKitDOMHTMLInputElement* s elf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_form_method: | * webkit_dom_html_input_element_get_form_method: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_form_method(WebKitDOMHTMLInputElement* se lf); | webkit_dom_html_input_element_get_form_method(WebKitDOMHTMLInputElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_form_method: | * webkit_dom_html_input_element_set_form_method: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_form_method(WebKitDOMHTMLInputElement* se lf, const gchar* value); | webkit_dom_html_input_element_set_form_method(WebKitDOMHTMLInputElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_form_no_validate: | * webkit_dom_html_input_element_get_form_no_validate: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_get_form_no_validate(WebKitDOMHTMLInputElemen t* self); | webkit_dom_html_input_element_get_form_no_validate(WebKitDOMHTMLInputElemen t* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_form_no_validate: | * webkit_dom_html_input_element_set_form_no_validate: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_form_no_validate(WebKitDOMHTMLInputElemen t* self, gboolean value); | webkit_dom_html_input_element_set_form_no_validate(WebKitDOMHTMLInputElemen t* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_form_target: | * webkit_dom_html_input_element_get_form_target: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_form_target(WebKitDOMHTMLInputElement* se lf); | webkit_dom_html_input_element_get_form_target(WebKitDOMHTMLInputElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_form_target: | * webkit_dom_html_input_element_set_form_target: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_form_target(WebKitDOMHTMLInputElement* se lf, const gchar* value); | webkit_dom_html_input_element_set_form_target(WebKitDOMHTMLInputElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_height: | * webkit_dom_html_input_element_get_height: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_input_element_get_height(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_height(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_height: | * webkit_dom_html_input_element_set_height: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gulong | * @value: A #gulong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_height(WebKitDOMHTMLInputElement* self, g ulong value); | webkit_dom_html_input_element_set_height(WebKitDOMHTMLInputElement* self, g ulong value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_indeterminate: | * webkit_dom_html_input_element_get_indeterminate: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_get_indeterminate(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_indeterminate(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_indeterminate: | * webkit_dom_html_input_element_set_indeterminate: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_indeterminate(WebKitDOMHTMLInputElement* self, gboolean value); | webkit_dom_html_input_element_set_indeterminate(WebKitDOMHTMLInputElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_list: | * webkit_dom_html_input_element_get_list: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLElement* | WEBKIT_API WebKitDOMHTMLElement* | |||
webkit_dom_html_input_element_get_list(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_list(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_max: | * webkit_dom_html_input_element_get_max: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_max(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_max(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_max: | * webkit_dom_html_input_element_set_max: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_max(WebKitDOMHTMLInputElement* self, cons t gchar* value); | webkit_dom_html_input_element_set_max(WebKitDOMHTMLInputElement* self, cons t gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_max_length: | * webkit_dom_html_input_element_get_max_length: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_input_element_get_max_length(WebKitDOMHTMLInputElement* sel f); | webkit_dom_html_input_element_get_max_length(WebKitDOMHTMLInputElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_max_length: | * webkit_dom_html_input_element_set_max_length: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #glong | * @value: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_max_length(WebKitDOMHTMLInputElement* sel f, glong value, GError** error); | webkit_dom_html_input_element_set_max_length(WebKitDOMHTMLInputElement* sel f, glong value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_min: | * webkit_dom_html_input_element_get_min: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_min(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_min(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_min: | * webkit_dom_html_input_element_set_min: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_min(WebKitDOMHTMLInputElement* self, cons t gchar* value); | webkit_dom_html_input_element_set_min(WebKitDOMHTMLInputElement* self, cons t gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_multiple: | * webkit_dom_html_input_element_get_multiple: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_get_multiple(WebKitDOMHTMLInputElement* self) ; | webkit_dom_html_input_element_get_multiple(WebKitDOMHTMLInputElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_input_element_set_multiple: | * webkit_dom_html_input_element_set_multiple: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_multiple(WebKitDOMHTMLInputElement* self, gboolean value); | webkit_dom_html_input_element_set_multiple(WebKitDOMHTMLInputElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_name: | * webkit_dom_html_input_element_get_name: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_name(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_name(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_name: | * webkit_dom_html_input_element_set_name: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_name(WebKitDOMHTMLInputElement* self, con st gchar* value); | webkit_dom_html_input_element_set_name(WebKitDOMHTMLInputElement* self, con st gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_pattern: | * webkit_dom_html_input_element_get_pattern: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_pattern(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_pattern(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_pattern: | * webkit_dom_html_input_element_set_pattern: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_pattern(WebKitDOMHTMLInputElement* self, const gchar* value); | webkit_dom_html_input_element_set_pattern(WebKitDOMHTMLInputElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_placeholder: | * webkit_dom_html_input_element_get_placeholder: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_placeholder(WebKitDOMHTMLInputElement* se lf); | webkit_dom_html_input_element_get_placeholder(WebKitDOMHTMLInputElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_placeholder: | * webkit_dom_html_input_element_set_placeholder: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_placeholder(WebKitDOMHTMLInputElement* se lf, const gchar* value); | webkit_dom_html_input_element_set_placeholder(WebKitDOMHTMLInputElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_read_only: | * webkit_dom_html_input_element_get_read_only: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_get_read_only(WebKitDOMHTMLInputElement* self ); | webkit_dom_html_input_element_get_read_only(WebKitDOMHTMLInputElement* self ); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_read_only: | * webkit_dom_html_input_element_set_read_only: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_read_only(WebKitDOMHTMLInputElement* self , gboolean value); | webkit_dom_html_input_element_set_read_only(WebKitDOMHTMLInputElement* self , gboolean value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_required: | * webkit_dom_html_input_element_get_required: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_get_required(WebKitDOMHTMLInputElement* self) ; | webkit_dom_html_input_element_get_required(WebKitDOMHTMLInputElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_input_element_set_required: | * webkit_dom_html_input_element_set_required: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_required(WebKitDOMHTMLInputElement* self, gboolean value); | webkit_dom_html_input_element_set_required(WebKitDOMHTMLInputElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_size: | * webkit_dom_html_input_element_get_size: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_input_element_get_size(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_size(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_size: | * webkit_dom_html_input_element_set_size: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gulong | * @value: A #gulong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_size(WebKitDOMHTMLInputElement* self, gul ong value, GError** error); | webkit_dom_html_input_element_set_size(WebKitDOMHTMLInputElement* self, gul ong value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_src: | * webkit_dom_html_input_element_get_src: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_src(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_src(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_src: | * webkit_dom_html_input_element_set_src: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_src(WebKitDOMHTMLInputElement* self, cons t gchar* value); | webkit_dom_html_input_element_set_src(WebKitDOMHTMLInputElement* self, cons t gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_step: | * webkit_dom_html_input_element_get_step: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_step(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_step(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_step: | * webkit_dom_html_input_element_set_step: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_step(WebKitDOMHTMLInputElement* self, con st gchar* value); | webkit_dom_html_input_element_set_step(WebKitDOMHTMLInputElement* self, con st gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_default_value: | * webkit_dom_html_input_element_get_default_value: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_default_value(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_default_value(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_default_value: | * webkit_dom_html_input_element_set_default_value: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_default_value(WebKitDOMHTMLInputElement* self, const gchar* value); | webkit_dom_html_input_element_set_default_value(WebKitDOMHTMLInputElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_value: | * webkit_dom_html_input_element_get_value: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_value(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_value(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_value: | * webkit_dom_html_input_element_set_value: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_value(WebKitDOMHTMLInputElement* self, co nst gchar* value); | webkit_dom_html_input_element_set_value(WebKitDOMHTMLInputElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_value_as_number: | * webkit_dom_html_input_element_get_value_as_number: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_html_input_element_get_value_as_number(WebKitDOMHTMLInputElement * self); | webkit_dom_html_input_element_get_value_as_number(WebKitDOMHTMLInputElement * self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_value_as_number: | * webkit_dom_html_input_element_set_value_as_number: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gdouble | * @value: A #gdouble | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_value_as_number(WebKitDOMHTMLInputElement * self, gdouble value, GError** error); | webkit_dom_html_input_element_set_value_as_number(WebKitDOMHTMLInputElement * self, gdouble value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_width: | * webkit_dom_html_input_element_get_width: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_input_element_get_width(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_width(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_width: | * webkit_dom_html_input_element_set_width: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gulong | * @value: A #gulong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_width(WebKitDOMHTMLInputElement* self, gu long value); | webkit_dom_html_input_element_set_width(WebKitDOMHTMLInputElement* self, gu long value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_will_validate: | * webkit_dom_html_input_element_get_will_validate: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_get_will_validate(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_will_validate(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_validity: | * webkit_dom_html_input_element_get_validity: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMValidityState | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMValidityState* | WEBKIT_API WebKitDOMValidityState* | |||
webkit_dom_html_input_element_get_validity(WebKitDOMHTMLInputElement* self) ; | webkit_dom_html_input_element_get_validity(WebKitDOMHTMLInputElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_input_element_get_validation_message: | * webkit_dom_html_input_element_get_validation_message: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_validation_message(WebKitDOMHTMLInputElem ent* self); | webkit_dom_html_input_element_get_validation_message(WebKitDOMHTMLInputElem ent* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_labels: | * webkit_dom_html_input_element_get_labels: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_html_input_element_get_labels(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_labels(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_align: | * webkit_dom_html_input_element_get_align: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_align(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_align(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_align: | * webkit_dom_html_input_element_set_align: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_align(WebKitDOMHTMLInputElement* self, co nst gchar* value); | webkit_dom_html_input_element_set_align(WebKitDOMHTMLInputElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_webkitdirectory: | * webkit_dom_html_input_element_get_webkitdirectory: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_get_webkitdirectory(WebKitDOMHTMLInputElement * self); | webkit_dom_html_input_element_get_webkitdirectory(WebKitDOMHTMLInputElement * self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_webkitdirectory: | * webkit_dom_html_input_element_set_webkitdirectory: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_webkitdirectory(WebKitDOMHTMLInputElement * self, gboolean value); | webkit_dom_html_input_element_set_webkitdirectory(WebKitDOMHTMLInputElement * self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_use_map: | * webkit_dom_html_input_element_get_use_map: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_use_map(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_use_map(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_use_map: | * webkit_dom_html_input_element_set_use_map: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_use_map(WebKitDOMHTMLInputElement* self, const gchar* value); | webkit_dom_html_input_element_set_use_map(WebKitDOMHTMLInputElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_incremental: | * webkit_dom_html_input_element_get_incremental: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_get_incremental(WebKitDOMHTMLInputElement* se lf); | webkit_dom_html_input_element_get_incremental(WebKitDOMHTMLInputElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_incremental: | * webkit_dom_html_input_element_set_incremental: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_incremental(WebKitDOMHTMLInputElement* se lf, gboolean value); | webkit_dom_html_input_element_set_incremental(WebKitDOMHTMLInputElement* se lf, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_webkit_speech: | * webkit_dom_html_input_element_get_webkit_speech: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_get_webkit_speech(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_webkit_speech(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_webkit_speech: | * webkit_dom_html_input_element_set_webkit_speech: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_webkit_speech(WebKitDOMHTMLInputElement* self, gboolean value); | webkit_dom_html_input_element_set_webkit_speech(WebKitDOMHTMLInputElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_webkit_grammar: | * webkit_dom_html_input_element_get_webkit_grammar: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_input_element_get_webkit_grammar(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_webkit_grammar(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_webkit_grammar: | * webkit_dom_html_input_element_set_webkit_grammar: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_webkit_grammar(WebKitDOMHTMLInputElement* self, gboolean value); | webkit_dom_html_input_element_set_webkit_grammar(WebKitDOMHTMLInputElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_input_element_get_capture: | * webkit_dom_html_input_element_get_autocorrect: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
**/ | ||||
WEBKIT_API gboolean | ||||
webkit_dom_html_input_element_get_autocorrect(WebKitDOMHTMLInputElement* se | ||||
lf); | ||||
/** | ||||
* webkit_dom_html_input_element_set_autocorrect: | ||||
* @self: A #WebKitDOMHTMLInputElement | ||||
* @value: A #gboolean | ||||
* | * | |||
**/ | **/ | |||
WEBKIT_API void | ||||
webkit_dom_html_input_element_set_autocorrect(WebKitDOMHTMLInputElement* se | ||||
lf, gboolean value); | ||||
/** | ||||
* webkit_dom_html_input_element_get_autocapitalize: | ||||
* @self: A #WebKitDOMHTMLInputElement | ||||
* | ||||
* Returns: A #gchar | ||||
**/ | ||||
WEBKIT_API gchar* | ||||
webkit_dom_html_input_element_get_autocapitalize(WebKitDOMHTMLInputElement* | ||||
self); | ||||
/** | ||||
* webkit_dom_html_input_element_set_autocapitalize: | ||||
* @self: A #WebKitDOMHTMLInputElement | ||||
* @value: A #gchar | ||||
* | ||||
**/ | ||||
WEBKIT_API void | ||||
webkit_dom_html_input_element_set_autocapitalize(WebKitDOMHTMLInputElement* | ||||
self, const gchar* value); | ||||
/** | ||||
* webkit_dom_html_input_element_get_capture: | ||||
* @self: A #WebKitDOMHTMLInputElement | ||||
* | ||||
* Returns: A #gchar | ||||
**/ | ||||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_input_element_get_capture(WebKitDOMHTMLInputElement* self); | webkit_dom_html_input_element_get_capture(WebKitDOMHTMLInputElement* self); | |||
/** | /** | |||
* webkit_dom_html_input_element_set_capture: | * webkit_dom_html_input_element_set_capture: | |||
* @self: A #WebKitDOMHTMLInputElement | * @self: A #WebKitDOMHTMLInputElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_input_element_set_capture(WebKitDOMHTMLInputElement* self, const gchar* value); | webkit_dom_html_input_element_set_capture(WebKitDOMHTMLInputElement* self, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLInputElement_h */ | #endif /* WebKitDOMHTMLInputElement_h */ | |||
End of changes. 94 change blocks. | ||||
201 lines changed or deleted | 105 lines changed or added | |||
WebKitDOMHTMLKeygenElement.h | WebKitDOMHTMLKeygenElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLKeygenElement_h | #ifndef WebKitDOMHTMLKeygenElement_h | |||
#define WebKitDOMHTMLKeygenElement_h | #define WebKitDOMHTMLKeygenElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_keygen_element_get_type (void); | webkit_dom_html_keygen_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_check_validity: | * webkit_dom_html_keygen_element_check_validity: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_keygen_element_check_validity(WebKitDOMHTMLKeygenElement* s elf); | webkit_dom_html_keygen_element_check_validity(WebKitDOMHTMLKeygenElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_set_custom_validity: | * webkit_dom_html_keygen_element_set_custom_validity: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* @error: A #gchar | * @error: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_keygen_element_set_custom_validity(WebKitDOMHTMLKeygenEleme nt* self, const gchar* error); | webkit_dom_html_keygen_element_set_custom_validity(WebKitDOMHTMLKeygenEleme nt* self, const gchar* error); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_get_autofocus: | * webkit_dom_html_keygen_element_get_autofocus: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_keygen_element_get_autofocus(WebKitDOMHTMLKeygenElement* se lf); | webkit_dom_html_keygen_element_get_autofocus(WebKitDOMHTMLKeygenElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_set_autofocus: | * webkit_dom_html_keygen_element_set_autofocus: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_keygen_element_set_autofocus(WebKitDOMHTMLKeygenElement* se lf, gboolean value); | webkit_dom_html_keygen_element_set_autofocus(WebKitDOMHTMLKeygenElement* se lf, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_get_challenge: | * webkit_dom_html_keygen_element_get_challenge: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_keygen_element_get_challenge(WebKitDOMHTMLKeygenElement* se lf); | webkit_dom_html_keygen_element_get_challenge(WebKitDOMHTMLKeygenElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_set_challenge: | * webkit_dom_html_keygen_element_set_challenge: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_keygen_element_set_challenge(WebKitDOMHTMLKeygenElement* se lf, const gchar* value); | webkit_dom_html_keygen_element_set_challenge(WebKitDOMHTMLKeygenElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_get_disabled: | * webkit_dom_html_keygen_element_get_disabled: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_keygen_element_get_disabled(WebKitDOMHTMLKeygenElement* sel f); | webkit_dom_html_keygen_element_get_disabled(WebKitDOMHTMLKeygenElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_set_disabled: | * webkit_dom_html_keygen_element_set_disabled: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_keygen_element_set_disabled(WebKitDOMHTMLKeygenElement* sel f, gboolean value); | webkit_dom_html_keygen_element_set_disabled(WebKitDOMHTMLKeygenElement* sel f, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_get_form: | * webkit_dom_html_keygen_element_get_form: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLFormElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLFormElement* | WEBKIT_API WebKitDOMHTMLFormElement* | |||
webkit_dom_html_keygen_element_get_form(WebKitDOMHTMLKeygenElement* self); | webkit_dom_html_keygen_element_get_form(WebKitDOMHTMLKeygenElement* self); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_get_keytype: | * webkit_dom_html_keygen_element_get_keytype: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_keygen_element_get_keytype(WebKitDOMHTMLKeygenElement* self ); | webkit_dom_html_keygen_element_get_keytype(WebKitDOMHTMLKeygenElement* self ); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_set_keytype: | * webkit_dom_html_keygen_element_set_keytype: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_keygen_element_set_keytype(WebKitDOMHTMLKeygenElement* self , const gchar* value); | webkit_dom_html_keygen_element_set_keytype(WebKitDOMHTMLKeygenElement* self , const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_get_name: | * webkit_dom_html_keygen_element_get_name: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_keygen_element_get_name(WebKitDOMHTMLKeygenElement* self); | webkit_dom_html_keygen_element_get_name(WebKitDOMHTMLKeygenElement* self); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_set_name: | * webkit_dom_html_keygen_element_set_name: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_keygen_element_set_name(WebKitDOMHTMLKeygenElement* self, c onst gchar* value); | webkit_dom_html_keygen_element_set_name(WebKitDOMHTMLKeygenElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_get_will_validate: | * webkit_dom_html_keygen_element_get_will_validate: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_keygen_element_get_will_validate(WebKitDOMHTMLKeygenElement * self); | webkit_dom_html_keygen_element_get_will_validate(WebKitDOMHTMLKeygenElement * self); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_get_validity: | * webkit_dom_html_keygen_element_get_validity: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMValidityState | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMValidityState* | WEBKIT_API WebKitDOMValidityState* | |||
webkit_dom_html_keygen_element_get_validity(WebKitDOMHTMLKeygenElement* sel f); | webkit_dom_html_keygen_element_get_validity(WebKitDOMHTMLKeygenElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_get_validation_message: | * webkit_dom_html_keygen_element_get_validation_message: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_keygen_element_get_validation_message(WebKitDOMHTMLKeygenEl ement* self); | webkit_dom_html_keygen_element_get_validation_message(WebKitDOMHTMLKeygenEl ement* self); | |||
/** | /** | |||
* webkit_dom_html_keygen_element_get_labels: | * webkit_dom_html_keygen_element_get_labels: | |||
* @self: A #WebKitDOMHTMLKeygenElement | * @self: A #WebKitDOMHTMLKeygenElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_html_keygen_element_get_labels(WebKitDOMHTMLKeygenElement* self) ; | webkit_dom_html_keygen_element_get_labels(WebKitDOMHTMLKeygenElement* self) ; | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLKeygenElement_h */ | #endif /* WebKitDOMHTMLKeygenElement_h */ | |||
End of changes. 18 change blocks. | ||||
53 lines changed or deleted | 30 lines changed or added | |||
WebKitDOMHTMLLIElement.h | WebKitDOMHTMLLIElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLLIElement_h | #ifndef WebKitDOMHTMLLIElement_h | |||
#define WebKitDOMHTMLLIElement_h | #define WebKitDOMHTMLLIElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_htmlli_element_get_type (void); | webkit_dom_htmlli_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_htmlli_element_get_value: | * webkit_dom_htmlli_element_get_value: | |||
* @self: A #WebKitDOMHTMLLIElement | * @self: A #WebKitDOMHTMLLIElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_htmlli_element_get_value(WebKitDOMHTMLLIElement* self); | webkit_dom_htmlli_element_get_value(WebKitDOMHTMLLIElement* self); | |||
/** | /** | |||
* webkit_dom_htmlli_element_set_value: | * webkit_dom_htmlli_element_set_value: | |||
* @self: A #WebKitDOMHTMLLIElement | * @self: A #WebKitDOMHTMLLIElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_htmlli_element_set_value(WebKitDOMHTMLLIElement* self, glong val ue); | webkit_dom_htmlli_element_set_value(WebKitDOMHTMLLIElement* self, glong val ue); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLLIElement_h */ | #endif /* WebKitDOMHTMLLIElement_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMHTMLLabelElement.h | WebKitDOMHTMLLabelElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLLabelElement_h | #ifndef WebKitDOMHTMLLabelElement_h | |||
#define WebKitDOMHTMLLabelElement_h | #define WebKitDOMHTMLLabelElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_label_element_get_type (void); | webkit_dom_html_label_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_label_element_get_form: | * webkit_dom_html_label_element_get_form: | |||
* @self: A #WebKitDOMHTMLLabelElement | * @self: A #WebKitDOMHTMLLabelElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLFormElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLFormElement* | WEBKIT_API WebKitDOMHTMLFormElement* | |||
webkit_dom_html_label_element_get_form(WebKitDOMHTMLLabelElement* self); | webkit_dom_html_label_element_get_form(WebKitDOMHTMLLabelElement* self); | |||
/** | /** | |||
* webkit_dom_html_label_element_get_html_for: | * webkit_dom_html_label_element_get_html_for: | |||
* @self: A #WebKitDOMHTMLLabelElement | * @self: A #WebKitDOMHTMLLabelElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_label_element_get_html_for(WebKitDOMHTMLLabelElement* self) ; | webkit_dom_html_label_element_get_html_for(WebKitDOMHTMLLabelElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_label_element_set_html_for: | * webkit_dom_html_label_element_set_html_for: | |||
* @self: A #WebKitDOMHTMLLabelElement | * @self: A #WebKitDOMHTMLLabelElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_label_element_set_html_for(WebKitDOMHTMLLabelElement* self, const gchar* value); | webkit_dom_html_label_element_set_html_for(WebKitDOMHTMLLabelElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_label_element_get_control: | * webkit_dom_html_label_element_get_control: | |||
* @self: A #WebKitDOMHTMLLabelElement | * @self: A #WebKitDOMHTMLLabelElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLElement* | WEBKIT_API WebKitDOMHTMLElement* | |||
webkit_dom_html_label_element_get_control(WebKitDOMHTMLLabelElement* self); | webkit_dom_html_label_element_get_control(WebKitDOMHTMLLabelElement* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLLabelElement_h */ | #endif /* WebKitDOMHTMLLabelElement_h */ | |||
End of changes. 5 change blocks. | ||||
27 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMHTMLLegendElement.h | WebKitDOMHTMLLegendElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLLegendElement_h | #ifndef WebKitDOMHTMLLegendElement_h | |||
#define WebKitDOMHTMLLegendElement_h | #define WebKitDOMHTMLLegendElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_legend_element_get_type (void); | webkit_dom_html_legend_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_legend_element_get_form: | * webkit_dom_html_legend_element_get_form: | |||
* @self: A #WebKitDOMHTMLLegendElement | * @self: A #WebKitDOMHTMLLegendElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLFormElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLFormElement* | WEBKIT_API WebKitDOMHTMLFormElement* | |||
webkit_dom_html_legend_element_get_form(WebKitDOMHTMLLegendElement* self); | webkit_dom_html_legend_element_get_form(WebKitDOMHTMLLegendElement* self); | |||
/** | /** | |||
* webkit_dom_html_legend_element_get_align: | * webkit_dom_html_legend_element_get_align: | |||
* @self: A #WebKitDOMHTMLLegendElement | * @self: A #WebKitDOMHTMLLegendElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_legend_element_get_align(WebKitDOMHTMLLegendElement* self); | webkit_dom_html_legend_element_get_align(WebKitDOMHTMLLegendElement* self); | |||
/** | /** | |||
* webkit_dom_html_legend_element_set_align: | * webkit_dom_html_legend_element_set_align: | |||
* @self: A #WebKitDOMHTMLLegendElement | * @self: A #WebKitDOMHTMLLegendElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_legend_element_set_align(WebKitDOMHTMLLegendElement* self, const gchar* value); | webkit_dom_html_legend_element_set_align(WebKitDOMHTMLLegendElement* self, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLLegendElement_h */ | #endif /* WebKitDOMHTMLLegendElement_h */ | |||
End of changes. 4 change blocks. | ||||
25 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMHTMLLinkElement.h | WebKitDOMHTMLLinkElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLLinkElement_h | #ifndef WebKitDOMHTMLLinkElement_h | |||
#define WebKitDOMHTMLLinkElement_h | #define WebKitDOMHTMLLinkElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_link_element_get_type (void); | webkit_dom_html_link_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_link_element_get_disabled: | * webkit_dom_html_link_element_get_disabled: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_link_element_get_disabled(WebKitDOMHTMLLinkElement* self); | webkit_dom_html_link_element_get_disabled(WebKitDOMHTMLLinkElement* self); | |||
/** | /** | |||
* webkit_dom_html_link_element_set_disabled: | * webkit_dom_html_link_element_set_disabled: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_link_element_set_disabled(WebKitDOMHTMLLinkElement* self, g boolean value); | webkit_dom_html_link_element_set_disabled(WebKitDOMHTMLLinkElement* self, g boolean value); | |||
/** | /** | |||
* webkit_dom_html_link_element_get_charset: | * webkit_dom_html_link_element_get_charset: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_link_element_get_charset(WebKitDOMHTMLLinkElement* self); | webkit_dom_html_link_element_get_charset(WebKitDOMHTMLLinkElement* self); | |||
/** | /** | |||
* webkit_dom_html_link_element_set_charset: | * webkit_dom_html_link_element_set_charset: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_link_element_set_charset(WebKitDOMHTMLLinkElement* self, co nst gchar* value); | webkit_dom_html_link_element_set_charset(WebKitDOMHTMLLinkElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_link_element_get_href: | * webkit_dom_html_link_element_get_href: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_link_element_get_href(WebKitDOMHTMLLinkElement* self); | webkit_dom_html_link_element_get_href(WebKitDOMHTMLLinkElement* self); | |||
/** | /** | |||
* webkit_dom_html_link_element_set_href: | * webkit_dom_html_link_element_set_href: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_link_element_set_href(WebKitDOMHTMLLinkElement* self, const gchar* value); | webkit_dom_html_link_element_set_href(WebKitDOMHTMLLinkElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_link_element_get_hreflang: | * webkit_dom_html_link_element_get_hreflang: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_link_element_get_hreflang(WebKitDOMHTMLLinkElement* self); | webkit_dom_html_link_element_get_hreflang(WebKitDOMHTMLLinkElement* self); | |||
/** | /** | |||
* webkit_dom_html_link_element_set_hreflang: | * webkit_dom_html_link_element_set_hreflang: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_link_element_set_hreflang(WebKitDOMHTMLLinkElement* self, c onst gchar* value); | webkit_dom_html_link_element_set_hreflang(WebKitDOMHTMLLinkElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_link_element_get_media: | * webkit_dom_html_link_element_get_media: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_link_element_get_media(WebKitDOMHTMLLinkElement* self); | webkit_dom_html_link_element_get_media(WebKitDOMHTMLLinkElement* self); | |||
/** | /** | |||
* webkit_dom_html_link_element_set_media: | * webkit_dom_html_link_element_set_media: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_link_element_set_media(WebKitDOMHTMLLinkElement* self, cons t gchar* value); | webkit_dom_html_link_element_set_media(WebKitDOMHTMLLinkElement* self, cons t gchar* value); | |||
/** | /** | |||
* webkit_dom_html_link_element_get_rel: | * webkit_dom_html_link_element_get_rel: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_link_element_get_rel(WebKitDOMHTMLLinkElement* self); | webkit_dom_html_link_element_get_rel(WebKitDOMHTMLLinkElement* self); | |||
/** | /** | |||
* webkit_dom_html_link_element_set_rel: | * webkit_dom_html_link_element_set_rel: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_link_element_set_rel(WebKitDOMHTMLLinkElement* self, const gchar* value); | webkit_dom_html_link_element_set_rel(WebKitDOMHTMLLinkElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_link_element_get_rev: | * webkit_dom_html_link_element_get_rev: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_link_element_get_rev(WebKitDOMHTMLLinkElement* self); | webkit_dom_html_link_element_get_rev(WebKitDOMHTMLLinkElement* self); | |||
/** | /** | |||
* webkit_dom_html_link_element_set_rev: | * webkit_dom_html_link_element_set_rev: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_link_element_set_rev(WebKitDOMHTMLLinkElement* self, const gchar* value); | webkit_dom_html_link_element_set_rev(WebKitDOMHTMLLinkElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_link_element_get_target: | * webkit_dom_html_link_element_get_target: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_link_element_get_target(WebKitDOMHTMLLinkElement* self); | webkit_dom_html_link_element_get_target(WebKitDOMHTMLLinkElement* self); | |||
/** | /** | |||
* webkit_dom_html_link_element_set_target: | * webkit_dom_html_link_element_set_target: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_link_element_set_target(WebKitDOMHTMLLinkElement* self, con st gchar* value); | webkit_dom_html_link_element_set_target(WebKitDOMHTMLLinkElement* self, con st gchar* value); | |||
/** | /** | |||
* webkit_dom_html_link_element_get_sheet: | * webkit_dom_html_link_element_get_sheet: | |||
* @self: A #WebKitDOMHTMLLinkElement | * @self: A #WebKitDOMHTMLLinkElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMStyleSheet | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMStyleSheet* | WEBKIT_API WebKitDOMStyleSheet* | |||
webkit_dom_html_link_element_get_sheet(WebKitDOMHTMLLinkElement* self); | webkit_dom_html_link_element_get_sheet(WebKitDOMHTMLLinkElement* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLLinkElement_h */ | #endif /* WebKitDOMHTMLLinkElement_h */ | |||
End of changes. 18 change blocks. | ||||
53 lines changed or deleted | 28 lines changed or added | |||
WebKitDOMHTMLMapElement.h | WebKitDOMHTMLMapElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLMapElement_h | #ifndef WebKitDOMHTMLMapElement_h | |||
#define WebKitDOMHTMLMapElement_h | #define WebKitDOMHTMLMapElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_map_element_get_type (void); | webkit_dom_html_map_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_map_element_get_areas: | * webkit_dom_html_map_element_get_areas: | |||
* @self: A #WebKitDOMHTMLMapElement | * @self: A #WebKitDOMHTMLMapElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_html_map_element_get_areas(WebKitDOMHTMLMapElement* self); | webkit_dom_html_map_element_get_areas(WebKitDOMHTMLMapElement* self); | |||
/** | /** | |||
* webkit_dom_html_map_element_get_name: | * webkit_dom_html_map_element_get_name: | |||
* @self: A #WebKitDOMHTMLMapElement | * @self: A #WebKitDOMHTMLMapElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_map_element_get_name(WebKitDOMHTMLMapElement* self); | webkit_dom_html_map_element_get_name(WebKitDOMHTMLMapElement* self); | |||
/** | /** | |||
* webkit_dom_html_map_element_set_name: | * webkit_dom_html_map_element_set_name: | |||
* @self: A #WebKitDOMHTMLMapElement | * @self: A #WebKitDOMHTMLMapElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_map_element_set_name(WebKitDOMHTMLMapElement* self, const g char* value); | webkit_dom_html_map_element_set_name(WebKitDOMHTMLMapElement* self, const g char* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLMapElement_h */ | #endif /* WebKitDOMHTMLMapElement_h */ | |||
End of changes. 4 change blocks. | ||||
25 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMHTMLMarqueeElement.h | WebKitDOMHTMLMarqueeElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLMarqueeElement_h | #ifndef WebKitDOMHTMLMarqueeElement_h | |||
#define WebKitDOMHTMLMarqueeElement_h | #define WebKitDOMHTMLMarqueeElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_marquee_element_get_type (void); | webkit_dom_html_marquee_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_start: | * webkit_dom_html_marquee_element_start: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_marquee_element_start(WebKitDOMHTMLMarqueeElement* self); | webkit_dom_html_marquee_element_start(WebKitDOMHTMLMarqueeElement* self); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_stop: | * webkit_dom_html_marquee_element_stop: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_marquee_element_stop(WebKitDOMHTMLMarqueeElement* self); | webkit_dom_html_marquee_element_stop(WebKitDOMHTMLMarqueeElement* self); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_get_behavior: | * webkit_dom_html_marquee_element_get_behavior: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_marquee_element_get_behavior(WebKitDOMHTMLMarqueeElement* s elf); | webkit_dom_html_marquee_element_get_behavior(WebKitDOMHTMLMarqueeElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_set_behavior: | * webkit_dom_html_marquee_element_set_behavior: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_marquee_element_set_behavior(WebKitDOMHTMLMarqueeElement* s elf, const gchar* value); | webkit_dom_html_marquee_element_set_behavior(WebKitDOMHTMLMarqueeElement* s elf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_get_bg_color: | * webkit_dom_html_marquee_element_get_bg_color: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_marquee_element_get_bg_color(WebKitDOMHTMLMarqueeElement* s elf); | webkit_dom_html_marquee_element_get_bg_color(WebKitDOMHTMLMarqueeElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_set_bg_color: | * webkit_dom_html_marquee_element_set_bg_color: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_marquee_element_set_bg_color(WebKitDOMHTMLMarqueeElement* s elf, const gchar* value); | webkit_dom_html_marquee_element_set_bg_color(WebKitDOMHTMLMarqueeElement* s elf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_get_direction: | * webkit_dom_html_marquee_element_get_direction: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_marquee_element_get_direction(WebKitDOMHTMLMarqueeElement* self); | webkit_dom_html_marquee_element_get_direction(WebKitDOMHTMLMarqueeElement* self); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_set_direction: | * webkit_dom_html_marquee_element_set_direction: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_marquee_element_set_direction(WebKitDOMHTMLMarqueeElement* self, const gchar* value); | webkit_dom_html_marquee_element_set_direction(WebKitDOMHTMLMarqueeElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_get_height: | * webkit_dom_html_marquee_element_get_height: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_marquee_element_get_height(WebKitDOMHTMLMarqueeElement* sel f); | webkit_dom_html_marquee_element_get_height(WebKitDOMHTMLMarqueeElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_set_height: | * webkit_dom_html_marquee_element_set_height: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_marquee_element_set_height(WebKitDOMHTMLMarqueeElement* sel f, const gchar* value); | webkit_dom_html_marquee_element_set_height(WebKitDOMHTMLMarqueeElement* sel f, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_get_hspace: | * webkit_dom_html_marquee_element_get_hspace: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_marquee_element_get_hspace(WebKitDOMHTMLMarqueeElement* sel f); | webkit_dom_html_marquee_element_get_hspace(WebKitDOMHTMLMarqueeElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_set_hspace: | * webkit_dom_html_marquee_element_set_hspace: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* @value: A #gulong | * @value: A #gulong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_marquee_element_set_hspace(WebKitDOMHTMLMarqueeElement* sel f, gulong value); | webkit_dom_html_marquee_element_set_hspace(WebKitDOMHTMLMarqueeElement* sel f, gulong value); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_get_loop: | * webkit_dom_html_marquee_element_get_loop: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_marquee_element_get_loop(WebKitDOMHTMLMarqueeElement* self) ; | webkit_dom_html_marquee_element_get_loop(WebKitDOMHTMLMarqueeElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_marquee_element_set_loop: | * webkit_dom_html_marquee_element_set_loop: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* @value: A #glong | * @value: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_marquee_element_set_loop(WebKitDOMHTMLMarqueeElement* self, glong value, GError** error); | webkit_dom_html_marquee_element_set_loop(WebKitDOMHTMLMarqueeElement* self, glong value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_get_scroll_amount: | * webkit_dom_html_marquee_element_get_scroll_amount: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_marquee_element_get_scroll_amount(WebKitDOMHTMLMarqueeEleme nt* self); | webkit_dom_html_marquee_element_get_scroll_amount(WebKitDOMHTMLMarqueeEleme nt* self); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_set_scroll_amount: | * webkit_dom_html_marquee_element_set_scroll_amount: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* @value: A #glong | * @value: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_marquee_element_set_scroll_amount(WebKitDOMHTMLMarqueeEleme nt* self, glong value, GError** error); | webkit_dom_html_marquee_element_set_scroll_amount(WebKitDOMHTMLMarqueeEleme nt* self, glong value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_get_scroll_delay: | * webkit_dom_html_marquee_element_get_scroll_delay: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_marquee_element_get_scroll_delay(WebKitDOMHTMLMarqueeElemen t* self); | webkit_dom_html_marquee_element_get_scroll_delay(WebKitDOMHTMLMarqueeElemen t* self); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_set_scroll_delay: | * webkit_dom_html_marquee_element_set_scroll_delay: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* @value: A #glong | * @value: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_marquee_element_set_scroll_delay(WebKitDOMHTMLMarqueeElemen t* self, glong value, GError** error); | webkit_dom_html_marquee_element_set_scroll_delay(WebKitDOMHTMLMarqueeElemen t* self, glong value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_get_true_speed: | * webkit_dom_html_marquee_element_get_true_speed: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_marquee_element_get_true_speed(WebKitDOMHTMLMarqueeElement* self); | webkit_dom_html_marquee_element_get_true_speed(WebKitDOMHTMLMarqueeElement* self); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_set_true_speed: | * webkit_dom_html_marquee_element_set_true_speed: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_marquee_element_set_true_speed(WebKitDOMHTMLMarqueeElement* self, gboolean value); | webkit_dom_html_marquee_element_set_true_speed(WebKitDOMHTMLMarqueeElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_get_vspace: | * webkit_dom_html_marquee_element_get_vspace: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_marquee_element_get_vspace(WebKitDOMHTMLMarqueeElement* sel f); | webkit_dom_html_marquee_element_get_vspace(WebKitDOMHTMLMarqueeElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_set_vspace: | * webkit_dom_html_marquee_element_set_vspace: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* @value: A #gulong | * @value: A #gulong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_marquee_element_set_vspace(WebKitDOMHTMLMarqueeElement* sel f, gulong value); | webkit_dom_html_marquee_element_set_vspace(WebKitDOMHTMLMarqueeElement* sel f, gulong value); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_get_width: | * webkit_dom_html_marquee_element_get_width: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_marquee_element_get_width(WebKitDOMHTMLMarqueeElement* self ); | webkit_dom_html_marquee_element_get_width(WebKitDOMHTMLMarqueeElement* self ); | |||
/** | /** | |||
* webkit_dom_html_marquee_element_set_width: | * webkit_dom_html_marquee_element_set_width: | |||
* @self: A #WebKitDOMHTMLMarqueeElement | * @self: A #WebKitDOMHTMLMarqueeElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_marquee_element_set_width(WebKitDOMHTMLMarqueeElement* self , const gchar* value); | webkit_dom_html_marquee_element_set_width(WebKitDOMHTMLMarqueeElement* self , const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLMarqueeElement_h */ | #endif /* WebKitDOMHTMLMarqueeElement_h */ | |||
End of changes. 25 change blocks. | ||||
67 lines changed or deleted | 30 lines changed or added | |||
WebKitDOMHTMLMediaElement.h | WebKitDOMHTMLMediaElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLMediaElement_h | #ifndef WebKitDOMHTMLMediaElement_h | |||
#define WebKitDOMHTMLMediaElement_h | #define WebKitDOMHTMLMediaElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_media_element_get_type (void); | webkit_dom_html_media_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_media_element_load: | * webkit_dom_html_media_element_load: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_load(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_load(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_can_play_type: | * webkit_dom_html_media_element_can_play_type: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* @type: A #gchar | * @type: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_media_element_can_play_type(WebKitDOMHTMLMediaElement* self , const gchar* type); | webkit_dom_html_media_element_can_play_type(WebKitDOMHTMLMediaElement* self , const gchar* type); | |||
/** | /** | |||
* webkit_dom_html_media_element_play: | * webkit_dom_html_media_element_play: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_play(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_play(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_pause: | * webkit_dom_html_media_element_pause: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_pause(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_pause(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_error: | * webkit_dom_html_media_element_fast_seek: | |||
* @self: A #WebKitDOMHTMLMediaElement | ||||
* @time: A #gdouble | ||||
* | ||||
**/ | ||||
WEBKIT_API void | ||||
webkit_dom_html_media_element_fast_seek(WebKitDOMHTMLMediaElement* self, gd | ||||
ouble time); | ||||
/** | ||||
* webkit_dom_html_media_element_webkit_show_playback_target_picker: | ||||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: (transfer none): | **/ | |||
WEBKIT_API void | ||||
webkit_dom_html_media_element_webkit_show_playback_target_picker(WebKitDOMH | ||||
TMLMediaElement* self); | ||||
/** | ||||
* webkit_dom_html_media_element_get_error: | ||||
* @self: A #WebKitDOMHTMLMediaElement | ||||
* | * | |||
* Returns: (transfer none): A #WebKitDOMMediaError | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMMediaError* | WEBKIT_API WebKitDOMMediaError* | |||
webkit_dom_html_media_element_get_error(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_get_error(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_src: | * webkit_dom_html_media_element_get_src: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_media_element_get_src(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_get_src(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_set_src: | * webkit_dom_html_media_element_set_src: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_set_src(WebKitDOMHTMLMediaElement* self, cons t gchar* value); | webkit_dom_html_media_element_set_src(WebKitDOMHTMLMediaElement* self, cons t gchar* value); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_current_src: | * webkit_dom_html_media_element_get_current_src: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_media_element_get_current_src(WebKitDOMHTMLMediaElement* se lf); | webkit_dom_html_media_element_get_current_src(WebKitDOMHTMLMediaElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_network_state: | * webkit_dom_html_media_element_get_network_state: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gushort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gushort | WEBKIT_API gushort | |||
webkit_dom_html_media_element_get_network_state(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_get_network_state(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_preload: | * webkit_dom_html_media_element_get_preload: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_media_element_get_preload(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_get_preload(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_set_preload: | * webkit_dom_html_media_element_set_preload: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_set_preload(WebKitDOMHTMLMediaElement* self, const gchar* value); | webkit_dom_html_media_element_set_preload(WebKitDOMHTMLMediaElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_buffered: | * webkit_dom_html_media_element_get_buffered: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMTimeRanges | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMTimeRanges* | WEBKIT_API WebKitDOMTimeRanges* | |||
webkit_dom_html_media_element_get_buffered(WebKitDOMHTMLMediaElement* self) ; | webkit_dom_html_media_element_get_buffered(WebKitDOMHTMLMediaElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_media_element_get_ready_state: | * webkit_dom_html_media_element_get_ready_state: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gushort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gushort | WEBKIT_API gushort | |||
webkit_dom_html_media_element_get_ready_state(WebKitDOMHTMLMediaElement* se lf); | webkit_dom_html_media_element_get_ready_state(WebKitDOMHTMLMediaElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_seeking: | * webkit_dom_html_media_element_get_seeking: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_media_element_get_seeking(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_get_seeking(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_current_time: | * webkit_dom_html_media_element_get_current_time: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_html_media_element_get_current_time(WebKitDOMHTMLMediaElement* s elf); | webkit_dom_html_media_element_get_current_time(WebKitDOMHTMLMediaElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_media_element_set_current_time: | ||||
* @self: A #WebKitDOMHTMLMediaElement | ||||
* @value: A #gdouble | ||||
* @error: #GError | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API void | ||||
webkit_dom_html_media_element_set_current_time(WebKitDOMHTMLMediaElement* s | ||||
elf, gdouble value, GError** error); | ||||
/** | ||||
* webkit_dom_html_media_element_get_initial_time: | ||||
* @self: A #WebKitDOMHTMLMediaElement | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gdouble | ||||
webkit_dom_html_media_element_get_initial_time(WebKitDOMHTMLMediaElement* s | ||||
elf); | ||||
/** | ||||
* webkit_dom_html_media_element_get_start_time: | ||||
* @self: A #WebKitDOMHTMLMediaElement | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gdouble | ||||
webkit_dom_html_media_element_get_start_time(WebKitDOMHTMLMediaElement* sel | ||||
f); | ||||
/** | ||||
* webkit_dom_html_media_element_get_duration: | * webkit_dom_html_media_element_get_duration: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_html_media_element_get_duration(WebKitDOMHTMLMediaElement* self) ; | webkit_dom_html_media_element_get_duration(WebKitDOMHTMLMediaElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_media_element_get_paused: | * webkit_dom_html_media_element_get_paused: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_media_element_get_paused(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_get_paused(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_default_playback_rate: | * webkit_dom_html_media_element_get_default_playback_rate: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_html_media_element_get_default_playback_rate(WebKitDOMHTMLMediaE lement* self); | webkit_dom_html_media_element_get_default_playback_rate(WebKitDOMHTMLMediaE lement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_set_default_playback_rate: | * webkit_dom_html_media_element_set_default_playback_rate: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* @value: A #gdouble | * @value: A #gdouble | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_set_default_playback_rate(WebKitDOMHTMLMediaE lement* self, gdouble value); | webkit_dom_html_media_element_set_default_playback_rate(WebKitDOMHTMLMediaE lement* self, gdouble value); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_playback_rate: | * webkit_dom_html_media_element_get_playback_rate: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_html_media_element_get_playback_rate(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_get_playback_rate(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_set_playback_rate: | * webkit_dom_html_media_element_set_playback_rate: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* @value: A #gdouble | * @value: A #gdouble | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_set_playback_rate(WebKitDOMHTMLMediaElement* self, gdouble value); | webkit_dom_html_media_element_set_playback_rate(WebKitDOMHTMLMediaElement* self, gdouble value); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_played: | * webkit_dom_html_media_element_get_played: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMTimeRanges | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMTimeRanges* | WEBKIT_API WebKitDOMTimeRanges* | |||
webkit_dom_html_media_element_get_played(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_get_played(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_seekable: | * webkit_dom_html_media_element_get_seekable: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMTimeRanges | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMTimeRanges* | WEBKIT_API WebKitDOMTimeRanges* | |||
webkit_dom_html_media_element_get_seekable(WebKitDOMHTMLMediaElement* self) ; | webkit_dom_html_media_element_get_seekable(WebKitDOMHTMLMediaElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_media_element_get_ended: | * webkit_dom_html_media_element_get_ended: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_media_element_get_ended(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_get_ended(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_autoplay: | * webkit_dom_html_media_element_get_autoplay: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_media_element_get_autoplay(WebKitDOMHTMLMediaElement* self) ; | webkit_dom_html_media_element_get_autoplay(WebKitDOMHTMLMediaElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_media_element_set_autoplay: | * webkit_dom_html_media_element_set_autoplay: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_set_autoplay(WebKitDOMHTMLMediaElement* self, gboolean value); | webkit_dom_html_media_element_set_autoplay(WebKitDOMHTMLMediaElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_loop: | * webkit_dom_html_media_element_get_loop: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_media_element_get_loop(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_get_loop(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_set_loop: | * webkit_dom_html_media_element_set_loop: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_set_loop(WebKitDOMHTMLMediaElement* self, gbo olean value); | webkit_dom_html_media_element_set_loop(WebKitDOMHTMLMediaElement* self, gbo olean value); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_controls: | * webkit_dom_html_media_element_get_controls: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_media_element_get_controls(WebKitDOMHTMLMediaElement* self) ; | webkit_dom_html_media_element_get_controls(WebKitDOMHTMLMediaElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_media_element_set_controls: | * webkit_dom_html_media_element_set_controls: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_set_controls(WebKitDOMHTMLMediaElement* self, gboolean value); | webkit_dom_html_media_element_set_controls(WebKitDOMHTMLMediaElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_volume: | * webkit_dom_html_media_element_get_volume: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_html_media_element_get_volume(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_get_volume(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_set_volume: | * webkit_dom_html_media_element_set_volume: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* @value: A #gdouble | * @value: A #gdouble | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_set_volume(WebKitDOMHTMLMediaElement* self, g double value, GError** error); | webkit_dom_html_media_element_set_volume(WebKitDOMHTMLMediaElement* self, g double value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_muted: | * webkit_dom_html_media_element_get_muted: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_media_element_get_muted(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_get_muted(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_set_muted: | * webkit_dom_html_media_element_set_muted: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_set_muted(WebKitDOMHTMLMediaElement* self, gb oolean value); | webkit_dom_html_media_element_set_muted(WebKitDOMHTMLMediaElement* self, gb oolean value); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_default_muted: | * webkit_dom_html_media_element_get_default_muted: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_media_element_get_default_muted(WebKitDOMHTMLMediaElement* self); | webkit_dom_html_media_element_get_default_muted(WebKitDOMHTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_set_default_muted: | * webkit_dom_html_media_element_set_default_muted: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_set_default_muted(WebKitDOMHTMLMediaElement* self, gboolean value); | webkit_dom_html_media_element_set_default_muted(WebKitDOMHTMLMediaElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_webkit_preserves_pitch: | * webkit_dom_html_media_element_get_webkit_preserves_pitch: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_media_element_get_webkit_preserves_pitch(WebKitDOMHTMLMedia Element* self); | webkit_dom_html_media_element_get_webkit_preserves_pitch(WebKitDOMHTMLMedia Element* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_set_webkit_preserves_pitch: | * webkit_dom_html_media_element_set_webkit_preserves_pitch: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_set_webkit_preserves_pitch(WebKitDOMHTMLMedia Element* self, gboolean value); | webkit_dom_html_media_element_set_webkit_preserves_pitch(WebKitDOMHTMLMedia Element* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_webkit_has_closed_captions: | * webkit_dom_html_media_element_get_webkit_has_closed_captions: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_media_element_get_webkit_has_closed_captions(WebKitDOMHTMLM ediaElement* self); | webkit_dom_html_media_element_get_webkit_has_closed_captions(WebKitDOMHTMLM ediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_webkit_closed_captions_visible: | * webkit_dom_html_media_element_get_webkit_closed_captions_visible: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_media_element_get_webkit_closed_captions_visible(WebKitDOMH TMLMediaElement* self); | webkit_dom_html_media_element_get_webkit_closed_captions_visible(WebKitDOMH TMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_set_webkit_closed_captions_visible: | * webkit_dom_html_media_element_set_webkit_closed_captions_visible: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_set_webkit_closed_captions_visible(WebKitDOMH TMLMediaElement* self, gboolean value); | webkit_dom_html_media_element_set_webkit_closed_captions_visible(WebKitDOMH TMLMediaElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_webkit_audio_decoded_byte_count: | * webkit_dom_html_media_element_get_webkit_audio_decoded_byte_count: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_media_element_get_webkit_audio_decoded_byte_count(WebKitDOM HTMLMediaElement* self); | webkit_dom_html_media_element_get_webkit_audio_decoded_byte_count(WebKitDOM HTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_webkit_video_decoded_byte_count: | * webkit_dom_html_media_element_get_webkit_video_decoded_byte_count: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_media_element_get_webkit_video_decoded_byte_count(WebKitDOM HTMLMediaElement* self); | webkit_dom_html_media_element_get_webkit_video_decoded_byte_count(WebKitDOM HTMLMediaElement* self); | |||
/** | /** | |||
* webkit_dom_html_media_element_get_media_group: | * webkit_dom_html_media_element_get_media_group: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_media_element_get_media_group(WebKitDOMHTMLMediaElement* se lf); | webkit_dom_html_media_element_get_media_group(WebKitDOMHTMLMediaElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_media_element_set_media_group: | * webkit_dom_html_media_element_set_media_group: | |||
* @self: A #WebKitDOMHTMLMediaElement | * @self: A #WebKitDOMHTMLMediaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_media_element_set_media_group(WebKitDOMHTMLMediaElement* se lf, const gchar* value); | webkit_dom_html_media_element_set_media_group(WebKitDOMHTMLMediaElement* se lf, const gchar* value); | |||
/** | ||||
* webkit_dom_html_media_element_get_controller: | ||||
* @self: A #WebKitDOMHTMLMediaElement | ||||
* | ||||
* Returns: (transfer none): A #WebKitDOMMediaController | ||||
**/ | ||||
WEBKIT_API WebKitDOMMediaController* | ||||
webkit_dom_html_media_element_get_controller(WebKitDOMHTMLMediaElement* sel | ||||
f); | ||||
/** | ||||
* webkit_dom_html_media_element_get_webkit_current_playback_target_is_wire | ||||
less: | ||||
* @self: A #WebKitDOMHTMLMediaElement | ||||
* | ||||
* Returns: A #gboolean | ||||
**/ | ||||
WEBKIT_API gboolean | ||||
webkit_dom_html_media_element_get_webkit_current_playback_target_is_wireles | ||||
s(WebKitDOMHTMLMediaElement* self); | ||||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLMediaElement_h */ | #endif /* WebKitDOMHTMLMediaElement_h */ | |||
End of changes. 50 change blocks. | ||||
144 lines changed or deleted | 88 lines changed or added | |||
WebKitDOMHTMLMenuElement.h | WebKitDOMHTMLMenuElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLMenuElement_h | #ifndef WebKitDOMHTMLMenuElement_h | |||
#define WebKitDOMHTMLMenuElement_h | #define WebKitDOMHTMLMenuElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_menu_element_get_type (void); | webkit_dom_html_menu_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_menu_element_get_compact: | * webkit_dom_html_menu_element_get_compact: | |||
* @self: A #WebKitDOMHTMLMenuElement | * @self: A #WebKitDOMHTMLMenuElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_menu_element_get_compact(WebKitDOMHTMLMenuElement* self); | webkit_dom_html_menu_element_get_compact(WebKitDOMHTMLMenuElement* self); | |||
/** | /** | |||
* webkit_dom_html_menu_element_set_compact: | * webkit_dom_html_menu_element_set_compact: | |||
* @self: A #WebKitDOMHTMLMenuElement | * @self: A #WebKitDOMHTMLMenuElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_menu_element_set_compact(WebKitDOMHTMLMenuElement* self, gb oolean value); | webkit_dom_html_menu_element_set_compact(WebKitDOMHTMLMenuElement* self, gb oolean value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLMenuElement_h */ | #endif /* WebKitDOMHTMLMenuElement_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMHTMLMetaElement.h | WebKitDOMHTMLMetaElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLMetaElement_h | #ifndef WebKitDOMHTMLMetaElement_h | |||
#define WebKitDOMHTMLMetaElement_h | #define WebKitDOMHTMLMetaElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_meta_element_get_type (void); | webkit_dom_html_meta_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_meta_element_get_content: | * webkit_dom_html_meta_element_get_content: | |||
* @self: A #WebKitDOMHTMLMetaElement | * @self: A #WebKitDOMHTMLMetaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_meta_element_get_content(WebKitDOMHTMLMetaElement* self); | webkit_dom_html_meta_element_get_content(WebKitDOMHTMLMetaElement* self); | |||
/** | /** | |||
* webkit_dom_html_meta_element_set_content: | * webkit_dom_html_meta_element_set_content: | |||
* @self: A #WebKitDOMHTMLMetaElement | * @self: A #WebKitDOMHTMLMetaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_meta_element_set_content(WebKitDOMHTMLMetaElement* self, co nst gchar* value); | webkit_dom_html_meta_element_set_content(WebKitDOMHTMLMetaElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_meta_element_get_http_equiv: | * webkit_dom_html_meta_element_get_http_equiv: | |||
* @self: A #WebKitDOMHTMLMetaElement | * @self: A #WebKitDOMHTMLMetaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_meta_element_get_http_equiv(WebKitDOMHTMLMetaElement* self) ; | webkit_dom_html_meta_element_get_http_equiv(WebKitDOMHTMLMetaElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_meta_element_set_http_equiv: | * webkit_dom_html_meta_element_set_http_equiv: | |||
* @self: A #WebKitDOMHTMLMetaElement | * @self: A #WebKitDOMHTMLMetaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_meta_element_set_http_equiv(WebKitDOMHTMLMetaElement* self, const gchar* value); | webkit_dom_html_meta_element_set_http_equiv(WebKitDOMHTMLMetaElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_meta_element_get_name: | * webkit_dom_html_meta_element_get_name: | |||
* @self: A #WebKitDOMHTMLMetaElement | * @self: A #WebKitDOMHTMLMetaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_meta_element_get_name(WebKitDOMHTMLMetaElement* self); | webkit_dom_html_meta_element_get_name(WebKitDOMHTMLMetaElement* self); | |||
/** | /** | |||
* webkit_dom_html_meta_element_set_name: | * webkit_dom_html_meta_element_set_name: | |||
* @self: A #WebKitDOMHTMLMetaElement | * @self: A #WebKitDOMHTMLMetaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_meta_element_set_name(WebKitDOMHTMLMetaElement* self, const gchar* value); | webkit_dom_html_meta_element_set_name(WebKitDOMHTMLMetaElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_meta_element_get_scheme: | * webkit_dom_html_meta_element_get_scheme: | |||
* @self: A #WebKitDOMHTMLMetaElement | * @self: A #WebKitDOMHTMLMetaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_meta_element_get_scheme(WebKitDOMHTMLMetaElement* self); | webkit_dom_html_meta_element_get_scheme(WebKitDOMHTMLMetaElement* self); | |||
/** | /** | |||
* webkit_dom_html_meta_element_set_scheme: | * webkit_dom_html_meta_element_set_scheme: | |||
* @self: A #WebKitDOMHTMLMetaElement | * @self: A #WebKitDOMHTMLMetaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_meta_element_set_scheme(WebKitDOMHTMLMetaElement* self, con st gchar* value); | webkit_dom_html_meta_element_set_scheme(WebKitDOMHTMLMetaElement* self, con st gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLMetaElement_h */ | #endif /* WebKitDOMHTMLMetaElement_h */ | |||
End of changes. 9 change blocks. | ||||
35 lines changed or deleted | 23 lines changed or added | |||
WebKitDOMHTMLModElement.h | WebKitDOMHTMLModElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLModElement_h | #ifndef WebKitDOMHTMLModElement_h | |||
#define WebKitDOMHTMLModElement_h | #define WebKitDOMHTMLModElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_mod_element_get_type (void); | webkit_dom_html_mod_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_mod_element_get_cite: | * webkit_dom_html_mod_element_get_cite: | |||
* @self: A #WebKitDOMHTMLModElement | * @self: A #WebKitDOMHTMLModElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_mod_element_get_cite(WebKitDOMHTMLModElement* self); | webkit_dom_html_mod_element_get_cite(WebKitDOMHTMLModElement* self); | |||
/** | /** | |||
* webkit_dom_html_mod_element_set_cite: | * webkit_dom_html_mod_element_set_cite: | |||
* @self: A #WebKitDOMHTMLModElement | * @self: A #WebKitDOMHTMLModElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_mod_element_set_cite(WebKitDOMHTMLModElement* self, const g char* value); | webkit_dom_html_mod_element_set_cite(WebKitDOMHTMLModElement* self, const g char* value); | |||
/** | /** | |||
* webkit_dom_html_mod_element_get_date_time: | * webkit_dom_html_mod_element_get_date_time: | |||
* @self: A #WebKitDOMHTMLModElement | * @self: A #WebKitDOMHTMLModElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_mod_element_get_date_time(WebKitDOMHTMLModElement* self); | webkit_dom_html_mod_element_get_date_time(WebKitDOMHTMLModElement* self); | |||
/** | /** | |||
* webkit_dom_html_mod_element_set_date_time: | * webkit_dom_html_mod_element_set_date_time: | |||
* @self: A #WebKitDOMHTMLModElement | * @self: A #WebKitDOMHTMLModElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_mod_element_set_date_time(WebKitDOMHTMLModElement* self, co nst gchar* value); | webkit_dom_html_mod_element_set_date_time(WebKitDOMHTMLModElement* self, co nst gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLModElement_h */ | #endif /* WebKitDOMHTMLModElement_h */ | |||
End of changes. 5 change blocks. | ||||
27 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMHTMLOListElement.h | WebKitDOMHTMLOListElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLOListElement_h | #ifndef WebKitDOMHTMLOListElement_h | |||
#define WebKitDOMHTMLOListElement_h | #define WebKitDOMHTMLOListElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_htmlo_list_element_get_type (void); | webkit_dom_htmlo_list_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_htmlo_list_element_get_compact: | * webkit_dom_htmlo_list_element_get_compact: | |||
* @self: A #WebKitDOMHTMLOListElement | * @self: A #WebKitDOMHTMLOListElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_htmlo_list_element_get_compact(WebKitDOMHTMLOListElement* self); | webkit_dom_htmlo_list_element_get_compact(WebKitDOMHTMLOListElement* self); | |||
/** | /** | |||
* webkit_dom_htmlo_list_element_set_compact: | * webkit_dom_htmlo_list_element_set_compact: | |||
* @self: A #WebKitDOMHTMLOListElement | * @self: A #WebKitDOMHTMLOListElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_htmlo_list_element_set_compact(WebKitDOMHTMLOListElement* self, gboolean value); | webkit_dom_htmlo_list_element_set_compact(WebKitDOMHTMLOListElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_htmlo_list_element_get_start: | * webkit_dom_htmlo_list_element_get_start: | |||
* @self: A #WebKitDOMHTMLOListElement | * @self: A #WebKitDOMHTMLOListElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_htmlo_list_element_get_start(WebKitDOMHTMLOListElement* self); | webkit_dom_htmlo_list_element_get_start(WebKitDOMHTMLOListElement* self); | |||
/** | /** | |||
* webkit_dom_htmlo_list_element_set_start: | * webkit_dom_htmlo_list_element_set_start: | |||
* @self: A #WebKitDOMHTMLOListElement | * @self: A #WebKitDOMHTMLOListElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_htmlo_list_element_set_start(WebKitDOMHTMLOListElement* self, gl ong value); | webkit_dom_htmlo_list_element_set_start(WebKitDOMHTMLOListElement* self, gl ong value); | |||
/** | /** | |||
* webkit_dom_htmlo_list_element_get_reversed: | * webkit_dom_htmlo_list_element_get_reversed: | |||
* @self: A #WebKitDOMHTMLOListElement | * @self: A #WebKitDOMHTMLOListElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_htmlo_list_element_get_reversed(WebKitDOMHTMLOListElement* self) ; | webkit_dom_htmlo_list_element_get_reversed(WebKitDOMHTMLOListElement* self) ; | |||
/** | /** | |||
* webkit_dom_htmlo_list_element_set_reversed: | * webkit_dom_htmlo_list_element_set_reversed: | |||
* @self: A #WebKitDOMHTMLOListElement | * @self: A #WebKitDOMHTMLOListElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_htmlo_list_element_set_reversed(WebKitDOMHTMLOListElement* self, gboolean value); | webkit_dom_htmlo_list_element_set_reversed(WebKitDOMHTMLOListElement* self, gboolean value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLOListElement_h */ | #endif /* WebKitDOMHTMLOListElement_h */ | |||
End of changes. 7 change blocks. | ||||
31 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMHTMLObjectElement.h | WebKitDOMHTMLObjectElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLObjectElement_h | #ifndef WebKitDOMHTMLObjectElement_h | |||
#define WebKitDOMHTMLObjectElement_h | #define WebKitDOMHTMLObjectElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_object_element_get_type (void); | webkit_dom_html_object_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_object_element_check_validity: | * webkit_dom_html_object_element_check_validity: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_object_element_check_validity(WebKitDOMHTMLObjectElement* s elf); | webkit_dom_html_object_element_check_validity(WebKitDOMHTMLObjectElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_object_element_set_custom_validity: | * webkit_dom_html_object_element_set_custom_validity: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @error: A #gchar | * @error: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_custom_validity(WebKitDOMHTMLObjectEleme nt* self, const gchar* error); | webkit_dom_html_object_element_set_custom_validity(WebKitDOMHTMLObjectEleme nt* self, const gchar* error); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_form: | * webkit_dom_html_object_element_get_form: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLFormElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLFormElement* | WEBKIT_API WebKitDOMHTMLFormElement* | |||
webkit_dom_html_object_element_get_form(WebKitDOMHTMLObjectElement* self); | webkit_dom_html_object_element_get_form(WebKitDOMHTMLObjectElement* self); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_code: | * webkit_dom_html_object_element_get_code: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_object_element_get_code(WebKitDOMHTMLObjectElement* self); | webkit_dom_html_object_element_get_code(WebKitDOMHTMLObjectElement* self); | |||
/** | /** | |||
* webkit_dom_html_object_element_set_code: | * webkit_dom_html_object_element_set_code: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_code(WebKitDOMHTMLObjectElement* self, c onst gchar* value); | webkit_dom_html_object_element_set_code(WebKitDOMHTMLObjectElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_align: | * webkit_dom_html_object_element_get_align: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_object_element_get_align(WebKitDOMHTMLObjectElement* self); | webkit_dom_html_object_element_get_align(WebKitDOMHTMLObjectElement* self); | |||
/** | /** | |||
* webkit_dom_html_object_element_set_align: | * webkit_dom_html_object_element_set_align: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_align(WebKitDOMHTMLObjectElement* self, const gchar* value); | webkit_dom_html_object_element_set_align(WebKitDOMHTMLObjectElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_archive: | * webkit_dom_html_object_element_get_archive: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_object_element_get_archive(WebKitDOMHTMLObjectElement* self ); | webkit_dom_html_object_element_get_archive(WebKitDOMHTMLObjectElement* self ); | |||
/** | /** | |||
* webkit_dom_html_object_element_set_archive: | * webkit_dom_html_object_element_set_archive: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_archive(WebKitDOMHTMLObjectElement* self , const gchar* value); | webkit_dom_html_object_element_set_archive(WebKitDOMHTMLObjectElement* self , const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_border: | * webkit_dom_html_object_element_get_border: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_object_element_get_border(WebKitDOMHTMLObjectElement* self) ; | webkit_dom_html_object_element_get_border(WebKitDOMHTMLObjectElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_object_element_set_border: | * webkit_dom_html_object_element_set_border: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_border(WebKitDOMHTMLObjectElement* self, const gchar* value); | webkit_dom_html_object_element_set_border(WebKitDOMHTMLObjectElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_code_base: | * webkit_dom_html_object_element_get_code_base: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_object_element_get_code_base(WebKitDOMHTMLObjectElement* se lf); | webkit_dom_html_object_element_get_code_base(WebKitDOMHTMLObjectElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_object_element_set_code_base: | * webkit_dom_html_object_element_set_code_base: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_code_base(WebKitDOMHTMLObjectElement* se lf, const gchar* value); | webkit_dom_html_object_element_set_code_base(WebKitDOMHTMLObjectElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_code_type: | * webkit_dom_html_object_element_get_code_type: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_object_element_get_code_type(WebKitDOMHTMLObjectElement* se lf); | webkit_dom_html_object_element_get_code_type(WebKitDOMHTMLObjectElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_object_element_set_code_type: | * webkit_dom_html_object_element_set_code_type: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_code_type(WebKitDOMHTMLObjectElement* se lf, const gchar* value); | webkit_dom_html_object_element_set_code_type(WebKitDOMHTMLObjectElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_data: | * webkit_dom_html_object_element_get_data: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_object_element_get_data(WebKitDOMHTMLObjectElement* self); | webkit_dom_html_object_element_get_data(WebKitDOMHTMLObjectElement* self); | |||
/** | /** | |||
* webkit_dom_html_object_element_set_data: | * webkit_dom_html_object_element_set_data: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_data(WebKitDOMHTMLObjectElement* self, c onst gchar* value); | webkit_dom_html_object_element_set_data(WebKitDOMHTMLObjectElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_declare: | * webkit_dom_html_object_element_get_declare: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_object_element_get_declare(WebKitDOMHTMLObjectElement* self ); | webkit_dom_html_object_element_get_declare(WebKitDOMHTMLObjectElement* self ); | |||
/** | /** | |||
* webkit_dom_html_object_element_set_declare: | * webkit_dom_html_object_element_set_declare: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_declare(WebKitDOMHTMLObjectElement* self , gboolean value); | webkit_dom_html_object_element_set_declare(WebKitDOMHTMLObjectElement* self , gboolean value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_height: | * webkit_dom_html_object_element_get_height: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_object_element_get_height(WebKitDOMHTMLObjectElement* self) ; | webkit_dom_html_object_element_get_height(WebKitDOMHTMLObjectElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_object_element_set_height: | * webkit_dom_html_object_element_set_height: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_height(WebKitDOMHTMLObjectElement* self, const gchar* value); | webkit_dom_html_object_element_set_height(WebKitDOMHTMLObjectElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_hspace: | * webkit_dom_html_object_element_get_hspace: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_object_element_get_hspace(WebKitDOMHTMLObjectElement* self) ; | webkit_dom_html_object_element_get_hspace(WebKitDOMHTMLObjectElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_object_element_set_hspace: | * webkit_dom_html_object_element_set_hspace: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_hspace(WebKitDOMHTMLObjectElement* self, glong value); | webkit_dom_html_object_element_set_hspace(WebKitDOMHTMLObjectElement* self, glong value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_name: | * webkit_dom_html_object_element_get_name: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_object_element_get_name(WebKitDOMHTMLObjectElement* self); | webkit_dom_html_object_element_get_name(WebKitDOMHTMLObjectElement* self); | |||
/** | /** | |||
* webkit_dom_html_object_element_set_name: | * webkit_dom_html_object_element_set_name: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_name(WebKitDOMHTMLObjectElement* self, c onst gchar* value); | webkit_dom_html_object_element_set_name(WebKitDOMHTMLObjectElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_standby: | * webkit_dom_html_object_element_get_standby: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_object_element_get_standby(WebKitDOMHTMLObjectElement* self ); | webkit_dom_html_object_element_get_standby(WebKitDOMHTMLObjectElement* self ); | |||
/** | /** | |||
* webkit_dom_html_object_element_set_standby: | * webkit_dom_html_object_element_set_standby: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_standby(WebKitDOMHTMLObjectElement* self , const gchar* value); | webkit_dom_html_object_element_set_standby(WebKitDOMHTMLObjectElement* self , const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_use_map: | * webkit_dom_html_object_element_get_use_map: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_object_element_get_use_map(WebKitDOMHTMLObjectElement* self ); | webkit_dom_html_object_element_get_use_map(WebKitDOMHTMLObjectElement* self ); | |||
/** | /** | |||
* webkit_dom_html_object_element_set_use_map: | * webkit_dom_html_object_element_set_use_map: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_use_map(WebKitDOMHTMLObjectElement* self , const gchar* value); | webkit_dom_html_object_element_set_use_map(WebKitDOMHTMLObjectElement* self , const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_vspace: | * webkit_dom_html_object_element_get_vspace: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_object_element_get_vspace(WebKitDOMHTMLObjectElement* self) ; | webkit_dom_html_object_element_get_vspace(WebKitDOMHTMLObjectElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_object_element_set_vspace: | * webkit_dom_html_object_element_set_vspace: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_vspace(WebKitDOMHTMLObjectElement* self, glong value); | webkit_dom_html_object_element_set_vspace(WebKitDOMHTMLObjectElement* self, glong value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_width: | * webkit_dom_html_object_element_get_width: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_object_element_get_width(WebKitDOMHTMLObjectElement* self); | webkit_dom_html_object_element_get_width(WebKitDOMHTMLObjectElement* self); | |||
/** | /** | |||
* webkit_dom_html_object_element_set_width: | * webkit_dom_html_object_element_set_width: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_object_element_set_width(WebKitDOMHTMLObjectElement* self, const gchar* value); | webkit_dom_html_object_element_set_width(WebKitDOMHTMLObjectElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_will_validate: | * webkit_dom_html_object_element_get_will_validate: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_object_element_get_will_validate(WebKitDOMHTMLObjectElement * self); | webkit_dom_html_object_element_get_will_validate(WebKitDOMHTMLObjectElement * self); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_validity: | * webkit_dom_html_object_element_get_validity: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMValidityState | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMValidityState* | WEBKIT_API WebKitDOMValidityState* | |||
webkit_dom_html_object_element_get_validity(WebKitDOMHTMLObjectElement* sel f); | webkit_dom_html_object_element_get_validity(WebKitDOMHTMLObjectElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_validation_message: | * webkit_dom_html_object_element_get_validation_message: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_object_element_get_validation_message(WebKitDOMHTMLObjectEl ement* self); | webkit_dom_html_object_element_get_validation_message(WebKitDOMHTMLObjectEl ement* self); | |||
/** | /** | |||
* webkit_dom_html_object_element_get_content_document: | * webkit_dom_html_object_element_get_content_document: | |||
* @self: A #WebKitDOMHTMLObjectElement | * @self: A #WebKitDOMHTMLObjectElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDocument | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDocument* | WEBKIT_API WebKitDOMDocument* | |||
webkit_dom_html_object_element_get_content_document(WebKitDOMHTMLObjectElem ent* self); | webkit_dom_html_object_element_get_content_document(WebKitDOMHTMLObjectElem ent* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLObjectElement_h */ | #endif /* WebKitDOMHTMLObjectElement_h */ | |||
End of changes. 38 change blocks. | ||||
93 lines changed or deleted | 40 lines changed or added | |||
WebKitDOMHTMLOptGroupElement.h | WebKitDOMHTMLOptGroupElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLOptGroupElement_h | #ifndef WebKitDOMHTMLOptGroupElement_h | |||
#define WebKitDOMHTMLOptGroupElement_h | #define WebKitDOMHTMLOptGroupElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_opt_group_element_get_type (void); | webkit_dom_html_opt_group_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_opt_group_element_get_disabled: | * webkit_dom_html_opt_group_element_get_disabled: | |||
* @self: A #WebKitDOMHTMLOptGroupElement | * @self: A #WebKitDOMHTMLOptGroupElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_opt_group_element_get_disabled(WebKitDOMHTMLOptGroupElement * self); | webkit_dom_html_opt_group_element_get_disabled(WebKitDOMHTMLOptGroupElement * self); | |||
/** | /** | |||
* webkit_dom_html_opt_group_element_set_disabled: | * webkit_dom_html_opt_group_element_set_disabled: | |||
* @self: A #WebKitDOMHTMLOptGroupElement | * @self: A #WebKitDOMHTMLOptGroupElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_opt_group_element_set_disabled(WebKitDOMHTMLOptGroupElement * self, gboolean value); | webkit_dom_html_opt_group_element_set_disabled(WebKitDOMHTMLOptGroupElement * self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_opt_group_element_get_label: | * webkit_dom_html_opt_group_element_get_label: | |||
* @self: A #WebKitDOMHTMLOptGroupElement | * @self: A #WebKitDOMHTMLOptGroupElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_opt_group_element_get_label(WebKitDOMHTMLOptGroupElement* s elf); | webkit_dom_html_opt_group_element_get_label(WebKitDOMHTMLOptGroupElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_opt_group_element_set_label: | * webkit_dom_html_opt_group_element_set_label: | |||
* @self: A #WebKitDOMHTMLOptGroupElement | * @self: A #WebKitDOMHTMLOptGroupElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_opt_group_element_set_label(WebKitDOMHTMLOptGroupElement* s elf, const gchar* value); | webkit_dom_html_opt_group_element_set_label(WebKitDOMHTMLOptGroupElement* s elf, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLOptGroupElement_h */ | #endif /* WebKitDOMHTMLOptGroupElement_h */ | |||
End of changes. 5 change blocks. | ||||
27 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMHTMLOptionElement.h | WebKitDOMHTMLOptionElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLOptionElement_h | #ifndef WebKitDOMHTMLOptionElement_h | |||
#define WebKitDOMHTMLOptionElement_h | #define WebKitDOMHTMLOptionElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_option_element_get_type (void); | webkit_dom_html_option_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_option_element_get_disabled: | * webkit_dom_html_option_element_get_disabled: | |||
* @self: A #WebKitDOMHTMLOptionElement | * @self: A #WebKitDOMHTMLOptionElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_option_element_get_disabled(WebKitDOMHTMLOptionElement* sel f); | webkit_dom_html_option_element_get_disabled(WebKitDOMHTMLOptionElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_option_element_set_disabled: | * webkit_dom_html_option_element_set_disabled: | |||
* @self: A #WebKitDOMHTMLOptionElement | * @self: A #WebKitDOMHTMLOptionElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_option_element_set_disabled(WebKitDOMHTMLOptionElement* sel f, gboolean value); | webkit_dom_html_option_element_set_disabled(WebKitDOMHTMLOptionElement* sel f, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_option_element_get_form: | * webkit_dom_html_option_element_get_form: | |||
* @self: A #WebKitDOMHTMLOptionElement | * @self: A #WebKitDOMHTMLOptionElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLFormElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLFormElement* | WEBKIT_API WebKitDOMHTMLFormElement* | |||
webkit_dom_html_option_element_get_form(WebKitDOMHTMLOptionElement* self); | webkit_dom_html_option_element_get_form(WebKitDOMHTMLOptionElement* self); | |||
/** | /** | |||
* webkit_dom_html_option_element_get_label: | * webkit_dom_html_option_element_get_label: | |||
* @self: A #WebKitDOMHTMLOptionElement | * @self: A #WebKitDOMHTMLOptionElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_option_element_get_label(WebKitDOMHTMLOptionElement* self); | webkit_dom_html_option_element_get_label(WebKitDOMHTMLOptionElement* self); | |||
/** | /** | |||
* webkit_dom_html_option_element_set_label: | * webkit_dom_html_option_element_set_label: | |||
* @self: A #WebKitDOMHTMLOptionElement | * @self: A #WebKitDOMHTMLOptionElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_option_element_set_label(WebKitDOMHTMLOptionElement* self, const gchar* value); | webkit_dom_html_option_element_set_label(WebKitDOMHTMLOptionElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_option_element_get_default_selected: | * webkit_dom_html_option_element_get_default_selected: | |||
* @self: A #WebKitDOMHTMLOptionElement | * @self: A #WebKitDOMHTMLOptionElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_option_element_get_default_selected(WebKitDOMHTMLOptionElem ent* self); | webkit_dom_html_option_element_get_default_selected(WebKitDOMHTMLOptionElem ent* self); | |||
/** | /** | |||
* webkit_dom_html_option_element_set_default_selected: | * webkit_dom_html_option_element_set_default_selected: | |||
* @self: A #WebKitDOMHTMLOptionElement | * @self: A #WebKitDOMHTMLOptionElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_option_element_set_default_selected(WebKitDOMHTMLOptionElem ent* self, gboolean value); | webkit_dom_html_option_element_set_default_selected(WebKitDOMHTMLOptionElem ent* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_option_element_get_selected: | * webkit_dom_html_option_element_get_selected: | |||
* @self: A #WebKitDOMHTMLOptionElement | * @self: A #WebKitDOMHTMLOptionElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_option_element_get_selected(WebKitDOMHTMLOptionElement* sel f); | webkit_dom_html_option_element_get_selected(WebKitDOMHTMLOptionElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_option_element_set_selected: | * webkit_dom_html_option_element_set_selected: | |||
* @self: A #WebKitDOMHTMLOptionElement | * @self: A #WebKitDOMHTMLOptionElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_option_element_set_selected(WebKitDOMHTMLOptionElement* sel f, gboolean value); | webkit_dom_html_option_element_set_selected(WebKitDOMHTMLOptionElement* sel f, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_option_element_get_value: | * webkit_dom_html_option_element_get_value: | |||
* @self: A #WebKitDOMHTMLOptionElement | * @self: A #WebKitDOMHTMLOptionElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_option_element_get_value(WebKitDOMHTMLOptionElement* self); | webkit_dom_html_option_element_get_value(WebKitDOMHTMLOptionElement* self); | |||
/** | /** | |||
* webkit_dom_html_option_element_set_value: | * webkit_dom_html_option_element_set_value: | |||
* @self: A #WebKitDOMHTMLOptionElement | * @self: A #WebKitDOMHTMLOptionElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_option_element_set_value(WebKitDOMHTMLOptionElement* self, const gchar* value); | webkit_dom_html_option_element_set_value(WebKitDOMHTMLOptionElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_option_element_get_text: | * webkit_dom_html_option_element_get_text: | |||
* @self: A #WebKitDOMHTMLOptionElement | * @self: A #WebKitDOMHTMLOptionElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_option_element_get_text(WebKitDOMHTMLOptionElement* self); | webkit_dom_html_option_element_get_text(WebKitDOMHTMLOptionElement* self); | |||
/** | /** | |||
* webkit_dom_html_option_element_get_index: | * webkit_dom_html_option_element_get_index: | |||
* @self: A #WebKitDOMHTMLOptionElement | * @self: A #WebKitDOMHTMLOptionElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_option_element_get_index(WebKitDOMHTMLOptionElement* self); | webkit_dom_html_option_element_get_index(WebKitDOMHTMLOptionElement* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLOptionElement_h */ | #endif /* WebKitDOMHTMLOptionElement_h */ | |||
End of changes. 14 change blocks. | ||||
45 lines changed or deleted | 27 lines changed or added | |||
WebKitDOMHTMLOptionsCollection.h | WebKitDOMHTMLOptionsCollection.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLOptionsCollection_h | #ifndef WebKitDOMHTMLOptionsCollection_h | |||
#define WebKitDOMHTMLOptionsCollection_h | #define WebKitDOMHTMLOptionsCollection_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLCollection.h> | #include <webkitdom/WebKitDOMHTMLCollection.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_options_collection_get_type (void); | webkit_dom_html_options_collection_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_options_collection_named_item: | * webkit_dom_html_options_collection_named_item: | |||
* @self: A #WebKitDOMHTMLOptionsCollection | * @self: A #WebKitDOMHTMLOptionsCollection | |||
* @name: A #gchar | * @name: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_html_options_collection_named_item(WebKitDOMHTMLOptionsCollectio n* self, const gchar* name); | webkit_dom_html_options_collection_named_item(WebKitDOMHTMLOptionsCollectio n* self, const gchar* name); | |||
/** | /** | |||
* webkit_dom_html_options_collection_get_selected_index: | * webkit_dom_html_options_collection_get_selected_index: | |||
* @self: A #WebKitDOMHTMLOptionsCollection | * @self: A #WebKitDOMHTMLOptionsCollection | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_options_collection_get_selected_index(WebKitDOMHTMLOptionsC ollection* self); | webkit_dom_html_options_collection_get_selected_index(WebKitDOMHTMLOptionsC ollection* self); | |||
/** | /** | |||
* webkit_dom_html_options_collection_set_selected_index: | * webkit_dom_html_options_collection_set_selected_index: | |||
* @self: A #WebKitDOMHTMLOptionsCollection | * @self: A #WebKitDOMHTMLOptionsCollection | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_options_collection_set_selected_index(WebKitDOMHTMLOptionsC ollection* self, glong value); | webkit_dom_html_options_collection_set_selected_index(WebKitDOMHTMLOptionsC ollection* self, glong value); | |||
/** | ||||
* webkit_dom_html_options_collection_get_length: | ||||
* @self: A #WebKitDOMHTMLOptionsCollection | ||||
* | ||||
* Returns: A #gulong | ||||
**/ | ||||
WEBKIT_API gulong | ||||
webkit_dom_html_options_collection_get_length(WebKitDOMHTMLOptionsCollectio | ||||
n* self); | ||||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLOptionsCollection_h */ | #endif /* WebKitDOMHTMLOptionsCollection_h */ | |||
End of changes. 5 change blocks. | ||||
25 lines changed or deleted | 31 lines changed or added | |||
WebKitDOMHTMLParagraphElement.h | WebKitDOMHTMLParagraphElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLParagraphElement_h | #ifndef WebKitDOMHTMLParagraphElement_h | |||
#define WebKitDOMHTMLParagraphElement_h | #define WebKitDOMHTMLParagraphElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_paragraph_element_get_type (void); | webkit_dom_html_paragraph_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_paragraph_element_get_align: | * webkit_dom_html_paragraph_element_get_align: | |||
* @self: A #WebKitDOMHTMLParagraphElement | * @self: A #WebKitDOMHTMLParagraphElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_paragraph_element_get_align(WebKitDOMHTMLParagraphElement* self); | webkit_dom_html_paragraph_element_get_align(WebKitDOMHTMLParagraphElement* self); | |||
/** | /** | |||
* webkit_dom_html_paragraph_element_set_align: | * webkit_dom_html_paragraph_element_set_align: | |||
* @self: A #WebKitDOMHTMLParagraphElement | * @self: A #WebKitDOMHTMLParagraphElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_paragraph_element_set_align(WebKitDOMHTMLParagraphElement* self, const gchar* value); | webkit_dom_html_paragraph_element_set_align(WebKitDOMHTMLParagraphElement* self, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLParagraphElement_h */ | #endif /* WebKitDOMHTMLParagraphElement_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMHTMLParamElement.h | WebKitDOMHTMLParamElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLParamElement_h | #ifndef WebKitDOMHTMLParamElement_h | |||
#define WebKitDOMHTMLParamElement_h | #define WebKitDOMHTMLParamElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_param_element_get_type (void); | webkit_dom_html_param_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_param_element_get_name: | * webkit_dom_html_param_element_get_name: | |||
* @self: A #WebKitDOMHTMLParamElement | * @self: A #WebKitDOMHTMLParamElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_param_element_get_name(WebKitDOMHTMLParamElement* self); | webkit_dom_html_param_element_get_name(WebKitDOMHTMLParamElement* self); | |||
/** | /** | |||
* webkit_dom_html_param_element_set_name: | * webkit_dom_html_param_element_set_name: | |||
* @self: A #WebKitDOMHTMLParamElement | * @self: A #WebKitDOMHTMLParamElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_param_element_set_name(WebKitDOMHTMLParamElement* self, con st gchar* value); | webkit_dom_html_param_element_set_name(WebKitDOMHTMLParamElement* self, con st gchar* value); | |||
/** | /** | |||
* webkit_dom_html_param_element_get_value: | * webkit_dom_html_param_element_get_value: | |||
* @self: A #WebKitDOMHTMLParamElement | * @self: A #WebKitDOMHTMLParamElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_param_element_get_value(WebKitDOMHTMLParamElement* self); | webkit_dom_html_param_element_get_value(WebKitDOMHTMLParamElement* self); | |||
/** | /** | |||
* webkit_dom_html_param_element_set_value: | * webkit_dom_html_param_element_set_value: | |||
* @self: A #WebKitDOMHTMLParamElement | * @self: A #WebKitDOMHTMLParamElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_param_element_set_value(WebKitDOMHTMLParamElement* self, co nst gchar* value); | webkit_dom_html_param_element_set_value(WebKitDOMHTMLParamElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_param_element_get_value_type: | * webkit_dom_html_param_element_get_value_type: | |||
* @self: A #WebKitDOMHTMLParamElement | * @self: A #WebKitDOMHTMLParamElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_param_element_get_value_type(WebKitDOMHTMLParamElement* sel f); | webkit_dom_html_param_element_get_value_type(WebKitDOMHTMLParamElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_param_element_set_value_type: | * webkit_dom_html_param_element_set_value_type: | |||
* @self: A #WebKitDOMHTMLParamElement | * @self: A #WebKitDOMHTMLParamElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_param_element_set_value_type(WebKitDOMHTMLParamElement* sel f, const gchar* value); | webkit_dom_html_param_element_set_value_type(WebKitDOMHTMLParamElement* sel f, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLParamElement_h */ | #endif /* WebKitDOMHTMLParamElement_h */ | |||
End of changes. 7 change blocks. | ||||
31 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMHTMLPreElement.h | WebKitDOMHTMLPreElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLPreElement_h | #ifndef WebKitDOMHTMLPreElement_h | |||
#define WebKitDOMHTMLPreElement_h | #define WebKitDOMHTMLPreElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_pre_element_get_type (void); | webkit_dom_html_pre_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_pre_element_get_width: | * webkit_dom_html_pre_element_get_width: | |||
* @self: A #WebKitDOMHTMLPreElement | * @self: A #WebKitDOMHTMLPreElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_pre_element_get_width(WebKitDOMHTMLPreElement* self); | webkit_dom_html_pre_element_get_width(WebKitDOMHTMLPreElement* self); | |||
/** | /** | |||
* webkit_dom_html_pre_element_set_width: | * webkit_dom_html_pre_element_set_width: | |||
* @self: A #WebKitDOMHTMLPreElement | * @self: A #WebKitDOMHTMLPreElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_pre_element_set_width(WebKitDOMHTMLPreElement* self, glong value); | webkit_dom_html_pre_element_set_width(WebKitDOMHTMLPreElement* self, glong value); | |||
/** | /** | |||
* webkit_dom_html_pre_element_get_wrap: | * webkit_dom_html_pre_element_get_wrap: | |||
* @self: A #WebKitDOMHTMLPreElement | * @self: A #WebKitDOMHTMLPreElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_pre_element_get_wrap(WebKitDOMHTMLPreElement* self); | webkit_dom_html_pre_element_get_wrap(WebKitDOMHTMLPreElement* self); | |||
/** | /** | |||
* webkit_dom_html_pre_element_set_wrap: | * webkit_dom_html_pre_element_set_wrap: | |||
* @self: A #WebKitDOMHTMLPreElement | * @self: A #WebKitDOMHTMLPreElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_pre_element_set_wrap(WebKitDOMHTMLPreElement* self, gboolea n value); | webkit_dom_html_pre_element_set_wrap(WebKitDOMHTMLPreElement* self, gboolea n value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLPreElement_h */ | #endif /* WebKitDOMHTMLPreElement_h */ | |||
End of changes. 5 change blocks. | ||||
27 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMHTMLQuoteElement.h | WebKitDOMHTMLQuoteElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLQuoteElement_h | #ifndef WebKitDOMHTMLQuoteElement_h | |||
#define WebKitDOMHTMLQuoteElement_h | #define WebKitDOMHTMLQuoteElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_quote_element_get_type (void); | webkit_dom_html_quote_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_quote_element_get_cite: | * webkit_dom_html_quote_element_get_cite: | |||
* @self: A #WebKitDOMHTMLQuoteElement | * @self: A #WebKitDOMHTMLQuoteElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_quote_element_get_cite(WebKitDOMHTMLQuoteElement* self); | webkit_dom_html_quote_element_get_cite(WebKitDOMHTMLQuoteElement* self); | |||
/** | /** | |||
* webkit_dom_html_quote_element_set_cite: | * webkit_dom_html_quote_element_set_cite: | |||
* @self: A #WebKitDOMHTMLQuoteElement | * @self: A #WebKitDOMHTMLQuoteElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_quote_element_set_cite(WebKitDOMHTMLQuoteElement* self, con st gchar* value); | webkit_dom_html_quote_element_set_cite(WebKitDOMHTMLQuoteElement* self, con st gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLQuoteElement_h */ | #endif /* WebKitDOMHTMLQuoteElement_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMHTMLScriptElement.h | WebKitDOMHTMLScriptElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLScriptElement_h | #ifndef WebKitDOMHTMLScriptElement_h | |||
#define WebKitDOMHTMLScriptElement_h | #define WebKitDOMHTMLScriptElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_script_element_get_type (void); | webkit_dom_html_script_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_script_element_get_text: | * webkit_dom_html_script_element_get_text: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_script_element_get_text(WebKitDOMHTMLScriptElement* self); | webkit_dom_html_script_element_get_text(WebKitDOMHTMLScriptElement* self); | |||
/** | /** | |||
* webkit_dom_html_script_element_set_text: | * webkit_dom_html_script_element_set_text: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_script_element_set_text(WebKitDOMHTMLScriptElement* self, c onst gchar* value); | webkit_dom_html_script_element_set_text(WebKitDOMHTMLScriptElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_script_element_get_html_for: | * webkit_dom_html_script_element_get_html_for: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_script_element_get_html_for(WebKitDOMHTMLScriptElement* sel f); | webkit_dom_html_script_element_get_html_for(WebKitDOMHTMLScriptElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_script_element_set_html_for: | * webkit_dom_html_script_element_set_html_for: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_script_element_set_html_for(WebKitDOMHTMLScriptElement* sel f, const gchar* value); | webkit_dom_html_script_element_set_html_for(WebKitDOMHTMLScriptElement* sel f, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_script_element_get_event: | * webkit_dom_html_script_element_get_event: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_script_element_get_event(WebKitDOMHTMLScriptElement* self); | webkit_dom_html_script_element_get_event(WebKitDOMHTMLScriptElement* self); | |||
/** | /** | |||
* webkit_dom_html_script_element_set_event: | * webkit_dom_html_script_element_set_event: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_script_element_set_event(WebKitDOMHTMLScriptElement* self, const gchar* value); | webkit_dom_html_script_element_set_event(WebKitDOMHTMLScriptElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_script_element_get_charset: | * webkit_dom_html_script_element_get_charset: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_script_element_get_charset(WebKitDOMHTMLScriptElement* self ); | webkit_dom_html_script_element_get_charset(WebKitDOMHTMLScriptElement* self ); | |||
/** | /** | |||
* webkit_dom_html_script_element_set_charset: | * webkit_dom_html_script_element_set_charset: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_script_element_set_charset(WebKitDOMHTMLScriptElement* self , const gchar* value); | webkit_dom_html_script_element_set_charset(WebKitDOMHTMLScriptElement* self , const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_script_element_get_async: | * webkit_dom_html_script_element_get_async: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_script_element_get_async(WebKitDOMHTMLScriptElement* self); | webkit_dom_html_script_element_get_async(WebKitDOMHTMLScriptElement* self); | |||
/** | /** | |||
* webkit_dom_html_script_element_set_async: | * webkit_dom_html_script_element_set_async: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_script_element_set_async(WebKitDOMHTMLScriptElement* self, gboolean value); | webkit_dom_html_script_element_set_async(WebKitDOMHTMLScriptElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_script_element_get_defer: | * webkit_dom_html_script_element_get_defer: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_script_element_get_defer(WebKitDOMHTMLScriptElement* self); | webkit_dom_html_script_element_get_defer(WebKitDOMHTMLScriptElement* self); | |||
/** | /** | |||
* webkit_dom_html_script_element_set_defer: | * webkit_dom_html_script_element_set_defer: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_script_element_set_defer(WebKitDOMHTMLScriptElement* self, gboolean value); | webkit_dom_html_script_element_set_defer(WebKitDOMHTMLScriptElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_script_element_get_src: | * webkit_dom_html_script_element_get_src: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_script_element_get_src(WebKitDOMHTMLScriptElement* self); | webkit_dom_html_script_element_get_src(WebKitDOMHTMLScriptElement* self); | |||
/** | /** | |||
* webkit_dom_html_script_element_set_src: | * webkit_dom_html_script_element_set_src: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_script_element_set_src(WebKitDOMHTMLScriptElement* self, co nst gchar* value); | webkit_dom_html_script_element_set_src(WebKitDOMHTMLScriptElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_script_element_get_cross_origin: | * webkit_dom_html_script_element_get_cross_origin: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_script_element_get_cross_origin(WebKitDOMHTMLScriptElement* self); | webkit_dom_html_script_element_get_cross_origin(WebKitDOMHTMLScriptElement* self); | |||
/** | /** | |||
* webkit_dom_html_script_element_set_cross_origin: | * webkit_dom_html_script_element_set_cross_origin: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_script_element_set_cross_origin(WebKitDOMHTMLScriptElement* self, const gchar* value); | webkit_dom_html_script_element_set_cross_origin(WebKitDOMHTMLScriptElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_script_element_get_nonce: | * webkit_dom_html_script_element_get_nonce: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_script_element_get_nonce(WebKitDOMHTMLScriptElement* self); | webkit_dom_html_script_element_get_nonce(WebKitDOMHTMLScriptElement* self); | |||
/** | /** | |||
* webkit_dom_html_script_element_set_nonce: | * webkit_dom_html_script_element_set_nonce: | |||
* @self: A #WebKitDOMHTMLScriptElement | * @self: A #WebKitDOMHTMLScriptElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_script_element_set_nonce(WebKitDOMHTMLScriptElement* self, const gchar* value); | webkit_dom_html_script_element_set_nonce(WebKitDOMHTMLScriptElement* self, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLScriptElement_h */ | #endif /* WebKitDOMHTMLScriptElement_h */ | |||
End of changes. 19 change blocks. | ||||
55 lines changed or deleted | 28 lines changed or added | |||
WebKitDOMHTMLSelectElement.h | WebKitDOMHTMLSelectElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLSelectElement_h | #ifndef WebKitDOMHTMLSelectElement_h | |||
#define WebKitDOMHTMLSelectElement_h | #define WebKitDOMHTMLSelectElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_select_element_get_type (void); | webkit_dom_html_select_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_select_element_item: | * webkit_dom_html_select_element_item: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_html_select_element_item(WebKitDOMHTMLSelectElement* self, gulon g index); | webkit_dom_html_select_element_item(WebKitDOMHTMLSelectElement* self, gulon g index); | |||
/** | /** | |||
* webkit_dom_html_select_element_named_item: | * webkit_dom_html_select_element_named_item: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* @name: A #gchar | * @name: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_html_select_element_named_item(WebKitDOMHTMLSelectElement* self, const gchar* name); | webkit_dom_html_select_element_named_item(WebKitDOMHTMLSelectElement* self, const gchar* name); | |||
/** | /** | |||
* webkit_dom_html_select_element_add: | * webkit_dom_html_select_element_add: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* @element: A #WebKitDOMHTMLElement | * @element: A #WebKitDOMHTMLElement | |||
* @before: A #WebKitDOMHTMLElement | * @before: A #WebKitDOMHTMLElement | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_select_element_add(WebKitDOMHTMLSelectElement* self, WebKit DOMHTMLElement* element, WebKitDOMHTMLElement* before, GError** error); | webkit_dom_html_select_element_add(WebKitDOMHTMLSelectElement* self, WebKit DOMHTMLElement* element, WebKitDOMHTMLElement* before, GError** error); | |||
/** | /** | |||
* webkit_dom_html_select_element_remove: | * webkit_dom_html_select_element_remove: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* @index: A #glong | * @index: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_select_element_remove(WebKitDOMHTMLSelectElement* self, glo ng index); | webkit_dom_html_select_element_remove(WebKitDOMHTMLSelectElement* self, glo ng index); | |||
/** | /** | |||
* webkit_dom_html_select_element_check_validity: | * webkit_dom_html_select_element_check_validity: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_select_element_check_validity(WebKitDOMHTMLSelectElement* s elf); | webkit_dom_html_select_element_check_validity(WebKitDOMHTMLSelectElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_select_element_set_custom_validity: | * webkit_dom_html_select_element_set_custom_validity: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* @error: A #gchar | * @error: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_select_element_set_custom_validity(WebKitDOMHTMLSelectEleme nt* self, const gchar* error); | webkit_dom_html_select_element_set_custom_validity(WebKitDOMHTMLSelectEleme nt* self, const gchar* error); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_autofocus: | * webkit_dom_html_select_element_get_autofocus: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_select_element_get_autofocus(WebKitDOMHTMLSelectElement* se lf); | webkit_dom_html_select_element_get_autofocus(WebKitDOMHTMLSelectElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_select_element_set_autofocus: | * webkit_dom_html_select_element_set_autofocus: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_select_element_set_autofocus(WebKitDOMHTMLSelectElement* se lf, gboolean value); | webkit_dom_html_select_element_set_autofocus(WebKitDOMHTMLSelectElement* se lf, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_disabled: | * webkit_dom_html_select_element_get_disabled: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_select_element_get_disabled(WebKitDOMHTMLSelectElement* sel f); | webkit_dom_html_select_element_get_disabled(WebKitDOMHTMLSelectElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_select_element_set_disabled: | * webkit_dom_html_select_element_set_disabled: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_select_element_set_disabled(WebKitDOMHTMLSelectElement* sel f, gboolean value); | webkit_dom_html_select_element_set_disabled(WebKitDOMHTMLSelectElement* sel f, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_form: | * webkit_dom_html_select_element_get_form: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLFormElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLFormElement* | WEBKIT_API WebKitDOMHTMLFormElement* | |||
webkit_dom_html_select_element_get_form(WebKitDOMHTMLSelectElement* self); | webkit_dom_html_select_element_get_form(WebKitDOMHTMLSelectElement* self); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_multiple: | * webkit_dom_html_select_element_get_multiple: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_select_element_get_multiple(WebKitDOMHTMLSelectElement* sel f); | webkit_dom_html_select_element_get_multiple(WebKitDOMHTMLSelectElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_select_element_set_multiple: | * webkit_dom_html_select_element_set_multiple: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_select_element_set_multiple(WebKitDOMHTMLSelectElement* sel f, gboolean value); | webkit_dom_html_select_element_set_multiple(WebKitDOMHTMLSelectElement* sel f, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_name: | * webkit_dom_html_select_element_get_name: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_select_element_get_name(WebKitDOMHTMLSelectElement* self); | webkit_dom_html_select_element_get_name(WebKitDOMHTMLSelectElement* self); | |||
/** | /** | |||
* webkit_dom_html_select_element_set_name: | * webkit_dom_html_select_element_set_name: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_select_element_set_name(WebKitDOMHTMLSelectElement* self, c onst gchar* value); | webkit_dom_html_select_element_set_name(WebKitDOMHTMLSelectElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_required: | * webkit_dom_html_select_element_get_required: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_select_element_get_required(WebKitDOMHTMLSelectElement* sel f); | webkit_dom_html_select_element_get_required(WebKitDOMHTMLSelectElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_select_element_set_required: | * webkit_dom_html_select_element_set_required: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_select_element_set_required(WebKitDOMHTMLSelectElement* sel f, gboolean value); | webkit_dom_html_select_element_set_required(WebKitDOMHTMLSelectElement* sel f, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_size: | * webkit_dom_html_select_element_get_size: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_select_element_get_size(WebKitDOMHTMLSelectElement* self); | webkit_dom_html_select_element_get_size(WebKitDOMHTMLSelectElement* self); | |||
/** | /** | |||
* webkit_dom_html_select_element_set_size: | * webkit_dom_html_select_element_set_size: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_select_element_set_size(WebKitDOMHTMLSelectElement* self, g long value); | webkit_dom_html_select_element_set_size(WebKitDOMHTMLSelectElement* self, g long value); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_options: | * webkit_dom_html_select_element_get_options: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLOptionsCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLOptionsCollection* | WEBKIT_API WebKitDOMHTMLOptionsCollection* | |||
webkit_dom_html_select_element_get_options(WebKitDOMHTMLSelectElement* self ); | webkit_dom_html_select_element_get_options(WebKitDOMHTMLSelectElement* self ); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_length: | * webkit_dom_html_select_element_get_length: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_select_element_get_length(WebKitDOMHTMLSelectElement* self) ; | webkit_dom_html_select_element_get_length(WebKitDOMHTMLSelectElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_select_element_set_length: | * webkit_dom_html_select_element_set_length: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* @value: A #gulong | * @value: A #gulong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_select_element_set_length(WebKitDOMHTMLSelectElement* self, gulong value, GError** error); | webkit_dom_html_select_element_set_length(WebKitDOMHTMLSelectElement* self, gulong value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_selected_options: | * webkit_dom_html_select_element_get_selected_options: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_html_select_element_get_selected_options(WebKitDOMHTMLSelectElem ent* self); | webkit_dom_html_select_element_get_selected_options(WebKitDOMHTMLSelectElem ent* self); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_selected_index: | * webkit_dom_html_select_element_get_selected_index: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_select_element_get_selected_index(WebKitDOMHTMLSelectElemen t* self); | webkit_dom_html_select_element_get_selected_index(WebKitDOMHTMLSelectElemen t* self); | |||
/** | /** | |||
* webkit_dom_html_select_element_set_selected_index: | * webkit_dom_html_select_element_set_selected_index: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_select_element_set_selected_index(WebKitDOMHTMLSelectElemen t* self, glong value); | webkit_dom_html_select_element_set_selected_index(WebKitDOMHTMLSelectElemen t* self, glong value); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_value: | * webkit_dom_html_select_element_get_value: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_select_element_get_value(WebKitDOMHTMLSelectElement* self); | webkit_dom_html_select_element_get_value(WebKitDOMHTMLSelectElement* self); | |||
/** | /** | |||
* webkit_dom_html_select_element_set_value: | * webkit_dom_html_select_element_set_value: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_select_element_set_value(WebKitDOMHTMLSelectElement* self, const gchar* value); | webkit_dom_html_select_element_set_value(WebKitDOMHTMLSelectElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_will_validate: | * webkit_dom_html_select_element_get_will_validate: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_select_element_get_will_validate(WebKitDOMHTMLSelectElement * self); | webkit_dom_html_select_element_get_will_validate(WebKitDOMHTMLSelectElement * self); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_validity: | * webkit_dom_html_select_element_get_validity: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMValidityState | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMValidityState* | WEBKIT_API WebKitDOMValidityState* | |||
webkit_dom_html_select_element_get_validity(WebKitDOMHTMLSelectElement* sel f); | webkit_dom_html_select_element_get_validity(WebKitDOMHTMLSelectElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_validation_message: | * webkit_dom_html_select_element_get_validation_message: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_select_element_get_validation_message(WebKitDOMHTMLSelectEl ement* self); | webkit_dom_html_select_element_get_validation_message(WebKitDOMHTMLSelectEl ement* self); | |||
/** | /** | |||
* webkit_dom_html_select_element_get_labels: | * webkit_dom_html_select_element_get_labels: | |||
* @self: A #WebKitDOMHTMLSelectElement | * @self: A #WebKitDOMHTMLSelectElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_html_select_element_get_labels(WebKitDOMHTMLSelectElement* self) ; | webkit_dom_html_select_element_get_labels(WebKitDOMHTMLSelectElement* self) ; | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLSelectElement_h */ | #endif /* WebKitDOMHTMLSelectElement_h */ | |||
End of changes. 32 change blocks. | ||||
81 lines changed or deleted | 38 lines changed or added | |||
WebKitDOMHTMLStyleElement.h | WebKitDOMHTMLStyleElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLStyleElement_h | #ifndef WebKitDOMHTMLStyleElement_h | |||
#define WebKitDOMHTMLStyleElement_h | #define WebKitDOMHTMLStyleElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_style_element_get_type (void); | webkit_dom_html_style_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_style_element_get_disabled: | * webkit_dom_html_style_element_get_disabled: | |||
* @self: A #WebKitDOMHTMLStyleElement | * @self: A #WebKitDOMHTMLStyleElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_style_element_get_disabled(WebKitDOMHTMLStyleElement* self) ; | webkit_dom_html_style_element_get_disabled(WebKitDOMHTMLStyleElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_style_element_set_disabled: | * webkit_dom_html_style_element_set_disabled: | |||
* @self: A #WebKitDOMHTMLStyleElement | * @self: A #WebKitDOMHTMLStyleElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_style_element_set_disabled(WebKitDOMHTMLStyleElement* self, gboolean value); | webkit_dom_html_style_element_set_disabled(WebKitDOMHTMLStyleElement* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_style_element_get_scoped: | ||||
* @self: A #WebKitDOMHTMLStyleElement | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gboolean | ||||
webkit_dom_html_style_element_get_scoped(WebKitDOMHTMLStyleElement* self); | ||||
/** | ||||
* webkit_dom_html_style_element_set_scoped: | ||||
* @self: A #WebKitDOMHTMLStyleElement | ||||
* @value: A #gboolean | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API void | ||||
webkit_dom_html_style_element_set_scoped(WebKitDOMHTMLStyleElement* self, g | ||||
boolean value); | ||||
/** | ||||
* webkit_dom_html_style_element_get_media: | * webkit_dom_html_style_element_get_media: | |||
* @self: A #WebKitDOMHTMLStyleElement | * @self: A #WebKitDOMHTMLStyleElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_style_element_get_media(WebKitDOMHTMLStyleElement* self); | webkit_dom_html_style_element_get_media(WebKitDOMHTMLStyleElement* self); | |||
/** | /** | |||
* webkit_dom_html_style_element_set_media: | * webkit_dom_html_style_element_set_media: | |||
* @self: A #WebKitDOMHTMLStyleElement | * @self: A #WebKitDOMHTMLStyleElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_style_element_set_media(WebKitDOMHTMLStyleElement* self, co nst gchar* value); | webkit_dom_html_style_element_set_media(WebKitDOMHTMLStyleElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_style_element_get_sheet: | * webkit_dom_html_style_element_get_sheet: | |||
* @self: A #WebKitDOMHTMLStyleElement | * @self: A #WebKitDOMHTMLStyleElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMStyleSheet | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMStyleSheet* | WEBKIT_API WebKitDOMStyleSheet* | |||
webkit_dom_html_style_element_get_sheet(WebKitDOMHTMLStyleElement* self); | webkit_dom_html_style_element_get_sheet(WebKitDOMHTMLStyleElement* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLStyleElement_h */ | #endif /* WebKitDOMHTMLStyleElement_h */ | |||
End of changes. 7 change blocks. | ||||
51 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMHTMLTableCaptionElement.h | WebKitDOMHTMLTableCaptionElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLTableCaptionElement_h | #ifndef WebKitDOMHTMLTableCaptionElement_h | |||
#define WebKitDOMHTMLTableCaptionElement_h | #define WebKitDOMHTMLTableCaptionElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_table_caption_element_get_type (void); | webkit_dom_html_table_caption_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_table_caption_element_get_align: | * webkit_dom_html_table_caption_element_get_align: | |||
* @self: A #WebKitDOMHTMLTableCaptionElement | * @self: A #WebKitDOMHTMLTableCaptionElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_caption_element_get_align(WebKitDOMHTMLTableCaptionEl ement* self); | webkit_dom_html_table_caption_element_get_align(WebKitDOMHTMLTableCaptionEl ement* self); | |||
/** | /** | |||
* webkit_dom_html_table_caption_element_set_align: | * webkit_dom_html_table_caption_element_set_align: | |||
* @self: A #WebKitDOMHTMLTableCaptionElement | * @self: A #WebKitDOMHTMLTableCaptionElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_caption_element_set_align(WebKitDOMHTMLTableCaptionEl ement* self, const gchar* value); | webkit_dom_html_table_caption_element_set_align(WebKitDOMHTMLTableCaptionEl ement* self, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLTableCaptionElement_h */ | #endif /* WebKitDOMHTMLTableCaptionElement_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMHTMLTableCellElement.h | WebKitDOMHTMLTableCellElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLTableCellElement_h | #ifndef WebKitDOMHTMLTableCellElement_h | |||
#define WebKitDOMHTMLTableCellElement_h | #define WebKitDOMHTMLTableCellElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_table_cell_element_get_type (void); | webkit_dom_html_table_cell_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_cell_index: | * webkit_dom_html_table_cell_element_get_cell_index: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_table_cell_element_get_cell_index(WebKitDOMHTMLTableCellEle ment* self); | webkit_dom_html_table_cell_element_get_cell_index(WebKitDOMHTMLTableCellEle ment* self); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_abbr: | * webkit_dom_html_table_cell_element_get_abbr: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_cell_element_get_abbr(WebKitDOMHTMLTableCellElement* self); | webkit_dom_html_table_cell_element_get_abbr(WebKitDOMHTMLTableCellElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_set_abbr: | * webkit_dom_html_table_cell_element_set_abbr: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_cell_element_set_abbr(WebKitDOMHTMLTableCellElement* self, const gchar* value); | webkit_dom_html_table_cell_element_set_abbr(WebKitDOMHTMLTableCellElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_align: | * webkit_dom_html_table_cell_element_get_align: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_cell_element_get_align(WebKitDOMHTMLTableCellElement* self); | webkit_dom_html_table_cell_element_get_align(WebKitDOMHTMLTableCellElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_set_align: | * webkit_dom_html_table_cell_element_set_align: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_cell_element_set_align(WebKitDOMHTMLTableCellElement* self, const gchar* value); | webkit_dom_html_table_cell_element_set_align(WebKitDOMHTMLTableCellElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_axis: | * webkit_dom_html_table_cell_element_get_axis: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_cell_element_get_axis(WebKitDOMHTMLTableCellElement* self); | webkit_dom_html_table_cell_element_get_axis(WebKitDOMHTMLTableCellElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_set_axis: | * webkit_dom_html_table_cell_element_set_axis: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_cell_element_set_axis(WebKitDOMHTMLTableCellElement* self, const gchar* value); | webkit_dom_html_table_cell_element_set_axis(WebKitDOMHTMLTableCellElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_bg_color: | * webkit_dom_html_table_cell_element_get_bg_color: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_cell_element_get_bg_color(WebKitDOMHTMLTableCellEleme nt* self); | webkit_dom_html_table_cell_element_get_bg_color(WebKitDOMHTMLTableCellEleme nt* self); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_set_bg_color: | * webkit_dom_html_table_cell_element_set_bg_color: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_cell_element_set_bg_color(WebKitDOMHTMLTableCellEleme nt* self, const gchar* value); | webkit_dom_html_table_cell_element_set_bg_color(WebKitDOMHTMLTableCellEleme nt* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_ch: | * webkit_dom_html_table_cell_element_get_ch: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_cell_element_get_ch(WebKitDOMHTMLTableCellElement* se lf); | webkit_dom_html_table_cell_element_get_ch(WebKitDOMHTMLTableCellElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_set_ch: | * webkit_dom_html_table_cell_element_set_ch: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_cell_element_set_ch(WebKitDOMHTMLTableCellElement* se lf, const gchar* value); | webkit_dom_html_table_cell_element_set_ch(WebKitDOMHTMLTableCellElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_ch_off: | * webkit_dom_html_table_cell_element_get_ch_off: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_cell_element_get_ch_off(WebKitDOMHTMLTableCellElement * self); | webkit_dom_html_table_cell_element_get_ch_off(WebKitDOMHTMLTableCellElement * self); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_set_ch_off: | * webkit_dom_html_table_cell_element_set_ch_off: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_cell_element_set_ch_off(WebKitDOMHTMLTableCellElement * self, const gchar* value); | webkit_dom_html_table_cell_element_set_ch_off(WebKitDOMHTMLTableCellElement * self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_col_span: | * webkit_dom_html_table_cell_element_get_col_span: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_table_cell_element_get_col_span(WebKitDOMHTMLTableCellEleme nt* self); | webkit_dom_html_table_cell_element_get_col_span(WebKitDOMHTMLTableCellEleme nt* self); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_set_col_span: | * webkit_dom_html_table_cell_element_set_col_span: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_cell_element_set_col_span(WebKitDOMHTMLTableCellEleme nt* self, glong value); | webkit_dom_html_table_cell_element_set_col_span(WebKitDOMHTMLTableCellEleme nt* self, glong value); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_headers: | * webkit_dom_html_table_cell_element_get_headers: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_cell_element_get_headers(WebKitDOMHTMLTableCellElemen t* self); | webkit_dom_html_table_cell_element_get_headers(WebKitDOMHTMLTableCellElemen t* self); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_set_headers: | * webkit_dom_html_table_cell_element_set_headers: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_cell_element_set_headers(WebKitDOMHTMLTableCellElemen t* self, const gchar* value); | webkit_dom_html_table_cell_element_set_headers(WebKitDOMHTMLTableCellElemen t* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_height: | * webkit_dom_html_table_cell_element_get_height: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_cell_element_get_height(WebKitDOMHTMLTableCellElement * self); | webkit_dom_html_table_cell_element_get_height(WebKitDOMHTMLTableCellElement * self); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_set_height: | * webkit_dom_html_table_cell_element_set_height: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_cell_element_set_height(WebKitDOMHTMLTableCellElement * self, const gchar* value); | webkit_dom_html_table_cell_element_set_height(WebKitDOMHTMLTableCellElement * self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_no_wrap: | * webkit_dom_html_table_cell_element_get_no_wrap: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_table_cell_element_get_no_wrap(WebKitDOMHTMLTableCellElemen t* self); | webkit_dom_html_table_cell_element_get_no_wrap(WebKitDOMHTMLTableCellElemen t* self); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_set_no_wrap: | * webkit_dom_html_table_cell_element_set_no_wrap: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_cell_element_set_no_wrap(WebKitDOMHTMLTableCellElemen t* self, gboolean value); | webkit_dom_html_table_cell_element_set_no_wrap(WebKitDOMHTMLTableCellElemen t* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_row_span: | * webkit_dom_html_table_cell_element_get_row_span: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_table_cell_element_get_row_span(WebKitDOMHTMLTableCellEleme nt* self); | webkit_dom_html_table_cell_element_get_row_span(WebKitDOMHTMLTableCellEleme nt* self); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_set_row_span: | * webkit_dom_html_table_cell_element_set_row_span: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_cell_element_set_row_span(WebKitDOMHTMLTableCellEleme nt* self, glong value); | webkit_dom_html_table_cell_element_set_row_span(WebKitDOMHTMLTableCellEleme nt* self, glong value); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_scope: | * webkit_dom_html_table_cell_element_get_scope: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_cell_element_get_scope(WebKitDOMHTMLTableCellElement* self); | webkit_dom_html_table_cell_element_get_scope(WebKitDOMHTMLTableCellElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_set_scope: | * webkit_dom_html_table_cell_element_set_scope: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_cell_element_set_scope(WebKitDOMHTMLTableCellElement* self, const gchar* value); | webkit_dom_html_table_cell_element_set_scope(WebKitDOMHTMLTableCellElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_v_align: | * webkit_dom_html_table_cell_element_get_v_align: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_cell_element_get_v_align(WebKitDOMHTMLTableCellElemen t* self); | webkit_dom_html_table_cell_element_get_v_align(WebKitDOMHTMLTableCellElemen t* self); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_set_v_align: | * webkit_dom_html_table_cell_element_set_v_align: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_cell_element_set_v_align(WebKitDOMHTMLTableCellElemen t* self, const gchar* value); | webkit_dom_html_table_cell_element_set_v_align(WebKitDOMHTMLTableCellElemen t* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_get_width: | * webkit_dom_html_table_cell_element_get_width: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_cell_element_get_width(WebKitDOMHTMLTableCellElement* self); | webkit_dom_html_table_cell_element_get_width(WebKitDOMHTMLTableCellElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_cell_element_set_width: | * webkit_dom_html_table_cell_element_set_width: | |||
* @self: A #WebKitDOMHTMLTableCellElement | * @self: A #WebKitDOMHTMLTableCellElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_cell_element_set_width(WebKitDOMHTMLTableCellElement* self, const gchar* value); | webkit_dom_html_table_cell_element_set_width(WebKitDOMHTMLTableCellElement* self, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLTableCellElement_h */ | #endif /* WebKitDOMHTMLTableCellElement_h */ | |||
End of changes. 30 change blocks. | ||||
77 lines changed or deleted | 34 lines changed or added | |||
WebKitDOMHTMLTableColElement.h | WebKitDOMHTMLTableColElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLTableColElement_h | #ifndef WebKitDOMHTMLTableColElement_h | |||
#define WebKitDOMHTMLTableColElement_h | #define WebKitDOMHTMLTableColElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_table_col_element_get_type (void); | webkit_dom_html_table_col_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_table_col_element_get_align: | * webkit_dom_html_table_col_element_get_align: | |||
* @self: A #WebKitDOMHTMLTableColElement | * @self: A #WebKitDOMHTMLTableColElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_col_element_get_align(WebKitDOMHTMLTableColElement* s elf); | webkit_dom_html_table_col_element_get_align(WebKitDOMHTMLTableColElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_table_col_element_set_align: | * webkit_dom_html_table_col_element_set_align: | |||
* @self: A #WebKitDOMHTMLTableColElement | * @self: A #WebKitDOMHTMLTableColElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_col_element_set_align(WebKitDOMHTMLTableColElement* s elf, const gchar* value); | webkit_dom_html_table_col_element_set_align(WebKitDOMHTMLTableColElement* s elf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_col_element_get_ch: | * webkit_dom_html_table_col_element_get_ch: | |||
* @self: A #WebKitDOMHTMLTableColElement | * @self: A #WebKitDOMHTMLTableColElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_col_element_get_ch(WebKitDOMHTMLTableColElement* self ); | webkit_dom_html_table_col_element_get_ch(WebKitDOMHTMLTableColElement* self ); | |||
/** | /** | |||
* webkit_dom_html_table_col_element_set_ch: | * webkit_dom_html_table_col_element_set_ch: | |||
* @self: A #WebKitDOMHTMLTableColElement | * @self: A #WebKitDOMHTMLTableColElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_col_element_set_ch(WebKitDOMHTMLTableColElement* self , const gchar* value); | webkit_dom_html_table_col_element_set_ch(WebKitDOMHTMLTableColElement* self , const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_col_element_get_ch_off: | * webkit_dom_html_table_col_element_get_ch_off: | |||
* @self: A #WebKitDOMHTMLTableColElement | * @self: A #WebKitDOMHTMLTableColElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_col_element_get_ch_off(WebKitDOMHTMLTableColElement* self); | webkit_dom_html_table_col_element_get_ch_off(WebKitDOMHTMLTableColElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_col_element_set_ch_off: | * webkit_dom_html_table_col_element_set_ch_off: | |||
* @self: A #WebKitDOMHTMLTableColElement | * @self: A #WebKitDOMHTMLTableColElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_col_element_set_ch_off(WebKitDOMHTMLTableColElement* self, const gchar* value); | webkit_dom_html_table_col_element_set_ch_off(WebKitDOMHTMLTableColElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_col_element_get_span: | * webkit_dom_html_table_col_element_get_span: | |||
* @self: A #WebKitDOMHTMLTableColElement | * @self: A #WebKitDOMHTMLTableColElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_table_col_element_get_span(WebKitDOMHTMLTableColElement* se lf); | webkit_dom_html_table_col_element_get_span(WebKitDOMHTMLTableColElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_table_col_element_set_span: | * webkit_dom_html_table_col_element_set_span: | |||
* @self: A #WebKitDOMHTMLTableColElement | * @self: A #WebKitDOMHTMLTableColElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_col_element_set_span(WebKitDOMHTMLTableColElement* se lf, glong value); | webkit_dom_html_table_col_element_set_span(WebKitDOMHTMLTableColElement* se lf, glong value); | |||
/** | /** | |||
* webkit_dom_html_table_col_element_get_v_align: | * webkit_dom_html_table_col_element_get_v_align: | |||
* @self: A #WebKitDOMHTMLTableColElement | * @self: A #WebKitDOMHTMLTableColElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_col_element_get_v_align(WebKitDOMHTMLTableColElement* self); | webkit_dom_html_table_col_element_get_v_align(WebKitDOMHTMLTableColElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_col_element_set_v_align: | * webkit_dom_html_table_col_element_set_v_align: | |||
* @self: A #WebKitDOMHTMLTableColElement | * @self: A #WebKitDOMHTMLTableColElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_col_element_set_v_align(WebKitDOMHTMLTableColElement* self, const gchar* value); | webkit_dom_html_table_col_element_set_v_align(WebKitDOMHTMLTableColElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_col_element_get_width: | * webkit_dom_html_table_col_element_get_width: | |||
* @self: A #WebKitDOMHTMLTableColElement | * @self: A #WebKitDOMHTMLTableColElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_col_element_get_width(WebKitDOMHTMLTableColElement* s elf); | webkit_dom_html_table_col_element_get_width(WebKitDOMHTMLTableColElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_table_col_element_set_width: | * webkit_dom_html_table_col_element_set_width: | |||
* @self: A #WebKitDOMHTMLTableColElement | * @self: A #WebKitDOMHTMLTableColElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_col_element_set_width(WebKitDOMHTMLTableColElement* s elf, const gchar* value); | webkit_dom_html_table_col_element_set_width(WebKitDOMHTMLTableColElement* s elf, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLTableColElement_h */ | #endif /* WebKitDOMHTMLTableColElement_h */ | |||
End of changes. 13 change blocks. | ||||
43 lines changed or deleted | 25 lines changed or added | |||
WebKitDOMHTMLTableElement.h | WebKitDOMHTMLTableElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLTableElement_h | #ifndef WebKitDOMHTMLTableElement_h | |||
#define WebKitDOMHTMLTableElement_h | #define WebKitDOMHTMLTableElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_table_element_get_type (void); | webkit_dom_html_table_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_table_element_create_t_head: | * webkit_dom_html_table_element_create_t_head: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLElement* | WEBKIT_API WebKitDOMHTMLElement* | |||
webkit_dom_html_table_element_create_t_head(WebKitDOMHTMLTableElement* self ); | webkit_dom_html_table_element_create_t_head(WebKitDOMHTMLTableElement* self ); | |||
/** | /** | |||
* webkit_dom_html_table_element_delete_t_head: | * webkit_dom_html_table_element_delete_t_head: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_delete_t_head(WebKitDOMHTMLTableElement* self ); | webkit_dom_html_table_element_delete_t_head(WebKitDOMHTMLTableElement* self ); | |||
/** | /** | |||
* webkit_dom_html_table_element_create_t_foot: | * webkit_dom_html_table_element_create_t_foot: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLElement* | WEBKIT_API WebKitDOMHTMLElement* | |||
webkit_dom_html_table_element_create_t_foot(WebKitDOMHTMLTableElement* self ); | webkit_dom_html_table_element_create_t_foot(WebKitDOMHTMLTableElement* self ); | |||
/** | /** | |||
* webkit_dom_html_table_element_delete_t_foot: | * webkit_dom_html_table_element_delete_t_foot: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_delete_t_foot(WebKitDOMHTMLTableElement* self ); | webkit_dom_html_table_element_delete_t_foot(WebKitDOMHTMLTableElement* self ); | |||
/** | /** | |||
* webkit_dom_html_table_element_create_t_body: | * webkit_dom_html_table_element_create_t_body: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLElement* | WEBKIT_API WebKitDOMHTMLElement* | |||
webkit_dom_html_table_element_create_t_body(WebKitDOMHTMLTableElement* self ); | webkit_dom_html_table_element_create_t_body(WebKitDOMHTMLTableElement* self ); | |||
/** | /** | |||
* webkit_dom_html_table_element_create_caption: | * webkit_dom_html_table_element_create_caption: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLElement* | WEBKIT_API WebKitDOMHTMLElement* | |||
webkit_dom_html_table_element_create_caption(WebKitDOMHTMLTableElement* sel f); | webkit_dom_html_table_element_create_caption(WebKitDOMHTMLTableElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_table_element_delete_caption: | * webkit_dom_html_table_element_delete_caption: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_delete_caption(WebKitDOMHTMLTableElement* sel f); | webkit_dom_html_table_element_delete_caption(WebKitDOMHTMLTableElement* sel f); | |||
/** | /** | |||
* webkit_dom_html_table_element_insert_row: | * webkit_dom_html_table_element_insert_row: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* @index: A #glong | * @index: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLElement* | WEBKIT_API WebKitDOMHTMLElement* | |||
webkit_dom_html_table_element_insert_row(WebKitDOMHTMLTableElement* self, g long index, GError** error); | webkit_dom_html_table_element_insert_row(WebKitDOMHTMLTableElement* self, g long index, GError** error); | |||
/** | /** | |||
* webkit_dom_html_table_element_delete_row: | * webkit_dom_html_table_element_delete_row: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* @index: A #glong | * @index: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_delete_row(WebKitDOMHTMLTableElement* self, g long index, GError** error); | webkit_dom_html_table_element_delete_row(WebKitDOMHTMLTableElement* self, g long index, GError** error); | |||
/** | /** | |||
* webkit_dom_html_table_element_get_caption: | * webkit_dom_html_table_element_get_caption: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLTableCaptionElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLTableCaptionElement* | WEBKIT_API WebKitDOMHTMLTableCaptionElement* | |||
webkit_dom_html_table_element_get_caption(WebKitDOMHTMLTableElement* self); | webkit_dom_html_table_element_get_caption(WebKitDOMHTMLTableElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_element_set_caption: | * webkit_dom_html_table_element_set_caption: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* @value: A #WebKitDOMHTMLTableCaptionElement | * @value: A #WebKitDOMHTMLTableCaptionElement | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_set_caption(WebKitDOMHTMLTableElement* self, WebKitDOMHTMLTableCaptionElement* value, GError** error); | webkit_dom_html_table_element_set_caption(WebKitDOMHTMLTableElement* self, WebKitDOMHTMLTableCaptionElement* value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_table_element_get_t_head: | * webkit_dom_html_table_element_get_t_head: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLTableSectionElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLTableSectionElement* | WEBKIT_API WebKitDOMHTMLTableSectionElement* | |||
webkit_dom_html_table_element_get_t_head(WebKitDOMHTMLTableElement* self); | webkit_dom_html_table_element_get_t_head(WebKitDOMHTMLTableElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_element_set_t_head: | * webkit_dom_html_table_element_set_t_head: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* @value: A #WebKitDOMHTMLTableSectionElement | * @value: A #WebKitDOMHTMLTableSectionElement | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_set_t_head(WebKitDOMHTMLTableElement* self, W ebKitDOMHTMLTableSectionElement* value, GError** error); | webkit_dom_html_table_element_set_t_head(WebKitDOMHTMLTableElement* self, W ebKitDOMHTMLTableSectionElement* value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_table_element_get_t_foot: | * webkit_dom_html_table_element_get_t_foot: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLTableSectionElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLTableSectionElement* | WEBKIT_API WebKitDOMHTMLTableSectionElement* | |||
webkit_dom_html_table_element_get_t_foot(WebKitDOMHTMLTableElement* self); | webkit_dom_html_table_element_get_t_foot(WebKitDOMHTMLTableElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_element_set_t_foot: | * webkit_dom_html_table_element_set_t_foot: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* @value: A #WebKitDOMHTMLTableSectionElement | * @value: A #WebKitDOMHTMLTableSectionElement | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_set_t_foot(WebKitDOMHTMLTableElement* self, W ebKitDOMHTMLTableSectionElement* value, GError** error); | webkit_dom_html_table_element_set_t_foot(WebKitDOMHTMLTableElement* self, W ebKitDOMHTMLTableSectionElement* value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_table_element_get_rows: | * webkit_dom_html_table_element_get_rows: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_html_table_element_get_rows(WebKitDOMHTMLTableElement* self); | webkit_dom_html_table_element_get_rows(WebKitDOMHTMLTableElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_element_get_t_bodies: | * webkit_dom_html_table_element_get_t_bodies: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_html_table_element_get_t_bodies(WebKitDOMHTMLTableElement* self) ; | webkit_dom_html_table_element_get_t_bodies(WebKitDOMHTMLTableElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_table_element_get_align: | * webkit_dom_html_table_element_get_align: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_element_get_align(WebKitDOMHTMLTableElement* self); | webkit_dom_html_table_element_get_align(WebKitDOMHTMLTableElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_element_set_align: | * webkit_dom_html_table_element_set_align: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_set_align(WebKitDOMHTMLTableElement* self, co nst gchar* value); | webkit_dom_html_table_element_set_align(WebKitDOMHTMLTableElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_element_get_bg_color: | * webkit_dom_html_table_element_get_bg_color: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_element_get_bg_color(WebKitDOMHTMLTableElement* self) ; | webkit_dom_html_table_element_get_bg_color(WebKitDOMHTMLTableElement* self) ; | |||
/** | /** | |||
* webkit_dom_html_table_element_set_bg_color: | * webkit_dom_html_table_element_set_bg_color: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_set_bg_color(WebKitDOMHTMLTableElement* self, const gchar* value); | webkit_dom_html_table_element_set_bg_color(WebKitDOMHTMLTableElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_element_get_border: | * webkit_dom_html_table_element_get_border: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_element_get_border(WebKitDOMHTMLTableElement* self); | webkit_dom_html_table_element_get_border(WebKitDOMHTMLTableElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_element_set_border: | * webkit_dom_html_table_element_set_border: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_set_border(WebKitDOMHTMLTableElement* self, c onst gchar* value); | webkit_dom_html_table_element_set_border(WebKitDOMHTMLTableElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_element_get_cell_padding: | * webkit_dom_html_table_element_get_cell_padding: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_element_get_cell_padding(WebKitDOMHTMLTableElement* s elf); | webkit_dom_html_table_element_get_cell_padding(WebKitDOMHTMLTableElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_table_element_set_cell_padding: | * webkit_dom_html_table_element_set_cell_padding: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_set_cell_padding(WebKitDOMHTMLTableElement* s elf, const gchar* value); | webkit_dom_html_table_element_set_cell_padding(WebKitDOMHTMLTableElement* s elf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_element_get_cell_spacing: | * webkit_dom_html_table_element_get_cell_spacing: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_element_get_cell_spacing(WebKitDOMHTMLTableElement* s elf); | webkit_dom_html_table_element_get_cell_spacing(WebKitDOMHTMLTableElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_table_element_set_cell_spacing: | * webkit_dom_html_table_element_set_cell_spacing: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_set_cell_spacing(WebKitDOMHTMLTableElement* s elf, const gchar* value); | webkit_dom_html_table_element_set_cell_spacing(WebKitDOMHTMLTableElement* s elf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_element_get_frame: | * webkit_dom_html_table_element_get_frame: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_element_get_frame(WebKitDOMHTMLTableElement* self); | webkit_dom_html_table_element_get_frame(WebKitDOMHTMLTableElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_element_set_frame: | * webkit_dom_html_table_element_set_frame: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_set_frame(WebKitDOMHTMLTableElement* self, co nst gchar* value); | webkit_dom_html_table_element_set_frame(WebKitDOMHTMLTableElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_element_get_rules: | * webkit_dom_html_table_element_get_rules: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_element_get_rules(WebKitDOMHTMLTableElement* self); | webkit_dom_html_table_element_get_rules(WebKitDOMHTMLTableElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_element_set_rules: | * webkit_dom_html_table_element_set_rules: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_set_rules(WebKitDOMHTMLTableElement* self, co nst gchar* value); | webkit_dom_html_table_element_set_rules(WebKitDOMHTMLTableElement* self, co nst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_element_get_summary: | * webkit_dom_html_table_element_get_summary: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_element_get_summary(WebKitDOMHTMLTableElement* self); | webkit_dom_html_table_element_get_summary(WebKitDOMHTMLTableElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_element_set_summary: | * webkit_dom_html_table_element_set_summary: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_set_summary(WebKitDOMHTMLTableElement* self, const gchar* value); | webkit_dom_html_table_element_set_summary(WebKitDOMHTMLTableElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_element_get_width: | * webkit_dom_html_table_element_get_width: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_element_get_width(WebKitDOMHTMLTableElement* self); | webkit_dom_html_table_element_get_width(WebKitDOMHTMLTableElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_element_set_width: | * webkit_dom_html_table_element_set_width: | |||
* @self: A #WebKitDOMHTMLTableElement | * @self: A #WebKitDOMHTMLTableElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_element_set_width(WebKitDOMHTMLTableElement* self, co nst gchar* value); | webkit_dom_html_table_element_set_width(WebKitDOMHTMLTableElement* self, co nst gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLTableElement_h */ | #endif /* WebKitDOMHTMLTableElement_h */ | |||
End of changes. 36 change blocks. | ||||
89 lines changed or deleted | 38 lines changed or added | |||
WebKitDOMHTMLTableRowElement.h | WebKitDOMHTMLTableRowElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLTableRowElement_h | #ifndef WebKitDOMHTMLTableRowElement_h | |||
#define WebKitDOMHTMLTableRowElement_h | #define WebKitDOMHTMLTableRowElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 58 | skipping to change at line 58 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_table_row_element_get_type (void); | webkit_dom_html_table_row_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_insert_cell: | * webkit_dom_html_table_row_element_insert_cell: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* @index: A #glong | * @index: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLElement* | WEBKIT_API WebKitDOMHTMLElement* | |||
webkit_dom_html_table_row_element_insert_cell(WebKitDOMHTMLTableRowElement* self, glong index, GError** error); | webkit_dom_html_table_row_element_insert_cell(WebKitDOMHTMLTableRowElement* self, glong index, GError** error); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_delete_cell: | * webkit_dom_html_table_row_element_delete_cell: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* @index: A #glong | * @index: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_row_element_delete_cell(WebKitDOMHTMLTableRowElement* self, glong index, GError** error); | webkit_dom_html_table_row_element_delete_cell(WebKitDOMHTMLTableRowElement* self, glong index, GError** error); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_get_row_index: | * webkit_dom_html_table_row_element_get_row_index: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_table_row_element_get_row_index(WebKitDOMHTMLTableRowElemen t* self); | webkit_dom_html_table_row_element_get_row_index(WebKitDOMHTMLTableRowElemen t* self); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_get_section_row_index: | * webkit_dom_html_table_row_element_get_section_row_index: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_table_row_element_get_section_row_index(WebKitDOMHTMLTableR owElement* self); | webkit_dom_html_table_row_element_get_section_row_index(WebKitDOMHTMLTableR owElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_get_cells: | * webkit_dom_html_table_row_element_get_cells: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_html_table_row_element_get_cells(WebKitDOMHTMLTableRowElement* s elf); | webkit_dom_html_table_row_element_get_cells(WebKitDOMHTMLTableRowElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_get_align: | * webkit_dom_html_table_row_element_get_align: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_row_element_get_align(WebKitDOMHTMLTableRowElement* s elf); | webkit_dom_html_table_row_element_get_align(WebKitDOMHTMLTableRowElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_set_align: | * webkit_dom_html_table_row_element_set_align: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_row_element_set_align(WebKitDOMHTMLTableRowElement* s elf, const gchar* value); | webkit_dom_html_table_row_element_set_align(WebKitDOMHTMLTableRowElement* s elf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_get_bg_color: | * webkit_dom_html_table_row_element_get_bg_color: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_row_element_get_bg_color(WebKitDOMHTMLTableRowElement * self); | webkit_dom_html_table_row_element_get_bg_color(WebKitDOMHTMLTableRowElement * self); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_set_bg_color: | * webkit_dom_html_table_row_element_set_bg_color: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_row_element_set_bg_color(WebKitDOMHTMLTableRowElement * self, const gchar* value); | webkit_dom_html_table_row_element_set_bg_color(WebKitDOMHTMLTableRowElement * self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_get_ch: | * webkit_dom_html_table_row_element_get_ch: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_row_element_get_ch(WebKitDOMHTMLTableRowElement* self ); | webkit_dom_html_table_row_element_get_ch(WebKitDOMHTMLTableRowElement* self ); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_set_ch: | * webkit_dom_html_table_row_element_set_ch: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_row_element_set_ch(WebKitDOMHTMLTableRowElement* self , const gchar* value); | webkit_dom_html_table_row_element_set_ch(WebKitDOMHTMLTableRowElement* self , const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_get_ch_off: | * webkit_dom_html_table_row_element_get_ch_off: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_row_element_get_ch_off(WebKitDOMHTMLTableRowElement* self); | webkit_dom_html_table_row_element_get_ch_off(WebKitDOMHTMLTableRowElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_set_ch_off: | * webkit_dom_html_table_row_element_set_ch_off: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_row_element_set_ch_off(WebKitDOMHTMLTableRowElement* self, const gchar* value); | webkit_dom_html_table_row_element_set_ch_off(WebKitDOMHTMLTableRowElement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_get_v_align: | * webkit_dom_html_table_row_element_get_v_align: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_row_element_get_v_align(WebKitDOMHTMLTableRowElement* self); | webkit_dom_html_table_row_element_get_v_align(WebKitDOMHTMLTableRowElement* self); | |||
/** | /** | |||
* webkit_dom_html_table_row_element_set_v_align: | * webkit_dom_html_table_row_element_set_v_align: | |||
* @self: A #WebKitDOMHTMLTableRowElement | * @self: A #WebKitDOMHTMLTableRowElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_row_element_set_v_align(WebKitDOMHTMLTableRowElement* self, const gchar* value); | webkit_dom_html_table_row_element_set_v_align(WebKitDOMHTMLTableRowElement* self, const gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLTableRowElement_h */ | #endif /* WebKitDOMHTMLTableRowElement_h */ | |||
End of changes. 16 change blocks. | ||||
49 lines changed or deleted | 28 lines changed or added | |||
WebKitDOMHTMLTableSectionElement.h | WebKitDOMHTMLTableSectionElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLTableSectionElement_h | #ifndef WebKitDOMHTMLTableSectionElement_h | |||
#define WebKitDOMHTMLTableSectionElement_h | #define WebKitDOMHTMLTableSectionElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 58 | skipping to change at line 58 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_table_section_element_get_type (void); | webkit_dom_html_table_section_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_table_section_element_insert_row: | * webkit_dom_html_table_section_element_insert_row: | |||
* @self: A #WebKitDOMHTMLTableSectionElement | * @self: A #WebKitDOMHTMLTableSectionElement | |||
* @index: A #glong | * @index: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLElement* | WEBKIT_API WebKitDOMHTMLElement* | |||
webkit_dom_html_table_section_element_insert_row(WebKitDOMHTMLTableSectionE lement* self, glong index, GError** error); | webkit_dom_html_table_section_element_insert_row(WebKitDOMHTMLTableSectionE lement* self, glong index, GError** error); | |||
/** | /** | |||
* webkit_dom_html_table_section_element_delete_row: | * webkit_dom_html_table_section_element_delete_row: | |||
* @self: A #WebKitDOMHTMLTableSectionElement | * @self: A #WebKitDOMHTMLTableSectionElement | |||
* @index: A #glong | * @index: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_section_element_delete_row(WebKitDOMHTMLTableSectionE lement* self, glong index, GError** error); | webkit_dom_html_table_section_element_delete_row(WebKitDOMHTMLTableSectionE lement* self, glong index, GError** error); | |||
/** | /** | |||
* webkit_dom_html_table_section_element_get_align: | * webkit_dom_html_table_section_element_get_align: | |||
* @self: A #WebKitDOMHTMLTableSectionElement | * @self: A #WebKitDOMHTMLTableSectionElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_section_element_get_align(WebKitDOMHTMLTableSectionEl ement* self); | webkit_dom_html_table_section_element_get_align(WebKitDOMHTMLTableSectionEl ement* self); | |||
/** | /** | |||
* webkit_dom_html_table_section_element_set_align: | * webkit_dom_html_table_section_element_set_align: | |||
* @self: A #WebKitDOMHTMLTableSectionElement | * @self: A #WebKitDOMHTMLTableSectionElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_section_element_set_align(WebKitDOMHTMLTableSectionEl ement* self, const gchar* value); | webkit_dom_html_table_section_element_set_align(WebKitDOMHTMLTableSectionEl ement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_section_element_get_ch: | * webkit_dom_html_table_section_element_get_ch: | |||
* @self: A #WebKitDOMHTMLTableSectionElement | * @self: A #WebKitDOMHTMLTableSectionElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_section_element_get_ch(WebKitDOMHTMLTableSectionEleme nt* self); | webkit_dom_html_table_section_element_get_ch(WebKitDOMHTMLTableSectionEleme nt* self); | |||
/** | /** | |||
* webkit_dom_html_table_section_element_set_ch: | * webkit_dom_html_table_section_element_set_ch: | |||
* @self: A #WebKitDOMHTMLTableSectionElement | * @self: A #WebKitDOMHTMLTableSectionElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_section_element_set_ch(WebKitDOMHTMLTableSectionEleme nt* self, const gchar* value); | webkit_dom_html_table_section_element_set_ch(WebKitDOMHTMLTableSectionEleme nt* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_section_element_get_ch_off: | * webkit_dom_html_table_section_element_get_ch_off: | |||
* @self: A #WebKitDOMHTMLTableSectionElement | * @self: A #WebKitDOMHTMLTableSectionElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_section_element_get_ch_off(WebKitDOMHTMLTableSectionE lement* self); | webkit_dom_html_table_section_element_get_ch_off(WebKitDOMHTMLTableSectionE lement* self); | |||
/** | /** | |||
* webkit_dom_html_table_section_element_set_ch_off: | * webkit_dom_html_table_section_element_set_ch_off: | |||
* @self: A #WebKitDOMHTMLTableSectionElement | * @self: A #WebKitDOMHTMLTableSectionElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_section_element_set_ch_off(WebKitDOMHTMLTableSectionE lement* self, const gchar* value); | webkit_dom_html_table_section_element_set_ch_off(WebKitDOMHTMLTableSectionE lement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_section_element_get_v_align: | * webkit_dom_html_table_section_element_get_v_align: | |||
* @self: A #WebKitDOMHTMLTableSectionElement | * @self: A #WebKitDOMHTMLTableSectionElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_table_section_element_get_v_align(WebKitDOMHTMLTableSection Element* self); | webkit_dom_html_table_section_element_get_v_align(WebKitDOMHTMLTableSection Element* self); | |||
/** | /** | |||
* webkit_dom_html_table_section_element_set_v_align: | * webkit_dom_html_table_section_element_set_v_align: | |||
* @self: A #WebKitDOMHTMLTableSectionElement | * @self: A #WebKitDOMHTMLTableSectionElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_table_section_element_set_v_align(WebKitDOMHTMLTableSection Element* self, const gchar* value); | webkit_dom_html_table_section_element_set_v_align(WebKitDOMHTMLTableSection Element* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_table_section_element_get_rows: | * webkit_dom_html_table_section_element_get_rows: | |||
* @self: A #WebKitDOMHTMLTableSectionElement | * @self: A #WebKitDOMHTMLTableSectionElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLCollection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLCollection* | WEBKIT_API WebKitDOMHTMLCollection* | |||
webkit_dom_html_table_section_element_get_rows(WebKitDOMHTMLTableSectionEle ment* self); | webkit_dom_html_table_section_element_get_rows(WebKitDOMHTMLTableSectionEle ment* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLTableSectionElement_h */ | #endif /* WebKitDOMHTMLTableSectionElement_h */ | |||
End of changes. 12 change blocks. | ||||
41 lines changed or deleted | 25 lines changed or added | |||
WebKitDOMHTMLTextAreaElement.h | WebKitDOMHTMLTextAreaElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLTextAreaElement_h | #ifndef WebKitDOMHTMLTextAreaElement_h | |||
#define WebKitDOMHTMLTextAreaElement_h | #define WebKitDOMHTMLTextAreaElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_text_area_element_get_type (void); | webkit_dom_html_text_area_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_check_validity: | * webkit_dom_html_text_area_element_check_validity: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_text_area_element_check_validity(WebKitDOMHTMLTextAreaEleme nt* self); | webkit_dom_html_text_area_element_check_validity(WebKitDOMHTMLTextAreaEleme nt* self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_custom_validity: | * webkit_dom_html_text_area_element_set_custom_validity: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @error: A #gchar | * @error: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_custom_validity(WebKitDOMHTMLTextArea Element* self, const gchar* error); | webkit_dom_html_text_area_element_set_custom_validity(WebKitDOMHTMLTextArea Element* self, const gchar* error); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_select: | * webkit_dom_html_text_area_element_select: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_select(WebKitDOMHTMLTextAreaElement* self ); | webkit_dom_html_text_area_element_select(WebKitDOMHTMLTextAreaElement* self ); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_range_text: | * webkit_dom_html_text_area_element_set_range_text: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @replacement: A #gchar | * @replacement: A #gchar | |||
* @start: A #gulong | * @start: A #gulong | |||
* @end: A #gulong | * @end: A #gulong | |||
* @selectionMode: A #gchar | * @selectionMode: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_range_text(WebKitDOMHTMLTextAreaEleme nt* self, const gchar* replacement, gulong start, gulong end, const gchar* selectionMode, GError** error); | webkit_dom_html_text_area_element_set_range_text(WebKitDOMHTMLTextAreaEleme nt* self, const gchar* replacement, gulong start, gulong end, const gchar* selectionMode, GError** error); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_selection_range: | * webkit_dom_html_text_area_element_set_selection_range: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @start: A #glong | * @start: A #glong | |||
* @end: A #glong | * @end: A #glong | |||
* @direction: A #gchar | * @direction: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_selection_range(WebKitDOMHTMLTextArea Element* self, glong start, glong end, const gchar* direction); | webkit_dom_html_text_area_element_set_selection_range(WebKitDOMHTMLTextArea Element* self, glong start, glong end, const gchar* direction); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_autofocus: | * webkit_dom_html_text_area_element_get_autofocus: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_text_area_element_get_autofocus(WebKitDOMHTMLTextAreaElemen t* self); | webkit_dom_html_text_area_element_get_autofocus(WebKitDOMHTMLTextAreaElemen t* self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_autofocus: | * webkit_dom_html_text_area_element_set_autofocus: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_autofocus(WebKitDOMHTMLTextAreaElemen t* self, gboolean value); | webkit_dom_html_text_area_element_set_autofocus(WebKitDOMHTMLTextAreaElemen t* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_cols: | * webkit_dom_html_text_area_element_get_cols: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_text_area_element_get_cols(WebKitDOMHTMLTextAreaElement* se lf); | webkit_dom_html_text_area_element_get_cols(WebKitDOMHTMLTextAreaElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_cols: | * webkit_dom_html_text_area_element_set_cols: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_cols(WebKitDOMHTMLTextAreaElement* se lf, glong value); | webkit_dom_html_text_area_element_set_cols(WebKitDOMHTMLTextAreaElement* se lf, glong value); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_dir_name: | * webkit_dom_html_text_area_element_get_dir_name: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_text_area_element_get_dir_name(WebKitDOMHTMLTextAreaElement * self); | webkit_dom_html_text_area_element_get_dir_name(WebKitDOMHTMLTextAreaElement * self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_dir_name: | * webkit_dom_html_text_area_element_set_dir_name: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_dir_name(WebKitDOMHTMLTextAreaElement * self, const gchar* value); | webkit_dom_html_text_area_element_set_dir_name(WebKitDOMHTMLTextAreaElement * self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_disabled: | * webkit_dom_html_text_area_element_get_disabled: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_text_area_element_get_disabled(WebKitDOMHTMLTextAreaElement * self); | webkit_dom_html_text_area_element_get_disabled(WebKitDOMHTMLTextAreaElement * self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_disabled: | * webkit_dom_html_text_area_element_set_disabled: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_disabled(WebKitDOMHTMLTextAreaElement * self, gboolean value); | webkit_dom_html_text_area_element_set_disabled(WebKitDOMHTMLTextAreaElement * self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_form: | * webkit_dom_html_text_area_element_get_form: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMHTMLFormElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMHTMLFormElement* | WEBKIT_API WebKitDOMHTMLFormElement* | |||
webkit_dom_html_text_area_element_get_form(WebKitDOMHTMLTextAreaElement* se lf); | webkit_dom_html_text_area_element_get_form(WebKitDOMHTMLTextAreaElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_max_length: | * webkit_dom_html_text_area_element_get_max_length: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_text_area_element_get_max_length(WebKitDOMHTMLTextAreaEleme nt* self); | webkit_dom_html_text_area_element_get_max_length(WebKitDOMHTMLTextAreaEleme nt* self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_max_length: | * webkit_dom_html_text_area_element_set_max_length: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #glong | * @value: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_max_length(WebKitDOMHTMLTextAreaEleme nt* self, glong value, GError** error); | webkit_dom_html_text_area_element_set_max_length(WebKitDOMHTMLTextAreaEleme nt* self, glong value, GError** error); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_name: | * webkit_dom_html_text_area_element_get_name: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_text_area_element_get_name(WebKitDOMHTMLTextAreaElement* se lf); | webkit_dom_html_text_area_element_get_name(WebKitDOMHTMLTextAreaElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_name: | * webkit_dom_html_text_area_element_set_name: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_name(WebKitDOMHTMLTextAreaElement* se lf, const gchar* value); | webkit_dom_html_text_area_element_set_name(WebKitDOMHTMLTextAreaElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_placeholder: | * webkit_dom_html_text_area_element_get_placeholder: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_text_area_element_get_placeholder(WebKitDOMHTMLTextAreaElem ent* self); | webkit_dom_html_text_area_element_get_placeholder(WebKitDOMHTMLTextAreaElem ent* self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_placeholder: | * webkit_dom_html_text_area_element_set_placeholder: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_placeholder(WebKitDOMHTMLTextAreaElem ent* self, const gchar* value); | webkit_dom_html_text_area_element_set_placeholder(WebKitDOMHTMLTextAreaElem ent* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_read_only: | * webkit_dom_html_text_area_element_get_read_only: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_text_area_element_get_read_only(WebKitDOMHTMLTextAreaElemen t* self); | webkit_dom_html_text_area_element_get_read_only(WebKitDOMHTMLTextAreaElemen t* self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_read_only: | * webkit_dom_html_text_area_element_set_read_only: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_read_only(WebKitDOMHTMLTextAreaElemen t* self, gboolean value); | webkit_dom_html_text_area_element_set_read_only(WebKitDOMHTMLTextAreaElemen t* self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_required: | * webkit_dom_html_text_area_element_get_required: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_text_area_element_get_required(WebKitDOMHTMLTextAreaElement * self); | webkit_dom_html_text_area_element_get_required(WebKitDOMHTMLTextAreaElement * self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_required: | * webkit_dom_html_text_area_element_set_required: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_required(WebKitDOMHTMLTextAreaElement * self, gboolean value); | webkit_dom_html_text_area_element_set_required(WebKitDOMHTMLTextAreaElement * self, gboolean value); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_rows: | * webkit_dom_html_text_area_element_get_rows: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_text_area_element_get_rows(WebKitDOMHTMLTextAreaElement* se lf); | webkit_dom_html_text_area_element_get_rows(WebKitDOMHTMLTextAreaElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_rows: | * webkit_dom_html_text_area_element_set_rows: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_rows(WebKitDOMHTMLTextAreaElement* se lf, glong value); | webkit_dom_html_text_area_element_set_rows(WebKitDOMHTMLTextAreaElement* se lf, glong value); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_wrap: | * webkit_dom_html_text_area_element_get_wrap: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_text_area_element_get_wrap(WebKitDOMHTMLTextAreaElement* se lf); | webkit_dom_html_text_area_element_get_wrap(WebKitDOMHTMLTextAreaElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_wrap: | * webkit_dom_html_text_area_element_set_wrap: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_wrap(WebKitDOMHTMLTextAreaElement* se lf, const gchar* value); | webkit_dom_html_text_area_element_set_wrap(WebKitDOMHTMLTextAreaElement* se lf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_default_value: | * webkit_dom_html_text_area_element_get_default_value: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_text_area_element_get_default_value(WebKitDOMHTMLTextAreaEl ement* self); | webkit_dom_html_text_area_element_get_default_value(WebKitDOMHTMLTextAreaEl ement* self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_default_value: | * webkit_dom_html_text_area_element_set_default_value: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_default_value(WebKitDOMHTMLTextAreaEl ement* self, const gchar* value); | webkit_dom_html_text_area_element_set_default_value(WebKitDOMHTMLTextAreaEl ement* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_value: | * webkit_dom_html_text_area_element_get_value: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_text_area_element_get_value(WebKitDOMHTMLTextAreaElement* s elf); | webkit_dom_html_text_area_element_get_value(WebKitDOMHTMLTextAreaElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_value: | * webkit_dom_html_text_area_element_set_value: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_value(WebKitDOMHTMLTextAreaElement* s elf, const gchar* value); | webkit_dom_html_text_area_element_set_value(WebKitDOMHTMLTextAreaElement* s elf, const gchar* value); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_text_length: | * webkit_dom_html_text_area_element_get_text_length: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_text_area_element_get_text_length(WebKitDOMHTMLTextAreaElem ent* self); | webkit_dom_html_text_area_element_get_text_length(WebKitDOMHTMLTextAreaElem ent* self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_will_validate: | * webkit_dom_html_text_area_element_get_will_validate: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_text_area_element_get_will_validate(WebKitDOMHTMLTextAreaEl ement* self); | webkit_dom_html_text_area_element_get_will_validate(WebKitDOMHTMLTextAreaEl ement* self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_validity: | * webkit_dom_html_text_area_element_get_validity: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMValidityState | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMValidityState* | WEBKIT_API WebKitDOMValidityState* | |||
webkit_dom_html_text_area_element_get_validity(WebKitDOMHTMLTextAreaElement * self); | webkit_dom_html_text_area_element_get_validity(WebKitDOMHTMLTextAreaElement * self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_validation_message: | * webkit_dom_html_text_area_element_get_validation_message: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_text_area_element_get_validation_message(WebKitDOMHTMLTextA reaElement* self); | webkit_dom_html_text_area_element_get_validation_message(WebKitDOMHTMLTextA reaElement* self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_labels: | * webkit_dom_html_text_area_element_get_labels: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_html_text_area_element_get_labels(WebKitDOMHTMLTextAreaElement* self); | webkit_dom_html_text_area_element_get_labels(WebKitDOMHTMLTextAreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_selection_start: | * webkit_dom_html_text_area_element_get_selection_start: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_text_area_element_get_selection_start(WebKitDOMHTMLTextArea Element* self); | webkit_dom_html_text_area_element_get_selection_start(WebKitDOMHTMLTextArea Element* self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_selection_start: | * webkit_dom_html_text_area_element_set_selection_start: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_selection_start(WebKitDOMHTMLTextArea Element* self, glong value); | webkit_dom_html_text_area_element_set_selection_start(WebKitDOMHTMLTextArea Element* self, glong value); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_selection_end: | * webkit_dom_html_text_area_element_get_selection_end: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_html_text_area_element_get_selection_end(WebKitDOMHTMLTextAreaEl ement* self); | webkit_dom_html_text_area_element_get_selection_end(WebKitDOMHTMLTextAreaEl ement* self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_selection_end: | * webkit_dom_html_text_area_element_set_selection_end: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #glong | * @value: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_selection_end(WebKitDOMHTMLTextAreaEl ement* self, glong value); | webkit_dom_html_text_area_element_set_selection_end(WebKitDOMHTMLTextAreaEl ement* self, glong value); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_get_selection_direction: | * webkit_dom_html_text_area_element_get_selection_direction: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_text_area_element_get_selection_direction(WebKitDOMHTMLText AreaElement* self); | webkit_dom_html_text_area_element_get_selection_direction(WebKitDOMHTMLText AreaElement* self); | |||
/** | /** | |||
* webkit_dom_html_text_area_element_set_selection_direction: | * webkit_dom_html_text_area_element_set_selection_direction: | |||
* @self: A #WebKitDOMHTMLTextAreaElement | * @self: A #WebKitDOMHTMLTextAreaElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_text_area_element_set_selection_direction(WebKitDOMHTMLText AreaElement* self, const gchar* value); | webkit_dom_html_text_area_element_set_selection_direction(WebKitDOMHTMLText AreaElement* self, const gchar* value); | |||
/** | ||||
* webkit_dom_html_text_area_element_get_autocorrect: | ||||
* @self: A #WebKitDOMHTMLTextAreaElement | ||||
* | ||||
* Returns: A #gboolean | ||||
**/ | ||||
WEBKIT_API gboolean | ||||
webkit_dom_html_text_area_element_get_autocorrect(WebKitDOMHTMLTextAreaElem | ||||
ent* self); | ||||
/** | ||||
* webkit_dom_html_text_area_element_set_autocorrect: | ||||
* @self: A #WebKitDOMHTMLTextAreaElement | ||||
* @value: A #gboolean | ||||
* | ||||
**/ | ||||
WEBKIT_API void | ||||
webkit_dom_html_text_area_element_set_autocorrect(WebKitDOMHTMLTextAreaElem | ||||
ent* self, gboolean value); | ||||
/** | ||||
* webkit_dom_html_text_area_element_get_autocapitalize: | ||||
* @self: A #WebKitDOMHTMLTextAreaElement | ||||
* | ||||
* Returns: A #gchar | ||||
**/ | ||||
WEBKIT_API gchar* | ||||
webkit_dom_html_text_area_element_get_autocapitalize(WebKitDOMHTMLTextAreaE | ||||
lement* self); | ||||
/** | ||||
* webkit_dom_html_text_area_element_set_autocapitalize: | ||||
* @self: A #WebKitDOMHTMLTextAreaElement | ||||
* @value: A #gchar | ||||
* | ||||
**/ | ||||
WEBKIT_API void | ||||
webkit_dom_html_text_area_element_set_autocapitalize(WebKitDOMHTMLTextAreaE | ||||
lement* self, const gchar* value); | ||||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLTextAreaElement_h */ | #endif /* WebKitDOMHTMLTextAreaElement_h */ | |||
End of changes. 45 change blocks. | ||||
105 lines changed or deleted | 82 lines changed or added | |||
WebKitDOMHTMLTitleElement.h | WebKitDOMHTMLTitleElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLTitleElement_h | #ifndef WebKitDOMHTMLTitleElement_h | |||
#define WebKitDOMHTMLTitleElement_h | #define WebKitDOMHTMLTitleElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_title_element_get_type (void); | webkit_dom_html_title_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_title_element_get_text: | * webkit_dom_html_title_element_get_text: | |||
* @self: A #WebKitDOMHTMLTitleElement | * @self: A #WebKitDOMHTMLTitleElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_title_element_get_text(WebKitDOMHTMLTitleElement* self); | webkit_dom_html_title_element_get_text(WebKitDOMHTMLTitleElement* self); | |||
/** | /** | |||
* webkit_dom_html_title_element_set_text: | * webkit_dom_html_title_element_set_text: | |||
* @self: A #WebKitDOMHTMLTitleElement | * @self: A #WebKitDOMHTMLTitleElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_title_element_set_text(WebKitDOMHTMLTitleElement* self, con st gchar* value); | webkit_dom_html_title_element_set_text(WebKitDOMHTMLTitleElement* self, con st gchar* value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLTitleElement_h */ | #endif /* WebKitDOMHTMLTitleElement_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMHTMLUListElement.h | WebKitDOMHTMLUListElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLUListElement_h | #ifndef WebKitDOMHTMLUListElement_h | |||
#define WebKitDOMHTMLUListElement_h | #define WebKitDOMHTMLUListElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLElement.h> | #include <webkitdom/WebKitDOMHTMLElement.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMHTMLElementClass parent_class; | WebKitDOMHTMLElementClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_htmlu_list_element_get_type (void); | webkit_dom_htmlu_list_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_htmlu_list_element_get_compact: | * webkit_dom_htmlu_list_element_get_compact: | |||
* @self: A #WebKitDOMHTMLUListElement | * @self: A #WebKitDOMHTMLUListElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_htmlu_list_element_get_compact(WebKitDOMHTMLUListElement* self); | webkit_dom_htmlu_list_element_get_compact(WebKitDOMHTMLUListElement* self); | |||
/** | /** | |||
* webkit_dom_htmlu_list_element_set_compact: | * webkit_dom_htmlu_list_element_set_compact: | |||
* @self: A #WebKitDOMHTMLUListElement | * @self: A #WebKitDOMHTMLUListElement | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_htmlu_list_element_set_compact(WebKitDOMHTMLUListElement* self, gboolean value); | webkit_dom_htmlu_list_element_set_compact(WebKitDOMHTMLUListElement* self, gboolean value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLUListElement_h */ | #endif /* WebKitDOMHTMLUListElement_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMHTMLVideoElement.h | WebKitDOMHTMLVideoElement.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHTMLVideoElement_h | #ifndef WebKitDOMHTMLVideoElement_h | |||
#define WebKitDOMHTMLVideoElement_h | #define WebKitDOMHTMLVideoElement_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMHTMLMediaElement.h> | #include <webkitdom/WebKitDOMHTMLMediaElement.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_html_video_element_get_type (void); | webkit_dom_html_video_element_get_type (void); | |||
/** | /** | |||
* webkit_dom_html_video_element_webkit_enter_fullscreen: | * webkit_dom_html_video_element_webkit_enter_fullscreen: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_video_element_webkit_enter_fullscreen(WebKitDOMHTMLVideoEle ment* self, GError** error); | webkit_dom_html_video_element_webkit_enter_fullscreen(WebKitDOMHTMLVideoEle ment* self, GError** error); | |||
/** | /** | |||
* webkit_dom_html_video_element_webkit_exit_fullscreen: | * webkit_dom_html_video_element_webkit_exit_fullscreen: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_video_element_webkit_exit_fullscreen(WebKitDOMHTMLVideoElem ent* self); | webkit_dom_html_video_element_webkit_exit_fullscreen(WebKitDOMHTMLVideoElem ent* self); | |||
/** | /** | |||
* webkit_dom_html_video_element_webkit_enter_full_screen: | * webkit_dom_html_video_element_webkit_enter_full_screen: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_video_element_webkit_enter_full_screen(WebKitDOMHTMLVideoEl ement* self, GError** error); | webkit_dom_html_video_element_webkit_enter_full_screen(WebKitDOMHTMLVideoEl ement* self, GError** error); | |||
/** | /** | |||
* webkit_dom_html_video_element_webkit_exit_full_screen: | * webkit_dom_html_video_element_webkit_exit_full_screen: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_video_element_webkit_exit_full_screen(WebKitDOMHTMLVideoEle ment* self); | webkit_dom_html_video_element_webkit_exit_full_screen(WebKitDOMHTMLVideoEle ment* self); | |||
/** | /** | |||
* webkit_dom_html_video_element_get_width: | * webkit_dom_html_video_element_get_width: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_video_element_get_width(WebKitDOMHTMLVideoElement* self); | webkit_dom_html_video_element_get_width(WebKitDOMHTMLVideoElement* self); | |||
/** | /** | |||
* webkit_dom_html_video_element_set_width: | * webkit_dom_html_video_element_set_width: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* @value: A #gulong | * @value: A #gulong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_video_element_set_width(WebKitDOMHTMLVideoElement* self, gu long value); | webkit_dom_html_video_element_set_width(WebKitDOMHTMLVideoElement* self, gu long value); | |||
/** | /** | |||
* webkit_dom_html_video_element_get_height: | * webkit_dom_html_video_element_get_height: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_video_element_get_height(WebKitDOMHTMLVideoElement* self); | webkit_dom_html_video_element_get_height(WebKitDOMHTMLVideoElement* self); | |||
/** | /** | |||
* webkit_dom_html_video_element_set_height: | * webkit_dom_html_video_element_set_height: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* @value: A #gulong | * @value: A #gulong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_video_element_set_height(WebKitDOMHTMLVideoElement* self, g ulong value); | webkit_dom_html_video_element_set_height(WebKitDOMHTMLVideoElement* self, g ulong value); | |||
/** | /** | |||
* webkit_dom_html_video_element_get_video_width: | * webkit_dom_html_video_element_get_video_width: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_video_element_get_video_width(WebKitDOMHTMLVideoElement* se lf); | webkit_dom_html_video_element_get_video_width(WebKitDOMHTMLVideoElement* se lf); | |||
/** | /** | |||
* webkit_dom_html_video_element_get_video_height: | * webkit_dom_html_video_element_get_video_height: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_video_element_get_video_height(WebKitDOMHTMLVideoElement* s elf); | webkit_dom_html_video_element_get_video_height(WebKitDOMHTMLVideoElement* s elf); | |||
/** | /** | |||
* webkit_dom_html_video_element_get_poster: | * webkit_dom_html_video_element_get_poster: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_html_video_element_get_poster(WebKitDOMHTMLVideoElement* self); | webkit_dom_html_video_element_get_poster(WebKitDOMHTMLVideoElement* self); | |||
/** | /** | |||
* webkit_dom_html_video_element_set_poster: | * webkit_dom_html_video_element_set_poster: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_html_video_element_set_poster(WebKitDOMHTMLVideoElement* self, c onst gchar* value); | webkit_dom_html_video_element_set_poster(WebKitDOMHTMLVideoElement* self, c onst gchar* value); | |||
/** | /** | |||
* webkit_dom_html_video_element_get_webkit_supports_fullscreen: | * webkit_dom_html_video_element_get_webkit_supports_fullscreen: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_video_element_get_webkit_supports_fullscreen(WebKitDOMHTMLV ideoElement* self); | webkit_dom_html_video_element_get_webkit_supports_fullscreen(WebKitDOMHTMLV ideoElement* self); | |||
/** | /** | |||
* webkit_dom_html_video_element_get_webkit_displaying_fullscreen: | * webkit_dom_html_video_element_get_webkit_displaying_fullscreen: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_html_video_element_get_webkit_displaying_fullscreen(WebKitDOMHTM LVideoElement* self); | webkit_dom_html_video_element_get_webkit_displaying_fullscreen(WebKitDOMHTM LVideoElement* self); | |||
/** | /** | |||
* webkit_dom_html_video_element_get_webkit_decoded_frame_count: | * webkit_dom_html_video_element_get_webkit_wireless_video_playback_disable d: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
**/ | ||||
WEBKIT_API gboolean | ||||
webkit_dom_html_video_element_get_webkit_wireless_video_playback_disabled(W | ||||
ebKitDOMHTMLVideoElement* self); | ||||
/** | ||||
* webkit_dom_html_video_element_set_webkit_wireless_video_playback_disable | ||||
d: | ||||
* @self: A #WebKitDOMHTMLVideoElement | ||||
* @value: A #gboolean | ||||
* | * | |||
**/ | **/ | |||
WEBKIT_API void | ||||
webkit_dom_html_video_element_set_webkit_wireless_video_playback_disabled(W | ||||
ebKitDOMHTMLVideoElement* self, gboolean value); | ||||
/** | ||||
* webkit_dom_html_video_element_get_webkit_decoded_frame_count: | ||||
* @self: A #WebKitDOMHTMLVideoElement | ||||
* | ||||
* Returns: A #gulong | ||||
**/ | ||||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_video_element_get_webkit_decoded_frame_count(WebKitDOMHTMLV ideoElement* self); | webkit_dom_html_video_element_get_webkit_decoded_frame_count(WebKitDOMHTMLV ideoElement* self); | |||
/** | /** | |||
* webkit_dom_html_video_element_get_webkit_dropped_frame_count: | * webkit_dom_html_video_element_get_webkit_dropped_frame_count: | |||
* @self: A #WebKitDOMHTMLVideoElement | * @self: A #WebKitDOMHTMLVideoElement | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_html_video_element_get_webkit_dropped_frame_count(WebKitDOMHTMLV ideoElement* self); | webkit_dom_html_video_element_get_webkit_dropped_frame_count(WebKitDOMHTMLV ideoElement* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHTMLVideoElement_h */ | #endif /* WebKitDOMHTMLVideoElement_h */ | |||
End of changes. 19 change blocks. | ||||
51 lines changed or deleted | 49 lines changed or added | |||
WebKitDOMHistory.h | WebKitDOMHistory.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMHistory_h | #ifndef WebKitDOMHistory_h | |||
#define WebKitDOMHistory_h | #define WebKitDOMHistory_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_history_get_type (void); | webkit_dom_history_get_type (void); | |||
/** | /** | |||
* webkit_dom_history_back: | * webkit_dom_history_back: | |||
* @self: A #WebKitDOMHistory | * @self: A #WebKitDOMHistory | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_history_back(WebKitDOMHistory* self); | webkit_dom_history_back(WebKitDOMHistory* self); | |||
/** | /** | |||
* webkit_dom_history_forward: | * webkit_dom_history_forward: | |||
* @self: A #WebKitDOMHistory | * @self: A #WebKitDOMHistory | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_history_forward(WebKitDOMHistory* self); | webkit_dom_history_forward(WebKitDOMHistory* self); | |||
/** | /** | |||
* webkit_dom_history_go: | * webkit_dom_history_go: | |||
* @self: A #WebKitDOMHistory | * @self: A #WebKitDOMHistory | |||
* @distance: A #glong | * @distance: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_history_go(WebKitDOMHistory* self, glong distance); | webkit_dom_history_go(WebKitDOMHistory* self, glong distance); | |||
/** | /** | |||
* webkit_dom_history_get_length: | * webkit_dom_history_get_length: | |||
* @self: A #WebKitDOMHistory | * @self: A #WebKitDOMHistory | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_history_get_length(WebKitDOMHistory* self); | webkit_dom_history_get_length(WebKitDOMHistory* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMHistory_h */ | #endif /* WebKitDOMHistory_h */ | |||
End of changes. 5 change blocks. | ||||
27 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMKeyboardEvent.h | WebKitDOMKeyboardEvent.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMKeyboardEvent_h | #ifndef WebKitDOMKeyboardEvent_h | |||
#define WebKitDOMKeyboardEvent_h | #define WebKitDOMKeyboardEvent_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMUIEvent.h> | #include <webkitdom/WebKitDOMUIEvent.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_keyboard_event_get_type (void); | webkit_dom_keyboard_event_get_type (void); | |||
/** | /** | |||
* webkit_dom_keyboard_event_get_modifier_state: | * webkit_dom_keyboard_event_get_modifier_state: | |||
* @self: A #WebKitDOMKeyboardEvent | * @self: A #WebKitDOMKeyboardEvent | |||
* @keyIdentifierArg: A #gchar | * @keyIdentifierArg: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_keyboard_event_get_modifier_state(WebKitDOMKeyboardEvent* self, const gchar* keyIdentifierArg); | webkit_dom_keyboard_event_get_modifier_state(WebKitDOMKeyboardEvent* self, const gchar* keyIdentifierArg); | |||
/** | /** | |||
* webkit_dom_keyboard_event_init_keyboard_event: | * webkit_dom_keyboard_event_init_keyboard_event: | |||
* @self: A #WebKitDOMKeyboardEvent | * @self: A #WebKitDOMKeyboardEvent | |||
* @type: A #gchar | * @type: A #gchar | |||
* @canBubble: A #gboolean | * @canBubble: A #gboolean | |||
* @cancelable: A #gboolean | * @cancelable: A #gboolean | |||
* @view: A #WebKitDOMDOMWindow | * @view: A #WebKitDOMDOMWindow | |||
* @keyIdentifier: A #gchar | * @keyIdentifier: A #gchar | |||
* @location: A #gulong | * @location: A #gulong | |||
* @ctrlKey: A #gboolean | * @ctrlKey: A #gboolean | |||
* @altKey: A #gboolean | * @altKey: A #gboolean | |||
* @shiftKey: A #gboolean | * @shiftKey: A #gboolean | |||
* @metaKey: A #gboolean | * @metaKey: A #gboolean | |||
* @altGraphKey: A #gboolean | * @altGraphKey: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_keyboard_event_init_keyboard_event(WebKitDOMKeyboardEvent* self, const gchar* type, gboolean canBubble, gboolean cancelable, WebKitDOMDOMWi ndow* view, const gchar* keyIdentifier, gulong location, gboolean ctrlKey, gboolean altKey, gboolean shiftKey, gboolean metaKey, gboolean altGraphKey) ; | webkit_dom_keyboard_event_init_keyboard_event(WebKitDOMKeyboardEvent* self, const gchar* type, gboolean canBubble, gboolean cancelable, WebKitDOMDOMWi ndow* view, const gchar* keyIdentifier, gulong location, gboolean ctrlKey, gboolean altKey, gboolean shiftKey, gboolean metaKey, gboolean altGraphKey) ; | |||
/** | /** | |||
* webkit_dom_keyboard_event_get_key_identifier: | * webkit_dom_keyboard_event_get_key_identifier: | |||
* @self: A #WebKitDOMKeyboardEvent | * @self: A #WebKitDOMKeyboardEvent | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_keyboard_event_get_key_identifier(WebKitDOMKeyboardEvent* self); | webkit_dom_keyboard_event_get_key_identifier(WebKitDOMKeyboardEvent* self); | |||
/** | /** | |||
* webkit_dom_keyboard_event_get_key_location: | * webkit_dom_keyboard_event_get_key_location: | |||
* @self: A #WebKitDOMKeyboardEvent | * @self: A #WebKitDOMKeyboardEvent | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_keyboard_event_get_key_location(WebKitDOMKeyboardEvent* self); | webkit_dom_keyboard_event_get_key_location(WebKitDOMKeyboardEvent* self); | |||
/** | /** | |||
* webkit_dom_keyboard_event_get_ctrl_key: | * webkit_dom_keyboard_event_get_ctrl_key: | |||
* @self: A #WebKitDOMKeyboardEvent | * @self: A #WebKitDOMKeyboardEvent | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_keyboard_event_get_ctrl_key(WebKitDOMKeyboardEvent* self); | webkit_dom_keyboard_event_get_ctrl_key(WebKitDOMKeyboardEvent* self); | |||
/** | /** | |||
* webkit_dom_keyboard_event_get_shift_key: | * webkit_dom_keyboard_event_get_shift_key: | |||
* @self: A #WebKitDOMKeyboardEvent | * @self: A #WebKitDOMKeyboardEvent | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_keyboard_event_get_shift_key(WebKitDOMKeyboardEvent* self); | webkit_dom_keyboard_event_get_shift_key(WebKitDOMKeyboardEvent* self); | |||
/** | /** | |||
* webkit_dom_keyboard_event_get_alt_key: | * webkit_dom_keyboard_event_get_alt_key: | |||
* @self: A #WebKitDOMKeyboardEvent | * @self: A #WebKitDOMKeyboardEvent | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_keyboard_event_get_alt_key(WebKitDOMKeyboardEvent* self); | webkit_dom_keyboard_event_get_alt_key(WebKitDOMKeyboardEvent* self); | |||
/** | /** | |||
* webkit_dom_keyboard_event_get_meta_key: | * webkit_dom_keyboard_event_get_meta_key: | |||
* @self: A #WebKitDOMKeyboardEvent | * @self: A #WebKitDOMKeyboardEvent | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_keyboard_event_get_meta_key(WebKitDOMKeyboardEvent* self); | webkit_dom_keyboard_event_get_meta_key(WebKitDOMKeyboardEvent* self); | |||
/** | /** | |||
* webkit_dom_keyboard_event_get_alt_graph_key: | * webkit_dom_keyboard_event_get_alt_graph_key: | |||
* @self: A #WebKitDOMKeyboardEvent | * @self: A #WebKitDOMKeyboardEvent | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_keyboard_event_get_alt_graph_key(WebKitDOMKeyboardEvent* self); | webkit_dom_keyboard_event_get_alt_graph_key(WebKitDOMKeyboardEvent* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMKeyboardEvent_h */ | #endif /* WebKitDOMKeyboardEvent_h */ | |||
End of changes. 10 change blocks. | ||||
37 lines changed or deleted | 27 lines changed or added | |||
WebKitDOMLocation.h | WebKitDOMLocation.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMLocation_h | #ifndef WebKitDOMLocation_h | |||
#define WebKitDOMLocation_h | #define WebKitDOMLocation_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 53 | skipping to change at line 53 | |||
}; | }; | |||
struct _WebKitDOMLocationClass { | struct _WebKitDOMLocationClass { | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_location_get_type (void); | webkit_dom_location_get_type (void); | |||
/** | /** | |||
* webkit_dom_location_get_origin: | * webkit_dom_location_get_href: | |||
* @self: A #WebKitDOMLocation | ||||
* | ||||
* Returns: A #gchar | ||||
**/ | ||||
WEBKIT_API gchar* | ||||
webkit_dom_location_get_href(WebKitDOMLocation* self); | ||||
/** | ||||
* webkit_dom_location_get_protocol: | ||||
* @self: A #WebKitDOMLocation | ||||
* | ||||
* Returns: A #gchar | ||||
**/ | ||||
WEBKIT_API gchar* | ||||
webkit_dom_location_get_protocol(WebKitDOMLocation* self); | ||||
/** | ||||
* webkit_dom_location_get_host: | ||||
* @self: A #WebKitDOMLocation | ||||
* | ||||
* Returns: A #gchar | ||||
**/ | ||||
WEBKIT_API gchar* | ||||
webkit_dom_location_get_host(WebKitDOMLocation* self); | ||||
/** | ||||
* webkit_dom_location_get_hostname: | ||||
* @self: A #WebKitDOMLocation | ||||
* | ||||
* Returns: A #gchar | ||||
**/ | ||||
WEBKIT_API gchar* | ||||
webkit_dom_location_get_hostname(WebKitDOMLocation* self); | ||||
/** | ||||
* webkit_dom_location_get_port: | ||||
* @self: A #WebKitDOMLocation | ||||
* | ||||
* Returns: A #gchar | ||||
**/ | ||||
WEBKIT_API gchar* | ||||
webkit_dom_location_get_port(WebKitDOMLocation* self); | ||||
/** | ||||
* webkit_dom_location_get_pathname: | ||||
* @self: A #WebKitDOMLocation | * @self: A #WebKitDOMLocation | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
**/ | ||||
WEBKIT_API gchar* | ||||
webkit_dom_location_get_pathname(WebKitDOMLocation* self); | ||||
/** | ||||
* webkit_dom_location_get_search: | ||||
* @self: A #WebKitDOMLocation | ||||
* | * | |||
* Returns: A #gchar | ||||
**/ | ||||
WEBKIT_API gchar* | ||||
webkit_dom_location_get_search(WebKitDOMLocation* self); | ||||
/** | ||||
* webkit_dom_location_get_hash: | ||||
* @self: A #WebKitDOMLocation | ||||
* | ||||
* Returns: A #gchar | ||||
**/ | ||||
WEBKIT_API gchar* | ||||
webkit_dom_location_get_hash(WebKitDOMLocation* self); | ||||
/** | ||||
* webkit_dom_location_get_origin: | ||||
* @self: A #WebKitDOMLocation | ||||
* | ||||
* Returns: A #gchar | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_location_get_origin(WebKitDOMLocation* self); | webkit_dom_location_get_origin(WebKitDOMLocation* self); | |||
/** | /** | |||
* webkit_dom_location_get_ancestor_origins: | * webkit_dom_location_get_ancestor_origins: | |||
* @self: A #WebKitDOMLocation | * @self: A #WebKitDOMLocation | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMStringList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMStringList* | WEBKIT_API WebKitDOMDOMStringList* | |||
webkit_dom_location_get_ancestor_origins(WebKitDOMLocation* self); | webkit_dom_location_get_ancestor_origins(WebKitDOMLocation* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMLocation_h */ | #endif /* WebKitDOMLocation_h */ | |||
End of changes. 5 change blocks. | ||||
23 lines changed or deleted | 93 lines changed or added | |||
WebKitDOMMediaError.h | WebKitDOMMediaError.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMMediaError_h | #ifndef WebKitDOMMediaError_h | |||
#define WebKitDOMMediaError_h | #define WebKitDOMMediaError_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_media_error_get_type (void); | webkit_dom_media_error_get_type (void); | |||
/** | /** | |||
* webkit_dom_media_error_get_code: | * webkit_dom_media_error_get_code: | |||
* @self: A #WebKitDOMMediaError | * @self: A #WebKitDOMMediaError | |||
* | * | |||
* Returns: | * Returns: A #gushort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gushort | WEBKIT_API gushort | |||
webkit_dom_media_error_get_code(WebKitDOMMediaError* self); | webkit_dom_media_error_get_code(WebKitDOMMediaError* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMMediaError_h */ | #endif /* WebKitDOMMediaError_h */ | |||
End of changes. 2 change blocks. | ||||
21 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMMediaList.h | WebKitDOMMediaList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMMediaList_h | #ifndef WebKitDOMMediaList_h | |||
#define WebKitDOMMediaList_h | #define WebKitDOMMediaList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_media_list_get_type (void); | webkit_dom_media_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_media_list_item: | * webkit_dom_media_list_item: | |||
* @self: A #WebKitDOMMediaList | * @self: A #WebKitDOMMediaList | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_media_list_item(WebKitDOMMediaList* self, gulong index); | webkit_dom_media_list_item(WebKitDOMMediaList* self, gulong index); | |||
/** | /** | |||
* webkit_dom_media_list_delete_medium: | * webkit_dom_media_list_delete_medium: | |||
* @self: A #WebKitDOMMediaList | * @self: A #WebKitDOMMediaList | |||
* @oldMedium: A #gchar | * @oldMedium: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_media_list_delete_medium(WebKitDOMMediaList* self, const gchar* oldMedium, GError** error); | webkit_dom_media_list_delete_medium(WebKitDOMMediaList* self, const gchar* oldMedium, GError** error); | |||
/** | /** | |||
* webkit_dom_media_list_append_medium: | * webkit_dom_media_list_append_medium: | |||
* @self: A #WebKitDOMMediaList | * @self: A #WebKitDOMMediaList | |||
* @newMedium: A #gchar | * @newMedium: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_media_list_append_medium(WebKitDOMMediaList* self, const gchar* newMedium, GError** error); | webkit_dom_media_list_append_medium(WebKitDOMMediaList* self, const gchar* newMedium, GError** error); | |||
/** | /** | |||
* webkit_dom_media_list_get_media_text: | * webkit_dom_media_list_get_media_text: | |||
* @self: A #WebKitDOMMediaList | * @self: A #WebKitDOMMediaList | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_media_list_get_media_text(WebKitDOMMediaList* self); | webkit_dom_media_list_get_media_text(WebKitDOMMediaList* self); | |||
/** | /** | |||
* webkit_dom_media_list_set_media_text: | * webkit_dom_media_list_set_media_text: | |||
* @self: A #WebKitDOMMediaList | * @self: A #WebKitDOMMediaList | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_media_list_set_media_text(WebKitDOMMediaList* self, const gchar* value, GError** error); | webkit_dom_media_list_set_media_text(WebKitDOMMediaList* self, const gchar* value, GError** error); | |||
/** | /** | |||
* webkit_dom_media_list_get_length: | * webkit_dom_media_list_get_length: | |||
* @self: A #WebKitDOMMediaList | * @self: A #WebKitDOMMediaList | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_media_list_get_length(WebKitDOMMediaList* self); | webkit_dom_media_list_get_length(WebKitDOMMediaList* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMMediaList_h */ | #endif /* WebKitDOMMediaList_h */ | |||
End of changes. 7 change blocks. | ||||
31 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMMediaQueryList.h | WebKitDOMMediaQueryList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMMediaQueryList_h | #ifndef WebKitDOMMediaQueryList_h | |||
#define WebKitDOMMediaQueryList_h | #define WebKitDOMMediaQueryList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_media_query_list_get_type (void); | webkit_dom_media_query_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_media_query_list_get_media: | * webkit_dom_media_query_list_get_media: | |||
* @self: A #WebKitDOMMediaQueryList | * @self: A #WebKitDOMMediaQueryList | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_media_query_list_get_media(WebKitDOMMediaQueryList* self); | webkit_dom_media_query_list_get_media(WebKitDOMMediaQueryList* self); | |||
/** | /** | |||
* webkit_dom_media_query_list_get_matches: | * webkit_dom_media_query_list_get_matches: | |||
* @self: A #WebKitDOMMediaQueryList | * @self: A #WebKitDOMMediaQueryList | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_media_query_list_get_matches(WebKitDOMMediaQueryList* self); | webkit_dom_media_query_list_get_matches(WebKitDOMMediaQueryList* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMMediaQueryList_h */ | #endif /* WebKitDOMMediaQueryList_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMMessagePort.h | WebKitDOMMessagePort.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMMessagePort_h | #ifndef WebKitDOMMessagePort_h | |||
#define WebKitDOMMessagePort_h | #define WebKitDOMMessagePort_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
End of changes. 1 change blocks. | ||||
19 lines changed or deleted | 19 lines changed or added | |||
WebKitDOMMouseEvent.h | WebKitDOMMouseEvent.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMMouseEvent_h | #ifndef WebKitDOMMouseEvent_h | |||
#define WebKitDOMMouseEvent_h | #define WebKitDOMMouseEvent_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMUIEvent.h> | #include <webkitdom/WebKitDOMUIEvent.h> | |||
skipping to change at line 71 | skipping to change at line 71 | |||
* @screenY: A #glong | * @screenY: A #glong | |||
* @clientX: A #glong | * @clientX: A #glong | |||
* @clientY: A #glong | * @clientY: A #glong | |||
* @ctrlKey: A #gboolean | * @ctrlKey: A #gboolean | |||
* @altKey: A #gboolean | * @altKey: A #gboolean | |||
* @shiftKey: A #gboolean | * @shiftKey: A #gboolean | |||
* @metaKey: A #gboolean | * @metaKey: A #gboolean | |||
* @button: A #gushort | * @button: A #gushort | |||
* @relatedTarget: A #WebKitDOMEventTarget | * @relatedTarget: A #WebKitDOMEventTarget | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_mouse_event_init_mouse_event(WebKitDOMMouseEvent* self, const gc har* type, gboolean canBubble, gboolean cancelable, WebKitDOMDOMWindow* vie w, glong detail, glong screenX, glong screenY, glong clientX, glong clientY , gboolean ctrlKey, gboolean altKey, gboolean shiftKey, gboolean metaKey, g ushort button, WebKitDOMEventTarget* relatedTarget); | webkit_dom_mouse_event_init_mouse_event(WebKitDOMMouseEvent* self, const gc har* type, gboolean canBubble, gboolean cancelable, WebKitDOMDOMWindow* vie w, glong detail, glong screenX, glong screenY, glong clientX, glong clientY , gboolean ctrlKey, gboolean altKey, gboolean shiftKey, gboolean metaKey, g ushort button, WebKitDOMEventTarget* relatedTarget); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_screen_x: | * webkit_dom_mouse_event_get_screen_x: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_mouse_event_get_screen_x(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_screen_x(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_screen_y: | * webkit_dom_mouse_event_get_screen_y: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_mouse_event_get_screen_y(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_screen_y(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_client_x: | * webkit_dom_mouse_event_get_client_x: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_mouse_event_get_client_x(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_client_x(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_client_y: | * webkit_dom_mouse_event_get_client_y: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_mouse_event_get_client_y(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_client_y(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_ctrl_key: | * webkit_dom_mouse_event_get_ctrl_key: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_mouse_event_get_ctrl_key(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_ctrl_key(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_shift_key: | * webkit_dom_mouse_event_get_shift_key: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_mouse_event_get_shift_key(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_shift_key(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_alt_key: | * webkit_dom_mouse_event_get_alt_key: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_mouse_event_get_alt_key(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_alt_key(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_meta_key: | * webkit_dom_mouse_event_get_meta_key: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_mouse_event_get_meta_key(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_meta_key(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_button: | * webkit_dom_mouse_event_get_button: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #gushort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gushort | WEBKIT_API gushort | |||
webkit_dom_mouse_event_get_button(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_button(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_related_target: | * webkit_dom_mouse_event_get_related_target: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMEventTarget | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMEventTarget* | WEBKIT_API WebKitDOMEventTarget* | |||
webkit_dom_mouse_event_get_related_target(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_related_target(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_webkit_movement_x: | * webkit_dom_mouse_event_get_webkit_movement_x: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_mouse_event_get_webkit_movement_x(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_webkit_movement_x(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_webkit_movement_y: | * webkit_dom_mouse_event_get_webkit_movement_y: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_mouse_event_get_webkit_movement_y(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_webkit_movement_y(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_offset_x: | * webkit_dom_mouse_event_get_offset_x: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_mouse_event_get_offset_x(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_offset_x(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_offset_y: | * webkit_dom_mouse_event_get_offset_y: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_mouse_event_get_offset_y(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_offset_y(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_x: | * webkit_dom_mouse_event_get_x: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_mouse_event_get_x(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_x(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_y: | * webkit_dom_mouse_event_get_y: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_mouse_event_get_y(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_y(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_from_element: | * webkit_dom_mouse_event_get_from_element: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_mouse_event_get_from_element(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_from_element(WebKitDOMMouseEvent* self); | |||
/** | /** | |||
* webkit_dom_mouse_event_get_to_element: | * webkit_dom_mouse_event_get_to_element: | |||
* @self: A #WebKitDOMMouseEvent | * @self: A #WebKitDOMMouseEvent | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_mouse_event_get_to_element(WebKitDOMMouseEvent* self); | webkit_dom_mouse_event_get_to_element(WebKitDOMMouseEvent* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMMouseEvent_h */ | #endif /* WebKitDOMMouseEvent_h */ | |||
End of changes. 20 change blocks. | ||||
57 lines changed or deleted | 37 lines changed or added | |||
WebKitDOMNamedNodeMap.h | WebKitDOMNamedNodeMap.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMNamedNodeMap_h | #ifndef WebKitDOMNamedNodeMap_h | |||
#define WebKitDOMNamedNodeMap_h | #define WebKitDOMNamedNodeMap_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_named_node_map_get_type (void); | webkit_dom_named_node_map_get_type (void); | |||
/** | /** | |||
* webkit_dom_named_node_map_get_named_item: | * webkit_dom_named_node_map_get_named_item: | |||
* @self: A #WebKitDOMNamedNodeMap | * @self: A #WebKitDOMNamedNodeMap | |||
* @name: A #gchar | * @name: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_named_node_map_get_named_item(WebKitDOMNamedNodeMap* self, const gchar* name); | webkit_dom_named_node_map_get_named_item(WebKitDOMNamedNodeMap* self, const gchar* name); | |||
/** | /** | |||
* webkit_dom_named_node_map_set_named_item: | * webkit_dom_named_node_map_set_named_item: | |||
* @self: A #WebKitDOMNamedNodeMap | * @self: A #WebKitDOMNamedNodeMap | |||
* @node: A #WebKitDOMNode | * @node: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_named_node_map_set_named_item(WebKitDOMNamedNodeMap* self, WebKi tDOMNode* node, GError** error); | webkit_dom_named_node_map_set_named_item(WebKitDOMNamedNodeMap* self, WebKi tDOMNode* node, GError** error); | |||
/** | /** | |||
* webkit_dom_named_node_map_remove_named_item: | * webkit_dom_named_node_map_remove_named_item: | |||
* @self: A #WebKitDOMNamedNodeMap | * @self: A #WebKitDOMNamedNodeMap | |||
* @name: A #gchar | * @name: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_named_node_map_remove_named_item(WebKitDOMNamedNodeMap* self, co nst gchar* name, GError** error); | webkit_dom_named_node_map_remove_named_item(WebKitDOMNamedNodeMap* self, co nst gchar* name, GError** error); | |||
/** | /** | |||
* webkit_dom_named_node_map_item: | * webkit_dom_named_node_map_item: | |||
* @self: A #WebKitDOMNamedNodeMap | * @self: A #WebKitDOMNamedNodeMap | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_named_node_map_item(WebKitDOMNamedNodeMap* self, gulong index); | webkit_dom_named_node_map_item(WebKitDOMNamedNodeMap* self, gulong index); | |||
/** | /** | |||
* webkit_dom_named_node_map_get_named_item_ns: | * webkit_dom_named_node_map_get_named_item_ns: | |||
* @self: A #WebKitDOMNamedNodeMap | * @self: A #WebKitDOMNamedNodeMap | |||
* @namespaceURI: A #gchar | * @namespaceURI: A #gchar | |||
* @localName: A #gchar | * @localName: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_named_node_map_get_named_item_ns(WebKitDOMNamedNodeMap* self, co nst gchar* namespaceURI, const gchar* localName); | webkit_dom_named_node_map_get_named_item_ns(WebKitDOMNamedNodeMap* self, co nst gchar* namespaceURI, const gchar* localName); | |||
/** | /** | |||
* webkit_dom_named_node_map_set_named_item_ns: | * webkit_dom_named_node_map_set_named_item_ns: | |||
* @self: A #WebKitDOMNamedNodeMap | * @self: A #WebKitDOMNamedNodeMap | |||
* @node: A #WebKitDOMNode | * @node: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_named_node_map_set_named_item_ns(WebKitDOMNamedNodeMap* self, We bKitDOMNode* node, GError** error); | webkit_dom_named_node_map_set_named_item_ns(WebKitDOMNamedNodeMap* self, We bKitDOMNode* node, GError** error); | |||
/** | /** | |||
* webkit_dom_named_node_map_remove_named_item_ns: | * webkit_dom_named_node_map_remove_named_item_ns: | |||
* @self: A #WebKitDOMNamedNodeMap | * @self: A #WebKitDOMNamedNodeMap | |||
* @namespaceURI: A #gchar | * @namespaceURI: A #gchar | |||
* @localName: A #gchar | * @localName: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_named_node_map_remove_named_item_ns(WebKitDOMNamedNodeMap* self, const gchar* namespaceURI, const gchar* localName, GError** error); | webkit_dom_named_node_map_remove_named_item_ns(WebKitDOMNamedNodeMap* self, const gchar* namespaceURI, const gchar* localName, GError** error); | |||
/** | /** | |||
* webkit_dom_named_node_map_get_length: | * webkit_dom_named_node_map_get_length: | |||
* @self: A #WebKitDOMNamedNodeMap | * @self: A #WebKitDOMNamedNodeMap | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_named_node_map_get_length(WebKitDOMNamedNodeMap* self); | webkit_dom_named_node_map_get_length(WebKitDOMNamedNodeMap* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMNamedNodeMap_h */ | #endif /* WebKitDOMNamedNodeMap_h */ | |||
End of changes. 9 change blocks. | ||||
35 lines changed or deleted | 27 lines changed or added | |||
WebKitDOMNavigator.h | WebKitDOMNavigator.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMNavigator_h | #ifndef WebKitDOMNavigator_h | |||
#define WebKitDOMNavigator_h | #define WebKitDOMNavigator_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_navigator_get_type (void); | webkit_dom_navigator_get_type (void); | |||
/** | /** | |||
* webkit_dom_navigator_java_enabled: | * webkit_dom_navigator_java_enabled: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_navigator_java_enabled(WebKitDOMNavigator* self); | webkit_dom_navigator_java_enabled(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_storage_updates: | * webkit_dom_navigator_get_storage_updates: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_navigator_get_storage_updates(WebKitDOMNavigator* self); | webkit_dom_navigator_get_storage_updates(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_webkit_get_gamepads: | * webkit_dom_navigator_webkit_get_gamepads: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMGamepadList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMGamepadList* | WEBKIT_API WebKitDOMGamepadList* | |||
webkit_dom_navigator_webkit_get_gamepads(WebKitDOMNavigator* self); | webkit_dom_navigator_webkit_get_gamepads(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_register_protocol_handler: | * webkit_dom_navigator_register_protocol_handler: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* @scheme: A #gchar | * @scheme: A #gchar | |||
* @url: A #gchar | * @url: A #gchar | |||
* @title: A #gchar | * @title: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_navigator_register_protocol_handler(WebKitDOMNavigator* self, co nst gchar* scheme, const gchar* url, const gchar* title, GError** error); | webkit_dom_navigator_register_protocol_handler(WebKitDOMNavigator* self, co nst gchar* scheme, const gchar* url, const gchar* title, GError** error); | |||
/** | /** | |||
* webkit_dom_navigator_is_protocol_handler_registered: | * webkit_dom_navigator_is_protocol_handler_registered: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* @scheme: A #gchar | * @scheme: A #gchar | |||
* @url: A #gchar | * @url: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_navigator_is_protocol_handler_registered(WebKitDOMNavigator* sel f, const gchar* scheme, const gchar* url, GError** error); | webkit_dom_navigator_is_protocol_handler_registered(WebKitDOMNavigator* sel f, const gchar* scheme, const gchar* url, GError** error); | |||
/** | /** | |||
* webkit_dom_navigator_unregister_protocol_handler: | * webkit_dom_navigator_unregister_protocol_handler: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* @scheme: A #gchar | * @scheme: A #gchar | |||
* @url: A #gchar | * @url: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_navigator_unregister_protocol_handler(WebKitDOMNavigator* self, const gchar* scheme, const gchar* url, GError** error); | webkit_dom_navigator_unregister_protocol_handler(WebKitDOMNavigator* self, const gchar* scheme, const gchar* url, GError** error); | |||
/** | /** | |||
* webkit_dom_navigator_get_app_code_name: | * webkit_dom_navigator_get_app_code_name: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_navigator_get_app_code_name(WebKitDOMNavigator* self); | webkit_dom_navigator_get_app_code_name(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_app_name: | * webkit_dom_navigator_get_app_name: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_navigator_get_app_name(WebKitDOMNavigator* self); | webkit_dom_navigator_get_app_name(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_app_version: | * webkit_dom_navigator_get_app_version: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_navigator_get_app_version(WebKitDOMNavigator* self); | webkit_dom_navigator_get_app_version(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_language: | * webkit_dom_navigator_get_language: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_navigator_get_language(WebKitDOMNavigator* self); | webkit_dom_navigator_get_language(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_user_agent: | * webkit_dom_navigator_get_user_agent: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_navigator_get_user_agent(WebKitDOMNavigator* self); | webkit_dom_navigator_get_user_agent(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_platform: | * webkit_dom_navigator_get_platform: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_navigator_get_platform(WebKitDOMNavigator* self); | webkit_dom_navigator_get_platform(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_plugins: | * webkit_dom_navigator_get_plugins: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMPluginArray | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMPluginArray* | WEBKIT_API WebKitDOMDOMPluginArray* | |||
webkit_dom_navigator_get_plugins(WebKitDOMNavigator* self); | webkit_dom_navigator_get_plugins(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_mime_types: | * webkit_dom_navigator_get_mime_types: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMMimeTypeArray | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMMimeTypeArray* | WEBKIT_API WebKitDOMDOMMimeTypeArray* | |||
webkit_dom_navigator_get_mime_types(WebKitDOMNavigator* self); | webkit_dom_navigator_get_mime_types(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_product: | * webkit_dom_navigator_get_product: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_navigator_get_product(WebKitDOMNavigator* self); | webkit_dom_navigator_get_product(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_product_sub: | * webkit_dom_navigator_get_product_sub: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_navigator_get_product_sub(WebKitDOMNavigator* self); | webkit_dom_navigator_get_product_sub(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_vendor: | * webkit_dom_navigator_get_vendor: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_navigator_get_vendor(WebKitDOMNavigator* self); | webkit_dom_navigator_get_vendor(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_vendor_sub: | * webkit_dom_navigator_get_vendor_sub: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_navigator_get_vendor_sub(WebKitDOMNavigator* self); | webkit_dom_navigator_get_vendor_sub(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_cookie_enabled: | * webkit_dom_navigator_get_cookie_enabled: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_navigator_get_cookie_enabled(WebKitDOMNavigator* self); | webkit_dom_navigator_get_cookie_enabled(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_on_line: | * webkit_dom_navigator_get_on_line: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_navigator_get_on_line(WebKitDOMNavigator* self); | webkit_dom_navigator_get_on_line(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_webkit_battery: | * webkit_dom_navigator_get_webkit_battery: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMBatteryManager | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMBatteryManager* | WEBKIT_API WebKitDOMBatteryManager* | |||
webkit_dom_navigator_get_webkit_battery(WebKitDOMNavigator* self); | webkit_dom_navigator_get_webkit_battery(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_geolocation: | * webkit_dom_navigator_get_geolocation: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMGeolocation | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMGeolocation* | WEBKIT_API WebKitDOMGeolocation* | |||
webkit_dom_navigator_get_geolocation(WebKitDOMNavigator* self); | webkit_dom_navigator_get_geolocation(WebKitDOMNavigator* self); | |||
/** | /** | |||
* webkit_dom_navigator_get_webkit_temporary_storage: | * webkit_dom_navigator_get_webkit_temporary_storage: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMStorageQuota | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMStorageQuota* | WEBKIT_API WebKitDOMStorageQuota* | |||
webkit_dom_navigator_get_webkit_temporary_storage(WebKitDOMNavigator* self) ; | webkit_dom_navigator_get_webkit_temporary_storage(WebKitDOMNavigator* self) ; | |||
/** | /** | |||
* webkit_dom_navigator_get_webkit_persistent_storage: | * webkit_dom_navigator_get_webkit_persistent_storage: | |||
* @self: A #WebKitDOMNavigator | * @self: A #WebKitDOMNavigator | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMStorageQuota | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMStorageQuota* | WEBKIT_API WebKitDOMStorageQuota* | |||
webkit_dom_navigator_get_webkit_persistent_storage(WebKitDOMNavigator* self ); | webkit_dom_navigator_get_webkit_persistent_storage(WebKitDOMNavigator* self ); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMNavigator_h */ | #endif /* WebKitDOMNavigator_h */ | |||
End of changes. 25 change blocks. | ||||
67 lines changed or deleted | 40 lines changed or added | |||
WebKitDOMNode.h | WebKitDOMNode.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMNode_h | #ifndef WebKitDOMNode_h | |||
#define WebKitDOMNode_h | #define WebKitDOMNode_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 59 | skipping to change at line 59 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_node_get_type (void); | webkit_dom_node_get_type (void); | |||
/** | /** | |||
* webkit_dom_node_insert_before: | * webkit_dom_node_insert_before: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @newChild: A #WebKitDOMNode | * @newChild: A #WebKitDOMNode | |||
* @refChild: (allow-none): A #WebKitDOMNode | * @refChild: (allow-none): A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_insert_before(WebKitDOMNode* self, WebKitDOMNode* newChild, WebKitDOMNode* refChild, GError** error); | webkit_dom_node_insert_before(WebKitDOMNode* self, WebKitDOMNode* newChild, WebKitDOMNode* refChild, GError** error); | |||
/** | /** | |||
* webkit_dom_node_replace_child: | * webkit_dom_node_replace_child: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @newChild: A #WebKitDOMNode | * @newChild: A #WebKitDOMNode | |||
* @oldChild: A #WebKitDOMNode | * @oldChild: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_replace_child(WebKitDOMNode* self, WebKitDOMNode* newChild, WebKitDOMNode* oldChild, GError** error); | webkit_dom_node_replace_child(WebKitDOMNode* self, WebKitDOMNode* newChild, WebKitDOMNode* oldChild, GError** error); | |||
/** | /** | |||
* webkit_dom_node_remove_child: | * webkit_dom_node_remove_child: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @oldChild: A #WebKitDOMNode | * @oldChild: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_remove_child(WebKitDOMNode* self, WebKitDOMNode* oldChild, GError** error); | webkit_dom_node_remove_child(WebKitDOMNode* self, WebKitDOMNode* oldChild, GError** error); | |||
/** | /** | |||
* webkit_dom_node_append_child: | * webkit_dom_node_append_child: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @newChild: A #WebKitDOMNode | * @newChild: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_append_child(WebKitDOMNode* self, WebKitDOMNode* newChild, GError** error); | webkit_dom_node_append_child(WebKitDOMNode* self, WebKitDOMNode* newChild, GError** error); | |||
/** | /** | |||
* webkit_dom_node_has_child_nodes: | * webkit_dom_node_has_child_nodes: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_node_has_child_nodes(WebKitDOMNode* self); | webkit_dom_node_has_child_nodes(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_clone_node: | * webkit_dom_node_clone_node: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @deep: A #gboolean | * @deep: A #gboolean | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_clone_node(WebKitDOMNode* self, gboolean deep); | webkit_dom_node_clone_node(WebKitDOMNode* self, gboolean deep); | |||
/** | /** | |||
* webkit_dom_node_normalize: | * webkit_dom_node_normalize: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_node_normalize(WebKitDOMNode* self); | webkit_dom_node_normalize(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_is_supported: | * webkit_dom_node_is_supported: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @feature: A #gchar | * @feature: A #gchar | |||
* @version: A #gchar | * @version: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_node_is_supported(WebKitDOMNode* self, const gchar* feature, con st gchar* version); | webkit_dom_node_is_supported(WebKitDOMNode* self, const gchar* feature, con st gchar* version); | |||
/** | /** | |||
* webkit_dom_node_is_same_node: | * webkit_dom_node_is_same_node: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @other: A #WebKitDOMNode | * @other: A #WebKitDOMNode | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_node_is_same_node(WebKitDOMNode* self, WebKitDOMNode* other); | webkit_dom_node_is_same_node(WebKitDOMNode* self, WebKitDOMNode* other); | |||
/** | /** | |||
* webkit_dom_node_is_equal_node: | * webkit_dom_node_is_equal_node: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @other: A #WebKitDOMNode | * @other: A #WebKitDOMNode | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_node_is_equal_node(WebKitDOMNode* self, WebKitDOMNode* other); | webkit_dom_node_is_equal_node(WebKitDOMNode* self, WebKitDOMNode* other); | |||
/** | /** | |||
* webkit_dom_node_lookup_prefix: | * webkit_dom_node_lookup_prefix: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @namespaceURI: A #gchar | * @namespaceURI: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_node_lookup_prefix(WebKitDOMNode* self, const gchar* namespaceUR I); | webkit_dom_node_lookup_prefix(WebKitDOMNode* self, const gchar* namespaceUR I); | |||
/** | /** | |||
* webkit_dom_node_is_default_namespace: | * webkit_dom_node_is_default_namespace: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @namespaceURI: A #gchar | * @namespaceURI: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_node_is_default_namespace(WebKitDOMNode* self, const gchar* name spaceURI); | webkit_dom_node_is_default_namespace(WebKitDOMNode* self, const gchar* name spaceURI); | |||
/** | /** | |||
* webkit_dom_node_lookup_namespace_uri: | * webkit_dom_node_lookup_namespace_uri: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @prefix: A #gchar | * @prefix: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_node_lookup_namespace_uri(WebKitDOMNode* self, const gchar* pref ix); | webkit_dom_node_lookup_namespace_uri(WebKitDOMNode* self, const gchar* pref ix); | |||
/** | /** | |||
* webkit_dom_node_compare_document_position: | * webkit_dom_node_compare_document_position: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @other: A #WebKitDOMNode | * @other: A #WebKitDOMNode | |||
* | * | |||
* Returns: | * Returns: A #gushort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gushort | WEBKIT_API gushort | |||
webkit_dom_node_compare_document_position(WebKitDOMNode* self, WebKitDOMNod e* other); | webkit_dom_node_compare_document_position(WebKitDOMNode* self, WebKitDOMNod e* other); | |||
/** | /** | |||
* webkit_dom_node_contains: | * webkit_dom_node_contains: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @other: A #WebKitDOMNode | * @other: A #WebKitDOMNode | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_node_contains(WebKitDOMNode* self, WebKitDOMNode* other); | webkit_dom_node_contains(WebKitDOMNode* self, WebKitDOMNode* other); | |||
#if !defined(WEBKIT_DISABLE_DEPRECATED) | ||||
/** | /** | |||
* webkit_dom_node_dispatch_event: | * webkit_dom_node_dispatch_event: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @event: A #WebKitDOMEvent | * @event: A #WebKitDOMEvent | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | * | |||
* Deprecated: 2.4: Use webkit_dom_event_target_dispatch_event() instead. | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_DEPRECATED_FOR(webkit_dom_event_target_dispatch_event) gboolean | |||
webkit_dom_node_dispatch_event(WebKitDOMNode* self, WebKitDOMEvent* event, GError** error); | webkit_dom_node_dispatch_event(WebKitDOMNode* self, WebKitDOMEvent* event, GError** error); | |||
#endif /* WEBKIT_DISABLE_DEPRECATED */ | ||||
/** | /** | |||
* webkit_dom_node_get_node_name: | * webkit_dom_node_get_node_name: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_node_get_node_name(WebKitDOMNode* self); | webkit_dom_node_get_node_name(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_get_node_value: | * webkit_dom_node_get_node_value: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_node_get_node_value(WebKitDOMNode* self); | webkit_dom_node_get_node_value(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_set_node_value: | * webkit_dom_node_set_node_value: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_node_set_node_value(WebKitDOMNode* self, const gchar* value, GEr ror** error); | webkit_dom_node_set_node_value(WebKitDOMNode* self, const gchar* value, GEr ror** error); | |||
/** | /** | |||
* webkit_dom_node_get_node_type: | * webkit_dom_node_get_node_type: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: | * Returns: A #gushort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gushort | WEBKIT_API gushort | |||
webkit_dom_node_get_node_type(WebKitDOMNode* self); | webkit_dom_node_get_node_type(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_get_parent_node: | * webkit_dom_node_get_parent_node: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_get_parent_node(WebKitDOMNode* self); | webkit_dom_node_get_parent_node(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_get_child_nodes: | * webkit_dom_node_get_child_nodes: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_node_get_child_nodes(WebKitDOMNode* self); | webkit_dom_node_get_child_nodes(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_get_first_child: | * webkit_dom_node_get_first_child: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_get_first_child(WebKitDOMNode* self); | webkit_dom_node_get_first_child(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_get_last_child: | * webkit_dom_node_get_last_child: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_get_last_child(WebKitDOMNode* self); | webkit_dom_node_get_last_child(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_get_previous_sibling: | * webkit_dom_node_get_previous_sibling: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_get_previous_sibling(WebKitDOMNode* self); | webkit_dom_node_get_previous_sibling(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_get_next_sibling: | * webkit_dom_node_get_next_sibling: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_get_next_sibling(WebKitDOMNode* self); | webkit_dom_node_get_next_sibling(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_get_owner_document: | * webkit_dom_node_get_owner_document: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDocument | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDocument* | WEBKIT_API WebKitDOMDocument* | |||
webkit_dom_node_get_owner_document(WebKitDOMNode* self); | webkit_dom_node_get_owner_document(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_get_namespace_uri: | * webkit_dom_node_get_namespace_uri: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_node_get_namespace_uri(WebKitDOMNode* self); | webkit_dom_node_get_namespace_uri(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_get_prefix: | * webkit_dom_node_get_prefix: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_node_get_prefix(WebKitDOMNode* self); | webkit_dom_node_get_prefix(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_set_prefix: | * webkit_dom_node_set_prefix: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_node_set_prefix(WebKitDOMNode* self, const gchar* value, GError* * error); | webkit_dom_node_set_prefix(WebKitDOMNode* self, const gchar* value, GError* * error); | |||
/** | /** | |||
* webkit_dom_node_get_local_name: | * webkit_dom_node_get_local_name: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_node_get_local_name(WebKitDOMNode* self); | webkit_dom_node_get_local_name(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_get_base_uri: | * webkit_dom_node_get_base_uri: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_node_get_base_uri(WebKitDOMNode* self); | webkit_dom_node_get_base_uri(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_get_text_content: | * webkit_dom_node_get_text_content: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_node_get_text_content(WebKitDOMNode* self); | webkit_dom_node_get_text_content(WebKitDOMNode* self); | |||
/** | /** | |||
* webkit_dom_node_set_text_content: | * webkit_dom_node_set_text_content: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_node_set_text_content(WebKitDOMNode* self, const gchar* value, G Error** error); | webkit_dom_node_set_text_content(WebKitDOMNode* self, const gchar* value, G Error** error); | |||
/** | /** | |||
* webkit_dom_node_get_parent_element: | * webkit_dom_node_get_parent_element: | |||
* @self: A #WebKitDOMNode | * @self: A #WebKitDOMNode | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_node_get_parent_element(WebKitDOMNode* self); | webkit_dom_node_get_parent_element(WebKitDOMNode* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMNode_h */ | #endif /* WebKitDOMNode_h */ | |||
End of changes. 40 change blocks. | ||||
89 lines changed or deleted | 54 lines changed or added | |||
WebKitDOMNodeFilter.h | WebKitDOMNodeFilter.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMNodeFilter_h | #ifndef WebKitDOMNodeFilter_h | |||
#define WebKitDOMNodeFilter_h | #define WebKitDOMNodeFilter_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_node_filter_get_type (void); | webkit_dom_node_filter_get_type (void); | |||
/** | /** | |||
* webkit_dom_node_filter_accept_node: | * webkit_dom_node_filter_accept_node: | |||
* @self: A #WebKitDOMNodeFilter | * @self: A #WebKitDOMNodeFilter | |||
* @n: A #WebKitDOMNode | * @n: A #WebKitDOMNode | |||
* | * | |||
* Returns: | * Returns: A #gshort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gshort | WEBKIT_API gshort | |||
webkit_dom_node_filter_accept_node(WebKitDOMNodeFilter* self, WebKitDOMNode * n); | webkit_dom_node_filter_accept_node(WebKitDOMNodeFilter* self, WebKitDOMNode * n); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMNodeFilter_h */ | #endif /* WebKitDOMNodeFilter_h */ | |||
End of changes. 2 change blocks. | ||||
21 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMNodeIterator.h | WebKitDOMNodeIterator.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMNodeIterator_h | #ifndef WebKitDOMNodeIterator_h | |||
#define WebKitDOMNodeIterator_h | #define WebKitDOMNodeIterator_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_node_iterator_get_type (void); | webkit_dom_node_iterator_get_type (void); | |||
/** | /** | |||
* webkit_dom_node_iterator_next_node: | * webkit_dom_node_iterator_next_node: | |||
* @self: A #WebKitDOMNodeIterator | * @self: A #WebKitDOMNodeIterator | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_iterator_next_node(WebKitDOMNodeIterator* self, GError** er ror); | webkit_dom_node_iterator_next_node(WebKitDOMNodeIterator* self, GError** er ror); | |||
/** | /** | |||
* webkit_dom_node_iterator_previous_node: | * webkit_dom_node_iterator_previous_node: | |||
* @self: A #WebKitDOMNodeIterator | * @self: A #WebKitDOMNodeIterator | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_iterator_previous_node(WebKitDOMNodeIterator* self, GError* * error); | webkit_dom_node_iterator_previous_node(WebKitDOMNodeIterator* self, GError* * error); | |||
/** | /** | |||
* webkit_dom_node_iterator_detach: | * webkit_dom_node_iterator_detach: | |||
* @self: A #WebKitDOMNodeIterator | * @self: A #WebKitDOMNodeIterator | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_node_iterator_detach(WebKitDOMNodeIterator* self); | webkit_dom_node_iterator_detach(WebKitDOMNodeIterator* self); | |||
/** | /** | |||
* webkit_dom_node_iterator_get_root: | * webkit_dom_node_iterator_get_root: | |||
* @self: A #WebKitDOMNodeIterator | * @self: A #WebKitDOMNodeIterator | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_iterator_get_root(WebKitDOMNodeIterator* self); | webkit_dom_node_iterator_get_root(WebKitDOMNodeIterator* self); | |||
/** | /** | |||
* webkit_dom_node_iterator_get_what_to_show: | * webkit_dom_node_iterator_get_what_to_show: | |||
* @self: A #WebKitDOMNodeIterator | * @self: A #WebKitDOMNodeIterator | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_node_iterator_get_what_to_show(WebKitDOMNodeIterator* self); | webkit_dom_node_iterator_get_what_to_show(WebKitDOMNodeIterator* self); | |||
/** | /** | |||
* webkit_dom_node_iterator_get_filter: | * webkit_dom_node_iterator_get_filter: | |||
* @self: A #WebKitDOMNodeIterator | * @self: A #WebKitDOMNodeIterator | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeFilter | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeFilter* | WEBKIT_API WebKitDOMNodeFilter* | |||
webkit_dom_node_iterator_get_filter(WebKitDOMNodeIterator* self); | webkit_dom_node_iterator_get_filter(WebKitDOMNodeIterator* self); | |||
/** | /** | |||
* webkit_dom_node_iterator_get_expand_entity_references: | * webkit_dom_node_iterator_get_expand_entity_references: | |||
* @self: A #WebKitDOMNodeIterator | * @self: A #WebKitDOMNodeIterator | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_node_iterator_get_expand_entity_references(WebKitDOMNodeIterator * self); | webkit_dom_node_iterator_get_expand_entity_references(WebKitDOMNodeIterator * self); | |||
/** | /** | |||
* webkit_dom_node_iterator_get_reference_node: | * webkit_dom_node_iterator_get_reference_node: | |||
* @self: A #WebKitDOMNodeIterator | * @self: A #WebKitDOMNodeIterator | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_iterator_get_reference_node(WebKitDOMNodeIterator* self); | webkit_dom_node_iterator_get_reference_node(WebKitDOMNodeIterator* self); | |||
/** | /** | |||
* webkit_dom_node_iterator_get_pointer_before_reference_node: | * webkit_dom_node_iterator_get_pointer_before_reference_node: | |||
* @self: A #WebKitDOMNodeIterator | * @self: A #WebKitDOMNodeIterator | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_node_iterator_get_pointer_before_reference_node(WebKitDOMNodeIte rator* self); | webkit_dom_node_iterator_get_pointer_before_reference_node(WebKitDOMNodeIte rator* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMNodeIterator_h */ | #endif /* WebKitDOMNodeIterator_h */ | |||
End of changes. 10 change blocks. | ||||
37 lines changed or deleted | 27 lines changed or added | |||
WebKitDOMNodeList.h | WebKitDOMNodeList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMNodeList_h | #ifndef WebKitDOMNodeList_h | |||
#define WebKitDOMNodeList_h | #define WebKitDOMNodeList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_node_list_get_type (void); | webkit_dom_node_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_node_list_item: | * webkit_dom_node_list_item: | |||
* @self: A #WebKitDOMNodeList | * @self: A #WebKitDOMNodeList | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_node_list_item(WebKitDOMNodeList* self, gulong index); | webkit_dom_node_list_item(WebKitDOMNodeList* self, gulong index); | |||
/** | /** | |||
* webkit_dom_node_list_get_length: | * webkit_dom_node_list_get_length: | |||
* @self: A #WebKitDOMNodeList | * @self: A #WebKitDOMNodeList | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_node_list_get_length(WebKitDOMNodeList* self); | webkit_dom_node_list_get_length(WebKitDOMNodeList* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMNodeList_h */ | #endif /* WebKitDOMNodeList_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMPerformance.h | WebKitDOMPerformance.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMPerformance_h | #ifndef WebKitDOMPerformance_h | |||
#define WebKitDOMPerformance_h | #define WebKitDOMPerformance_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_performance_get_type (void); | webkit_dom_performance_get_type (void); | |||
/** | /** | |||
* webkit_dom_performance_now: | * webkit_dom_performance_now: | |||
* @self: A #WebKitDOMPerformance | * @self: A #WebKitDOMPerformance | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_performance_now(WebKitDOMPerformance* self); | webkit_dom_performance_now(WebKitDOMPerformance* self); | |||
/** | /** | |||
* webkit_dom_performance_get_navigation: | * webkit_dom_performance_get_navigation: | |||
* @self: A #WebKitDOMPerformance | * @self: A #WebKitDOMPerformance | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMPerformanceNavigation | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMPerformanceNavigation* | WEBKIT_API WebKitDOMPerformanceNavigation* | |||
webkit_dom_performance_get_navigation(WebKitDOMPerformance* self); | webkit_dom_performance_get_navigation(WebKitDOMPerformance* self); | |||
/** | /** | |||
* webkit_dom_performance_get_timing: | * webkit_dom_performance_get_timing: | |||
* @self: A #WebKitDOMPerformance | * @self: A #WebKitDOMPerformance | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMPerformanceTiming | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMPerformanceTiming* | WEBKIT_API WebKitDOMPerformanceTiming* | |||
webkit_dom_performance_get_timing(WebKitDOMPerformance* self); | webkit_dom_performance_get_timing(WebKitDOMPerformance* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMPerformance_h */ | #endif /* WebKitDOMPerformance_h */ | |||
End of changes. 4 change blocks. | ||||
25 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMPerformanceEntry.h | WebKitDOMPerformanceEntry.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMPerformanceEntry_h | #ifndef WebKitDOMPerformanceEntry_h | |||
#define WebKitDOMPerformanceEntry_h | #define WebKitDOMPerformanceEntry_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_performance_entry_get_type (void); | webkit_dom_performance_entry_get_type (void); | |||
/** | /** | |||
* webkit_dom_performance_entry_get_name: | * webkit_dom_performance_entry_get_name: | |||
* @self: A #WebKitDOMPerformanceEntry | * @self: A #WebKitDOMPerformanceEntry | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_performance_entry_get_name(WebKitDOMPerformanceEntry* self); | webkit_dom_performance_entry_get_name(WebKitDOMPerformanceEntry* self); | |||
/** | /** | |||
* webkit_dom_performance_entry_get_entry_type: | * webkit_dom_performance_entry_get_entry_type: | |||
* @self: A #WebKitDOMPerformanceEntry | * @self: A #WebKitDOMPerformanceEntry | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_performance_entry_get_entry_type(WebKitDOMPerformanceEntry* self ); | webkit_dom_performance_entry_get_entry_type(WebKitDOMPerformanceEntry* self ); | |||
/** | /** | |||
* webkit_dom_performance_entry_get_start_time: | * webkit_dom_performance_entry_get_start_time: | |||
* @self: A #WebKitDOMPerformanceEntry | * @self: A #WebKitDOMPerformanceEntry | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_performance_entry_get_start_time(WebKitDOMPerformanceEntry* self ); | webkit_dom_performance_entry_get_start_time(WebKitDOMPerformanceEntry* self ); | |||
/** | /** | |||
* webkit_dom_performance_entry_get_duration: | * webkit_dom_performance_entry_get_duration: | |||
* @self: A #WebKitDOMPerformanceEntry | * @self: A #WebKitDOMPerformanceEntry | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_performance_entry_get_duration(WebKitDOMPerformanceEntry* self); | webkit_dom_performance_entry_get_duration(WebKitDOMPerformanceEntry* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMPerformanceEntry_h */ | #endif /* WebKitDOMPerformanceEntry_h */ | |||
End of changes. 5 change blocks. | ||||
27 lines changed or deleted | 23 lines changed or added | |||
WebKitDOMPerformanceEntryList.h | WebKitDOMPerformanceEntryList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMPerformanceEntryList_h | #ifndef WebKitDOMPerformanceEntryList_h | |||
#define WebKitDOMPerformanceEntryList_h | #define WebKitDOMPerformanceEntryList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_performance_entry_list_get_type (void); | webkit_dom_performance_entry_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_performance_entry_list_item: | * webkit_dom_performance_entry_list_item: | |||
* @self: A #WebKitDOMPerformanceEntryList | * @self: A #WebKitDOMPerformanceEntryList | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMPerformanceEntry | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMPerformanceEntry* | WEBKIT_API WebKitDOMPerformanceEntry* | |||
webkit_dom_performance_entry_list_item(WebKitDOMPerformanceEntryList* self, gulong index); | webkit_dom_performance_entry_list_item(WebKitDOMPerformanceEntryList* self, gulong index); | |||
/** | /** | |||
* webkit_dom_performance_entry_list_get_length: | * webkit_dom_performance_entry_list_get_length: | |||
* @self: A #WebKitDOMPerformanceEntryList | * @self: A #WebKitDOMPerformanceEntryList | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_performance_entry_list_get_length(WebKitDOMPerformanceEntryList* self); | webkit_dom_performance_entry_list_get_length(WebKitDOMPerformanceEntryList* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMPerformanceEntryList_h */ | #endif /* WebKitDOMPerformanceEntryList_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMPerformanceNavigation.h | WebKitDOMPerformanceNavigation.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMPerformanceNavigation_h | #ifndef WebKitDOMPerformanceNavigation_h | |||
#define WebKitDOMPerformanceNavigation_h | #define WebKitDOMPerformanceNavigation_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_performance_navigation_get_type (void); | webkit_dom_performance_navigation_get_type (void); | |||
/** | /** | |||
* webkit_dom_performance_navigation_get_redirect_count: | * webkit_dom_performance_navigation_get_redirect_count: | |||
* @self: A #WebKitDOMPerformanceNavigation | * @self: A #WebKitDOMPerformanceNavigation | |||
* | * | |||
* Returns: | * Returns: A #gushort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gushort | WEBKIT_API gushort | |||
webkit_dom_performance_navigation_get_redirect_count(WebKitDOMPerformanceNa vigation* self); | webkit_dom_performance_navigation_get_redirect_count(WebKitDOMPerformanceNa vigation* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMPerformanceNavigation_h */ | #endif /* WebKitDOMPerformanceNavigation_h */ | |||
End of changes. 2 change blocks. | ||||
21 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMPerformanceTiming.h | WebKitDOMPerformanceTiming.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMPerformanceTiming_h | #ifndef WebKitDOMPerformanceTiming_h | |||
#define WebKitDOMPerformanceTiming_h | #define WebKitDOMPerformanceTiming_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_performance_timing_get_type (void); | webkit_dom_performance_timing_get_type (void); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_navigation_start: | * webkit_dom_performance_timing_get_navigation_start: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_navigation_start(WebKitDOMPerformanceTimi ng* self); | webkit_dom_performance_timing_get_navigation_start(WebKitDOMPerformanceTimi ng* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_unload_event_start: | * webkit_dom_performance_timing_get_unload_event_start: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_unload_event_start(WebKitDOMPerformanceTi ming* self); | webkit_dom_performance_timing_get_unload_event_start(WebKitDOMPerformanceTi ming* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_unload_event_end: | * webkit_dom_performance_timing_get_unload_event_end: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_unload_event_end(WebKitDOMPerformanceTimi ng* self); | webkit_dom_performance_timing_get_unload_event_end(WebKitDOMPerformanceTimi ng* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_redirect_start: | * webkit_dom_performance_timing_get_redirect_start: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_redirect_start(WebKitDOMPerformanceTiming * self); | webkit_dom_performance_timing_get_redirect_start(WebKitDOMPerformanceTiming * self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_redirect_end: | * webkit_dom_performance_timing_get_redirect_end: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_redirect_end(WebKitDOMPerformanceTiming* self); | webkit_dom_performance_timing_get_redirect_end(WebKitDOMPerformanceTiming* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_fetch_start: | * webkit_dom_performance_timing_get_fetch_start: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_fetch_start(WebKitDOMPerformanceTiming* s elf); | webkit_dom_performance_timing_get_fetch_start(WebKitDOMPerformanceTiming* s elf); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_domain_lookup_start: | * webkit_dom_performance_timing_get_domain_lookup_start: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_domain_lookup_start(WebKitDOMPerformanceT iming* self); | webkit_dom_performance_timing_get_domain_lookup_start(WebKitDOMPerformanceT iming* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_domain_lookup_end: | * webkit_dom_performance_timing_get_domain_lookup_end: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_domain_lookup_end(WebKitDOMPerformanceTim ing* self); | webkit_dom_performance_timing_get_domain_lookup_end(WebKitDOMPerformanceTim ing* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_connect_start: | * webkit_dom_performance_timing_get_connect_start: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_connect_start(WebKitDOMPerformanceTiming* self); | webkit_dom_performance_timing_get_connect_start(WebKitDOMPerformanceTiming* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_connect_end: | * webkit_dom_performance_timing_get_connect_end: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_connect_end(WebKitDOMPerformanceTiming* s elf); | webkit_dom_performance_timing_get_connect_end(WebKitDOMPerformanceTiming* s elf); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_secure_connection_start: | * webkit_dom_performance_timing_get_secure_connection_start: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_secure_connection_start(WebKitDOMPerforma nceTiming* self); | webkit_dom_performance_timing_get_secure_connection_start(WebKitDOMPerforma nceTiming* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_request_start: | * webkit_dom_performance_timing_get_request_start: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_request_start(WebKitDOMPerformanceTiming* self); | webkit_dom_performance_timing_get_request_start(WebKitDOMPerformanceTiming* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_response_start: | * webkit_dom_performance_timing_get_response_start: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_response_start(WebKitDOMPerformanceTiming * self); | webkit_dom_performance_timing_get_response_start(WebKitDOMPerformanceTiming * self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_response_end: | * webkit_dom_performance_timing_get_response_end: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_response_end(WebKitDOMPerformanceTiming* self); | webkit_dom_performance_timing_get_response_end(WebKitDOMPerformanceTiming* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_dom_loading: | * webkit_dom_performance_timing_get_dom_loading: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_dom_loading(WebKitDOMPerformanceTiming* s elf); | webkit_dom_performance_timing_get_dom_loading(WebKitDOMPerformanceTiming* s elf); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_dom_interactive: | * webkit_dom_performance_timing_get_dom_interactive: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_dom_interactive(WebKitDOMPerformanceTimin g* self); | webkit_dom_performance_timing_get_dom_interactive(WebKitDOMPerformanceTimin g* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_dom_content_loaded_event_start: | * webkit_dom_performance_timing_get_dom_content_loaded_event_start: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_dom_content_loaded_event_start(WebKitDOMP erformanceTiming* self); | webkit_dom_performance_timing_get_dom_content_loaded_event_start(WebKitDOMP erformanceTiming* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_dom_content_loaded_event_end: | * webkit_dom_performance_timing_get_dom_content_loaded_event_end: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_dom_content_loaded_event_end(WebKitDOMPer formanceTiming* self); | webkit_dom_performance_timing_get_dom_content_loaded_event_end(WebKitDOMPer formanceTiming* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_dom_complete: | * webkit_dom_performance_timing_get_dom_complete: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_dom_complete(WebKitDOMPerformanceTiming* self); | webkit_dom_performance_timing_get_dom_complete(WebKitDOMPerformanceTiming* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_load_event_start: | * webkit_dom_performance_timing_get_load_event_start: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_load_event_start(WebKitDOMPerformanceTimi ng* self); | webkit_dom_performance_timing_get_load_event_start(WebKitDOMPerformanceTimi ng* self); | |||
/** | /** | |||
* webkit_dom_performance_timing_get_load_event_end: | * webkit_dom_performance_timing_get_load_event_end: | |||
* @self: A #WebKitDOMPerformanceTiming | * @self: A #WebKitDOMPerformanceTiming | |||
* | * | |||
* Returns: | * Returns: A #guint64 | |||
* | ||||
**/ | **/ | |||
WEBKIT_API guint64 | WEBKIT_API guint64 | |||
webkit_dom_performance_timing_get_load_event_end(WebKitDOMPerformanceTiming * self); | webkit_dom_performance_timing_get_load_event_end(WebKitDOMPerformanceTiming * self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMPerformanceTiming_h */ | #endif /* WebKitDOMPerformanceTiming_h */ | |||
End of changes. 22 change blocks. | ||||
61 lines changed or deleted | 40 lines changed or added | |||
WebKitDOMProcessingInstruction.h | WebKitDOMProcessingInstruction.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMProcessingInstruction_h | #ifndef WebKitDOMProcessingInstruction_h | |||
#define WebKitDOMProcessingInstruction_h | #define WebKitDOMProcessingInstruction_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMNode.h> | #include <webkitdom/WebKitDOMCharacterData.h> | |||
#include <webkitdom/webkitdomdefines.h> | #include <webkitdom/webkitdomdefines.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
#define WEBKIT_TYPE_DOM_PROCESSING_INSTRUCTION (webkit_dom_proce ssing_instruction_get_type()) | #define WEBKIT_TYPE_DOM_PROCESSING_INSTRUCTION (webkit_dom_proce ssing_instruction_get_type()) | |||
#define WEBKIT_DOM_PROCESSING_INSTRUCTION(obj) (G_TYPE_CHECK_INS TANCE_CAST((obj), WEBKIT_TYPE_DOM_PROCESSING_INSTRUCTION, WebKitDOMProcessi ngInstruction)) | #define WEBKIT_DOM_PROCESSING_INSTRUCTION(obj) (G_TYPE_CHECK_INS TANCE_CAST((obj), WEBKIT_TYPE_DOM_PROCESSING_INSTRUCTION, WebKitDOMProcessi ngInstruction)) | |||
#define WEBKIT_DOM_PROCESSING_INSTRUCTION_CLASS(klass) (G_TYPE_CHECK_CLA SS_CAST((klass), WEBKIT_TYPE_DOM_PROCESSING_INSTRUCTION, WebKitDOMProcessi ngInstructionClass) | #define WEBKIT_DOM_PROCESSING_INSTRUCTION_CLASS(klass) (G_TYPE_CHECK_CLA SS_CAST((klass), WEBKIT_TYPE_DOM_PROCESSING_INSTRUCTION, WebKitDOMProcessi ngInstructionClass) | |||
#define WEBKIT_DOM_IS_PROCESSING_INSTRUCTION(obj) (G_TYPE_CHECK_INS TANCE_TYPE((obj), WEBKIT_TYPE_DOM_PROCESSING_INSTRUCTION)) | #define WEBKIT_DOM_IS_PROCESSING_INSTRUCTION(obj) (G_TYPE_CHECK_INS TANCE_TYPE((obj), WEBKIT_TYPE_DOM_PROCESSING_INSTRUCTION)) | |||
#define WEBKIT_DOM_IS_PROCESSING_INSTRUCTION_CLASS(klass) (G_TYPE_CHECK_CLA SS_TYPE((klass), WEBKIT_TYPE_DOM_PROCESSING_INSTRUCTION)) | #define WEBKIT_DOM_IS_PROCESSING_INSTRUCTION_CLASS(klass) (G_TYPE_CHECK_CLA SS_TYPE((klass), WEBKIT_TYPE_DOM_PROCESSING_INSTRUCTION)) | |||
#define WEBKIT_DOM_PROCESSING_INSTRUCTION_GET_CLASS(obj) (G_TYPE_INSTANCE_ GET_CLASS((obj), WEBKIT_TYPE_DOM_PROCESSING_INSTRUCTION, WebKitDOMProcessi ngInstructionClass)) | #define WEBKIT_DOM_PROCESSING_INSTRUCTION_GET_CLASS(obj) (G_TYPE_INSTANCE_ GET_CLASS((obj), WEBKIT_TYPE_DOM_PROCESSING_INSTRUCTION, WebKitDOMProcessi ngInstructionClass)) | |||
struct _WebKitDOMProcessingInstruction { | struct _WebKitDOMProcessingInstruction { | |||
WebKitDOMNode parent_instance; | WebKitDOMCharacterData parent_instance; | |||
}; | }; | |||
struct _WebKitDOMProcessingInstructionClass { | struct _WebKitDOMProcessingInstructionClass { | |||
WebKitDOMNodeClass parent_class; | WebKitDOMCharacterDataClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_processing_instruction_get_type (void); | webkit_dom_processing_instruction_get_type (void); | |||
/** | /** | |||
* webkit_dom_processing_instruction_get_target: | * webkit_dom_processing_instruction_get_target: | |||
* @self: A #WebKitDOMProcessingInstruction | * @self: A #WebKitDOMProcessingInstruction | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_processing_instruction_get_target(WebKitDOMProcessingInstruction * self); | webkit_dom_processing_instruction_get_target(WebKitDOMProcessingInstruction * self); | |||
/** | /** | |||
* webkit_dom_processing_instruction_get_data: | ||||
* @self: A #WebKitDOMProcessingInstruction | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API gchar* | ||||
webkit_dom_processing_instruction_get_data(WebKitDOMProcessingInstruction* | ||||
self); | ||||
/** | ||||
* webkit_dom_processing_instruction_set_data: | ||||
* @self: A #WebKitDOMProcessingInstruction | ||||
* @value: A #gchar | ||||
* @error: #GError | ||||
* | ||||
* Returns: | ||||
* | ||||
**/ | ||||
WEBKIT_API void | ||||
webkit_dom_processing_instruction_set_data(WebKitDOMProcessingInstruction* | ||||
self, const gchar* value, GError** error); | ||||
/** | ||||
* webkit_dom_processing_instruction_get_sheet: | * webkit_dom_processing_instruction_get_sheet: | |||
* @self: A #WebKitDOMProcessingInstruction | * @self: A #WebKitDOMProcessingInstruction | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMStyleSheet | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMStyleSheet* | WEBKIT_API WebKitDOMStyleSheet* | |||
webkit_dom_processing_instruction_get_sheet(WebKitDOMProcessingInstruction* self); | webkit_dom_processing_instruction_get_sheet(WebKitDOMProcessingInstruction* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMProcessingInstruction_h */ | #endif /* WebKitDOMProcessingInstruction_h */ | |||
End of changes. 7 change blocks. | ||||
50 lines changed or deleted | 24 lines changed or added | |||
WebKitDOMRange.h | WebKitDOMRange.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMRange_h | #ifndef WebKitDOMRange_h | |||
#define WebKitDOMRange_h | #define WebKitDOMRange_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 59 | skipping to change at line 59 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_range_get_type (void); | webkit_dom_range_get_type (void); | |||
/** | /** | |||
* webkit_dom_range_set_start: | * webkit_dom_range_set_start: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @refNode: A #WebKitDOMNode | * @refNode: A #WebKitDOMNode | |||
* @offset: A #glong | * @offset: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_range_set_start(WebKitDOMRange* self, WebKitDOMNode* refNode, gl ong offset, GError** error); | webkit_dom_range_set_start(WebKitDOMRange* self, WebKitDOMNode* refNode, gl ong offset, GError** error); | |||
/** | /** | |||
* webkit_dom_range_set_end: | * webkit_dom_range_set_end: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @refNode: A #WebKitDOMNode | * @refNode: A #WebKitDOMNode | |||
* @offset: A #glong | * @offset: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_range_set_end(WebKitDOMRange* self, WebKitDOMNode* refNode, glon g offset, GError** error); | webkit_dom_range_set_end(WebKitDOMRange* self, WebKitDOMNode* refNode, glon g offset, GError** error); | |||
/** | /** | |||
* webkit_dom_range_set_start_before: | * webkit_dom_range_set_start_before: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @refNode: A #WebKitDOMNode | * @refNode: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_range_set_start_before(WebKitDOMRange* self, WebKitDOMNode* refN ode, GError** error); | webkit_dom_range_set_start_before(WebKitDOMRange* self, WebKitDOMNode* refN ode, GError** error); | |||
/** | /** | |||
* webkit_dom_range_set_start_after: | * webkit_dom_range_set_start_after: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @refNode: A #WebKitDOMNode | * @refNode: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_range_set_start_after(WebKitDOMRange* self, WebKitDOMNode* refNo de, GError** error); | webkit_dom_range_set_start_after(WebKitDOMRange* self, WebKitDOMNode* refNo de, GError** error); | |||
/** | /** | |||
* webkit_dom_range_set_end_before: | * webkit_dom_range_set_end_before: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @refNode: A #WebKitDOMNode | * @refNode: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_range_set_end_before(WebKitDOMRange* self, WebKitDOMNode* refNod e, GError** error); | webkit_dom_range_set_end_before(WebKitDOMRange* self, WebKitDOMNode* refNod e, GError** error); | |||
/** | /** | |||
* webkit_dom_range_set_end_after: | * webkit_dom_range_set_end_after: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @refNode: A #WebKitDOMNode | * @refNode: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_range_set_end_after(WebKitDOMRange* self, WebKitDOMNode* refNode , GError** error); | webkit_dom_range_set_end_after(WebKitDOMRange* self, WebKitDOMNode* refNode , GError** error); | |||
/** | /** | |||
* webkit_dom_range_collapse: | * webkit_dom_range_collapse: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @toStart: A #gboolean | * @toStart: A #gboolean | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_range_collapse(WebKitDOMRange* self, gboolean toStart, GError** error); | webkit_dom_range_collapse(WebKitDOMRange* self, gboolean toStart, GError** error); | |||
/** | /** | |||
* webkit_dom_range_select_node: | * webkit_dom_range_select_node: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @refNode: A #WebKitDOMNode | * @refNode: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_range_select_node(WebKitDOMRange* self, WebKitDOMNode* refNode, GError** error); | webkit_dom_range_select_node(WebKitDOMRange* self, WebKitDOMNode* refNode, GError** error); | |||
/** | /** | |||
* webkit_dom_range_select_node_contents: | * webkit_dom_range_select_node_contents: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @refNode: A #WebKitDOMNode | * @refNode: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_range_select_node_contents(WebKitDOMRange* self, WebKitDOMNode* refNode, GError** error); | webkit_dom_range_select_node_contents(WebKitDOMRange* self, WebKitDOMNode* refNode, GError** error); | |||
/** | /** | |||
* webkit_dom_range_compare_boundary_points: | * webkit_dom_range_compare_boundary_points: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @how: A #gushort | * @how: A #gushort | |||
* @sourceRange: A #WebKitDOMRange | * @sourceRange: A #WebKitDOMRange | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gshort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gshort | WEBKIT_API gshort | |||
webkit_dom_range_compare_boundary_points(WebKitDOMRange* self, gushort how, WebKitDOMRange* sourceRange, GError** error); | webkit_dom_range_compare_boundary_points(WebKitDOMRange* self, gushort how, WebKitDOMRange* sourceRange, GError** error); | |||
/** | /** | |||
* webkit_dom_range_delete_contents: | * webkit_dom_range_delete_contents: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_range_delete_contents(WebKitDOMRange* self, GError** error); | webkit_dom_range_delete_contents(WebKitDOMRange* self, GError** error); | |||
/** | /** | |||
* webkit_dom_range_extract_contents: | * webkit_dom_range_extract_contents: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDocumentFragment | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDocumentFragment* | WEBKIT_API WebKitDOMDocumentFragment* | |||
webkit_dom_range_extract_contents(WebKitDOMRange* self, GError** error); | webkit_dom_range_extract_contents(WebKitDOMRange* self, GError** error); | |||
/** | /** | |||
* webkit_dom_range_clone_contents: | * webkit_dom_range_clone_contents: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDocumentFragment | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDocumentFragment* | WEBKIT_API WebKitDOMDocumentFragment* | |||
webkit_dom_range_clone_contents(WebKitDOMRange* self, GError** error); | webkit_dom_range_clone_contents(WebKitDOMRange* self, GError** error); | |||
/** | /** | |||
* webkit_dom_range_insert_node: | * webkit_dom_range_insert_node: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @newNode: A #WebKitDOMNode | * @newNode: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_range_insert_node(WebKitDOMRange* self, WebKitDOMNode* newNode, GError** error); | webkit_dom_range_insert_node(WebKitDOMRange* self, WebKitDOMNode* newNode, GError** error); | |||
/** | /** | |||
* webkit_dom_range_surround_contents: | * webkit_dom_range_surround_contents: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @newParent: A #WebKitDOMNode | * @newParent: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_range_surround_contents(WebKitDOMRange* self, WebKitDOMNode* new Parent, GError** error); | webkit_dom_range_surround_contents(WebKitDOMRange* self, WebKitDOMNode* new Parent, GError** error); | |||
/** | /** | |||
* webkit_dom_range_clone_range: | * webkit_dom_range_clone_range: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMRange | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMRange* | WEBKIT_API WebKitDOMRange* | |||
webkit_dom_range_clone_range(WebKitDOMRange* self, GError** error); | webkit_dom_range_clone_range(WebKitDOMRange* self, GError** error); | |||
/** | /** | |||
* webkit_dom_range_to_string: | * webkit_dom_range_to_string: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_range_to_string(WebKitDOMRange* self, GError** error); | webkit_dom_range_to_string(WebKitDOMRange* self, GError** error); | |||
/** | /** | |||
* webkit_dom_range_detach: | * webkit_dom_range_detach: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_range_detach(WebKitDOMRange* self, GError** error); | webkit_dom_range_detach(WebKitDOMRange* self, GError** error); | |||
/** | /** | |||
* webkit_dom_range_create_contextual_fragment: | * webkit_dom_range_create_contextual_fragment: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @html: A #gchar | * @html: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDocumentFragment | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDocumentFragment* | WEBKIT_API WebKitDOMDocumentFragment* | |||
webkit_dom_range_create_contextual_fragment(WebKitDOMRange* self, const gch ar* html, GError** error); | webkit_dom_range_create_contextual_fragment(WebKitDOMRange* self, const gch ar* html, GError** error); | |||
/** | /** | |||
* webkit_dom_range_intersects_node: | * webkit_dom_range_intersects_node: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @refNode: A #WebKitDOMNode | * @refNode: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_range_intersects_node(WebKitDOMRange* self, WebKitDOMNode* refNo de, GError** error); | webkit_dom_range_intersects_node(WebKitDOMRange* self, WebKitDOMNode* refNo de, GError** error); | |||
/** | /** | |||
* webkit_dom_range_compare_node: | * webkit_dom_range_compare_node: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @refNode: A #WebKitDOMNode | * @refNode: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gshort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gshort | WEBKIT_API gshort | |||
webkit_dom_range_compare_node(WebKitDOMRange* self, WebKitDOMNode* refNode, GError** error); | webkit_dom_range_compare_node(WebKitDOMRange* self, WebKitDOMNode* refNode, GError** error); | |||
/** | /** | |||
* webkit_dom_range_compare_point: | * webkit_dom_range_compare_point: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @refNode: A #WebKitDOMNode | * @refNode: A #WebKitDOMNode | |||
* @offset: A #glong | * @offset: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gshort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gshort | WEBKIT_API gshort | |||
webkit_dom_range_compare_point(WebKitDOMRange* self, WebKitDOMNode* refNode , glong offset, GError** error); | webkit_dom_range_compare_point(WebKitDOMRange* self, WebKitDOMNode* refNode , glong offset, GError** error); | |||
/** | /** | |||
* webkit_dom_range_is_point_in_range: | * webkit_dom_range_is_point_in_range: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @refNode: A #WebKitDOMNode | * @refNode: A #WebKitDOMNode | |||
* @offset: A #glong | * @offset: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_range_is_point_in_range(WebKitDOMRange* self, WebKitDOMNode* ref Node, glong offset, GError** error); | webkit_dom_range_is_point_in_range(WebKitDOMRange* self, WebKitDOMNode* ref Node, glong offset, GError** error); | |||
/** | /** | |||
* webkit_dom_range_expand: | * webkit_dom_range_expand: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @unit: A #gchar | * @unit: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_range_expand(WebKitDOMRange* self, const gchar* unit, GError** e rror); | webkit_dom_range_expand(WebKitDOMRange* self, const gchar* unit, GError** e rror); | |||
/** | /** | |||
* webkit_dom_range_get_start_container: | * webkit_dom_range_get_start_container: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_range_get_start_container(WebKitDOMRange* self, GError** error); | webkit_dom_range_get_start_container(WebKitDOMRange* self, GError** error); | |||
/** | /** | |||
* webkit_dom_range_get_start_offset: | * webkit_dom_range_get_start_offset: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_range_get_start_offset(WebKitDOMRange* self, GError** error); | webkit_dom_range_get_start_offset(WebKitDOMRange* self, GError** error); | |||
/** | /** | |||
* webkit_dom_range_get_end_container: | * webkit_dom_range_get_end_container: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_range_get_end_container(WebKitDOMRange* self, GError** error); | webkit_dom_range_get_end_container(WebKitDOMRange* self, GError** error); | |||
/** | /** | |||
* webkit_dom_range_get_end_offset: | * webkit_dom_range_get_end_offset: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_range_get_end_offset(WebKitDOMRange* self, GError** error); | webkit_dom_range_get_end_offset(WebKitDOMRange* self, GError** error); | |||
/** | /** | |||
* webkit_dom_range_get_collapsed: | * webkit_dom_range_get_collapsed: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_range_get_collapsed(WebKitDOMRange* self, GError** error); | webkit_dom_range_get_collapsed(WebKitDOMRange* self, GError** error); | |||
/** | /** | |||
* webkit_dom_range_get_common_ancestor_container: | * webkit_dom_range_get_common_ancestor_container: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_range_get_common_ancestor_container(WebKitDOMRange* self, GError ** error); | webkit_dom_range_get_common_ancestor_container(WebKitDOMRange* self, GError ** error); | |||
/** | /** | |||
* webkit_dom_range_get_text: | * webkit_dom_range_get_text: | |||
* @self: A #WebKitDOMRange | * @self: A #WebKitDOMRange | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_range_get_text(WebKitDOMRange* self); | webkit_dom_range_get_text(WebKitDOMRange* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMRange_h */ | #endif /* WebKitDOMRange_h */ | |||
End of changes. 32 change blocks. | ||||
81 lines changed or deleted | 36 lines changed or added | |||
WebKitDOMScreen.h | WebKitDOMScreen.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMScreen_h | #ifndef WebKitDOMScreen_h | |||
#define WebKitDOMScreen_h | #define WebKitDOMScreen_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_screen_get_type (void); | webkit_dom_screen_get_type (void); | |||
/** | /** | |||
* webkit_dom_screen_get_height: | * webkit_dom_screen_get_height: | |||
* @self: A #WebKitDOMScreen | * @self: A #WebKitDOMScreen | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_screen_get_height(WebKitDOMScreen* self); | webkit_dom_screen_get_height(WebKitDOMScreen* self); | |||
/** | /** | |||
* webkit_dom_screen_get_width: | * webkit_dom_screen_get_width: | |||
* @self: A #WebKitDOMScreen | * @self: A #WebKitDOMScreen | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_screen_get_width(WebKitDOMScreen* self); | webkit_dom_screen_get_width(WebKitDOMScreen* self); | |||
/** | /** | |||
* webkit_dom_screen_get_color_depth: | * webkit_dom_screen_get_color_depth: | |||
* @self: A #WebKitDOMScreen | * @self: A #WebKitDOMScreen | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_screen_get_color_depth(WebKitDOMScreen* self); | webkit_dom_screen_get_color_depth(WebKitDOMScreen* self); | |||
/** | /** | |||
* webkit_dom_screen_get_pixel_depth: | * webkit_dom_screen_get_pixel_depth: | |||
* @self: A #WebKitDOMScreen | * @self: A #WebKitDOMScreen | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_screen_get_pixel_depth(WebKitDOMScreen* self); | webkit_dom_screen_get_pixel_depth(WebKitDOMScreen* self); | |||
/** | /** | |||
* webkit_dom_screen_get_avail_left: | * webkit_dom_screen_get_avail_left: | |||
* @self: A #WebKitDOMScreen | * @self: A #WebKitDOMScreen | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_screen_get_avail_left(WebKitDOMScreen* self); | webkit_dom_screen_get_avail_left(WebKitDOMScreen* self); | |||
/** | /** | |||
* webkit_dom_screen_get_avail_top: | * webkit_dom_screen_get_avail_top: | |||
* @self: A #WebKitDOMScreen | * @self: A #WebKitDOMScreen | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_screen_get_avail_top(WebKitDOMScreen* self); | webkit_dom_screen_get_avail_top(WebKitDOMScreen* self); | |||
/** | /** | |||
* webkit_dom_screen_get_avail_height: | * webkit_dom_screen_get_avail_height: | |||
* @self: A #WebKitDOMScreen | * @self: A #WebKitDOMScreen | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_screen_get_avail_height(WebKitDOMScreen* self); | webkit_dom_screen_get_avail_height(WebKitDOMScreen* self); | |||
/** | /** | |||
* webkit_dom_screen_get_avail_width: | * webkit_dom_screen_get_avail_width: | |||
* @self: A #WebKitDOMScreen | * @self: A #WebKitDOMScreen | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_screen_get_avail_width(WebKitDOMScreen* self); | webkit_dom_screen_get_avail_width(WebKitDOMScreen* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMScreen_h */ | #endif /* WebKitDOMScreen_h */ | |||
End of changes. 9 change blocks. | ||||
35 lines changed or deleted | 27 lines changed or added | |||
WebKitDOMShadowRoot.h | WebKitDOMShadowRoot.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMShadowRoot_h | #ifndef WebKitDOMShadowRoot_h | |||
#define WebKitDOMShadowRoot_h | #define WebKitDOMShadowRoot_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMDocumentFragment.h> | #include <webkitdom/WebKitDOMDocumentFragment.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMDocumentFragmentClass parent_class; | WebKitDOMDocumentFragmentClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_shadow_root_get_type (void); | webkit_dom_shadow_root_get_type (void); | |||
/** | /** | |||
* webkit_dom_shadow_root_get_selection: | * webkit_dom_shadow_root_get_selection: | |||
* @self: A #WebKitDOMShadowRoot | * @self: A #WebKitDOMShadowRoot | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMSelection | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMSelection* | WEBKIT_API WebKitDOMDOMSelection* | |||
webkit_dom_shadow_root_get_selection(WebKitDOMShadowRoot* self); | webkit_dom_shadow_root_get_selection(WebKitDOMShadowRoot* self); | |||
/** | /** | |||
* webkit_dom_shadow_root_get_element_by_id: | * webkit_dom_shadow_root_get_element_by_id: | |||
* @self: A #WebKitDOMShadowRoot | * @self: A #WebKitDOMShadowRoot | |||
* @elementId: A #gchar | * @elementId: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_shadow_root_get_element_by_id(WebKitDOMShadowRoot* self, const g char* elementId); | webkit_dom_shadow_root_get_element_by_id(WebKitDOMShadowRoot* self, const g char* elementId); | |||
/** | /** | |||
* webkit_dom_shadow_root_get_elements_by_class_name: | * webkit_dom_shadow_root_get_elements_by_class_name: | |||
* @self: A #WebKitDOMShadowRoot | * @self: A #WebKitDOMShadowRoot | |||
* @className: A #gchar | * @className: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_shadow_root_get_elements_by_class_name(WebKitDOMShadowRoot* self , const gchar* className); | webkit_dom_shadow_root_get_elements_by_class_name(WebKitDOMShadowRoot* self , const gchar* className); | |||
/** | /** | |||
* webkit_dom_shadow_root_get_elements_by_tag_name: | * webkit_dom_shadow_root_get_elements_by_tag_name: | |||
* @self: A #WebKitDOMShadowRoot | * @self: A #WebKitDOMShadowRoot | |||
* @tagName: A #gchar | * @tagName: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_shadow_root_get_elements_by_tag_name(WebKitDOMShadowRoot* self, const gchar* tagName); | webkit_dom_shadow_root_get_elements_by_tag_name(WebKitDOMShadowRoot* self, const gchar* tagName); | |||
/** | /** | |||
* webkit_dom_shadow_root_get_elements_by_tag_name_ns: | * webkit_dom_shadow_root_get_elements_by_tag_name_ns: | |||
* @self: A #WebKitDOMShadowRoot | * @self: A #WebKitDOMShadowRoot | |||
* @namespaceURI: A #gchar | * @namespaceURI: A #gchar | |||
* @localName: A #gchar | * @localName: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_shadow_root_get_elements_by_tag_name_ns(WebKitDOMShadowRoot* sel f, const gchar* namespaceURI, const gchar* localName); | webkit_dom_shadow_root_get_elements_by_tag_name_ns(WebKitDOMShadowRoot* sel f, const gchar* namespaceURI, const gchar* localName); | |||
/** | /** | |||
* webkit_dom_shadow_root_element_from_point: | * webkit_dom_shadow_root_element_from_point: | |||
* @self: A #WebKitDOMShadowRoot | * @self: A #WebKitDOMShadowRoot | |||
* @x: A #glong | * @x: A #glong | |||
* @y: A #glong | * @y: A #glong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_shadow_root_element_from_point(WebKitDOMShadowRoot* self, glong x, glong y); | webkit_dom_shadow_root_element_from_point(WebKitDOMShadowRoot* self, glong x, glong y); | |||
/** | /** | |||
* webkit_dom_shadow_root_get_active_element: | * webkit_dom_shadow_root_get_active_element: | |||
* @self: A #WebKitDOMShadowRoot | * @self: A #WebKitDOMShadowRoot | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMElement | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMElement* | WEBKIT_API WebKitDOMElement* | |||
webkit_dom_shadow_root_get_active_element(WebKitDOMShadowRoot* self); | webkit_dom_shadow_root_get_active_element(WebKitDOMShadowRoot* self); | |||
/** | /** | |||
* webkit_dom_shadow_root_get_apply_author_styles: | * webkit_dom_shadow_root_get_apply_author_styles: | |||
* @self: A #WebKitDOMShadowRoot | * @self: A #WebKitDOMShadowRoot | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_shadow_root_get_apply_author_styles(WebKitDOMShadowRoot* self); | webkit_dom_shadow_root_get_apply_author_styles(WebKitDOMShadowRoot* self); | |||
/** | /** | |||
* webkit_dom_shadow_root_set_apply_author_styles: | * webkit_dom_shadow_root_set_apply_author_styles: | |||
* @self: A #WebKitDOMShadowRoot | * @self: A #WebKitDOMShadowRoot | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_shadow_root_set_apply_author_styles(WebKitDOMShadowRoot* self, g boolean value); | webkit_dom_shadow_root_set_apply_author_styles(WebKitDOMShadowRoot* self, g boolean value); | |||
/** | /** | |||
* webkit_dom_shadow_root_get_reset_style_inheritance: | * webkit_dom_shadow_root_get_reset_style_inheritance: | |||
* @self: A #WebKitDOMShadowRoot | * @self: A #WebKitDOMShadowRoot | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_shadow_root_get_reset_style_inheritance(WebKitDOMShadowRoot* sel f); | webkit_dom_shadow_root_get_reset_style_inheritance(WebKitDOMShadowRoot* sel f); | |||
/** | /** | |||
* webkit_dom_shadow_root_set_reset_style_inheritance: | * webkit_dom_shadow_root_set_reset_style_inheritance: | |||
* @self: A #WebKitDOMShadowRoot | * @self: A #WebKitDOMShadowRoot | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_shadow_root_set_reset_style_inheritance(WebKitDOMShadowRoot* sel f, gboolean value); | webkit_dom_shadow_root_set_reset_style_inheritance(WebKitDOMShadowRoot* sel f, gboolean value); | |||
/** | /** | |||
* webkit_dom_shadow_root_get_inner_html: | * webkit_dom_shadow_root_get_inner_html: | |||
* @self: A #WebKitDOMShadowRoot | * @self: A #WebKitDOMShadowRoot | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_shadow_root_get_inner_html(WebKitDOMShadowRoot* self); | webkit_dom_shadow_root_get_inner_html(WebKitDOMShadowRoot* self); | |||
/** | /** | |||
* webkit_dom_shadow_root_set_inner_html: | * webkit_dom_shadow_root_set_inner_html: | |||
* @self: A #WebKitDOMShadowRoot | * @self: A #WebKitDOMShadowRoot | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_shadow_root_set_inner_html(WebKitDOMShadowRoot* self, const gcha r* value, GError** error); | webkit_dom_shadow_root_set_inner_html(WebKitDOMShadowRoot* self, const gcha r* value, GError** error); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMShadowRoot_h */ | #endif /* WebKitDOMShadowRoot_h */ | |||
End of changes. 14 change blocks. | ||||
45 lines changed or deleted | 29 lines changed or added | |||
WebKitDOMStorage.h | WebKitDOMStorage.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMStorage_h | #ifndef WebKitDOMStorage_h | |||
#define WebKitDOMStorage_h | #define WebKitDOMStorage_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 58 | skipping to change at line 58 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_storage_get_type (void); | webkit_dom_storage_get_type (void); | |||
/** | /** | |||
* webkit_dom_storage_key: | * webkit_dom_storage_key: | |||
* @self: A #WebKitDOMStorage | * @self: A #WebKitDOMStorage | |||
* @index: A #gulong | * @index: A #gulong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_storage_key(WebKitDOMStorage* self, gulong index, GError** error ); | webkit_dom_storage_key(WebKitDOMStorage* self, gulong index, GError** error ); | |||
/** | /** | |||
* webkit_dom_storage_get_item: | * webkit_dom_storage_get_item: | |||
* @self: A #WebKitDOMStorage | * @self: A #WebKitDOMStorage | |||
* @key: A #gchar | * @key: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_storage_get_item(WebKitDOMStorage* self, const gchar* key, GErro r** error); | webkit_dom_storage_get_item(WebKitDOMStorage* self, const gchar* key, GErro r** error); | |||
/** | /** | |||
* webkit_dom_storage_set_item: | * webkit_dom_storage_set_item: | |||
* @self: A #WebKitDOMStorage | * @self: A #WebKitDOMStorage | |||
* @key: A #gchar | * @key: A #gchar | |||
* @data: A #gchar | * @data: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_storage_set_item(WebKitDOMStorage* self, const gchar* key, const gchar* data, GError** error); | webkit_dom_storage_set_item(WebKitDOMStorage* self, const gchar* key, const gchar* data, GError** error); | |||
/** | /** | |||
* webkit_dom_storage_remove_item: | * webkit_dom_storage_remove_item: | |||
* @self: A #WebKitDOMStorage | * @self: A #WebKitDOMStorage | |||
* @key: A #gchar | * @key: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_storage_remove_item(WebKitDOMStorage* self, const gchar* key, GE rror** error); | webkit_dom_storage_remove_item(WebKitDOMStorage* self, const gchar* key, GE rror** error); | |||
/** | /** | |||
* webkit_dom_storage_clear: | * webkit_dom_storage_clear: | |||
* @self: A #WebKitDOMStorage | * @self: A #WebKitDOMStorage | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_storage_clear(WebKitDOMStorage* self, GError** error); | webkit_dom_storage_clear(WebKitDOMStorage* self, GError** error); | |||
/** | /** | |||
* webkit_dom_storage_get_length: | * webkit_dom_storage_get_length: | |||
* @self: A #WebKitDOMStorage | * @self: A #WebKitDOMStorage | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_storage_get_length(WebKitDOMStorage* self, GError** error); | webkit_dom_storage_get_length(WebKitDOMStorage* self, GError** error); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMStorage_h */ | #endif /* WebKitDOMStorage_h */ | |||
End of changes. 7 change blocks. | ||||
31 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMStorageInfo.h | WebKitDOMStorageInfo.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMStorageInfo_h | #ifndef WebKitDOMStorageInfo_h | |||
#define WebKitDOMStorageInfo_h | #define WebKitDOMStorageInfo_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
End of changes. 1 change blocks. | ||||
19 lines changed or deleted | 19 lines changed or added | |||
WebKitDOMStorageQuota.h | WebKitDOMStorageQuota.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMStorageQuota_h | #ifndef WebKitDOMStorageQuota_h | |||
#define WebKitDOMStorageQuota_h | #define WebKitDOMStorageQuota_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
End of changes. 1 change blocks. | ||||
19 lines changed or deleted | 19 lines changed or added | |||
WebKitDOMStyleMedia.h | WebKitDOMStyleMedia.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMStyleMedia_h | #ifndef WebKitDOMStyleMedia_h | |||
#define WebKitDOMStyleMedia_h | #define WebKitDOMStyleMedia_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_style_media_get_type (void); | webkit_dom_style_media_get_type (void); | |||
/** | /** | |||
* webkit_dom_style_media_match_medium: | * webkit_dom_style_media_match_medium: | |||
* @self: A #WebKitDOMStyleMedia | * @self: A #WebKitDOMStyleMedia | |||
* @mediaquery: A #gchar | * @mediaquery: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_style_media_match_medium(WebKitDOMStyleMedia* self, const gchar* mediaquery); | webkit_dom_style_media_match_medium(WebKitDOMStyleMedia* self, const gchar* mediaquery); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMStyleMedia_h */ | #endif /* WebKitDOMStyleMedia_h */ | |||
End of changes. 2 change blocks. | ||||
21 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMStyleSheet.h | WebKitDOMStyleSheet.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMStyleSheet_h | #ifndef WebKitDOMStyleSheet_h | |||
#define WebKitDOMStyleSheet_h | #define WebKitDOMStyleSheet_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_style_sheet_get_type (void); | webkit_dom_style_sheet_get_type (void); | |||
/** | /** | |||
* webkit_dom_style_sheet_get_disabled: | * webkit_dom_style_sheet_get_disabled: | |||
* @self: A #WebKitDOMStyleSheet | * @self: A #WebKitDOMStyleSheet | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_style_sheet_get_disabled(WebKitDOMStyleSheet* self); | webkit_dom_style_sheet_get_disabled(WebKitDOMStyleSheet* self); | |||
/** | /** | |||
* webkit_dom_style_sheet_set_disabled: | * webkit_dom_style_sheet_set_disabled: | |||
* @self: A #WebKitDOMStyleSheet | * @self: A #WebKitDOMStyleSheet | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_style_sheet_set_disabled(WebKitDOMStyleSheet* self, gboolean val ue); | webkit_dom_style_sheet_set_disabled(WebKitDOMStyleSheet* self, gboolean val ue); | |||
/** | /** | |||
* webkit_dom_style_sheet_get_owner_node: | * webkit_dom_style_sheet_get_owner_node: | |||
* @self: A #WebKitDOMStyleSheet | * @self: A #WebKitDOMStyleSheet | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_style_sheet_get_owner_node(WebKitDOMStyleSheet* self); | webkit_dom_style_sheet_get_owner_node(WebKitDOMStyleSheet* self); | |||
/** | /** | |||
* webkit_dom_style_sheet_get_parent_style_sheet: | * webkit_dom_style_sheet_get_parent_style_sheet: | |||
* @self: A #WebKitDOMStyleSheet | * @self: A #WebKitDOMStyleSheet | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMStyleSheet | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMStyleSheet* | WEBKIT_API WebKitDOMStyleSheet* | |||
webkit_dom_style_sheet_get_parent_style_sheet(WebKitDOMStyleSheet* self); | webkit_dom_style_sheet_get_parent_style_sheet(WebKitDOMStyleSheet* self); | |||
/** | /** | |||
* webkit_dom_style_sheet_get_href: | * webkit_dom_style_sheet_get_href: | |||
* @self: A #WebKitDOMStyleSheet | * @self: A #WebKitDOMStyleSheet | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_style_sheet_get_href(WebKitDOMStyleSheet* self); | webkit_dom_style_sheet_get_href(WebKitDOMStyleSheet* self); | |||
/** | /** | |||
* webkit_dom_style_sheet_get_title: | * webkit_dom_style_sheet_get_title: | |||
* @self: A #WebKitDOMStyleSheet | * @self: A #WebKitDOMStyleSheet | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_style_sheet_get_title(WebKitDOMStyleSheet* self); | webkit_dom_style_sheet_get_title(WebKitDOMStyleSheet* self); | |||
/** | /** | |||
* webkit_dom_style_sheet_get_media: | * webkit_dom_style_sheet_get_media: | |||
* @self: A #WebKitDOMStyleSheet | * @self: A #WebKitDOMStyleSheet | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMMediaList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMMediaList* | WEBKIT_API WebKitDOMMediaList* | |||
webkit_dom_style_sheet_get_media(WebKitDOMStyleSheet* self); | webkit_dom_style_sheet_get_media(WebKitDOMStyleSheet* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMStyleSheet_h */ | #endif /* WebKitDOMStyleSheet_h */ | |||
End of changes. 8 change blocks. | ||||
33 lines changed or deleted | 25 lines changed or added | |||
WebKitDOMStyleSheetList.h | WebKitDOMStyleSheetList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMStyleSheetList_h | #ifndef WebKitDOMStyleSheetList_h | |||
#define WebKitDOMStyleSheetList_h | #define WebKitDOMStyleSheetList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_style_sheet_list_get_type (void); | webkit_dom_style_sheet_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_style_sheet_list_item: | * webkit_dom_style_sheet_list_item: | |||
* @self: A #WebKitDOMStyleSheetList | * @self: A #WebKitDOMStyleSheetList | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMStyleSheet | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMStyleSheet* | WEBKIT_API WebKitDOMStyleSheet* | |||
webkit_dom_style_sheet_list_item(WebKitDOMStyleSheetList* self, gulong inde x); | webkit_dom_style_sheet_list_item(WebKitDOMStyleSheetList* self, gulong inde x); | |||
/** | /** | |||
* webkit_dom_style_sheet_list_get_length: | * webkit_dom_style_sheet_list_get_length: | |||
* @self: A #WebKitDOMStyleSheetList | * @self: A #WebKitDOMStyleSheetList | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_style_sheet_list_get_length(WebKitDOMStyleSheetList* self); | webkit_dom_style_sheet_list_get_length(WebKitDOMStyleSheetList* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMStyleSheetList_h */ | #endif /* WebKitDOMStyleSheetList_h */ | |||
End of changes. 3 change blocks. | ||||
23 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMText.h | WebKitDOMText.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMText_h | #ifndef WebKitDOMText_h | |||
#define WebKitDOMText_h | #define WebKitDOMText_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMCharacterData.h> | #include <webkitdom/WebKitDOMCharacterData.h> | |||
skipping to change at line 58 | skipping to change at line 58 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_text_get_type (void); | webkit_dom_text_get_type (void); | |||
/** | /** | |||
* webkit_dom_text_split_text: | * webkit_dom_text_split_text: | |||
* @self: A #WebKitDOMText | * @self: A #WebKitDOMText | |||
* @offset: A #gulong | * @offset: A #gulong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMText | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMText* | WEBKIT_API WebKitDOMText* | |||
webkit_dom_text_split_text(WebKitDOMText* self, gulong offset, GError** err or); | webkit_dom_text_split_text(WebKitDOMText* self, gulong offset, GError** err or); | |||
/** | /** | |||
* webkit_dom_text_replace_whole_text: | * webkit_dom_text_replace_whole_text: | |||
* @self: A #WebKitDOMText | * @self: A #WebKitDOMText | |||
* @content: A #gchar | * @content: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMText | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMText* | WEBKIT_API WebKitDOMText* | |||
webkit_dom_text_replace_whole_text(WebKitDOMText* self, const gchar* conten t, GError** error); | webkit_dom_text_replace_whole_text(WebKitDOMText* self, const gchar* conten t, GError** error); | |||
/** | /** | |||
* webkit_dom_text_get_whole_text: | * webkit_dom_text_get_whole_text: | |||
* @self: A #WebKitDOMText | * @self: A #WebKitDOMText | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_text_get_whole_text(WebKitDOMText* self); | webkit_dom_text_get_whole_text(WebKitDOMText* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMText_h */ | #endif /* WebKitDOMText_h */ | |||
End of changes. 4 change blocks. | ||||
25 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMTextTrack.h | WebKitDOMTextTrack.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMTextTrack_h | #ifndef WebKitDOMTextTrack_h | |||
#define WebKitDOMTextTrack_h | #define WebKitDOMTextTrack_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_text_track_get_type (void); | webkit_dom_text_track_get_type (void); | |||
/** | /** | |||
* webkit_dom_text_track_add_cue: | * webkit_dom_text_track_add_cue: | |||
* @self: A #WebKitDOMTextTrack | * @self: A #WebKitDOMTextTrack | |||
* @cue: A #WebKitDOMTextTrackCue | * @cue: A #WebKitDOMTextTrackCue | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_text_track_add_cue(WebKitDOMTextTrack* self, WebKitDOMTextTrackC ue* cue); | webkit_dom_text_track_add_cue(WebKitDOMTextTrack* self, WebKitDOMTextTrackC ue* cue); | |||
/** | /** | |||
* webkit_dom_text_track_remove_cue: | * webkit_dom_text_track_remove_cue: | |||
* @self: A #WebKitDOMTextTrack | * @self: A #WebKitDOMTextTrack | |||
* @cue: A #WebKitDOMTextTrackCue | * @cue: A #WebKitDOMTextTrackCue | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_text_track_remove_cue(WebKitDOMTextTrack* self, WebKitDOMTextTra ckCue* cue, GError** error); | webkit_dom_text_track_remove_cue(WebKitDOMTextTrack* self, WebKitDOMTextTra ckCue* cue, GError** error); | |||
#if !defined(WEBKIT_DISABLE_DEPRECATED) | ||||
/** | /** | |||
* webkit_dom_text_track_dispatch_event: | * webkit_dom_text_track_dispatch_event: | |||
* @self: A #WebKitDOMTextTrack | * @self: A #WebKitDOMTextTrack | |||
* @evt: A #WebKitDOMEvent | * @evt: A #WebKitDOMEvent | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | * | |||
* Deprecated: 2.4: Use webkit_dom_event_target_dispatch_event() instead. | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_DEPRECATED_FOR(webkit_dom_event_target_dispatch_event) gboolean | |||
webkit_dom_text_track_dispatch_event(WebKitDOMTextTrack* self, WebKitDOMEve nt* evt, GError** error); | webkit_dom_text_track_dispatch_event(WebKitDOMTextTrack* self, WebKitDOMEve nt* evt, GError** error); | |||
#endif /* WEBKIT_DISABLE_DEPRECATED */ | ||||
/** | /** | |||
* webkit_dom_text_track_get_kind: | * webkit_dom_text_track_get_id: | |||
* @self: A #WebKitDOMTextTrack | * @self: A #WebKitDOMTextTrack | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
**/ | ||||
WEBKIT_API gchar* | ||||
webkit_dom_text_track_get_id(WebKitDOMTextTrack* self); | ||||
/** | ||||
* webkit_dom_text_track_get_kind: | ||||
* @self: A #WebKitDOMTextTrack | ||||
* | * | |||
* Returns: A #gchar | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_text_track_get_kind(WebKitDOMTextTrack* self); | webkit_dom_text_track_get_kind(WebKitDOMTextTrack* self); | |||
/** | /** | |||
* webkit_dom_text_track_get_label: | * webkit_dom_text_track_get_label: | |||
* @self: A #WebKitDOMTextTrack | * @self: A #WebKitDOMTextTrack | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_text_track_get_label(WebKitDOMTextTrack* self); | webkit_dom_text_track_get_label(WebKitDOMTextTrack* self); | |||
/** | /** | |||
* webkit_dom_text_track_get_language: | * webkit_dom_text_track_get_language: | |||
* @self: A #WebKitDOMTextTrack | * @self: A #WebKitDOMTextTrack | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_text_track_get_language(WebKitDOMTextTrack* self); | webkit_dom_text_track_get_language(WebKitDOMTextTrack* self); | |||
/** | /** | |||
* webkit_dom_text_track_get_mode: | * webkit_dom_text_track_get_mode: | |||
* @self: A #WebKitDOMTextTrack | * @self: A #WebKitDOMTextTrack | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_text_track_get_mode(WebKitDOMTextTrack* self); | webkit_dom_text_track_get_mode(WebKitDOMTextTrack* self); | |||
/** | /** | |||
* webkit_dom_text_track_set_mode: | * webkit_dom_text_track_set_mode: | |||
* @self: A #WebKitDOMTextTrack | * @self: A #WebKitDOMTextTrack | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_text_track_set_mode(WebKitDOMTextTrack* self, const gchar* value ); | webkit_dom_text_track_set_mode(WebKitDOMTextTrack* self, const gchar* value ); | |||
/** | /** | |||
* webkit_dom_text_track_get_cues: | * webkit_dom_text_track_get_cues: | |||
* @self: A #WebKitDOMTextTrack | * @self: A #WebKitDOMTextTrack | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMTextTrackCueList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMTextTrackCueList* | WEBKIT_API WebKitDOMTextTrackCueList* | |||
webkit_dom_text_track_get_cues(WebKitDOMTextTrack* self); | webkit_dom_text_track_get_cues(WebKitDOMTextTrack* self); | |||
/** | /** | |||
* webkit_dom_text_track_get_active_cues: | * webkit_dom_text_track_get_active_cues: | |||
* @self: A #WebKitDOMTextTrack | * @self: A #WebKitDOMTextTrack | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMTextTrackCueList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMTextTrackCueList* | WEBKIT_API WebKitDOMTextTrackCueList* | |||
webkit_dom_text_track_get_active_cues(WebKitDOMTextTrack* self); | webkit_dom_text_track_get_active_cues(WebKitDOMTextTrack* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMTextTrack_h */ | #endif /* WebKitDOMTextTrack_h */ | |||
End of changes. 17 change blocks. | ||||
39 lines changed or deleted | 39 lines changed or added | |||
WebKitDOMTextTrackCue.h | WebKitDOMTextTrackCue.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMTextTrackCue_h | #ifndef WebKitDOMTextTrackCue_h | |||
#define WebKitDOMTextTrackCue_h | #define WebKitDOMTextTrackCue_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_text_track_cue_get_type (void); | webkit_dom_text_track_cue_get_type (void); | |||
/** | /** | |||
* webkit_dom_text_track_cue_get_cue_as_html: | * webkit_dom_text_track_cue_get_cue_as_html: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDocumentFragment | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDocumentFragment* | WEBKIT_API WebKitDOMDocumentFragment* | |||
webkit_dom_text_track_cue_get_cue_as_html(WebKitDOMTextTrackCue* self); | webkit_dom_text_track_cue_get_cue_as_html(WebKitDOMTextTrackCue* self); | |||
#if !defined(WEBKIT_DISABLE_DEPRECATED) | ||||
/** | /** | |||
* webkit_dom_text_track_cue_dispatch_event: | * webkit_dom_text_track_cue_dispatch_event: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* @evt: A #WebKitDOMEvent | * @evt: A #WebKitDOMEvent | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | * | |||
* Deprecated: 2.4: Use webkit_dom_event_target_dispatch_event() instead. | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_DEPRECATED_FOR(webkit_dom_event_target_dispatch_event) gboolean | |||
webkit_dom_text_track_cue_dispatch_event(WebKitDOMTextTrackCue* self, WebKi tDOMEvent* evt, GError** error); | webkit_dom_text_track_cue_dispatch_event(WebKitDOMTextTrackCue* self, WebKi tDOMEvent* evt, GError** error); | |||
#endif /* WEBKIT_DISABLE_DEPRECATED */ | ||||
/** | /** | |||
* webkit_dom_text_track_cue_get_track: | * webkit_dom_text_track_cue_get_track: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMTextTrack | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMTextTrack* | WEBKIT_API WebKitDOMTextTrack* | |||
webkit_dom_text_track_cue_get_track(WebKitDOMTextTrackCue* self); | webkit_dom_text_track_cue_get_track(WebKitDOMTextTrackCue* self); | |||
/** | /** | |||
* webkit_dom_text_track_cue_get_id: | * webkit_dom_text_track_cue_get_id: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_text_track_cue_get_id(WebKitDOMTextTrackCue* self); | webkit_dom_text_track_cue_get_id(WebKitDOMTextTrackCue* self); | |||
/** | /** | |||
* webkit_dom_text_track_cue_set_id: | * webkit_dom_text_track_cue_set_id: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_text_track_cue_set_id(WebKitDOMTextTrackCue* self, const gchar* value); | webkit_dom_text_track_cue_set_id(WebKitDOMTextTrackCue* self, const gchar* value); | |||
/** | /** | |||
* webkit_dom_text_track_cue_get_start_time: | * webkit_dom_text_track_cue_get_start_time: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_text_track_cue_get_start_time(WebKitDOMTextTrackCue* self); | webkit_dom_text_track_cue_get_start_time(WebKitDOMTextTrackCue* self); | |||
/** | /** | |||
* webkit_dom_text_track_cue_set_start_time: | * webkit_dom_text_track_cue_set_start_time: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* @value: A #gdouble | * @value: A #gdouble | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_text_track_cue_set_start_time(WebKitDOMTextTrackCue* self, gdoub le value, GError** error); | webkit_dom_text_track_cue_set_start_time(WebKitDOMTextTrackCue* self, gdoub le value, GError** error); | |||
/** | /** | |||
* webkit_dom_text_track_cue_get_end_time: | * webkit_dom_text_track_cue_get_end_time: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_text_track_cue_get_end_time(WebKitDOMTextTrackCue* self); | webkit_dom_text_track_cue_get_end_time(WebKitDOMTextTrackCue* self); | |||
/** | /** | |||
* webkit_dom_text_track_cue_set_end_time: | * webkit_dom_text_track_cue_set_end_time: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* @value: A #gdouble | * @value: A #gdouble | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_text_track_cue_set_end_time(WebKitDOMTextTrackCue* self, gdouble value, GError** error); | webkit_dom_text_track_cue_set_end_time(WebKitDOMTextTrackCue* self, gdouble value, GError** error); | |||
/** | /** | |||
* webkit_dom_text_track_cue_get_pause_on_exit: | * webkit_dom_text_track_cue_get_pause_on_exit: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_text_track_cue_get_pause_on_exit(WebKitDOMTextTrackCue* self); | webkit_dom_text_track_cue_get_pause_on_exit(WebKitDOMTextTrackCue* self); | |||
/** | /** | |||
* webkit_dom_text_track_cue_set_pause_on_exit: | * webkit_dom_text_track_cue_set_pause_on_exit: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_text_track_cue_set_pause_on_exit(WebKitDOMTextTrackCue* self, gb oolean value); | webkit_dom_text_track_cue_set_pause_on_exit(WebKitDOMTextTrackCue* self, gb oolean value); | |||
/** | /** | |||
* webkit_dom_text_track_cue_get_vertical: | * webkit_dom_text_track_cue_get_vertical: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_text_track_cue_get_vertical(WebKitDOMTextTrackCue* self); | webkit_dom_text_track_cue_get_vertical(WebKitDOMTextTrackCue* self); | |||
/** | /** | |||
* webkit_dom_text_track_cue_set_vertical: | * webkit_dom_text_track_cue_set_vertical: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_text_track_cue_set_vertical(WebKitDOMTextTrackCue* self, const g char* value, GError** error); | webkit_dom_text_track_cue_set_vertical(WebKitDOMTextTrackCue* self, const g char* value, GError** error); | |||
/** | /** | |||
* webkit_dom_text_track_cue_get_snap_to_lines: | * webkit_dom_text_track_cue_get_snap_to_lines: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_text_track_cue_get_snap_to_lines(WebKitDOMTextTrackCue* self); | webkit_dom_text_track_cue_get_snap_to_lines(WebKitDOMTextTrackCue* self); | |||
/** | /** | |||
* webkit_dom_text_track_cue_set_snap_to_lines: | * webkit_dom_text_track_cue_set_snap_to_lines: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_text_track_cue_set_snap_to_lines(WebKitDOMTextTrackCue* self, gb oolean value); | webkit_dom_text_track_cue_set_snap_to_lines(WebKitDOMTextTrackCue* self, gb oolean value); | |||
/** | /** | |||
* webkit_dom_text_track_cue_get_line: | * webkit_dom_text_track_cue_get_line: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_text_track_cue_get_line(WebKitDOMTextTrackCue* self); | webkit_dom_text_track_cue_get_line(WebKitDOMTextTrackCue* self); | |||
/** | /** | |||
* webkit_dom_text_track_cue_set_line: | * webkit_dom_text_track_cue_set_line: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* @value: A #glong | * @value: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_text_track_cue_set_line(WebKitDOMTextTrackCue* self, glong value , GError** error); | webkit_dom_text_track_cue_set_line(WebKitDOMTextTrackCue* self, glong value , GError** error); | |||
/** | /** | |||
* webkit_dom_text_track_cue_get_position: | * webkit_dom_text_track_cue_get_position: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_text_track_cue_get_position(WebKitDOMTextTrackCue* self); | webkit_dom_text_track_cue_get_position(WebKitDOMTextTrackCue* self); | |||
/** | /** | |||
* webkit_dom_text_track_cue_set_position: | * webkit_dom_text_track_cue_set_position: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* @value: A #glong | * @value: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_text_track_cue_set_position(WebKitDOMTextTrackCue* self, glong v alue, GError** error); | webkit_dom_text_track_cue_set_position(WebKitDOMTextTrackCue* self, glong v alue, GError** error); | |||
/** | /** | |||
* webkit_dom_text_track_cue_get_size: | * webkit_dom_text_track_cue_get_size: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_text_track_cue_get_size(WebKitDOMTextTrackCue* self); | webkit_dom_text_track_cue_get_size(WebKitDOMTextTrackCue* self); | |||
/** | /** | |||
* webkit_dom_text_track_cue_set_size: | * webkit_dom_text_track_cue_set_size: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* @value: A #glong | * @value: A #glong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_text_track_cue_set_size(WebKitDOMTextTrackCue* self, glong value , GError** error); | webkit_dom_text_track_cue_set_size(WebKitDOMTextTrackCue* self, glong value , GError** error); | |||
/** | /** | |||
* webkit_dom_text_track_cue_get_align: | * webkit_dom_text_track_cue_get_align: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_text_track_cue_get_align(WebKitDOMTextTrackCue* self); | webkit_dom_text_track_cue_get_align(WebKitDOMTextTrackCue* self); | |||
/** | /** | |||
* webkit_dom_text_track_cue_set_align: | * webkit_dom_text_track_cue_set_align: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* @value: A #gchar | * @value: A #gchar | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_text_track_cue_set_align(WebKitDOMTextTrackCue* self, const gcha r* value, GError** error); | webkit_dom_text_track_cue_set_align(WebKitDOMTextTrackCue* self, const gcha r* value, GError** error); | |||
/** | /** | |||
* webkit_dom_text_track_cue_get_text: | * webkit_dom_text_track_cue_get_text: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_text_track_cue_get_text(WebKitDOMTextTrackCue* self); | webkit_dom_text_track_cue_get_text(WebKitDOMTextTrackCue* self); | |||
/** | /** | |||
* webkit_dom_text_track_cue_set_text: | * webkit_dom_text_track_cue_set_text: | |||
* @self: A #WebKitDOMTextTrackCue | * @self: A #WebKitDOMTextTrackCue | |||
* @value: A #gchar | * @value: A #gchar | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_text_track_cue_set_text(WebKitDOMTextTrackCue* self, const gchar * value); | webkit_dom_text_track_cue_set_text(WebKitDOMTextTrackCue* self, const gchar * value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMTextTrackCue_h */ | #endif /* WebKitDOMTextTrackCue_h */ | |||
End of changes. 30 change blocks. | ||||
69 lines changed or deleted | 37 lines changed or added | |||
WebKitDOMTextTrackCueList.h | WebKitDOMTextTrackCueList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMTextTrackCueList_h | #ifndef WebKitDOMTextTrackCueList_h | |||
#define WebKitDOMTextTrackCueList_h | #define WebKitDOMTextTrackCueList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_text_track_cue_list_get_type (void); | webkit_dom_text_track_cue_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_text_track_cue_list_item: | * webkit_dom_text_track_cue_list_item: | |||
* @self: A #WebKitDOMTextTrackCueList | * @self: A #WebKitDOMTextTrackCueList | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMTextTrackCue | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMTextTrackCue* | WEBKIT_API WebKitDOMTextTrackCue* | |||
webkit_dom_text_track_cue_list_item(WebKitDOMTextTrackCueList* self, gulong index); | webkit_dom_text_track_cue_list_item(WebKitDOMTextTrackCueList* self, gulong index); | |||
/** | /** | |||
* webkit_dom_text_track_cue_list_get_cue_by_id: | * webkit_dom_text_track_cue_list_get_cue_by_id: | |||
* @self: A #WebKitDOMTextTrackCueList | * @self: A #WebKitDOMTextTrackCueList | |||
* @id: A #gchar | * @id: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMTextTrackCue | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMTextTrackCue* | WEBKIT_API WebKitDOMTextTrackCue* | |||
webkit_dom_text_track_cue_list_get_cue_by_id(WebKitDOMTextTrackCueList* sel f, const gchar* id); | webkit_dom_text_track_cue_list_get_cue_by_id(WebKitDOMTextTrackCueList* sel f, const gchar* id); | |||
/** | /** | |||
* webkit_dom_text_track_cue_list_get_length: | * webkit_dom_text_track_cue_list_get_length: | |||
* @self: A #WebKitDOMTextTrackCueList | * @self: A #WebKitDOMTextTrackCueList | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_text_track_cue_list_get_length(WebKitDOMTextTrackCueList* self); | webkit_dom_text_track_cue_list_get_length(WebKitDOMTextTrackCueList* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMTextTrackCueList_h */ | #endif /* WebKitDOMTextTrackCueList_h */ | |||
End of changes. 4 change blocks. | ||||
25 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMTextTrackList.h | WebKitDOMTextTrackList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMTextTrackList_h | #ifndef WebKitDOMTextTrackList_h | |||
#define WebKitDOMTextTrackList_h | #define WebKitDOMTextTrackList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_text_track_list_get_type (void); | webkit_dom_text_track_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_text_track_list_item: | * webkit_dom_text_track_list_item: | |||
* @self: A #WebKitDOMTextTrackList | * @self: A #WebKitDOMTextTrackList | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMTextTrack | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMTextTrack* | WEBKIT_API WebKitDOMTextTrack* | |||
webkit_dom_text_track_list_item(WebKitDOMTextTrackList* self, gulong index) ; | webkit_dom_text_track_list_item(WebKitDOMTextTrackList* self, gulong index) ; | |||
/** | /** | |||
* webkit_dom_text_track_list_get_track_by_id: | ||||
* @self: A #WebKitDOMTextTrackList | ||||
* @id: A #gchar | ||||
* | ||||
* Returns: (transfer none): A #WebKitDOMTextTrack | ||||
**/ | ||||
WEBKIT_API WebKitDOMTextTrack* | ||||
webkit_dom_text_track_list_get_track_by_id(WebKitDOMTextTrackList* self, co | ||||
nst gchar* id); | ||||
#if !defined(WEBKIT_DISABLE_DEPRECATED) | ||||
/** | ||||
* webkit_dom_text_track_list_dispatch_event: | * webkit_dom_text_track_list_dispatch_event: | |||
* @self: A #WebKitDOMTextTrackList | * @self: A #WebKitDOMTextTrackList | |||
* @evt: A #WebKitDOMEvent | * @evt: A #WebKitDOMEvent | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | * | |||
* Deprecated: 2.4: Use webkit_dom_event_target_dispatch_event() instead. | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_DEPRECATED_FOR(webkit_dom_event_target_dispatch_event) gboolean | |||
webkit_dom_text_track_list_dispatch_event(WebKitDOMTextTrackList* self, Web KitDOMEvent* evt, GError** error); | webkit_dom_text_track_list_dispatch_event(WebKitDOMTextTrackList* self, Web KitDOMEvent* evt, GError** error); | |||
#endif /* WEBKIT_DISABLE_DEPRECATED */ | ||||
/** | /** | |||
* webkit_dom_text_track_list_get_length: | * webkit_dom_text_track_list_get_length: | |||
* @self: A #WebKitDOMTextTrackList | * @self: A #WebKitDOMTextTrackList | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_text_track_list_get_length(WebKitDOMTextTrackList* self); | webkit_dom_text_track_list_get_length(WebKitDOMTextTrackList* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMTextTrackList_h */ | #endif /* WebKitDOMTextTrackList_h */ | |||
End of changes. 8 change blocks. | ||||
25 lines changed or deleted | 37 lines changed or added | |||
WebKitDOMTimeRanges.h | WebKitDOMTimeRanges.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMTimeRanges_h | #ifndef WebKitDOMTimeRanges_h | |||
#define WebKitDOMTimeRanges_h | #define WebKitDOMTimeRanges_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 58 | skipping to change at line 58 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_time_ranges_get_type (void); | webkit_dom_time_ranges_get_type (void); | |||
/** | /** | |||
* webkit_dom_time_ranges_start: | * webkit_dom_time_ranges_start: | |||
* @self: A #WebKitDOMTimeRanges | * @self: A #WebKitDOMTimeRanges | |||
* @index: A #gulong | * @index: A #gulong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_time_ranges_start(WebKitDOMTimeRanges* self, gulong index, GErro r** error); | webkit_dom_time_ranges_start(WebKitDOMTimeRanges* self, gulong index, GErro r** error); | |||
/** | /** | |||
* webkit_dom_time_ranges_end: | * webkit_dom_time_ranges_end: | |||
* @self: A #WebKitDOMTimeRanges | * @self: A #WebKitDOMTimeRanges | |||
* @index: A #gulong | * @index: A #gulong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_time_ranges_end(WebKitDOMTimeRanges* self, gulong index, GError* * error); | webkit_dom_time_ranges_end(WebKitDOMTimeRanges* self, gulong index, GError* * error); | |||
/** | /** | |||
* webkit_dom_time_ranges_get_length: | * webkit_dom_time_ranges_get_length: | |||
* @self: A #WebKitDOMTimeRanges | * @self: A #WebKitDOMTimeRanges | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_time_ranges_get_length(WebKitDOMTimeRanges* self); | webkit_dom_time_ranges_get_length(WebKitDOMTimeRanges* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMTimeRanges_h */ | #endif /* WebKitDOMTimeRanges_h */ | |||
End of changes. 4 change blocks. | ||||
25 lines changed or deleted | 22 lines changed or added | |||
WebKitDOMTrackEvent.h | WebKitDOMTrackEvent.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMTrackEvent_h | #ifndef WebKitDOMTrackEvent_h | |||
#define WebKitDOMTrackEvent_h | #define WebKitDOMTrackEvent_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMEvent.h> | #include <webkitdom/WebKitDOMEvent.h> | |||
End of changes. 1 change blocks. | ||||
19 lines changed or deleted | 19 lines changed or added | |||
WebKitDOMTreeWalker.h | WebKitDOMTreeWalker.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMTreeWalker_h | #ifndef WebKitDOMTreeWalker_h | |||
#define WebKitDOMTreeWalker_h | #define WebKitDOMTreeWalker_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_tree_walker_get_type (void); | webkit_dom_tree_walker_get_type (void); | |||
/** | /** | |||
* webkit_dom_tree_walker_parent_node: | * webkit_dom_tree_walker_parent_node: | |||
* @self: A #WebKitDOMTreeWalker | * @self: A #WebKitDOMTreeWalker | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_tree_walker_parent_node(WebKitDOMTreeWalker* self); | webkit_dom_tree_walker_parent_node(WebKitDOMTreeWalker* self); | |||
/** | /** | |||
* webkit_dom_tree_walker_first_child: | * webkit_dom_tree_walker_first_child: | |||
* @self: A #WebKitDOMTreeWalker | * @self: A #WebKitDOMTreeWalker | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_tree_walker_first_child(WebKitDOMTreeWalker* self); | webkit_dom_tree_walker_first_child(WebKitDOMTreeWalker* self); | |||
/** | /** | |||
* webkit_dom_tree_walker_last_child: | * webkit_dom_tree_walker_last_child: | |||
* @self: A #WebKitDOMTreeWalker | * @self: A #WebKitDOMTreeWalker | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_tree_walker_last_child(WebKitDOMTreeWalker* self); | webkit_dom_tree_walker_last_child(WebKitDOMTreeWalker* self); | |||
/** | /** | |||
* webkit_dom_tree_walker_previous_sibling: | * webkit_dom_tree_walker_previous_sibling: | |||
* @self: A #WebKitDOMTreeWalker | * @self: A #WebKitDOMTreeWalker | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_tree_walker_previous_sibling(WebKitDOMTreeWalker* self); | webkit_dom_tree_walker_previous_sibling(WebKitDOMTreeWalker* self); | |||
/** | /** | |||
* webkit_dom_tree_walker_next_sibling: | * webkit_dom_tree_walker_next_sibling: | |||
* @self: A #WebKitDOMTreeWalker | * @self: A #WebKitDOMTreeWalker | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_tree_walker_next_sibling(WebKitDOMTreeWalker* self); | webkit_dom_tree_walker_next_sibling(WebKitDOMTreeWalker* self); | |||
/** | /** | |||
* webkit_dom_tree_walker_previous_node: | * webkit_dom_tree_walker_previous_node: | |||
* @self: A #WebKitDOMTreeWalker | * @self: A #WebKitDOMTreeWalker | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_tree_walker_previous_node(WebKitDOMTreeWalker* self); | webkit_dom_tree_walker_previous_node(WebKitDOMTreeWalker* self); | |||
/** | /** | |||
* webkit_dom_tree_walker_next_node: | * webkit_dom_tree_walker_next_node: | |||
* @self: A #WebKitDOMTreeWalker | * @self: A #WebKitDOMTreeWalker | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_tree_walker_next_node(WebKitDOMTreeWalker* self); | webkit_dom_tree_walker_next_node(WebKitDOMTreeWalker* self); | |||
/** | /** | |||
* webkit_dom_tree_walker_get_root: | * webkit_dom_tree_walker_get_root: | |||
* @self: A #WebKitDOMTreeWalker | * @self: A #WebKitDOMTreeWalker | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_tree_walker_get_root(WebKitDOMTreeWalker* self); | webkit_dom_tree_walker_get_root(WebKitDOMTreeWalker* self); | |||
/** | /** | |||
* webkit_dom_tree_walker_get_what_to_show: | * webkit_dom_tree_walker_get_what_to_show: | |||
* @self: A #WebKitDOMTreeWalker | * @self: A #WebKitDOMTreeWalker | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_tree_walker_get_what_to_show(WebKitDOMTreeWalker* self); | webkit_dom_tree_walker_get_what_to_show(WebKitDOMTreeWalker* self); | |||
/** | /** | |||
* webkit_dom_tree_walker_get_filter: | * webkit_dom_tree_walker_get_filter: | |||
* @self: A #WebKitDOMTreeWalker | * @self: A #WebKitDOMTreeWalker | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeFilter | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeFilter* | WEBKIT_API WebKitDOMNodeFilter* | |||
webkit_dom_tree_walker_get_filter(WebKitDOMTreeWalker* self); | webkit_dom_tree_walker_get_filter(WebKitDOMTreeWalker* self); | |||
/** | /** | |||
* webkit_dom_tree_walker_get_expand_entity_references: | * webkit_dom_tree_walker_get_expand_entity_references: | |||
* @self: A #WebKitDOMTreeWalker | * @self: A #WebKitDOMTreeWalker | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_tree_walker_get_expand_entity_references(WebKitDOMTreeWalker* se lf); | webkit_dom_tree_walker_get_expand_entity_references(WebKitDOMTreeWalker* se lf); | |||
/** | /** | |||
* webkit_dom_tree_walker_get_current_node: | * webkit_dom_tree_walker_get_current_node: | |||
* @self: A #WebKitDOMTreeWalker | * @self: A #WebKitDOMTreeWalker | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_tree_walker_get_current_node(WebKitDOMTreeWalker* self); | webkit_dom_tree_walker_get_current_node(WebKitDOMTreeWalker* self); | |||
/** | /** | |||
* webkit_dom_tree_walker_set_current_node: | * webkit_dom_tree_walker_set_current_node: | |||
* @self: A #WebKitDOMTreeWalker | * @self: A #WebKitDOMTreeWalker | |||
* @value: A #WebKitDOMNode | * @value: A #WebKitDOMNode | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_tree_walker_set_current_node(WebKitDOMTreeWalker* self, WebKitDO MNode* value, GError** error); | webkit_dom_tree_walker_set_current_node(WebKitDOMTreeWalker* self, WebKitDO MNode* value, GError** error); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMTreeWalker_h */ | #endif /* WebKitDOMTreeWalker_h */ | |||
End of changes. 14 change blocks. | ||||
45 lines changed or deleted | 31 lines changed or added | |||
WebKitDOMUIEvent.h | WebKitDOMUIEvent.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMUIEvent_h | #ifndef WebKitDOMUIEvent_h | |||
#define WebKitDOMUIEvent_h | #define WebKitDOMUIEvent_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMEvent.h> | #include <webkitdom/WebKitDOMEvent.h> | |||
skipping to change at line 61 | skipping to change at line 61 | |||
/** | /** | |||
* webkit_dom_ui_event_init_ui_event: | * webkit_dom_ui_event_init_ui_event: | |||
* @self: A #WebKitDOMUIEvent | * @self: A #WebKitDOMUIEvent | |||
* @type: A #gchar | * @type: A #gchar | |||
* @canBubble: A #gboolean | * @canBubble: A #gboolean | |||
* @cancelable: A #gboolean | * @cancelable: A #gboolean | |||
* @view: A #WebKitDOMDOMWindow | * @view: A #WebKitDOMDOMWindow | |||
* @detail: A #glong | * @detail: A #glong | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_ui_event_init_ui_event(WebKitDOMUIEvent* self, const gchar* type , gboolean canBubble, gboolean cancelable, WebKitDOMDOMWindow* view, glong detail); | webkit_dom_ui_event_init_ui_event(WebKitDOMUIEvent* self, const gchar* type , gboolean canBubble, gboolean cancelable, WebKitDOMDOMWindow* view, glong detail); | |||
/** | /** | |||
* webkit_dom_ui_event_get_view: | * webkit_dom_ui_event_get_view: | |||
* @self: A #WebKitDOMUIEvent | * @self: A #WebKitDOMUIEvent | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMDOMWindow | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMDOMWindow* | WEBKIT_API WebKitDOMDOMWindow* | |||
webkit_dom_ui_event_get_view(WebKitDOMUIEvent* self); | webkit_dom_ui_event_get_view(WebKitDOMUIEvent* self); | |||
/** | /** | |||
* webkit_dom_ui_event_get_detail: | * webkit_dom_ui_event_get_detail: | |||
* @self: A #WebKitDOMUIEvent | * @self: A #WebKitDOMUIEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_ui_event_get_detail(WebKitDOMUIEvent* self); | webkit_dom_ui_event_get_detail(WebKitDOMUIEvent* self); | |||
/** | /** | |||
* webkit_dom_ui_event_get_key_code: | * webkit_dom_ui_event_get_key_code: | |||
* @self: A #WebKitDOMUIEvent | * @self: A #WebKitDOMUIEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_ui_event_get_key_code(WebKitDOMUIEvent* self); | webkit_dom_ui_event_get_key_code(WebKitDOMUIEvent* self); | |||
/** | /** | |||
* webkit_dom_ui_event_get_char_code: | * webkit_dom_ui_event_get_char_code: | |||
* @self: A #WebKitDOMUIEvent | * @self: A #WebKitDOMUIEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_ui_event_get_char_code(WebKitDOMUIEvent* self); | webkit_dom_ui_event_get_char_code(WebKitDOMUIEvent* self); | |||
/** | /** | |||
* webkit_dom_ui_event_get_layer_x: | * webkit_dom_ui_event_get_layer_x: | |||
* @self: A #WebKitDOMUIEvent | * @self: A #WebKitDOMUIEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_ui_event_get_layer_x(WebKitDOMUIEvent* self); | webkit_dom_ui_event_get_layer_x(WebKitDOMUIEvent* self); | |||
/** | /** | |||
* webkit_dom_ui_event_get_layer_y: | * webkit_dom_ui_event_get_layer_y: | |||
* @self: A #WebKitDOMUIEvent | * @self: A #WebKitDOMUIEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_ui_event_get_layer_y(WebKitDOMUIEvent* self); | webkit_dom_ui_event_get_layer_y(WebKitDOMUIEvent* self); | |||
/** | /** | |||
* webkit_dom_ui_event_get_page_x: | * webkit_dom_ui_event_get_page_x: | |||
* @self: A #WebKitDOMUIEvent | * @self: A #WebKitDOMUIEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_ui_event_get_page_x(WebKitDOMUIEvent* self); | webkit_dom_ui_event_get_page_x(WebKitDOMUIEvent* self); | |||
/** | /** | |||
* webkit_dom_ui_event_get_page_y: | * webkit_dom_ui_event_get_page_y: | |||
* @self: A #WebKitDOMUIEvent | * @self: A #WebKitDOMUIEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_ui_event_get_page_y(WebKitDOMUIEvent* self); | webkit_dom_ui_event_get_page_y(WebKitDOMUIEvent* self); | |||
/** | /** | |||
* webkit_dom_ui_event_get_which: | * webkit_dom_ui_event_get_which: | |||
* @self: A #WebKitDOMUIEvent | * @self: A #WebKitDOMUIEvent | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_ui_event_get_which(WebKitDOMUIEvent* self); | webkit_dom_ui_event_get_which(WebKitDOMUIEvent* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMUIEvent_h */ | #endif /* WebKitDOMUIEvent_h */ | |||
End of changes. 11 change blocks. | ||||
39 lines changed or deleted | 28 lines changed or added | |||
WebKitDOMValidityState.h | WebKitDOMValidityState.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMValidityState_h | #ifndef WebKitDOMValidityState_h | |||
#define WebKitDOMValidityState_h | #define WebKitDOMValidityState_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_validity_state_get_type (void); | webkit_dom_validity_state_get_type (void); | |||
/** | /** | |||
* webkit_dom_validity_state_get_value_missing: | * webkit_dom_validity_state_get_value_missing: | |||
* @self: A #WebKitDOMValidityState | * @self: A #WebKitDOMValidityState | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_validity_state_get_value_missing(WebKitDOMValidityState* self); | webkit_dom_validity_state_get_value_missing(WebKitDOMValidityState* self); | |||
/** | /** | |||
* webkit_dom_validity_state_get_type_mismatch: | * webkit_dom_validity_state_get_type_mismatch: | |||
* @self: A #WebKitDOMValidityState | * @self: A #WebKitDOMValidityState | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_validity_state_get_type_mismatch(WebKitDOMValidityState* self); | webkit_dom_validity_state_get_type_mismatch(WebKitDOMValidityState* self); | |||
/** | /** | |||
* webkit_dom_validity_state_get_pattern_mismatch: | * webkit_dom_validity_state_get_pattern_mismatch: | |||
* @self: A #WebKitDOMValidityState | * @self: A #WebKitDOMValidityState | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_validity_state_get_pattern_mismatch(WebKitDOMValidityState* self ); | webkit_dom_validity_state_get_pattern_mismatch(WebKitDOMValidityState* self ); | |||
/** | /** | |||
* webkit_dom_validity_state_get_too_long: | * webkit_dom_validity_state_get_too_long: | |||
* @self: A #WebKitDOMValidityState | * @self: A #WebKitDOMValidityState | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_validity_state_get_too_long(WebKitDOMValidityState* self); | webkit_dom_validity_state_get_too_long(WebKitDOMValidityState* self); | |||
/** | /** | |||
* webkit_dom_validity_state_get_range_underflow: | * webkit_dom_validity_state_get_range_underflow: | |||
* @self: A #WebKitDOMValidityState | * @self: A #WebKitDOMValidityState | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_validity_state_get_range_underflow(WebKitDOMValidityState* self) ; | webkit_dom_validity_state_get_range_underflow(WebKitDOMValidityState* self) ; | |||
/** | /** | |||
* webkit_dom_validity_state_get_range_overflow: | * webkit_dom_validity_state_get_range_overflow: | |||
* @self: A #WebKitDOMValidityState | * @self: A #WebKitDOMValidityState | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_validity_state_get_range_overflow(WebKitDOMValidityState* self); | webkit_dom_validity_state_get_range_overflow(WebKitDOMValidityState* self); | |||
/** | /** | |||
* webkit_dom_validity_state_get_step_mismatch: | * webkit_dom_validity_state_get_step_mismatch: | |||
* @self: A #WebKitDOMValidityState | * @self: A #WebKitDOMValidityState | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_validity_state_get_step_mismatch(WebKitDOMValidityState* self); | webkit_dom_validity_state_get_step_mismatch(WebKitDOMValidityState* self); | |||
/** | /** | |||
* webkit_dom_validity_state_get_bad_input: | * webkit_dom_validity_state_get_bad_input: | |||
* @self: A #WebKitDOMValidityState | * @self: A #WebKitDOMValidityState | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_validity_state_get_bad_input(WebKitDOMValidityState* self); | webkit_dom_validity_state_get_bad_input(WebKitDOMValidityState* self); | |||
/** | /** | |||
* webkit_dom_validity_state_get_custom_error: | * webkit_dom_validity_state_get_custom_error: | |||
* @self: A #WebKitDOMValidityState | * @self: A #WebKitDOMValidityState | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_validity_state_get_custom_error(WebKitDOMValidityState* self); | webkit_dom_validity_state_get_custom_error(WebKitDOMValidityState* self); | |||
/** | /** | |||
* webkit_dom_validity_state_get_valid: | * webkit_dom_validity_state_get_valid: | |||
* @self: A #WebKitDOMValidityState | * @self: A #WebKitDOMValidityState | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_validity_state_get_valid(WebKitDOMValidityState* self); | webkit_dom_validity_state_get_valid(WebKitDOMValidityState* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMValidityState_h */ | #endif /* WebKitDOMValidityState_h */ | |||
End of changes. 11 change blocks. | ||||
39 lines changed or deleted | 29 lines changed or added | |||
WebKitDOMVideoTrack.h | WebKitDOMVideoTrack.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMVideoTrack_h | #ifndef WebKitDOMVideoTrack_h | |||
#define WebKitDOMVideoTrack_h | #define WebKitDOMVideoTrack_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_video_track_get_type (void); | webkit_dom_video_track_get_type (void); | |||
/** | /** | |||
* webkit_dom_video_track_get_id: | * webkit_dom_video_track_get_id: | |||
* @self: A #WebKitDOMVideoTrack | * @self: A #WebKitDOMVideoTrack | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_video_track_get_id(WebKitDOMVideoTrack* self); | webkit_dom_video_track_get_id(WebKitDOMVideoTrack* self); | |||
/** | /** | |||
* webkit_dom_video_track_get_kind: | * webkit_dom_video_track_get_kind: | |||
* @self: A #WebKitDOMVideoTrack | * @self: A #WebKitDOMVideoTrack | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_video_track_get_kind(WebKitDOMVideoTrack* self); | webkit_dom_video_track_get_kind(WebKitDOMVideoTrack* self); | |||
/** | /** | |||
* webkit_dom_video_track_get_label: | * webkit_dom_video_track_get_label: | |||
* @self: A #WebKitDOMVideoTrack | * @self: A #WebKitDOMVideoTrack | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_video_track_get_label(WebKitDOMVideoTrack* self); | webkit_dom_video_track_get_label(WebKitDOMVideoTrack* self); | |||
/** | /** | |||
* webkit_dom_video_track_get_language: | * webkit_dom_video_track_get_language: | |||
* @self: A #WebKitDOMVideoTrack | * @self: A #WebKitDOMVideoTrack | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_video_track_get_language(WebKitDOMVideoTrack* self); | webkit_dom_video_track_get_language(WebKitDOMVideoTrack* self); | |||
/** | /** | |||
* webkit_dom_video_track_get_selected: | * webkit_dom_video_track_get_selected: | |||
* @self: A #WebKitDOMVideoTrack | * @self: A #WebKitDOMVideoTrack | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_video_track_get_selected(WebKitDOMVideoTrack* self); | webkit_dom_video_track_get_selected(WebKitDOMVideoTrack* self); | |||
/** | /** | |||
* webkit_dom_video_track_set_selected: | * webkit_dom_video_track_set_selected: | |||
* @self: A #WebKitDOMVideoTrack | * @self: A #WebKitDOMVideoTrack | |||
* @value: A #gboolean | * @value: A #gboolean | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_video_track_set_selected(WebKitDOMVideoTrack* self, gboolean val ue); | webkit_dom_video_track_set_selected(WebKitDOMVideoTrack* self, gboolean val ue); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMVideoTrack_h */ | #endif /* WebKitDOMVideoTrack_h */ | |||
End of changes. 7 change blocks. | ||||
31 lines changed or deleted | 24 lines changed or added | |||
WebKitDOMVideoTrackList.h | WebKitDOMVideoTrackList.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMVideoTrackList_h | #ifndef WebKitDOMVideoTrackList_h | |||
#define WebKitDOMVideoTrackList_h | #define WebKitDOMVideoTrackList_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_video_track_list_get_type (void); | webkit_dom_video_track_list_get_type (void); | |||
/** | /** | |||
* webkit_dom_video_track_list_item: | * webkit_dom_video_track_list_item: | |||
* @self: A #WebKitDOMVideoTrackList | * @self: A #WebKitDOMVideoTrackList | |||
* @index: A #gulong | * @index: A #gulong | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMVideoTrack | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMVideoTrack* | WEBKIT_API WebKitDOMVideoTrack* | |||
webkit_dom_video_track_list_item(WebKitDOMVideoTrackList* self, gulong inde x); | webkit_dom_video_track_list_item(WebKitDOMVideoTrackList* self, gulong inde x); | |||
/** | /** | |||
* webkit_dom_video_track_list_get_track_by_id: | * webkit_dom_video_track_list_get_track_by_id: | |||
* @self: A #WebKitDOMVideoTrackList | * @self: A #WebKitDOMVideoTrackList | |||
* @id: A #gchar | * @id: A #gchar | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMVideoTrack | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMVideoTrack* | WEBKIT_API WebKitDOMVideoTrack* | |||
webkit_dom_video_track_list_get_track_by_id(WebKitDOMVideoTrackList* self, const gchar* id); | webkit_dom_video_track_list_get_track_by_id(WebKitDOMVideoTrackList* self, const gchar* id); | |||
#if !defined(WEBKIT_DISABLE_DEPRECATED) | ||||
/** | /** | |||
* webkit_dom_video_track_list_dispatch_event: | * webkit_dom_video_track_list_dispatch_event: | |||
* @self: A #WebKitDOMVideoTrackList | * @self: A #WebKitDOMVideoTrackList | |||
* @evt: A #WebKitDOMEvent | * @evt: A #WebKitDOMEvent | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | * | |||
* Deprecated: 2.4: Use webkit_dom_event_target_dispatch_event() instead. | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_DEPRECATED_FOR(webkit_dom_event_target_dispatch_event) gboolean | |||
webkit_dom_video_track_list_dispatch_event(WebKitDOMVideoTrackList* self, W ebKitDOMEvent* evt, GError** error); | webkit_dom_video_track_list_dispatch_event(WebKitDOMVideoTrackList* self, W ebKitDOMEvent* evt, GError** error); | |||
#endif /* WEBKIT_DISABLE_DEPRECATED */ | ||||
/** | /** | |||
* webkit_dom_video_track_list_get_length: | * webkit_dom_video_track_list_get_length: | |||
* @self: A #WebKitDOMVideoTrackList | * @self: A #WebKitDOMVideoTrackList | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_video_track_list_get_length(WebKitDOMVideoTrackList* self); | webkit_dom_video_track_list_get_length(WebKitDOMVideoTrackList* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMVideoTrackList_h */ | #endif /* WebKitDOMVideoTrackList_h */ | |||
End of changes. 9 change blocks. | ||||
27 lines changed or deleted | 27 lines changed or added | |||
WebKitDOMWebKitNamedFlow.h | WebKitDOMWebKitNamedFlow.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMWebKitNamedFlow_h | #ifndef WebKitDOMWebKitNamedFlow_h | |||
#define WebKitDOMWebKitNamedFlow_h | #define WebKitDOMWebKitNamedFlow_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_webkit_named_flow_get_type (void); | webkit_dom_webkit_named_flow_get_type (void); | |||
/** | /** | |||
* webkit_dom_webkit_named_flow_get_regions_by_content: | * webkit_dom_webkit_named_flow_get_regions_by_content: | |||
* @self: A #WebKitDOMWebKitNamedFlow | * @self: A #WebKitDOMWebKitNamedFlow | |||
* @contentNode: A #WebKitDOMNode | * @contentNode: A #WebKitDOMNode | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_webkit_named_flow_get_regions_by_content(WebKitDOMWebKitNamedFlo w* self, WebKitDOMNode* contentNode); | webkit_dom_webkit_named_flow_get_regions_by_content(WebKitDOMWebKitNamedFlo w* self, WebKitDOMNode* contentNode); | |||
/** | /** | |||
* webkit_dom_webkit_named_flow_get_regions: | * webkit_dom_webkit_named_flow_get_regions: | |||
* @self: A #WebKitDOMWebKitNamedFlow | * @self: A #WebKitDOMWebKitNamedFlow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_webkit_named_flow_get_regions(WebKitDOMWebKitNamedFlow* self); | webkit_dom_webkit_named_flow_get_regions(WebKitDOMWebKitNamedFlow* self); | |||
/** | /** | |||
* webkit_dom_webkit_named_flow_get_content: | * webkit_dom_webkit_named_flow_get_content: | |||
* @self: A #WebKitDOMWebKitNamedFlow | * @self: A #WebKitDOMWebKitNamedFlow | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNodeList | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNodeList* | WEBKIT_API WebKitDOMNodeList* | |||
webkit_dom_webkit_named_flow_get_content(WebKitDOMWebKitNamedFlow* self); | webkit_dom_webkit_named_flow_get_content(WebKitDOMWebKitNamedFlow* self); | |||
#if !defined(WEBKIT_DISABLE_DEPRECATED) | ||||
/** | /** | |||
* webkit_dom_webkit_named_flow_dispatch_event: | * webkit_dom_webkit_named_flow_dispatch_event: | |||
* @self: A #WebKitDOMWebKitNamedFlow | * @self: A #WebKitDOMWebKitNamedFlow | |||
* @event: A #WebKitDOMEvent | * @event: A #WebKitDOMEvent | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | * | |||
* Deprecated: 2.4: Use webkit_dom_event_target_dispatch_event() instead. | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_DEPRECATED_FOR(webkit_dom_event_target_dispatch_event) gboolean | |||
webkit_dom_webkit_named_flow_dispatch_event(WebKitDOMWebKitNamedFlow* self, WebKitDOMEvent* event, GError** error); | webkit_dom_webkit_named_flow_dispatch_event(WebKitDOMWebKitNamedFlow* self, WebKitDOMEvent* event, GError** error); | |||
#endif /* WEBKIT_DISABLE_DEPRECATED */ | ||||
/** | /** | |||
* webkit_dom_webkit_named_flow_get_name: | * webkit_dom_webkit_named_flow_get_name: | |||
* @self: A #WebKitDOMWebKitNamedFlow | * @self: A #WebKitDOMWebKitNamedFlow | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_webkit_named_flow_get_name(WebKitDOMWebKitNamedFlow* self); | webkit_dom_webkit_named_flow_get_name(WebKitDOMWebKitNamedFlow* self); | |||
/** | /** | |||
* webkit_dom_webkit_named_flow_get_overset: | * webkit_dom_webkit_named_flow_get_overset: | |||
* @self: A #WebKitDOMWebKitNamedFlow | * @self: A #WebKitDOMWebKitNamedFlow | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_webkit_named_flow_get_overset(WebKitDOMWebKitNamedFlow* self); | webkit_dom_webkit_named_flow_get_overset(WebKitDOMWebKitNamedFlow* self); | |||
/** | /** | |||
* webkit_dom_webkit_named_flow_get_first_empty_region_index: | * webkit_dom_webkit_named_flow_get_first_empty_region_index: | |||
* @self: A #WebKitDOMWebKitNamedFlow | * @self: A #WebKitDOMWebKitNamedFlow | |||
* | * | |||
* Returns: | * Returns: A #glong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API glong | WEBKIT_API glong | |||
webkit_dom_webkit_named_flow_get_first_empty_region_index(WebKitDOMWebKitNa medFlow* self); | webkit_dom_webkit_named_flow_get_first_empty_region_index(WebKitDOMWebKitNa medFlow* self); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMWebKitNamedFlow_h */ | #endif /* WebKitDOMWebKitNamedFlow_h */ | |||
End of changes. 12 change blocks. | ||||
33 lines changed or deleted | 30 lines changed or added | |||
WebKitDOMWebKitPoint.h | WebKitDOMWebKitPoint.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMWebKitPoint_h | #ifndef WebKitDOMWebKitPoint_h | |||
#define WebKitDOMWebKitPoint_h | #define WebKitDOMWebKitPoint_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 56 | skipping to change at line 56 | |||
WebKitDOMObjectClass parent_class; | WebKitDOMObjectClass parent_class; | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_webkit_point_get_type (void); | webkit_dom_webkit_point_get_type (void); | |||
/** | /** | |||
* webkit_dom_webkit_point_get_x: | * webkit_dom_webkit_point_get_x: | |||
* @self: A #WebKitDOMWebKitPoint | * @self: A #WebKitDOMWebKitPoint | |||
* | * | |||
* Returns: | * Returns: A #gfloat | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gfloat | WEBKIT_API gfloat | |||
webkit_dom_webkit_point_get_x(WebKitDOMWebKitPoint* self); | webkit_dom_webkit_point_get_x(WebKitDOMWebKitPoint* self); | |||
/** | /** | |||
* webkit_dom_webkit_point_set_x: | * webkit_dom_webkit_point_set_x: | |||
* @self: A #WebKitDOMWebKitPoint | * @self: A #WebKitDOMWebKitPoint | |||
* @value: A #gfloat | * @value: A #gfloat | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_webkit_point_set_x(WebKitDOMWebKitPoint* self, gfloat value); | webkit_dom_webkit_point_set_x(WebKitDOMWebKitPoint* self, gfloat value); | |||
/** | /** | |||
* webkit_dom_webkit_point_get_y: | * webkit_dom_webkit_point_get_y: | |||
* @self: A #WebKitDOMWebKitPoint | * @self: A #WebKitDOMWebKitPoint | |||
* | * | |||
* Returns: | * Returns: A #gfloat | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gfloat | WEBKIT_API gfloat | |||
webkit_dom_webkit_point_get_y(WebKitDOMWebKitPoint* self); | webkit_dom_webkit_point_get_y(WebKitDOMWebKitPoint* self); | |||
/** | /** | |||
* webkit_dom_webkit_point_set_y: | * webkit_dom_webkit_point_set_y: | |||
* @self: A #WebKitDOMWebKitPoint | * @self: A #WebKitDOMWebKitPoint | |||
* @value: A #gfloat | * @value: A #gfloat | |||
* | * | |||
* Returns: | ||||
* | ||||
**/ | **/ | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_dom_webkit_point_set_y(WebKitDOMWebKitPoint* self, gfloat value); | webkit_dom_webkit_point_set_y(WebKitDOMWebKitPoint* self, gfloat value); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMWebKitPoint_h */ | #endif /* WebKitDOMWebKitPoint_h */ | |||
End of changes. 5 change blocks. | ||||
27 lines changed or deleted | 21 lines changed or added | |||
WebKitDOMXPathExpression.h | WebKitDOMXPathExpression.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMXPathExpression_h | #ifndef WebKitDOMXPathExpression_h | |||
#define WebKitDOMXPathExpression_h | #define WebKitDOMXPathExpression_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 60 | skipping to change at line 60 | |||
webkit_dom_xpath_expression_get_type (void); | webkit_dom_xpath_expression_get_type (void); | |||
/** | /** | |||
* webkit_dom_xpath_expression_evaluate: | * webkit_dom_xpath_expression_evaluate: | |||
* @self: A #WebKitDOMXPathExpression | * @self: A #WebKitDOMXPathExpression | |||
* @contextNode: A #WebKitDOMNode | * @contextNode: A #WebKitDOMNode | |||
* @type: A #gushort | * @type: A #gushort | |||
* @inResult: A #WebKitDOMXPathResult | * @inResult: A #WebKitDOMXPathResult | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMXPathResult | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMXPathResult* | WEBKIT_API WebKitDOMXPathResult* | |||
webkit_dom_xpath_expression_evaluate(WebKitDOMXPathExpression* self, WebKit DOMNode* contextNode, gushort type, WebKitDOMXPathResult* inResult, GError* * error); | webkit_dom_xpath_expression_evaluate(WebKitDOMXPathExpression* self, WebKit DOMNode* contextNode, gushort type, WebKitDOMXPathResult* inResult, GError* * error); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMXPathExpression_h */ | #endif /* WebKitDOMXPathExpression_h */ | |||
End of changes. 2 change blocks. | ||||
21 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMXPathNSResolver.h | WebKitDOMXPathNSResolver.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMXPathNSResolver_h | #ifndef WebKitDOMXPathNSResolver_h | |||
#define WebKitDOMXPathNSResolver_h | #define WebKitDOMXPathNSResolver_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_xpath_ns_resolver_get_type (void); | webkit_dom_xpath_ns_resolver_get_type (void); | |||
/** | /** | |||
* webkit_dom_xpath_ns_resolver_lookup_namespace_uri: | * webkit_dom_xpath_ns_resolver_lookup_namespace_uri: | |||
* @self: A #WebKitDOMXPathNSResolver | * @self: A #WebKitDOMXPathNSResolver | |||
* @prefix: A #gchar | * @prefix: A #gchar | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_xpath_ns_resolver_lookup_namespace_uri(WebKitDOMXPathNSResolver* self, const gchar* prefix); | webkit_dom_xpath_ns_resolver_lookup_namespace_uri(WebKitDOMXPathNSResolver* self, const gchar* prefix); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMXPathNSResolver_h */ | #endif /* WebKitDOMXPathNSResolver_h */ | |||
End of changes. 2 change blocks. | ||||
21 lines changed or deleted | 20 lines changed or added | |||
WebKitDOMXPathResult.h | WebKitDOMXPathResult.h | |||
---|---|---|---|---|
/* | /* | |||
This file is part of the WebKit open source project. | * This file is part of the WebKit open source project. | |||
This file has been generated by generate-bindings.pl. DO NOT MODIFY! | * This file has been generated by generate-bindings.pl. DO NOT MODIFY! | |||
* | ||||
This library is free software; you can redistribute it and/or | * This library is free software; you can redistribute it and/or | |||
modify it under the terms of the GNU Library General Public | * modify it under the terms of the GNU Library General Public | |||
License as published by the Free Software Foundation; either | * License as published by the Free Software Foundation; either | |||
version 2 of the License, or (at your option) any later version. | * version 2 of the License, or (at your option) any later version. | |||
* | ||||
This library is distributed in the hope that it will be useful, | * This library is distributed in the hope that it will be useful, | |||
but WITHOUT ANY WARRANTY; without even the implied warranty of | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | |||
Library General Public License for more details. | * Library General Public License for more details. | |||
* | ||||
You should have received a copy of the GNU Library General Public Licen | * You should have received a copy of the GNU Library General Public Licen | |||
se | se | |||
along with this library; see the file COPYING.LIB. If not, write to | * along with this library; see the file COPYING.LIB. If not, write to | |||
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | |||
Boston, MA 02110-1301, USA. | * Boston, MA 02110-1301, USA. | |||
*/ | */ | |||
#if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | #if !defined(__WEBKITDOM_H_INSIDE__) && !defined(BUILDING_WEBKIT) | |||
#error "Only <webkitdom/webkitdom.h> can be included directly." | #error "Only <webkitdom/webkitdom.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitDOMXPathResult_h | #ifndef WebKitDOMXPathResult_h | |||
#define WebKitDOMXPathResult_h | #define WebKitDOMXPathResult_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkitdom/WebKitDOMObject.h> | #include <webkitdom/WebKitDOMObject.h> | |||
skipping to change at line 57 | skipping to change at line 57 | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_dom_xpath_result_get_type (void); | webkit_dom_xpath_result_get_type (void); | |||
/** | /** | |||
* webkit_dom_xpath_result_iterate_next: | * webkit_dom_xpath_result_iterate_next: | |||
* @self: A #WebKitDOMXPathResult | * @self: A #WebKitDOMXPathResult | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_xpath_result_iterate_next(WebKitDOMXPathResult* self, GError** e rror); | webkit_dom_xpath_result_iterate_next(WebKitDOMXPathResult* self, GError** e rror); | |||
/** | /** | |||
* webkit_dom_xpath_result_snapshot_item: | * webkit_dom_xpath_result_snapshot_item: | |||
* @self: A #WebKitDOMXPathResult | * @self: A #WebKitDOMXPathResult | |||
* @index: A #gulong | * @index: A #gulong | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_xpath_result_snapshot_item(WebKitDOMXPathResult* self, gulong in dex, GError** error); | webkit_dom_xpath_result_snapshot_item(WebKitDOMXPathResult* self, gulong in dex, GError** error); | |||
/** | /** | |||
* webkit_dom_xpath_result_get_result_type: | * webkit_dom_xpath_result_get_result_type: | |||
* @self: A #WebKitDOMXPathResult | * @self: A #WebKitDOMXPathResult | |||
* | * | |||
* Returns: | * Returns: A #gushort | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gushort | WEBKIT_API gushort | |||
webkit_dom_xpath_result_get_result_type(WebKitDOMXPathResult* self); | webkit_dom_xpath_result_get_result_type(WebKitDOMXPathResult* self); | |||
/** | /** | |||
* webkit_dom_xpath_result_get_number_value: | * webkit_dom_xpath_result_get_number_value: | |||
* @self: A #WebKitDOMXPathResult | * @self: A #WebKitDOMXPathResult | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gdouble | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gdouble | WEBKIT_API gdouble | |||
webkit_dom_xpath_result_get_number_value(WebKitDOMXPathResult* self, GError ** error); | webkit_dom_xpath_result_get_number_value(WebKitDOMXPathResult* self, GError ** error); | |||
/** | /** | |||
* webkit_dom_xpath_result_get_string_value: | * webkit_dom_xpath_result_get_string_value: | |||
* @self: A #WebKitDOMXPathResult | * @self: A #WebKitDOMXPathResult | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gchar | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gchar* | WEBKIT_API gchar* | |||
webkit_dom_xpath_result_get_string_value(WebKitDOMXPathResult* self, GError ** error); | webkit_dom_xpath_result_get_string_value(WebKitDOMXPathResult* self, GError ** error); | |||
/** | /** | |||
* webkit_dom_xpath_result_get_boolean_value: | * webkit_dom_xpath_result_get_boolean_value: | |||
* @self: A #WebKitDOMXPathResult | * @self: A #WebKitDOMXPathResult | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_xpath_result_get_boolean_value(WebKitDOMXPathResult* self, GErro r** error); | webkit_dom_xpath_result_get_boolean_value(WebKitDOMXPathResult* self, GErro r** error); | |||
/** | /** | |||
* webkit_dom_xpath_result_get_single_node_value: | * webkit_dom_xpath_result_get_single_node_value: | |||
* @self: A #WebKitDOMXPathResult | * @self: A #WebKitDOMXPathResult | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: (transfer none): | * Returns: (transfer none): A #WebKitDOMNode | |||
* | ||||
**/ | **/ | |||
WEBKIT_API WebKitDOMNode* | WEBKIT_API WebKitDOMNode* | |||
webkit_dom_xpath_result_get_single_node_value(WebKitDOMXPathResult* self, G Error** error); | webkit_dom_xpath_result_get_single_node_value(WebKitDOMXPathResult* self, G Error** error); | |||
/** | /** | |||
* webkit_dom_xpath_result_get_invalid_iterator_state: | * webkit_dom_xpath_result_get_invalid_iterator_state: | |||
* @self: A #WebKitDOMXPathResult | * @self: A #WebKitDOMXPathResult | |||
* | * | |||
* Returns: | * Returns: A #gboolean | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_dom_xpath_result_get_invalid_iterator_state(WebKitDOMXPathResult* se lf); | webkit_dom_xpath_result_get_invalid_iterator_state(WebKitDOMXPathResult* se lf); | |||
/** | /** | |||
* webkit_dom_xpath_result_get_snapshot_length: | * webkit_dom_xpath_result_get_snapshot_length: | |||
* @self: A #WebKitDOMXPathResult | * @self: A #WebKitDOMXPathResult | |||
* @error: #GError | * @error: #GError | |||
* | * | |||
* Returns: | * Returns: A #gulong | |||
* | ||||
**/ | **/ | |||
WEBKIT_API gulong | WEBKIT_API gulong | |||
webkit_dom_xpath_result_get_snapshot_length(WebKitDOMXPathResult* self, GEr ror** error); | webkit_dom_xpath_result_get_snapshot_length(WebKitDOMXPathResult* self, GEr ror** error); | |||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitDOMXPathResult_h */ | #endif /* WebKitDOMXPathResult_h */ | |||
End of changes. 10 change blocks. | ||||
37 lines changed or deleted | 28 lines changed or added | |||
WebKitEnumTypes.h | WebKitEnumTypes.h | |||
---|---|---|---|---|
skipping to change at line 141 | skipping to change at line 141 | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_script_dialog_type_get_type (void); | webkit_script_dialog_type_get_type (void); | |||
/* Enumerations from ./Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.h. */ | /* Enumerations from ./Source/WebKit2/UIProcess/API/gtk/WebKitWebContext.h. */ | |||
#define WEBKIT_TYPE_CACHE_MODEL webkit_cache_model_get_type () | #define WEBKIT_TYPE_CACHE_MODEL webkit_cache_model_get_type () | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_cache_model_get_type (void); | webkit_cache_model_get_type (void); | |||
#define WEBKIT_TYPE_PROCESS_MODEL webkit_process_model_get_type () | ||||
WEBKIT_API GType | ||||
webkit_process_model_get_type (void); | ||||
#define WEBKIT_TYPE_TLS_ERRORS_POLICY webkit_tls_errors_policy_get_type () | #define WEBKIT_TYPE_TLS_ERRORS_POLICY webkit_tls_errors_policy_get_type () | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_tls_errors_policy_get_type (void); | webkit_tls_errors_policy_get_type (void); | |||
/* Enumerations from ./Source/WebKit2/UIProcess/API/gtk/WebKitWebView.h. */ | /* Enumerations from ./Source/WebKit2/UIProcess/API/gtk/WebKitWebView.h. */ | |||
#define WEBKIT_TYPE_POLICY_DECISION_TYPE webkit_policy_decision_type_get_ty pe () | #define WEBKIT_TYPE_POLICY_DECISION_TYPE webkit_policy_decision_type_get_ty pe () | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_policy_decision_type_get_type (void); | webkit_policy_decision_type_get_type (void); | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 5 lines changed or added | |||
WebKitResponsePolicyDecision.h | WebKitResponsePolicyDecision.h | |||
---|---|---|---|---|
skipping to change at line 63 | skipping to change at line 63 | |||
struct _WebKitResponsePolicyDecisionClass { | struct _WebKitResponsePolicyDecisionClass { | |||
WebKitPolicyDecisionClass parent_class; | WebKitPolicyDecisionClass parent_class; | |||
void (*_webkit_reserved0) (void); | void (*_webkit_reserved0) (void); | |||
void (*_webkit_reserved1) (void); | void (*_webkit_reserved1) (void); | |||
void (*_webkit_reserved2) (void); | void (*_webkit_reserved2) (void); | |||
void (*_webkit_reserved3) (void); | void (*_webkit_reserved3) (void); | |||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_response_policy_decision_get_type (void); | webkit_response_policy_decision_get_type (void); | |||
WEBKIT_API WebKitURIRequest * | WEBKIT_API WebKitURIRequest * | |||
webkit_response_policy_decision_get_request (WebKitResponsePolicyDe cision *decision); | webkit_response_policy_decision_get_request (WebKitResponsePolic yDecision *decision); | |||
WEBKIT_API WebKitURIResponse * | WEBKIT_API WebKitURIResponse * | |||
webkit_response_policy_decision_get_response (WebKitResponsePolicyDe | webkit_response_policy_decision_get_response (WebKitResponsePolic | |||
cision *decision); | yDecision *decision); | |||
WEBKIT_API gboolean | ||||
webkit_response_policy_decision_is_mime_type_supported (WebKitResponsePolic | ||||
yDecision *decision); | ||||
G_END_DECLS | G_END_DECLS | |||
#endif | #endif | |||
End of changes. 3 change blocks. | ||||
4 lines changed or deleted | 8 lines changed or added | |||
WebKitSettings.h | WebKitSettings.h | |||
---|---|---|---|---|
skipping to change at line 396 | skipping to change at line 396 | |||
webkit_settings_set_enable_accelerated_2d_canvas (WebKitSetti ngs *settings, | webkit_settings_set_enable_accelerated_2d_canvas (WebKitSetti ngs *settings, | |||
gboolean enabled); | gboolean enabled); | |||
WEBKIT_API gboolean | WEBKIT_API gboolean | |||
webkit_settings_get_enable_write_console_messages_to_stdout (WebKitSetti ngs *settings); | webkit_settings_get_enable_write_console_messages_to_stdout (WebKitSetti ngs *settings); | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_settings_set_enable_write_console_messages_to_stdout (WebKitSetti ngs *settings, | webkit_settings_set_enable_write_console_messages_to_stdout (WebKitSetti ngs *settings, | |||
gboolean enabled); | gboolean enabled); | |||
WEBKIT_API gboolean | ||||
webkit_settings_get_enable_media_stream (WebKitSetti | ||||
ngs *settings); | ||||
WEBKIT_API void | ||||
webkit_settings_set_enable_media_stream (WebKitSetti | ||||
ngs *settings, | ||||
gboolean | ||||
enabled); | ||||
WEBKIT_API gboolean | ||||
webkit_settings_get_enable_spatial_navigation (WebKitSetti | ||||
ngs *settings); | ||||
WEBKIT_API void | ||||
webkit_settings_set_enable_spatial_navigation (WebKitSetti | ||||
ngs *settings, | ||||
gboolean | ||||
enabled); | ||||
WEBKIT_API gboolean | ||||
webkit_settings_get_enable_mediasource (WebKitSetti | ||||
ngs *settings); | ||||
WEBKIT_API void | ||||
webkit_settings_set_enable_mediasource (WebKitSetti | ||||
ngs *settings, | ||||
gboolean | ||||
enabled); | ||||
G_END_DECLS | G_END_DECLS | |||
#endif /* WebKitSettings_h */ | #endif /* WebKitSettings_h */ | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 30 lines changed or added | |||
WebKitVersion.h | WebKitVersion.h | |||
---|---|---|---|---|
skipping to change at line 47 | skipping to change at line 47 | |||
*/ | */ | |||
#define WEBKIT_MAJOR_VERSION (2) | #define WEBKIT_MAJOR_VERSION (2) | |||
/** | /** | |||
* WEBKIT_MINOR_VERSION: | * WEBKIT_MINOR_VERSION: | |||
* | * | |||
* Like webkit_get_minor_version(), but from the headers used at | * Like webkit_get_minor_version(), but from the headers used at | |||
* application compile time, rather than from the library linked | * application compile time, rather than from the library linked | |||
* against at application run time. | * against at application run time. | |||
*/ | */ | |||
#define WEBKIT_MINOR_VERSION (2) | #define WEBKIT_MINOR_VERSION (3) | |||
/** | /** | |||
* WEBKIT_MICRO_VERSION: | * WEBKIT_MICRO_VERSION: | |||
* | * | |||
* Like webkit_get_micro_version(), but from the headers used at | * Like webkit_get_micro_version(), but from the headers used at | |||
* application compile time, rather than from the library linked | * application compile time, rather than from the library linked | |||
* against at application run time. | * against at application run time. | |||
*/ | */ | |||
#define WEBKIT_MICRO_VERSION (6) | #define WEBKIT_MICRO_VERSION (5) | |||
/** | /** | |||
* WEBKIT_CHECK_VERSION: | * WEBKIT_CHECK_VERSION: | |||
* @major: major version (e.g. 1 for version 1.2.5) | * @major: major version (e.g. 1 for version 1.2.5) | |||
* @minor: minor version (e.g. 2 for version 1.2.5) | * @minor: minor version (e.g. 2 for version 1.2.5) | |||
* @micro: micro version (e.g. 5 for version 1.2.5) | * @micro: micro version (e.g. 5 for version 1.2.5) | |||
* | * | |||
* Returns: %TRUE if the version of the WebKit header files | * Returns: %TRUE if the version of the WebKit header files | |||
* is the same as or newer than the passed-in version. | * is the same as or newer than the passed-in version. | |||
*/ | */ | |||
End of changes. 2 change blocks. | ||||
2 lines changed or deleted | 2 lines changed or added | |||
WebKitWebContext.h | WebKitWebContext.h | |||
---|---|---|---|---|
skipping to change at line 28 | skipping to change at line 28 | |||
*/ | */ | |||
#if !defined(__WEBKIT2_H_INSIDE__) && !defined(WEBKIT2_COMPILATION) | #if !defined(__WEBKIT2_H_INSIDE__) && !defined(WEBKIT2_COMPILATION) | |||
#error "Only <webkit2/webkit2.h> can be included directly." | #error "Only <webkit2/webkit2.h> can be included directly." | |||
#endif | #endif | |||
#ifndef WebKitWebContext_h | #ifndef WebKitWebContext_h | |||
#define WebKitWebContext_h | #define WebKitWebContext_h | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkit2/WebKitCertificateInfo.h> | ||||
#include <webkit2/WebKitCookieManager.h> | #include <webkit2/WebKitCookieManager.h> | |||
#include <webkit2/WebKitDefines.h> | #include <webkit2/WebKitDefines.h> | |||
#include <webkit2/WebKitDownload.h> | #include <webkit2/WebKitDownload.h> | |||
#include <webkit2/WebKitFaviconDatabase.h> | #include <webkit2/WebKitFaviconDatabase.h> | |||
#include <webkit2/WebKitSecurityManager.h> | #include <webkit2/WebKitSecurityManager.h> | |||
#include <webkit2/WebKitURISchemeRequest.h> | #include <webkit2/WebKitURISchemeRequest.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
#define WEBKIT_TYPE_WEB_CONTEXT (webkit_web_context_get_type()) | #define WEBKIT_TYPE_WEB_CONTEXT (webkit_web_context_get_type()) | |||
skipping to change at line 65 | skipping to change at line 66 | |||
* | * | |||
* Enum values used for determining the #WebKitWebContext cache model. | * Enum values used for determining the #WebKitWebContext cache model. | |||
*/ | */ | |||
typedef enum { | typedef enum { | |||
WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER, | WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER, | |||
WEBKIT_CACHE_MODEL_WEB_BROWSER, | WEBKIT_CACHE_MODEL_WEB_BROWSER, | |||
WEBKIT_CACHE_MODEL_DOCUMENT_BROWSER | WEBKIT_CACHE_MODEL_DOCUMENT_BROWSER | |||
} WebKitCacheModel; | } WebKitCacheModel; | |||
/** | /** | |||
* WebKitProcessModel: | ||||
* @WEBKIT_PROCESS_MODEL_SHARED_SECONDARY_PROCESS: Use a single process to | ||||
* perform content rendering. The process is shared among all the | ||||
* #WebKitWebView instances created by the application: if the process | ||||
* hangs or crashes all the web views in the application will be affected | ||||
. | ||||
* This is the default process model, and it should suffice for most case | ||||
s. | ||||
* @WEBKIT_PROCESS_MODEL_ONE_SECONDARY_PROCESS_PER_WEB_VIEW: Use one proces | ||||
s | ||||
* for each #WebKitWebView. The main advantage of this process model is t | ||||
hat | ||||
* the rendering process for a web view can crash while the rest of the | ||||
* views keep working normally. This process model is indicated for | ||||
* applications which may use a number of web views and the content of | ||||
* in each must not interfere with the rest -- for example a full-fledged | ||||
* web browser with support for multiple tabs. | ||||
* | ||||
* Enum values used for determining the #WebKitWebContext process model. | ||||
* | ||||
* Since: 2.4 | ||||
*/ | ||||
typedef enum { | ||||
WEBKIT_PROCESS_MODEL_SHARED_SECONDARY_PROCESS, | ||||
WEBKIT_PROCESS_MODEL_ONE_SECONDARY_PROCESS_PER_WEB_VIEW, | ||||
} WebKitProcessModel; | ||||
/** | ||||
* WebKitTLSErrorsPolicy: | * WebKitTLSErrorsPolicy: | |||
* @WEBKIT_TLS_ERRORS_POLICY_IGNORE: Ignore TLS errors. | * @WEBKIT_TLS_ERRORS_POLICY_IGNORE: Ignore TLS errors. | |||
* @WEBKIT_TLS_ERRORS_POLICY_FAIL: TLS errors make the load to finish with | * @WEBKIT_TLS_ERRORS_POLICY_FAIL: TLS errors will emit | |||
an error. | * #WebKitWebView::load-failed-with-tls-errors and, if the signal is hand | |||
led, | ||||
* finish the load. In case the signal is not handled, | ||||
* #WebKitWebView::load-failed is emitted before the load finishes. | ||||
* | * | |||
* Enum values used to denote the TLS errors policy. | * Enum values used to denote the TLS errors policy. | |||
*/ | */ | |||
typedef enum { | typedef enum { | |||
WEBKIT_TLS_ERRORS_POLICY_IGNORE, | WEBKIT_TLS_ERRORS_POLICY_IGNORE, | |||
WEBKIT_TLS_ERRORS_POLICY_FAIL | WEBKIT_TLS_ERRORS_POLICY_FAIL | |||
} WebKitTLSErrorsPolicy; | } WebKitTLSErrorsPolicy; | |||
/** | /** | |||
* WebKitURISchemeRequestCallback: | * WebKitURISchemeRequestCallback: | |||
skipping to change at line 195 | skipping to change at line 223 | |||
WebKitTLSErrorsPolicy policy); | WebKitTLSErrorsPolicy policy); | |||
WEBKIT_API WebKitTLSErrorsPolicy | WEBKIT_API WebKitTLSErrorsPolicy | |||
webkit_web_context_get_tls_errors_policy (WebKitWebContext *context); | webkit_web_context_get_tls_errors_policy (WebKitWebContext *context); | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_web_context_set_web_extensions_directory (WebKitWebContext *context, | webkit_web_context_set_web_extensions_directory (WebKitWebContext *context, | |||
const gchar *directory); | const gchar *directory); | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_web_context_set_web_extensions_initialization_user_data | ||||
(WebKitWebContext | ||||
*context, | ||||
GVariant | ||||
*user_data); | ||||
WEBKIT_API void | ||||
webkit_web_context_prefetch_dns (WebKitWebContext *context, | webkit_web_context_prefetch_dns (WebKitWebContext *context, | |||
const gchar *hostname); | const gchar *hostname); | |||
WEBKIT_API void | WEBKIT_API void | |||
webkit_web_context_set_disk_cache_directory (WebKitWebContext *context, | webkit_web_context_set_disk_cache_directory (WebKitWebContext *context, | |||
const gchar *directory); | const gchar *directory); | |||
WEBKIT_API void | ||||
webkit_web_context_allow_tls_certificate_for_host (WebKitWebContext | ||||
*context, | ||||
WebKitCertificateInfo | ||||
*info, | ||||
const gchar | ||||
*host); | ||||
WEBKIT_API void | ||||
webkit_web_context_set_process_model (WebKitWebContext | ||||
*context, | ||||
WebKitProcessModel | ||||
process_model); | ||||
WEBKIT_API WebKitProcessModel | ||||
webkit_web_context_get_process_model (WebKitWebContext | ||||
*context); | ||||
G_END_DECLS | G_END_DECLS | |||
#endif | #endif | |||
End of changes. 5 change blocks. | ||||
2 lines changed or deleted | 59 lines changed or added | |||
WebKitWebExtension.h | WebKitWebExtension.h | |||
---|---|---|---|---|
skipping to change at line 53 | skipping to change at line 53 | |||
/** | /** | |||
* WebKitWebExtensionInitializeFunction: | * WebKitWebExtensionInitializeFunction: | |||
* @extension: a #WebKitWebExtension | * @extension: a #WebKitWebExtension | |||
* | * | |||
* Type definition for a function that will be called to initialize | * Type definition for a function that will be called to initialize | |||
* the web extension when the web process starts. | * the web extension when the web process starts. | |||
*/ | */ | |||
typedef void (* WebKitWebExtensionInitializeFunction) (WebKitWebExtension * extension); | typedef void (* WebKitWebExtensionInitializeFunction) (WebKitWebExtension * extension); | |||
/** | ||||
* WebKitWebExtensionInitializeWithUserDataFunction: | ||||
* @extension: a #WebKitWebExtension | ||||
* @user_data: a #GVariant | ||||
* | ||||
* Type definition for a function that will be called to initialize | ||||
* the web extensions when the web process starts, and which receives | ||||
* as additional argument the user data set with | ||||
* webkit_web_context_set_web_extensions_initialization_user_data(). | ||||
* | ||||
* Since: 2.4 | ||||
*/ | ||||
typedef void (* WebKitWebExtensionInitializeWithUserDataFunction) (WebKitWe | ||||
bExtension *extension, | ||||
const GV | ||||
ariant *user_data); | ||||
struct _WebKitWebExtension { | struct _WebKitWebExtension { | |||
GObject parent; | GObject parent; | |||
WebKitWebExtensionPrivate *priv; | WebKitWebExtensionPrivate *priv; | |||
}; | }; | |||
struct _WebKitWebExtensionClass { | struct _WebKitWebExtensionClass { | |||
GObjectClass parent_class; | GObjectClass parent_class; | |||
}; | }; | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 17 lines changed or added | |||
WebKitWebView.h | WebKitWebView.h | |||
---|---|---|---|---|
skipping to change at line 203 | skipping to change at line 203 | |||
struct _WebKitWebView { | struct _WebKitWebView { | |||
WebKitWebViewBase parent; | WebKitWebViewBase parent; | |||
/*< private >*/ | /*< private >*/ | |||
WebKitWebViewPrivate *priv; | WebKitWebViewPrivate *priv; | |||
}; | }; | |||
struct _WebKitWebViewClass { | struct _WebKitWebViewClass { | |||
WebKitWebViewBaseClass parent; | WebKitWebViewBaseClass parent; | |||
void (* load_changed) (WebKitWebView * | void (* load_changed) (WebKitWebView | |||
web_view, | *web_view, | |||
WebKitLoadEvent | WebKitLoadEvent | |||
load_event); | load_event); | |||
gboolean (* load_failed) (WebKitWebView * | gboolean (* load_failed) (WebKitWebView | |||
web_view, | *web_view, | |||
WebKitLoadEvent | WebKitLoadEvent | |||
load_event, | load_event, | |||
const gchar * | const gchar | |||
failing_uri, | *failing_uri, | |||
GError * | GError | |||
error); | *error); | |||
GtkWidget *(* create) (WebKitWebView * | GtkWidget *(* create) (WebKitWebView | |||
web_view); | *web_view); | |||
void (* ready_to_show) (WebKitWebView * | void (* ready_to_show) (WebKitWebView | |||
web_view); | *web_view); | |||
void (* run_as_modal) (WebKitWebView * | void (* run_as_modal) (WebKitWebView | |||
web_view); | *web_view); | |||
void (* close) (WebKitWebView * | void (* close) (WebKitWebView | |||
web_view); | *web_view); | |||
gboolean (* script_dialog) (WebKitWebView * | gboolean (* script_dialog) (WebKitWebView | |||
web_view, | *web_view, | |||
WebKitScriptDialog * | WebKitScriptDialog | |||
dialog) ; | *dialog) ; | |||
gboolean (* decide_policy) (WebKitWebView * | gboolean (* decide_policy) (WebKitWebView | |||
web_view, | *web_view, | |||
WebKitPolicyDecision * | WebKitPolicyDecision | |||
decision, | *decision, | |||
WebKitPolicyDecisionType | WebKitPolicyDecisionType | |||
type); | type); | |||
gboolean (* permission_request) (WebKitWebView * | gboolean (* permission_request) (WebKitWebView | |||
web_view, | *web_view, | |||
WebKitPermissionRequest * | WebKitPermissionRequest | |||
permission_request); | *permission_request); | |||
void (* mouse_target_changed) (WebKitWebView * | void (* mouse_target_changed) (WebKitWebView | |||
web_view, | *web_view, | |||
WebKitHitTestResult * | WebKitHitTestResult | |||
hit_test_result, | *hit_test_result, | |||
guint | guint | |||
modifiers); | modifiers); | |||
gboolean (* print) (WebKitWebView * | gboolean (* print) (WebKitWebView | |||
web_view, | *web_view, | |||
WebKitPrintOperation * | WebKitPrintOperation | |||
print_operation); | *print_operation); | |||
void (* resource_load_started) (WebKitWebView * | void (* resource_load_started) (WebKitWebView | |||
web_view, | *web_view, | |||
WebKitWebResource * | WebKitWebResource | |||
resource, | *resource, | |||
WebKitURIRequest * | WebKitURIRequest | |||
request); | *request); | |||
gboolean (* enter_fullscreen) (WebKitWebView * | gboolean (* enter_fullscreen) (WebKitWebView | |||
web_view); | *web_view); | |||
gboolean (* leave_fullscreen) (WebKitWebView * | gboolean (* leave_fullscreen) (WebKitWebView | |||
web_view); | *web_view); | |||
gboolean (* run_file_chooser) (WebKitWebView * | gboolean (* run_file_chooser) (WebKitWebView | |||
web_view, | *web_view, | |||
WebKitFileChooserRequest * | WebKitFileChooserRequest | |||
request); | *request); | |||
gboolean (* context_menu) (WebKitWebView * | gboolean (* context_menu) (WebKitWebView | |||
web_view, | *web_view, | |||
WebKitContextMenu * | WebKitContextMenu | |||
context_menu, | *context_menu, | |||
GdkEvent * | GdkEvent | |||
event, | *event, | |||
WebKitHitTestResult * | WebKitHitTestResult | |||
hit_test_result); | *hit_test_result); | |||
void (* context_menu_dismissed) (WebKitWebView * | void (* context_menu_dismissed) (WebKitWebView | |||
web_view); | *web_view); | |||
void (* submit_form) (WebKitWebView * | void (* submit_form) (WebKitWebView | |||
web_view, | *web_view, | |||
WebKitFormSubmissionRequest * | WebKitFormSubmissionRequest | |||
request); | *request); | |||
void (* insecure_content_detected) (WebKitWebView * | void (* insecure_content_detected) (WebKitWebView | |||
web_view, | *web_view, | |||
WebKitInsecureContentEvent | WebKitInsecureContentEvent | |||
event); | event); | |||
gboolean (* web_process_crashed) (WebKitWebView * | gboolean (* web_process_crashed) (WebKitWebView | |||
web_view); | *web_view); | |||
gboolean (* authenticate) (WebKitWebView * | gboolean (* authenticate) (WebKitWebView | |||
web_view, | *web_view, | |||
WebKitAuthenticationRequest * | WebKitAuthenticationRequest | |||
request); | *request); | |||
gboolean (* load_failed_with_tls_errors) (WebKitWebView | ||||
*web_view, | ||||
WebKitCertificateInfo | ||||
*info, | ||||
const gchar | ||||
*host); | ||||
void (*_webkit_reserved0) (void); | void (*_webkit_reserved0) (void); | |||
void (*_webkit_reserved1) (void); | void (*_webkit_reserved1) (void); | |||
void (*_webkit_reserved2) (void); | void (*_webkit_reserved2) (void); | |||
void (*_webkit_reserved3) (void); | void (*_webkit_reserved3) (void); | |||
void (*_webkit_reserved4) (void); | void (*_webkit_reserved4) (void); | |||
void (*_webkit_reserved5) (void); | void (*_webkit_reserved5) (void); | |||
void (*_webkit_reserved6) (void); | ||||
}; | }; | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_web_view_get_type (void); | webkit_web_view_get_type (void); | |||
WEBKIT_API GtkWidget * | WEBKIT_API GtkWidget * | |||
webkit_web_view_new (void); | webkit_web_view_new (void); | |||
WEBKIT_API GtkWidget * | WEBKIT_API GtkWidget * | |||
webkit_web_view_new_with_context (WebKitWebContext *context); | webkit_web_view_new_with_context (WebKitWebContext *context); | |||
End of changes. 2 change blocks. | ||||
87 lines changed or deleted | 92 lines changed or added | |||
webkit2.h | webkit2.h | |||
---|---|---|---|---|
skipping to change at line 29 | skipping to change at line 29 | |||
*/ | */ | |||
#ifndef __WEBKIT2_H__ | #ifndef __WEBKIT2_H__ | |||
#define __WEBKIT2_H__ | #define __WEBKIT2_H__ | |||
#define __WEBKIT2_H_INSIDE__ | #define __WEBKIT2_H_INSIDE__ | |||
#include <webkit2/WebKitAuthenticationRequest.h> | #include <webkit2/WebKitAuthenticationRequest.h> | |||
#include <webkit2/WebKitBackForwardList.h> | #include <webkit2/WebKitBackForwardList.h> | |||
#include <webkit2/WebKitBackForwardListItem.h> | #include <webkit2/WebKitBackForwardListItem.h> | |||
#include <webkit2/WebKitCertificateInfo.h> | ||||
#include <webkit2/WebKitContextMenu.h> | #include <webkit2/WebKitContextMenu.h> | |||
#include <webkit2/WebKitContextMenuActions.h> | #include <webkit2/WebKitContextMenuActions.h> | |||
#include <webkit2/WebKitContextMenuItem.h> | #include <webkit2/WebKitContextMenuItem.h> | |||
#include <webkit2/WebKitCookieManager.h> | #include <webkit2/WebKitCookieManager.h> | |||
#include <webkit2/WebKitCredential.h> | #include <webkit2/WebKitCredential.h> | |||
#include <webkit2/WebKitDefines.h> | #include <webkit2/WebKitDefines.h> | |||
#include <webkit2/WebKitDownload.h> | #include <webkit2/WebKitDownload.h> | |||
#include <webkit2/WebKitEditingCommands.h> | #include <webkit2/WebKitEditingCommands.h> | |||
#include <webkit2/WebKitEnumTypes.h> | #include <webkit2/WebKitEnumTypes.h> | |||
#include <webkit2/WebKitError.h> | #include <webkit2/WebKitError.h> | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 1 lines changed or added | |||
webkitdomdefines.h | webkitdomdefines.h | |||
---|---|---|---|---|
skipping to change at line 31 | skipping to change at line 31 | |||
#define webkitdomdefines_h | #define webkitdomdefines_h | |||
#include <glib.h> | #include <glib.h> | |||
#ifdef G_OS_WIN32 | #ifdef G_OS_WIN32 | |||
#ifdef BUILDING_WEBKIT | #ifdef BUILDING_WEBKIT | |||
#define WEBKIT_API __declspec(dllexport) | #define WEBKIT_API __declspec(dllexport) | |||
#else | #else | |||
#define WEBKIT_API __declspec(dllimport) | #define WEBKIT_API __declspec(dllimport) | |||
#endif | #endif | |||
#define WEBKIT_OBSOLETE_API WEBKIT_API | ||||
#else | #else | |||
#define WEBKIT_API __attribute__((visibility("default"))) | #define WEBKIT_API __attribute__((visibility("default"))) | |||
#define WEBKIT_OBSOLETE_API WEBKIT_API __attribute__((deprecated)) | ||||
#endif | #endif | |||
#define WEBKIT_DEPRECATED WEBKIT_API G_DEPRECATED | ||||
#define WEBKIT_DEPRECATED_FOR(f) WEBKIT_API G_DEPRECATED_FOR(f) | ||||
#ifndef WEBKIT_API | #ifndef WEBKIT_API | |||
#define WEBKIT_API | #define WEBKIT_API | |||
#endif | #endif | |||
typedef struct _WebKitDOMAttr WebKitDOMAttr; | typedef struct _WebKitDOMAttr WebKitDOMAttr; | |||
typedef struct _WebKitDOMAttrClass WebKitDOMAttrClass; | typedef struct _WebKitDOMAttrClass WebKitDOMAttrClass; | |||
typedef struct _WebKitDOMAudioTrack WebKitDOMAudioTrack; | typedef struct _WebKitDOMAudioTrack WebKitDOMAudioTrack; | |||
typedef struct _WebKitDOMAudioTrackClass WebKitDOMAudioTrackClass; | typedef struct _WebKitDOMAudioTrackClass WebKitDOMAudioTrackClass; | |||
typedef struct _WebKitDOMAudioTrackList WebKitDOMAudioTrackList; | typedef struct _WebKitDOMAudioTrackList WebKitDOMAudioTrackList; | |||
skipping to change at line 85 | skipping to change at line 86 | |||
typedef struct _WebKitDOMCharacterData WebKitDOMCharacterData; | typedef struct _WebKitDOMCharacterData WebKitDOMCharacterData; | |||
typedef struct _WebKitDOMCharacterDataClass WebKitDOMCharacterDataClass; | typedef struct _WebKitDOMCharacterDataClass WebKitDOMCharacterDataClass; | |||
typedef struct _WebKitDOMComment WebKitDOMComment; | typedef struct _WebKitDOMComment WebKitDOMComment; | |||
typedef struct _WebKitDOMCommentClass WebKitDOMCommentClass; | typedef struct _WebKitDOMCommentClass WebKitDOMCommentClass; | |||
typedef struct _WebKitDOMConsole WebKitDOMConsole; | typedef struct _WebKitDOMConsole WebKitDOMConsole; | |||
typedef struct _WebKitDOMConsoleClass WebKitDOMConsoleClass; | typedef struct _WebKitDOMConsoleClass WebKitDOMConsoleClass; | |||
typedef struct _WebKitDOMCustom WebKitDOMCustom; | ||||
typedef struct _WebKitDOMCustomClass WebKitDOMCustomClass; | ||||
typedef struct _WebKitDOMDOMApplicationCache WebKitDOMDOMApplicationCache; | typedef struct _WebKitDOMDOMApplicationCache WebKitDOMDOMApplicationCache; | |||
typedef struct _WebKitDOMDOMApplicationCacheClass WebKitDOMDOMApplicationCa cheClass; | typedef struct _WebKitDOMDOMApplicationCacheClass WebKitDOMDOMApplicationCa cheClass; | |||
typedef struct _WebKitDOMDOMImplementation WebKitDOMDOMImplementation; | typedef struct _WebKitDOMDOMImplementation WebKitDOMDOMImplementation; | |||
typedef struct _WebKitDOMDOMImplementationClass WebKitDOMDOMImplementationC lass; | typedef struct _WebKitDOMDOMImplementationClass WebKitDOMDOMImplementationC lass; | |||
typedef struct _WebKitDOMDOMMimeType WebKitDOMDOMMimeType; | typedef struct _WebKitDOMDOMMimeType WebKitDOMDOMMimeType; | |||
typedef struct _WebKitDOMDOMMimeTypeClass WebKitDOMDOMMimeTypeClass; | typedef struct _WebKitDOMDOMMimeTypeClass WebKitDOMDOMMimeTypeClass; | |||
typedef struct _WebKitDOMDOMMimeTypeArray WebKitDOMDOMMimeTypeArray; | typedef struct _WebKitDOMDOMMimeTypeArray WebKitDOMDOMMimeTypeArray; | |||
skipping to change at line 370 | skipping to change at line 368 | |||
typedef struct _WebKitDOMHistory WebKitDOMHistory; | typedef struct _WebKitDOMHistory WebKitDOMHistory; | |||
typedef struct _WebKitDOMHistoryClass WebKitDOMHistoryClass; | typedef struct _WebKitDOMHistoryClass WebKitDOMHistoryClass; | |||
typedef struct _WebKitDOMKeyboardEvent WebKitDOMKeyboardEvent; | typedef struct _WebKitDOMKeyboardEvent WebKitDOMKeyboardEvent; | |||
typedef struct _WebKitDOMKeyboardEventClass WebKitDOMKeyboardEventClass; | typedef struct _WebKitDOMKeyboardEventClass WebKitDOMKeyboardEventClass; | |||
typedef struct _WebKitDOMLocation WebKitDOMLocation; | typedef struct _WebKitDOMLocation WebKitDOMLocation; | |||
typedef struct _WebKitDOMLocationClass WebKitDOMLocationClass; | typedef struct _WebKitDOMLocationClass WebKitDOMLocationClass; | |||
typedef struct _WebKitDOMMediaController WebKitDOMMediaController; | ||||
typedef struct _WebKitDOMMediaControllerClass WebKitDOMMediaControllerClass | ||||
; | ||||
typedef struct _WebKitDOMMediaError WebKitDOMMediaError; | typedef struct _WebKitDOMMediaError WebKitDOMMediaError; | |||
typedef struct _WebKitDOMMediaErrorClass WebKitDOMMediaErrorClass; | typedef struct _WebKitDOMMediaErrorClass WebKitDOMMediaErrorClass; | |||
typedef struct _WebKitDOMMediaList WebKitDOMMediaList; | typedef struct _WebKitDOMMediaList WebKitDOMMediaList; | |||
typedef struct _WebKitDOMMediaListClass WebKitDOMMediaListClass; | typedef struct _WebKitDOMMediaListClass WebKitDOMMediaListClass; | |||
typedef struct _WebKitDOMMediaQueryList WebKitDOMMediaQueryList; | typedef struct _WebKitDOMMediaQueryList WebKitDOMMediaQueryList; | |||
typedef struct _WebKitDOMMediaQueryListClass WebKitDOMMediaQueryListClass; | typedef struct _WebKitDOMMediaQueryListClass WebKitDOMMediaQueryListClass; | |||
typedef struct _WebKitDOMMessagePort WebKitDOMMessagePort; | typedef struct _WebKitDOMMessagePort WebKitDOMMessagePort; | |||
skipping to change at line 481 | skipping to change at line 482 | |||
typedef struct _WebKitDOMTreeWalker WebKitDOMTreeWalker; | typedef struct _WebKitDOMTreeWalker WebKitDOMTreeWalker; | |||
typedef struct _WebKitDOMTreeWalkerClass WebKitDOMTreeWalkerClass; | typedef struct _WebKitDOMTreeWalkerClass WebKitDOMTreeWalkerClass; | |||
typedef struct _WebKitDOMUIEvent WebKitDOMUIEvent; | typedef struct _WebKitDOMUIEvent WebKitDOMUIEvent; | |||
typedef struct _WebKitDOMUIEventClass WebKitDOMUIEventClass; | typedef struct _WebKitDOMUIEventClass WebKitDOMUIEventClass; | |||
typedef struct _WebKitDOMValidityState WebKitDOMValidityState; | typedef struct _WebKitDOMValidityState WebKitDOMValidityState; | |||
typedef struct _WebKitDOMValidityStateClass WebKitDOMValidityStateClass; | typedef struct _WebKitDOMValidityStateClass WebKitDOMValidityStateClass; | |||
typedef struct _WebKitDOMVideoPlaybackQuality WebKitDOMVideoPlaybackQuality | ||||
; | ||||
typedef struct _WebKitDOMVideoPlaybackQualityClass WebKitDOMVideoPlaybackQu | ||||
alityClass; | ||||
typedef struct _WebKitDOMVideoTrack WebKitDOMVideoTrack; | typedef struct _WebKitDOMVideoTrack WebKitDOMVideoTrack; | |||
typedef struct _WebKitDOMVideoTrackClass WebKitDOMVideoTrackClass; | typedef struct _WebKitDOMVideoTrackClass WebKitDOMVideoTrackClass; | |||
typedef struct _WebKitDOMVideoTrackList WebKitDOMVideoTrackList; | typedef struct _WebKitDOMVideoTrackList WebKitDOMVideoTrackList; | |||
typedef struct _WebKitDOMVideoTrackListClass WebKitDOMVideoTrackListClass; | typedef struct _WebKitDOMVideoTrackListClass WebKitDOMVideoTrackListClass; | |||
typedef struct _WebKitDOMWebKitNamedFlow WebKitDOMWebKitNamedFlow; | typedef struct _WebKitDOMWebKitNamedFlow WebKitDOMWebKitNamedFlow; | |||
typedef struct _WebKitDOMWebKitNamedFlowClass WebKitDOMWebKitNamedFlowClass ; | typedef struct _WebKitDOMWebKitNamedFlowClass WebKitDOMWebKitNamedFlowClass ; | |||
typedef struct _WebKitDOMWebKitPoint WebKitDOMWebKitPoint; | typedef struct _WebKitDOMWebKitPoint WebKitDOMWebKitPoint; | |||
typedef struct _WebKitDOMWebKitPointClass WebKitDOMWebKitPointClass; | typedef struct _WebKitDOMWebKitPointClass WebKitDOMWebKitPointClass; | |||
typedef struct _WebKitDOMWheelEvent WebKitDOMWheelEvent; | ||||
typedef struct _WebKitDOMWheelEventClass WebKitDOMWheelEventClass; | ||||
typedef struct _WebKitDOMXPathExpression WebKitDOMXPathExpression; | typedef struct _WebKitDOMXPathExpression WebKitDOMXPathExpression; | |||
typedef struct _WebKitDOMXPathExpressionClass WebKitDOMXPathExpressionClass ; | typedef struct _WebKitDOMXPathExpressionClass WebKitDOMXPathExpressionClass ; | |||
typedef struct _WebKitDOMXPathNSResolver WebKitDOMXPathNSResolver; | typedef struct _WebKitDOMXPathNSResolver WebKitDOMXPathNSResolver; | |||
typedef struct _WebKitDOMXPathNSResolverClass WebKitDOMXPathNSResolverClass ; | typedef struct _WebKitDOMXPathNSResolverClass WebKitDOMXPathNSResolverClass ; | |||
typedef struct _WebKitDOMXPathResult WebKitDOMXPathResult; | typedef struct _WebKitDOMXPathResult WebKitDOMXPathResult; | |||
typedef struct _WebKitDOMXPathResultClass WebKitDOMXPathResultClass; | typedef struct _WebKitDOMXPathResultClass WebKitDOMXPathResultClass; | |||
#endif | #endif | |||
End of changes. 7 change blocks. | ||||
5 lines changed or deleted | 15 lines changed or added | |||
webkitenumtypes.h | webkitenumtypes.h | |||
---|---|---|---|---|
/* Generated data (by glib-mkenums) */ | ||||
/* | ||||
* Copyright (C) 2013 Igalia S.L. | ||||
* | ||||
* This library is free software; you can redistribute it and/or | ||||
* modify it under the terms of the GNU Library General Public | ||||
* License as published by the Free Software Foundation; either | ||||
* version 2 of the License, or (at your option) any later version. | ||||
* | ||||
* This library is distributed in the hope that it will be useful, | ||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||||
* Library General Public License for more details. | ||||
* | ||||
* You should have received a copy of the GNU Library General Public Licens | ||||
e | ||||
* along with this library; see the file COPYING.LIB. If not, write to | ||||
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, | ||||
* Boston, MA 02110-1301, USA. | ||||
*/ | ||||
#ifndef WEBKIT_ENUM_TYPES_H | #ifndef WEBKIT_ENUM_TYPES_H | |||
#define WEBKIT_ENUM_TYPES_H | #define WEBKIT_ENUM_TYPES_H | |||
#include <glib-object.h> | #include <glib-object.h> | |||
#include <webkit/webkitdefines.h> | #include <webkit/webkitdefines.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
#include <webkit/webkitdownload.h> | #include <webkit/webkitdownload.h> | |||
#define WEBKIT_TYPE_DOWNLOAD_STATUS webkit_download_status_get_type() | /* Enumerations from ./Source/WebKit/gtk/webkit/webkitdownload.h. */ | |||
#define WEBKIT_TYPE_DOWNLOAD_STATUS webkit_download_status_get_type () | ||||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_download_status_get_type(void); | webkit_download_status_get_type (void); | |||
#define WEBKIT_TYPE_DOWNLOAD_ERROR webkit_download_error_get_type() | #define WEBKIT_TYPE_DOWNLOAD_ERROR webkit_download_error_get_type () | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_download_error_get_type(void); | webkit_download_error_get_type (void); | |||
#include <webkit/webkiterror.h> | #include <webkit/webkiterror.h> | |||
#define WEBKIT_TYPE_NETWORK_ERROR webkit_network_error_get_type() | /* Enumerations from ./Source/WebKit/gtk/webkit/webkiterror.h. */ | |||
#define WEBKIT_TYPE_NETWORK_ERROR webkit_network_error_get_type () | ||||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_network_error_get_type(void); | webkit_network_error_get_type (void); | |||
#define WEBKIT_TYPE_POLICY_ERROR webkit_policy_error_get_type() | #define WEBKIT_TYPE_POLICY_ERROR webkit_policy_error_get_type () | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_policy_error_get_type(void); | webkit_policy_error_get_type (void); | |||
#define WEBKIT_TYPE_PLUGIN_ERROR webkit_plugin_error_get_type() | #define WEBKIT_TYPE_PLUGIN_ERROR webkit_plugin_error_get_type () | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_plugin_error_get_type(void); | webkit_plugin_error_get_type (void); | |||
#include <webkit/webkitglobals.h> | #include <webkit/webkitglobals.h> | |||
#define WEBKIT_TYPE_CACHE_MODEL webkit_cache_model_get_type() | /* Enumerations from ./Source/WebKit/gtk/webkit/webkitglobals.h. */ | |||
#define WEBKIT_TYPE_CACHE_MODEL webkit_cache_model_get_type () | ||||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_cache_model_get_type(void); | webkit_cache_model_get_type (void); | |||
#define WEBKIT_TYPE_CONTEXT_MENU_ACTION webkit_context_menu_action_get_type () | #define WEBKIT_TYPE_CONTEXT_MENU_ACTION webkit_context_menu_action_get_type () | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_context_menu_action_get_type(void); | webkit_context_menu_action_get_type (void); | |||
#define WEBKIT_TYPE_SECURITY_POLICY webkit_security_policy_get_type() | #define WEBKIT_TYPE_SECURITY_POLICY webkit_security_policy_get_type () | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_security_policy_get_type(void); | webkit_security_policy_get_type (void); | |||
#include <webkit/webkithittestresult.h> | #include <webkit/webkithittestresult.h> | |||
#define WEBKIT_TYPE_HIT_TEST_RESULT_CONTEXT webkit_hit_test_result_context_ | /* Enumerations from ./Source/WebKit/gtk/webkit/webkithittestresult.h. */ | |||
get_type() | #define WEBKIT_TYPE_HIT_TEST_RESULT_CONTEXT webkit_hit_test_result_context_ | |||
get_type () | ||||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_hit_test_result_context_get_type(void); | webkit_hit_test_result_context_get_type (void); | |||
#include <webkit/webkitwebframe.h> | #include <webkit/webkitwebframe.h> | |||
#define WEBKIT_TYPE_LOAD_STATUS webkit_load_status_get_type() | /* Enumerations from ./Source/WebKit/gtk/webkit/webkitwebframe.h. */ | |||
#define WEBKIT_TYPE_LOAD_STATUS webkit_load_status_get_type () | ||||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_load_status_get_type(void); | webkit_load_status_get_type (void); | |||
#include <webkit/webkitwebnavigationaction.h> | #include <webkit/webkitwebnavigationaction.h> | |||
#define WEBKIT_TYPE_WEB_NAVIGATION_REASON webkit_web_navigation_reason_get_ | /* Enumerations from ./Source/WebKit/gtk/webkit/webkitwebnavigationaction.h | |||
type() | . */ | |||
#define WEBKIT_TYPE_WEB_NAVIGATION_REASON webkit_web_navigation_reason_get_ | ||||
type () | ||||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_web_navigation_reason_get_type(void); | webkit_web_navigation_reason_get_type (void); | |||
#include <webkit/webkitwebsettings.h> | #include <webkit/webkitwebsettings.h> | |||
#define WEBKIT_TYPE_EDITING_BEHAVIOR webkit_editing_behavior_get_type() | /* Enumerations from ./Source/WebKit/gtk/webkit/webkitwebsettings.h. */ | |||
#define WEBKIT_TYPE_EDITING_BEHAVIOR webkit_editing_behavior_get_type () | ||||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_editing_behavior_get_type(void); | webkit_editing_behavior_get_type (void); | |||
#include <webkit/webkitwebview.h> | #include <webkit/webkitwebview.h> | |||
#define WEBKIT_TYPE_NAVIGATION_RESPONSE webkit_navigation_response_get_type | /* Enumerations from ./Source/WebKit/gtk/webkit/webkitwebview.h. */ | |||
() | #define WEBKIT_TYPE_NAVIGATION_RESPONSE webkit_navigation_response_get_type | |||
() | ||||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_navigation_response_get_type(void); | webkit_navigation_response_get_type (void); | |||
#define WEBKIT_TYPE_WEB_VIEW_TARGET_INFO webkit_web_view_target_info_get_ty pe() | #define WEBKIT_TYPE_WEB_VIEW_TARGET_INFO webkit_web_view_target_info_get_ty pe () | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_web_view_target_info_get_type(void); | webkit_web_view_target_info_get_type (void); | |||
#define WEBKIT_TYPE_WEB_VIEW_VIEW_MODE webkit_web_view_view_mode_get_type() | #define WEBKIT_TYPE_WEB_VIEW_VIEW_MODE webkit_web_view_view_mode_get_type ( ) | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_web_view_view_mode_get_type(void); | webkit_web_view_view_mode_get_type (void); | |||
#define WEBKIT_TYPE_SELECTION_AFFINITY webkit_selection_affinity_get_type() | #define WEBKIT_TYPE_SELECTION_AFFINITY webkit_selection_affinity_get_type ( ) | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_selection_affinity_get_type(void); | webkit_selection_affinity_get_type (void); | |||
#define WEBKIT_TYPE_INSERT_ACTION webkit_insert_action_get_type() | #define WEBKIT_TYPE_INSERT_ACTION webkit_insert_action_get_type () | |||
WEBKIT_API GType | WEBKIT_API GType | |||
webkit_insert_action_get_type(void); | webkit_insert_action_get_type (void); | |||
G_END_DECLS | G_END_DECLS | |||
#endif | #endif | |||
/* Generated data ends here */ | ||||
End of changes. 38 change blocks. | ||||
39 lines changed or deleted | 68 lines changed or added | |||
webkitversion.h | webkitversion.h | |||
---|---|---|---|---|
skipping to change at line 29 | skipping to change at line 29 | |||
#ifndef webkitversion_h | #ifndef webkitversion_h | |||
#define webkitversion_h | #define webkitversion_h | |||
#include <glib.h> | #include <glib.h> | |||
#include <webkit/webkitdefines.h> | #include <webkit/webkitdefines.h> | |||
G_BEGIN_DECLS | G_BEGIN_DECLS | |||
#define WEBKIT_MAJOR_VERSION (2) | #define WEBKIT_MAJOR_VERSION (2) | |||
#define WEBKIT_MINOR_VERSION (2) | #define WEBKIT_MINOR_VERSION (3) | |||
#define WEBKIT_MICRO_VERSION (6) | #define WEBKIT_MICRO_VERSION (5) | |||
#define WEBKIT_USER_AGENT_MAJOR_VERSION (538) | #define WEBKIT_USER_AGENT_MAJOR_VERSION (538) | |||
#define WEBKIT_USER_AGENT_MINOR_VERSION (1) | #define WEBKIT_USER_AGENT_MINOR_VERSION (15) | |||
/** | /** | |||
* WEBKITGTK_API_VERSION: (skip) | * WEBKITGTK_API_VERSION: (skip) | |||
*/ | */ | |||
#define WEBKITGTK_API_VERSION (3.0) | #define WEBKITGTK_API_VERSION (3.0) | |||
#define WEBKIT_CHECK_VERSION(major, minor, micro) \ | #define WEBKIT_CHECK_VERSION(major, minor, micro) \ | |||
(WEBKIT_MAJOR_VERSION > (major) || \ | (WEBKIT_MAJOR_VERSION > (major) || \ | |||
(WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION > (minor)) || \ | (WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION > (minor)) || \ | |||
(WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION == (minor) && \ | (WEBKIT_MAJOR_VERSION == (major) && WEBKIT_MINOR_VERSION == (minor) && \ | |||
End of changes. 2 change blocks. | ||||
3 lines changed or deleted | 3 lines changed or added | |||