/// <remarks> /// Copies the entries in this group to another config object. /// <param> name="other" The other config object to copy this group's entries to. @note <code>other</code> /// <b>can</b> be either another group or a different file. /// </param></remarks> <short> Copies the entries in this group to another config object.</short> public void CopyTo(KConfigBase other, uint pFlags) { interceptor.Invoke("copyTo#$", "copyTo(KConfigBase*, KConfigBase::WriteConfigFlags) const", typeof(void), typeof(KConfigBase), other, typeof(uint), pFlags); }
public void CopyTo(KConfigBase other) { interceptor.Invoke("copyTo#", "copyTo(KConfigBase*) const", typeof(void), typeof(KConfigBase), other); }
public void Reparent(KConfigBase parent) { interceptor.Invoke("reparent#", "reparent(KConfigBase*)", typeof(void), typeof(KConfigBase), parent); }
/// <remarks> /// Changes the group that this group belongs to. /// <param> name="parent" the config object to place this group under. If <code>parent</code> is a KConfig it will be /// promoted to a top-level group. /// </param></remarks> <short> Changes the group that this group belongs to.</short> public void Reparent(KConfigBase parent, uint pFlags) { interceptor.Invoke("reparent#$", "reparent(KConfigBase*, KConfigBase::WriteConfigFlags)", typeof(void), typeof(KConfigBase), parent, typeof(uint), pFlags); }
/// <remarks> /// Construct a config group corresponding to <code>group</code> in <code>master.</code> /// This allows to create subgroups, by passing an existing group as <code>master.</code> /// <code>group</code> is the group name encoded in UTF-8. /// </remarks> <short> Construct a config group corresponding to <code>group</code> in <code>master.</code></short> public KConfigGroup(KConfigBase master, string group) : this((Type) null) { CreateProxy(); interceptor.Invoke("KConfigGroup#$", "KConfigGroup(KConfigBase*, const QString&)", typeof(void), typeof(KConfigBase), master, typeof(string), group); }
/// <remarks> /// Write this package structure to a config file. /// </remarks> <short> Write this package structure to a config file.</short> public void Write(KConfigBase config) { interceptor.Invoke("write#", "write(KConfigBase*) const", typeof(void), typeof(KConfigBase), config); }
/// <remarks> /// Read a package structure from a config file. /// </remarks> <short> Read a package structure from a config file.</short> public void Read(KConfigBase config) { interceptor.Invoke("read#", "read(const KConfigBase*)", typeof(void), typeof(KConfigBase), config); }