Development/Tutorials/Creating Konqueror Service Menus: Difference between revisions

    From KDE TechBase
    m (Text replace - "</code>" to "</syntaxhighlight>")
    (β†’β€ŽAnd Now Back to Our Regularly Scheduled Broadcast...: small edit to add Type=Service to more examples, service menu will not show in KDE4 without and it's stated above that it's required anyway)
    (One intermediate revision by the same user not shown)
    Line 108: Line 108:
    <syntaxhighlight lang="ini">
    <syntaxhighlight lang="ini">
    [Desktop Entry]
    [Desktop Entry]
    Type=Service
    ServiceTypes=KonqPopupMenu/Plugin
    ServiceTypes=KonqPopupMenu/Plugin
    MimeType=image/*;
    MimeType=image/*;
    Line 153: Line 154:
    <syntaxhighlight lang="ini">
    <syntaxhighlight lang="ini">
    [Desktop Entry]
    [Desktop Entry]
    Type=Service
    ServiceTypes=KonqPopupMenu/Plugin
    ServiceTypes=KonqPopupMenu/Plugin
    MimeType=image/*;
    MimeType=image/*;

    Revision as of 23:12, 6 July 2011

    Note
    Part of this tutorial apply only to KDE3. Specially the dcop-part.


    The ability to select mimetype-specific actions from a KDE file manager's context menu is an often requested feature. The pleasant surprise is that this is already possible. The even more pleasant surprise is that you don't need to be a software developer to create new actions. This article details step-by-step how to quickly and easily add new actions to KDE file manager context menus.

    Introduction

    In KDE-speak a "servicemenu" is a special entry that appears in a context menu (or other context-based interface) for a file (or for directory), depending on the type of files that are selected.

    For example, if you have the KDE file archive utility Ark installed you will see a menu entry to "Extract here..." whenever you right click on a file archive. The option to "Extract here..." is a servicemenu.

    Creating new servicemenus is very simple, requiring nothing more than an idea and a text editor. You don't have to be a programmer or a KDE wizard to make them. In this tutorial we will be creating a set of actions that allows us to set an image as our desktop wallpaper just by right clicking on it and selecting "Use As Wallpaper". By the end of this tutorial you should be able to create your own servicemenus with ease.

    Where the Servicemenus Locate

    Servicemenus are defined using .desktop files, which are the same kind of files that are used to create entries in the K Menu or on the KDE desktop. These servicemenu files are found in $KDEHOME/share/services/ServiceMenus, the directory KDE was installed to or any directory listed in the $KDEDIRS environment variable.

    In the case of my home machine that means that servicemenu files can be found in the following places:

    /opt/kde4/share/services/ServiceMenus/
    /usr/share/services/ServiceMenus/
    /home/aaron/.kde4/share/kde4/services/ServiceMenus/
    
    Tip
    $KDEHOME defaults to ~/.kde when it isn't set or defined. You can find all the services directories by running
    kde4-config --path services
    
    from a Konsole window.


    The Start of Servicemenu

    We will begin creating our wallpaper servicemenu by choosing a name for the file: setAsWallpaper.desktop sounds good. The only thing that really matters with regards to the name is that it is unique and that it ends with .desktop. Next we'll open up the file in a text editor. The first thing we will put in the file is the "Desktop Entry" section:

    [Desktop Entry]
    Type=Service
    ServiceTypes=KonqPopupMenu/Plugin
    MimeType=image/png;image/jpeg;
    Actions=setAsWallpaper
    

    Every servicemenu file must have these four lines. Let's examine each of these lines one at a time.

    [Desktop Entry]
    

    KDE configuration files, including .desktop files, seperate the individual settings into sections. A section starts with a heading made up of letters, numbers and spaces in between square brackets on a line by itself. This first line means that all the options that follow, up until the next heading, belong to the "Desktop Entry" group.

    Type=Service
    ServiceTypes=KonqPopupMenu/Plugin
    MimeType=image/png;image/jpeg;
    

    The first line indicates that this .desktop file is of type Service; this is necessary since the default type is Application (i.e. something with an Exec line). Service is anything else, like plugins.

    The ServiceTypes entry refers to the type of plugin that this desktop file defines, and specifies that it is actually a Konqueror service menu.

    The MimeType line defines the type of file for which this servicemenu applies. You can define more than one mimetype by providing a list seperated by semicolons (but no spaces). In this case our servicemenu will show up when we select PNG or JPEG images. The File Associations control panel is a good place to look for mimetype definitions.

    Tip
    To create a servicemenu for directories use the
    inode/directory
    
    mimetype. To create a servicemenu for all files, use the base
    application/octet-stream
    
    mimetype.


    You can also specify an entire group of mimetypes using "typeglobs". To make our servicemenu apply not only to PNGs and JPEGs but to all images we would simply change the ServiceTypes entry to be:

    ServiceTypes=KonqPopupMenu/Plugin
    MimeType=image/*;
    

    Now when we right click on any image file in Konqueror we can select it as our background.

    Actions=setAsWallpaper
    

    The Actions entry defines the actions we will create in our servicemenu. As with the ServiceTypes, you can define more than one action by using a semicolon separated list. Each of the actions listed will get a section of its own defining what that action does. In fact, that's our very next step.

    Creating an Action

    So far we have defined one action in our servicemenu file: setAsWallpaper. Now we need to define what that action looks like and what it actually does. We begin by adding a new heading to the end of our file:

    [Desktop Action setAsWallpaper]
    

    Note that it contains the setAsWallpaper action name. It is important to note that these files are case sensitive, so we need to watch the capitalization here. Now that we have a section for our action, let's give our action a name that the user will see.

    Name=Set As Background Image
    

    To translate the name, we add another Name entry followed by the language code. For instance, the Finnish translation for the "Set As Background Image" service is provided by an entry that looks like this:

    Name[fi]=Aseta taustakuvaksi
    

    Next let's add an icon:

    Icon=background
    

    Notice that we didn't include the .png file extension, but just referred to the icon by name. If we had left this line out our action would still work, it just wouldn't look as fancy. Now that we've achieved fancyness, let's finish up by making it useful:

    Exec=dcop kdesktop KBackgroundIface setWallpaper %u 6
    

    The Exec line defines what is run when the user selects the action from the menu. We can put any command we want there. The magic in this line is the "%u" which gets replaced with the URL of the image file before the command is run. If our command can accept more than one file at a time we can use "%U" instead. There are other special %values but %u and %U are probably the most useful for servicemenus.

    Our file now looks like this:

    [Desktop Entry]
    Type=Service
    ServiceTypes=KonqPopupMenu/Plugin
    MimeType=image/*;
    Actions=setAsWallpaper
    
    [Desktop Action setAsWallpaper]
    Name=Use As Wallpaper
    Icon=background
    Exec=dcop kdesktop KBackgroundIface setWallpaper %U 6
    

    If we save it and open up Konqueror, when we right click on a PNG, JPEG or GIF image we should now have a "Set as background" item in the menu. Try it out!

    Tip
    If you have a complex task that requires more than one command (for example if we wanted to copy the image file somewhere first and then use dcop to set it as the background) use a shell:
    Exec=/bin/sh -c ";<YOUR COMMANDS HERE>"


    And Now Back to Our Regularly Scheduled Broadcast...

    Back from the land of DCOP, we have produced a working servicemenu. Now what? We improve it, of course!

    Our current servicemenu scales the image to the size of the desktop and sets it as the wallpaper. But this isn't appropriate for wallpaper tiles which not be scaled but should be, well, tiled. So let's add an action for tiles. First we'll need to change the Actions line to say something like this:

    Actions=setAsWallpaper;tileAsWallpaper;
    

    Note the use of semicolons rather than commas in that line. Next, we'll add a new action section to the end of the file that looks something like this:

    [Desktop Action tileAsWallpaper]
    Name=Use As Wallpaper Tile
    Icon=background
    Exec=dcop kdesktop KBackgroundIface setWallpaper %U 2
    

    Note that "tileAsWallpaper" appears in the action section's heading. This is what tells Konqueror which action it is. In addition, we have a slightly different Name and a very slightly different Exec line. Now when we right click on an image we have another option, this time to tile the image across our desktop. We didn't even have to restart Konqueror, since it automatically rereads the file when it changes!

    KDE's desktop offers several background image options, of which Scale and Tile are just two. Of course if we start adding all those various background options, and then add those to all the other servicemenus that a typical KDE installation has it's easy to see how the Action menu can quickly get out of hand. Starting with KDE 3.2 we can create submenus for our servicemenus by adding a line like the following to the

    [Desktop Entry]
    

    group of the .desktop file:

    X-KDE-Submenu=Set As Background
    

    This will create a submenu called "Set As Background" and put all of the servicemenu's actions into it. Our servicemenu .desktop file now looks like this:

    [Desktop Entry]
    Type=Service
    ServiceTypes=KonqPopupMenu/Plugin
    MimeType=image/*;
    Actions=setAsWallpaper;tileAsWallpaper;
    X-KDE-Submenu=Use As Wallpaper
    
    [Desktop Action setAsWallpaper]
    Name=Scaled
    Icon=background
    Exec=dcop kdesktop KBackgroundIface setWallpaper %U 6
    
    [Desktop Action tileAsWallpaper]
    Name=Tiled
    Icon=background
    Exec=dcop kdesktop KBackgroundIface setWallpaper %U 2