/// <remarks> /// Attempts to load a containmentactions /// Returns a pointer to the containmentactions if successful. /// The caller takes responsibility for the containmentactions, including /// deleting it when no longer needed. /// <param> name="parent" the parent containment. Required; if you send null you'll get back null. /// </param><param> name="info" KPluginInfo object for the desired containmentactions /// </param><param> name="args" to send the containmentactions extra arguments /// </param></remarks> <return> a pointer to the loaded containmentactions, or 0 on load failure /// </return> /// <short> Attempts to load a containmentactions </short> public static Plasma.ContainmentActions Load(Plasma.Containment parent, KPluginInfo info, List<QVariant> args) { return (Plasma.ContainmentActions) staticInterceptor.Invoke("load##?", "load(Plasma::Containment*, const KPluginInfo&, const QList<QVariant>&)", typeof(Plasma.ContainmentActions), typeof(Plasma.Containment), parent, typeof(KPluginInfo), info, typeof(List<QVariant>), args); }
public static Plasma.ContainmentActions Load(Plasma.Containment parent, KPluginInfo info) { return (Plasma.ContainmentActions) staticInterceptor.Invoke("load##", "load(Plasma::Containment*, const KPluginInfo&)", typeof(Plasma.ContainmentActions), typeof(Plasma.Containment), parent, typeof(KPluginInfo), info); }
public static Plasma.Applet Load(KPluginInfo info) { return (Plasma.Applet) staticInterceptor.Invoke("load#", "load(const KPluginInfo&)", typeof(Plasma.Applet), typeof(KPluginInfo), info); }
public static Plasma.Applet Load(KPluginInfo info, uint appletId) { return (Plasma.Applet) staticInterceptor.Invoke("load#$", "load(const KPluginInfo&, uint)", typeof(Plasma.Applet), typeof(KPluginInfo), info, typeof(uint), appletId); }
/// <remarks> /// Attempts to load an applet /// Returns a pointer to the applet if successful. /// The caller takes responsibility for the applet, including /// deleting it when no longer needed. /// <param> name="info" KPluginInfo object for the desired applet /// </param><param> name="appletId" unique ID to assign the applet, or zero to have one /// assigned automatically. /// </param><param> name="args" to send the applet extra arguments /// </param></remarks> <return> a pointer to the loaded applet, or 0 on load failure /// </return> /// <short> Attempts to load an applet </short> public static Plasma.Applet Load(KPluginInfo info, uint appletId, List<QVariant> args) { return (Plasma.Applet) staticInterceptor.Invoke("load#$?", "load(const KPluginInfo&, uint, const QList<QVariant>&)", typeof(Plasma.Applet), typeof(KPluginInfo), info, typeof(uint), appletId, typeof(List<QVariant>), args); }
/// <remarks> /// Get the category of the given applet /// <param> name="applet" a KPluginInfo object for the applet /// </param></remarks> <short> Get the category of the given applet </short> public static string category(KPluginInfo applet) { return (string) staticInterceptor.Invoke("category#", "category(const KPluginInfo&)", typeof(string), typeof(KPluginInfo), applet); }
/// <remarks> /// Creates a KPluginInfo object that shares the data with <pre>copy</pre>. /// </remarks> <short> Creates a KPluginInfo object that shares the data with \p copy.</short> public KPluginInfo(KPluginInfo copy) : this((Type) null) { CreateProxy(); interceptor.Invoke("KPluginInfo#", "KPluginInfo(const KPluginInfo&)", typeof(void), typeof(KPluginInfo), copy); }