1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
/*
* vala-panel
* Copyright (C) 2016 Konstantin Pugin <ria.freelander@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
using Gtk;
using GLib;
[CCode (cprefix="")]
namespace Launcher
{
[CCode (cheader_filename="launcher.h",cname="menu_launch_id")]
public static void activate_menu_launch_id(SimpleAction? action, Variant? param, void* user_data);
[CCode (cheader_filename="launcher.h",cname="menu_launch_uri")]
public static void activate_menu_launch_uri(SimpleAction? action, Variant? param, void* user_data);
[CCode (cheader_filename="launcher.h",cname="menu_launch_command")]
public static void activate_menu_launch_command(SimpleAction? action, Variant? param, void* user_data);
[CCode (cname="posix_get_cmdline_string",cheader_filename="launcher.h")]
public static string? posix_get_cmdline_string(string filename);
}
[CCode (cprefix="")]
namespace MenuMaker
{
[CCode (cheader_filename="launcher.h",cname="vala_panel_launch")]
public static bool launch(DesktopAppInfo info, GLib.List<string>? uris, Gtk.Widget parent);
[CCode (cheader_filename="launcher.h",cname="vala_panel_get_default_for_uri")]
public static AppInfo get_default_for_uri(string uri);
}
|