123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303 |
- namespace Xilium.CefGlue
- {
- using System;
- using System.Collections.Generic;
- using System.Diagnostics;
- using System.Runtime.InteropServices;
- using Xilium.CefGlue.Interop;
- /// <summary>
- /// Class representing a list value. Can be used on any process and thread.
- /// </summary>
- public sealed unsafe partial class CefListValue : ICefListValue
- {
- /// <summary>
- /// Creates a new object that is not owned by any other object.
- /// </summary>
- public static CefListValue Create()
- {
- return CefListValue.FromNative(
- cef_list_value_t.create()
- );
- }
- /// <summary>
- /// 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.
- /// </summary>
- public bool IsValid
- {
- get { return cef_list_value_t.is_valid(_self) != 0; }
- }
- /// <summary>
- /// Returns true if this object is currently owned by another object.
- /// </summary>
- public bool IsOwned
- {
- get { return cef_list_value_t.is_owned(_self) != 0; }
- }
- /// <summary>
- /// Returns true if the values of this object are read-only. Some APIs may
- /// expose read-only objects.
- /// </summary>
- public bool IsReadOnly
- {
- get { return cef_list_value_t.is_read_only(_self) != 0; }
- }
- /// <summary>
- /// 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.
- /// </summary>
- public bool IsSame(ICefListValue that)
- {
- return cef_list_value_t.is_same(_self, ((CefListValue)that).ToNative()) != 0;
- }
- /// <summary>
- /// Returns true if this object and |that| object have an equivalent underlying
- /// value but are not necessarily the same object.
- /// </summary>
- public bool IsEqual(ICefListValue that)
- {
- return cef_list_value_t.is_equal(_self, ((CefListValue)that).ToNative()) != 0;
- }
- /// <summary>
- /// Returns a writable copy of this object.
- /// </summary>
- public ICefListValue Copy()
- {
- return CefListValue.FromNative(
- cef_list_value_t.copy(_self)
- );
- }
- /// <summary>
- /// 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.
- /// </summary>
- public bool SetSize(int size)
- {
- return cef_list_value_t.set_size(_self, (UIntPtr)size) != 0;
- }
- /// <summary>
- /// Returns the number of values.
- /// </summary>
- public int Count
- {
- get { return (int)cef_list_value_t.get_size(_self); }
- }
- /// <summary>
- /// Removes all values. Returns true on success.
- /// </summary>
- public bool Clear()
- {
- return cef_list_value_t.clear(_self) != 0;
- }
- /// <summary>
- /// Removes the value at the specified index.
- /// </summary>
- public bool Remove(int index)
- {
- return cef_list_value_t.remove(_self, checked((UIntPtr)index)) != 0;
- }
- /// <summary>
- /// Returns the value type at the specified index.
- /// </summary>
- public CefValueType GetValueType(int index)
- {
- return cef_list_value_t.get_type(_self, checked((UIntPtr)index));
- }
- /// <summary>
- /// 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.
- /// </summary>
- public CefValue GetValue(int index)
- {
- return CefValue.FromNativeOrNull(
- cef_list_value_t.get_value(_self, checked((UIntPtr)index))
- );
- }
- /// <summary>
- /// Returns the value at the specified index as type bool.
- /// </summary>
- public bool GetBool(int index)
- {
- return cef_list_value_t.get_bool(_self, checked((UIntPtr)index)) != 0;
- }
- /// <summary>
- /// Returns the value at the specified index as type int.
- /// </summary>
- public int GetInt(int index)
- {
- return cef_list_value_t.get_int(_self, checked((UIntPtr)index));
- }
- /// <summary>
- /// Returns the value at the specified index as type double.
- /// </summary>
- public double GetDouble(int index)
- {
- return cef_list_value_t.get_double(_self, checked((UIntPtr)index));
- }
- /// <summary>
- /// Returns the value at the specified index as type string.
- /// </summary>
- 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);
- }
- /// <summary>
- /// Returns the value at the specified index as type binary. The returned
- /// value will reference existing data.
- /// </summary>
- public ICefBinaryValue GetBinary(int index)
- {
- return CefBinaryValue.FromNativeOrNull(
- cef_list_value_t.get_binary(_self, checked((UIntPtr)index))
- );
- }
- /// <summary>
- /// 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.
- /// </summary>
- public ICefDictionaryValue GetDictionary(int index)
- {
- return CefDictionaryValue.FromNativeOrNull(
- cef_list_value_t.get_dictionary(_self, checked((UIntPtr)index))
- );
- }
- /// <summary>
- /// 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.
- /// </summary>
- public ICefListValue GetList(int index)
- {
- return CefListValue.FromNativeOrNull(
- cef_list_value_t.get_list(_self, checked((UIntPtr)index))
- );
- }
- /// <summary>
- /// 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.
- /// </summary>
- public bool SetValue(int index, CefValue value)
- {
- return cef_list_value_t.set_value(_self, checked((UIntPtr)index), value.ToNative()) != 0;
- }
- /// <summary>
- /// Sets the value at the specified index as type null. Returns true if the
- /// value was set successfully.
- /// </summary>
- public bool SetNull(int index)
- {
- return cef_list_value_t.set_null(_self, checked((UIntPtr)index)) != 0;
- }
- /// <summary>
- /// Sets the value at the specified index as type bool. Returns true if the
- /// value was set successfully.
- /// </summary>
- public bool SetBool(int index, bool value)
- {
- return cef_list_value_t.set_bool(_self, checked((UIntPtr)index), value ? 1 : 0) != 0;
- }
- /// <summary>
- /// Sets the value at the specified index as type int. Returns true if the
- /// value was set successfully.
- /// </summary>
- public bool SetInt(int index, int value)
- {
- return cef_list_value_t.set_int(_self, checked((UIntPtr)index), value) != 0;
- }
- /// <summary>
- /// Sets the value at the specified index as type double. Returns true if the
- /// value was set successfully.
- /// </summary>
- public bool SetDouble(int index, double value)
- {
- return cef_list_value_t.set_double(_self, checked((UIntPtr)index), value) != 0;
- }
- /// <summary>
- /// Sets the value at the specified index as type string. Returns true if the
- /// value was set successfully.
- /// </summary>
- 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;
- }
- }
- /// <summary>
- /// 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.
- /// </summary>
- public bool SetBinary(int index, ICefBinaryValue value)
- {
- return cef_list_value_t.set_binary(_self, checked((UIntPtr)index), ((CefBinaryValue)value).ToNative()) != 0;
- }
- /// <summary>
- /// 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.
- /// </summary>
- public bool SetDictionary(int index, ICefDictionaryValue value)
- {
- return cef_list_value_t.set_dictionary(_self, checked((UIntPtr)index), ((CefDictionaryValue)value).ToNative()) != 0;
- }
- /// <summary>
- /// 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.
- /// </summary>
- public bool SetList(int index, ICefListValue value)
- {
- return cef_list_value_t.set_list(_self, checked((UIntPtr)index), ((CefListValue)value).ToNative()) != 0;
- }
- }
- }
|