ContextMenu plugin

Discuss and announce AkelPad plugins
  • Author
  • Message
Offline
Posts: 52
Joined: Sat Jul 05, 2008 11:30 am
Location: Odesa, Ukraine

Re: ContextMenu plugin

Post by ewild »

Is it possible to implement the external call for the Link() the same way as it is done for the Favourites() method?
How it works for the Favourites() method:

Code: Select all

Call("ContextMenu::Main", 2, OPERATION)
  Parameters:
    2
      External call for favourite files list.
    OPERATION
      Operation number. [1...4] See description of Favourites() method.
How it could work for the Link() method:

Code: Select all

Call("ContextMenu::Main", NUMBER, OPERATION)
  Parameters:
    NUMBER [e.g. 3]
      External call for favourite files list.
    OPERATION
      Operation number. [1...6] See description of Links() method.
ContextMenu-Eng.txt:

Code: Select all

    Link(number)
      Link(1)
        method opens hyperlink (work in "URL menu" only).
      Link(2)
        method copies hyperlink (work in "URL menu" only).
      Link(3)
        method selects hyperlink (work in "URL menu" only).
      Link(4)
        method cuts hyperlink (work in "URL menu" only).
      Link(5)
        method replaces hyperlink with the clipboard text (work in "URL menu" only).
      Link(6)
        method deletes hyperlink (work in "URL menu" only).
    Favourites(number)
      Favourites(1)
        method adds current file to favourites (with dialog).
      Favourites(2)
        method adds current file to favourites (without dialog).
      Favourites(3)
        method opens dialog to manage favourites.
      Favourites(4)
        method deletes current file from favourites.
Post Reply