namespace Xilium.CefGlue
{
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Runtime.InteropServices;
using Xilium.CefGlue.Interop;
///
/// Class representing a list value. Can be used on any process and thread.
///
public sealed unsafe partial class CefListValue : ICefListValue
{
///
/// Creates a new object that is not owned by any other object.
///
public static CefListValue Create()
{
return CefListValue.FromNative(
cef_list_value_t.create()
);
}
///
/// Returns true if this object is valid. This object may become invalid if
/// the underlying data is owned by another object (e.g. list or dictionary)
/// and that other object is then modified or destroyed. Do not call any other
/// methods if this method returns false.
///
public bool IsValid
{
get { return cef_list_value_t.is_valid(_self) != 0; }
}
///
/// Returns true if this object is currently owned by another object.
///
public bool IsOwned
{
get { return cef_list_value_t.is_owned(_self) != 0; }
}
///
/// Returns true if the values of this object are read-only. Some APIs may
/// expose read-only objects.
///
public bool IsReadOnly
{
get { return cef_list_value_t.is_read_only(_self) != 0; }
}
///
/// Returns true if this object and |that| object have the same underlying
/// data. If true modifications to this object will also affect |that| object
/// and vice-versa.
///
public bool IsSame(ICefListValue that)
{
return cef_list_value_t.is_same(_self, ((CefListValue)that).ToNative()) != 0;
}
///
/// Returns true if this object and |that| object have an equivalent underlying
/// value but are not necessarily the same object.
///
public bool IsEqual(ICefListValue that)
{
return cef_list_value_t.is_equal(_self, ((CefListValue)that).ToNative()) != 0;
}
///
/// Returns a writable copy of this object.
///
public ICefListValue Copy()
{
return CefListValue.FromNative(
cef_list_value_t.copy(_self)
);
}
///
/// Sets the number of values. If the number of values is expanded all
/// new value slots will default to type null. Returns true on success.
///
public bool SetSize(int size)
{
return cef_list_value_t.set_size(_self, (UIntPtr)size) != 0;
}
///
/// Returns the number of values.
///
public int Count
{
get { return (int)cef_list_value_t.get_size(_self); }
}
///
/// Removes all values. Returns true on success.
///
public bool Clear()
{
return cef_list_value_t.clear(_self) != 0;
}
///
/// Removes the value at the specified index.
///
public bool Remove(int index)
{
return cef_list_value_t.remove(_self, checked((UIntPtr)index)) != 0;
}
///
/// Returns the value type at the specified index.
///
public CefValueType GetValueType(int index)
{
return cef_list_value_t.get_type(_self, checked((UIntPtr)index));
}
///
/// Returns the value at the specified index. For simple types the returned
/// value will copy existing data and modifications to the value will not
/// modify this object. For complex types (binary, dictionary and list) the
/// returned value will reference existing data and modifications to the value
/// will modify this object.
///
public CefValue GetValue(int index)
{
return CefValue.FromNativeOrNull(
cef_list_value_t.get_value(_self, checked((UIntPtr)index))
);
}
///
/// Returns the value at the specified index as type bool.
///
public bool GetBool(int index)
{
return cef_list_value_t.get_bool(_self, checked((UIntPtr)index)) != 0;
}
///
/// Returns the value at the specified index as type int.
///
public int GetInt(int index)
{
return cef_list_value_t.get_int(_self, checked((UIntPtr)index));
}
///
/// Returns the value at the specified index as type double.
///
public double GetDouble(int index)
{
return cef_list_value_t.get_double(_self, checked((UIntPtr)index));
}
///
/// Returns the value at the specified index as type string.
///
public string GetString(int index)
{
var n_result = cef_list_value_t.get_string(_self, checked((UIntPtr)index));
return cef_string_userfree.ToString(n_result);
}
///
/// Returns the value at the specified index as type binary. The returned
/// value will reference existing data.
///
public ICefBinaryValue GetBinary(int index)
{
return CefBinaryValue.FromNativeOrNull(
cef_list_value_t.get_binary(_self, checked((UIntPtr)index))
);
}
///
/// Returns the value at the specified index as type dictionary. The returned
/// value will reference existing data and modifications to the value will
/// modify this object.
///
public ICefDictionaryValue GetDictionary(int index)
{
return CefDictionaryValue.FromNativeOrNull(
cef_list_value_t.get_dictionary(_self, checked((UIntPtr)index))
);
}
///
/// Returns the value at the specified index as type list. The returned
/// value will reference existing data and modifications to the value will
/// modify this object.
///
public ICefListValue GetList(int index)
{
return CefListValue.FromNativeOrNull(
cef_list_value_t.get_list(_self, checked((UIntPtr)index))
);
}
///
/// Sets the value at the specified index. Returns true if the value was set
/// successfully. If |value| represents simple data then the underlying data
/// will be copied and modifications to |value| will not modify this object. If
/// |value| represents complex data (binary, dictionary or list) then the
/// underlying data will be referenced and modifications to |value| will modify
/// this object.
///
public bool SetValue(int index, CefValue value)
{
return cef_list_value_t.set_value(_self, checked((UIntPtr)index), value.ToNative()) != 0;
}
///
/// Sets the value at the specified index as type null. Returns true if the
/// value was set successfully.
///
public bool SetNull(int index)
{
return cef_list_value_t.set_null(_self, checked((UIntPtr)index)) != 0;
}
///
/// Sets the value at the specified index as type bool. Returns true if the
/// value was set successfully.
///
public bool SetBool(int index, bool value)
{
return cef_list_value_t.set_bool(_self, checked((UIntPtr)index), value ? 1 : 0) != 0;
}
///
/// Sets the value at the specified index as type int. Returns true if the
/// value was set successfully.
///
public bool SetInt(int index, int value)
{
return cef_list_value_t.set_int(_self, checked((UIntPtr)index), value) != 0;
}
///
/// Sets the value at the specified index as type double. Returns true if the
/// value was set successfully.
///
public bool SetDouble(int index, double value)
{
return cef_list_value_t.set_double(_self, checked((UIntPtr)index), value) != 0;
}
///
/// Sets the value at the specified index as type string. Returns true if the
/// value was set successfully.
///
public bool SetString(int index, string value)
{
fixed (char* value_str = value)
{
var n_value = new cef_string_t(value_str, value != null ? value.Length : 0);
return cef_list_value_t.set_string(_self, checked((UIntPtr)index), &n_value) != 0;
}
}
///
/// Sets the value at the specified index as type binary. Returns true if the
/// value was set successfully. If |value| is currently owned by another object
/// then the value will be copied and the |value| reference will not change.
/// Otherwise, ownership will be transferred to this object and the |value|
/// reference will be invalidated.
///
public bool SetBinary(int index, ICefBinaryValue value)
{
return cef_list_value_t.set_binary(_self, checked((UIntPtr)index), ((CefBinaryValue)value).ToNative()) != 0;
}
///
/// Sets the value at the specified index as type dict. Returns true if the
/// value was set successfully. If |value| is currently owned by another object
/// then the value will be copied and the |value| reference will not change.
/// Otherwise, ownership will be transferred to this object and the |value|
/// reference will be invalidated.
///
public bool SetDictionary(int index, ICefDictionaryValue value)
{
return cef_list_value_t.set_dictionary(_self, checked((UIntPtr)index), ((CefDictionaryValue)value).ToNative()) != 0;
}
///
/// Sets the value at the specified index as type list. Returns true if the
/// value was set successfully. If |value| is currently owned by another object
/// then the value will be copied and the |value| reference will not change.
/// Otherwise, ownership will be transferred to this object and the |value|
/// reference will be invalidated.
///
public bool SetList(int index, ICefListValue value)
{
return cef_list_value_t.set_list(_self, checked((UIntPtr)index), ((CefListValue)value).ToNative()) != 0;
}
}
}