~ubuntu-branches/ubuntu/natty/xfce4-panel/natty

« back to all changes in this revision

Viewing changes to libxfce4panel/xfce-panel-plugin-iface-private.h

  • Committer: Bazaar Package Importer
  • Author(s): Lionel Le Folgoc
  • Date: 2010-12-04 15:45:53 UTC
  • mfrom: (1.1.25 upstream)
  • Revision ID: james.westby@ubuntu.com-20101204154553-c1k0n2p2j83chld0
Tags: 4.7.5-0ubuntu1
Upload to natty (pkg-xfce svn r4611).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id$
2
 
 *
3
 
 * Copyright (c) 2005-2007 Jasper Huijsmans <jasper@xfce.org>
4
 
 *
5
 
 * This library is free software; you can redistribute it and/or
6
 
 * modify it under the terms of the GNU Library General Public
7
 
 * License as published by the Free Software Foundation; either
8
 
 * version 2 of the License, or (at your option) any later version.
9
 
 *
10
 
 * This library is distributed in the hope that it will be useful,
11
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13
 
 * Library General Public License for more details.
14
 
 *
15
 
 * You should have received a copy of the GNU Library General Public
16
 
 * License along with this library; if not, write to the
17
 
 * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18
 
 * Boston, MA 02111-1307, USA.
19
 
 */
20
 
 
21
 
#ifndef __XFCE_PANEL_PLUGIN_IFACE_PRIVATE_H__
22
 
#define __XFCE_PANEL_PLUGIN_IFACE_PRIVATE_H__
23
 
 
24
 
#include <libxfce4panel/xfce-panel-plugin-iface.h>
25
 
 
26
 
G_BEGIN_DECLS
27
 
 
28
 
struct _XfcePanelPluginInterface
29
 
{
30
 
    GTypeInterface parent;
31
 
 
32
 
    /* signals */
33
 
    void (*remove)           (XfcePanelPlugin *plugin);
34
 
    void (*set_expand)       (XfcePanelPlugin *plugin,
35
 
                              gboolean         expand);
36
 
    void (*customize_panel)  (XfcePanelPlugin *plugin);
37
 
    void (*customize_items)  (XfcePanelPlugin *plugin);
38
 
    void (*move)             (XfcePanelPlugin *plugin);
39
 
    void (*register_menu)    (XfcePanelPlugin *plugin,
40
 
                              GtkMenu         *menu);
41
 
    void (*focus_panel)      (XfcePanelPlugin *plugin);
42
 
    void (*set_panel_hidden) (XfcePanelPlugin *plugin,
43
 
                              gboolean         hidden);
44
 
 
45
 
    /* reserved for future expansion */
46
 
    void (*reserved1) (void);
47
 
    void (*reserved2) (void);
48
 
};
49
 
 
50
 
void  _xfce_panel_plugin_create_menu            (XfcePanelPlugin     *plugin) G_GNUC_INTERNAL;
51
 
void  _xfce_panel_plugin_popup_menu             (XfcePanelPlugin     *plugin) G_GNUC_INTERNAL;
52
 
void  _xfce_panel_plugin_signal_screen_position (XfcePanelPlugin     *plugin,
53
 
                                                 XfceScreenPosition   position) G_GNUC_INTERNAL;
54
 
void  _xfce_panel_plugin_signal_orientation     (XfcePanelPlugin     *plugin,
55
 
                                                 GtkOrientation       orientation) G_GNUC_INTERNAL;
56
 
void  _xfce_panel_plugin_signal_size            (XfcePanelPlugin     *plugin,
57
 
                                                 gint                 size) G_GNUC_INTERNAL;
58
 
void  _xfce_panel_plugin_signal_free_data       (XfcePanelPlugin     *plugin) G_GNUC_INTERNAL;
59
 
void  _xfce_panel_plugin_signal_save            (XfcePanelPlugin     *plugin) G_GNUC_INTERNAL;
60
 
void  _xfce_panel_plugin_signal_configure       (XfcePanelPlugin     *plugin) G_GNUC_INTERNAL;
61
 
void  _xfce_panel_plugin_set_sensitive          (XfcePanelPlugin     *plugin,
62
 
                                                 gboolean             sensitive) G_GNUC_INTERNAL;
63
 
void  _xfce_panel_plugin_remove_confirm         (XfcePanelPlugin     *plugin) G_GNUC_INTERNAL;
64
 
void  _xfce_panel_plugin_remove                 (XfcePanelPlugin     *plugin) G_GNUC_INTERNAL;
65
 
void  _xfce_panel_plugin_customize_panel        (XfcePanelPlugin     *plugin) G_GNUC_INTERNAL;
66
 
void  _xfce_panel_plugin_customize_items        (XfcePanelPlugin     *plugin) G_GNUC_INTERNAL;
67
 
void  _xfce_panel_plugin_move                   (XfcePanelPlugin     *plugin) G_GNUC_INTERNAL;
68
 
 
69
 
G_END_DECLS
70
 
 
71
 
#endif /* !__XFCE_PANEL_PLUGIN_IFACE_PRIVATE_H__ */