/// <remarks> /// This will return the internal name of a given standard action. /// </remarks> <short> This will return the internal name of a given standard action.</short> public static string Name(KStandardAction.StandardAction id) { return (string) staticInterceptor.Invoke("name$", "name(KStandardAction::StandardAction)", typeof(string), typeof(KStandardAction.StandardAction), id); }
/// <remarks> /// Returns the standardshortcut associated with <b>actionId</b>. /// <param> name="actionId" The actionId whose associated shortcut is wanted. /// </param></remarks> <short> Returns the standardshortcut associated with <b>actionId</b>.</short> public static KStandardShortcut.StandardShortcut ShortcutForActionId(KStandardAction.StandardAction id) { return (KStandardShortcut.StandardShortcut) staticInterceptor.Invoke("shortcutForActionId$", "shortcutForActionId(KStandardAction::StandardAction)", typeof(KStandardShortcut.StandardShortcut), typeof(KStandardAction.StandardAction), id); }
/// <remarks> /// Creates an action corresponding to the /// KStandardAction.StandardAction enum. /// </remarks> <short> Creates an action corresponding to the KStandardAction.StandardAction enum.</short> public static KAction Create(KStandardAction.StandardAction id, QObject recvr, string slot, QObject parent) { return (KAction) staticInterceptor.Invoke("create$#$#", "create(KStandardAction::StandardAction, const QObject*, const char*, QObject*)", typeof(KAction), typeof(KStandardAction.StandardAction), id, typeof(QObject), recvr, typeof(string), slot, typeof(QObject), parent); }
public KAction AddAction(KStandardAction.StandardAction actionType, string name) { return (KAction) interceptor.Invoke("addAction$$", "addAction(KStandardAction::StandardAction, const QString&)", typeof(KAction), typeof(KStandardAction.StandardAction), actionType, typeof(string), name); }
public KAction AddAction(KStandardAction.StandardAction actionType, string name, QObject receiver) { return (KAction) interceptor.Invoke("addAction$$#", "addAction(KStandardAction::StandardAction, const QString&, const QObject*)", typeof(KAction), typeof(KStandardAction.StandardAction), actionType, typeof(string), name, typeof(QObject), receiver); }
public KAction AddAction(KStandardAction.StandardAction actionType) { return (KAction) interceptor.Invoke("addAction$", "addAction(KStandardAction::StandardAction)", typeof(KAction), typeof(KStandardAction.StandardAction), actionType); }
/// <remarks> /// Creates a new standard action, adds it to the collection and connects the action's triggered() signal to the /// specified receiver/member. The newly created action is also returned. /// The action can be retrieved later from the collection by its standard name as per /// KStandardAction.StdName. /// </remarks> <short> Creates a new standard action, adds it to the collection and connects the action's triggered() signal to the specified receiver/member.</short> public KAction AddAction(KStandardAction.StandardAction actionType, QObject receiver, string member) { return (KAction) interceptor.Invoke("addAction$#$", "addAction(KStandardAction::StandardAction, const QObject*, const char*)", typeof(KAction), typeof(KStandardAction.StandardAction), actionType, typeof(QObject), receiver, typeof(string), member); }