예제 #1
0
 /// <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);
 }
예제 #2
0
 /// <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);
 }
예제 #3
0
 /// <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);
 }
예제 #4
0
 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);
 }
예제 #5
0
 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);
 }
예제 #6
0
 public KAction AddAction(KStandardAction.StandardAction actionType)
 {
     return (KAction) interceptor.Invoke("addAction$", "addAction(KStandardAction::StandardAction)", typeof(KAction), typeof(KStandardAction.StandardAction), actionType);
 }
예제 #7
0
 /// <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);
 }