/* * Copyright 2021 Marius Gripsgard * Copyright 2021 Robert Tari * * This program is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License version 3, as published * by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranties of * MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #pragma once #include #include #include #define DESKTOP_LOMIRI "Lomiri" #define DESKTOP_UNITY "Unity" #define DESKTOP_MATE "MATE" #define DESKTOP_GNOME "GNOME" #define DESKTOP_XFCE "XFCE" #define DESKTOP_PANTHEON "PANTHEON" #define DESKTOP_BUDGIE "Budgie" gboolean ayatana_common_utils_is_lomiri(); gboolean ayatana_common_utils_is_unity(); gboolean ayatana_common_utils_is_gnome(); gboolean ayatana_common_utils_is_mate(); gboolean ayatana_common_utils_is_xfce(); gboolean ayatana_common_utils_is_pantheon(); gboolean ayatana_common_utils_is_budgie(); gboolean ayatana_common_utils_have_unity_program (const gchar *program); gboolean ayatana_common_utils_have_gnome_program (const gchar *program); gboolean ayatana_common_utils_have_mate_program (const gchar *program); gboolean ayatana_common_utils_have_xfce_program (const gchar *program); gboolean ayatana_common_utils_have_pantheon_program (const gchar *program); gboolean ayatana_common_utils_have_budgie_program (const gchar *program); gboolean ayatana_common_utils_execute_command(const gchar * cmd); gboolean ayatana_common_utils_open_url(const gchar * url); gboolean ayatana_common_utils_have_program(const gchar * program); gboolean ayatana_common_utils_zenity_warning(const char *icon_name, const char *title, const char *text); void ayatana_common_utils_ellipsize(char *sText);