/usr/include/cairo-dock/gldit/cairo-dock-applications-manager.h is in cairo-dock-dev 3.4.1-1.2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 | /*
* This file is a part of the Cairo-Dock project
*
* Copyright : (C) see the 'copyright' file.
* E-mail : see the 'copyright' file.
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU 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 General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef __CAIRO_DOCK_APPLICATION_MANAGER__
#define __CAIRO_DOCK_APPLICATION_MANAGER__
#include "cairo-dock-struct.h"
#include "cairo-dock-icon-manager.h"
G_BEGIN_DECLS
/**
*@file cairo-dock-applications-manager.h This class manages the list of icons representing a window, ie the Taskbar.
*/
// manager
typedef struct _CairoTaskbarParam CairoTaskbarParam;
typedef struct _Icon AppliIcon;
#ifndef _MANAGER_DEF_
extern CairoTaskbarParam myTaskbarParam;
extern GldiManager myTaskbarMgr;
extern GldiObjectManager myAppliIconObjectMgr;
#endif
typedef enum {
CAIRO_APPLI_BEFORE_FIRST_ICON,
CAIRO_APPLI_BEFORE_FIRST_LAUNCHER,
CAIRO_APPLI_AFTER_LAST_LAUNCHER,
CAIRO_APPLI_AFTER_LAST_ICON,
CAIRO_APPLI_AFTER_ICON,
CAIRO_APPLI_NB_PLACEMENTS
} CairoTaskbarPlacement;
// params
struct _CairoTaskbarParam {
gboolean bShowAppli;
gboolean bGroupAppliByClass;
gint iAppliMaxNameLength;
gboolean bMinimizeOnClick;
gboolean bPresentClassOnClick;
gint iActionOnMiddleClick;
gboolean bHideVisibleApplis;
gdouble fVisibleAppliAlpha;
gboolean bAppliOnCurrentDesktopOnly;
gboolean bDemandsAttentionWithDialog;
gint iDialogDuration;
gchar *cAnimationOnDemandsAttention;
gchar *cAnimationOnActiveWindow;
gboolean bOverWriteXIcons;
gint iMinimizedWindowRenderType;
gboolean bMixLauncherAppli;
gchar *cOverwriteException;
gchar *cGroupException;
gchar *cForceDemandsAttention;
CairoTaskbarPlacement iIconPlacement;
gchar *cRelativeIconName;
gboolean bSeparateApplis;
} ;
// signals
typedef enum {
NB_NOTIFICATIONS_TASKBAR = NB_NOTIFICATIONS_ICON,
} CairoTaskbarNotifications;
/** Say if an object is an AppliIcon.
*@param obj the object.
*@return TRUE if the object is a AppliIcon.
*/
#define GLDI_OBJECT_IS_APPLI_ICON(obj) gldi_object_is_manager_child (GLDI_OBJECT(obj), &myAppliIconObjectMgr)
/** Start the applications manager. It will load all the appli-icons, and keep monitoring them. If enabled, it will insert them into the dock.
*@param pDock the main dock
*/
void cairo_dock_start_applications_manager (CairoDock *pDock);
/** Get the list of appli-icons, including the icons not currently displayed in the dock. You can then order the list by z-order, name, etc.
*@return a newly allocated list of appli-icons. You must free the list when you're done with it, but not the icons.
*/
GList *cairo_dock_get_current_applis_list (void);
/** Get the icon of the currently active window, if any.
*@return the icon (maybe not inside a dock, maybe NULL).
*/
Icon *cairo_dock_get_current_active_icon (void);
/** Get the icon of a given window, if any.
*@param actor the window actor
*@return the icon (maybe not inside a dock, maybe NULL).
*/
Icon *cairo_dock_get_appli_icon (GldiWindowActor *actor);
/** Run a function on all Appli icons.
*@param pFunction function to be called
*@param pUserData data passed to the function.
*/
void cairo_dock_foreach_appli_icon (GldiIconFunc pFunction, gpointer pUserData);
void cairo_dock_set_icons_geometry_for_window_manager (CairoDock *pDock);
void gldi_register_applications_manager (void);
G_END_DECLS
#endif
|