~jan-hrdina/ubuntu/quantal/xfce4-places-plugin/1.4.0-upstream-import

« back to all changes in this revision

Viewing changes to panel-plugin/places.h

  • Committer: Bazaar Package Importer
  • Author(s): Gauvain Pocentek
  • Date: 2007-04-22 08:55:28 UTC
  • Revision ID: james.westby@ubuntu.com-20070422085528-ijr73vydcqg5l830
Tags: upstream-0.2.0
ImportĀ upstreamĀ versionĀ 0.2.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*  xfce4-places-plugin
 
2
 *
 
3
 *  Copyright (c) 2007 Diego Ongaro <ongardie@gmail.com>
 
4
 *
 
5
 *  This program is free software; you can redistribute it and/or modify
 
6
 *  it under the terms of the GNU General Public License as published by
 
7
 *  the Free Software Foundation; either version 2 of the License, or
 
8
 *  (at your option) any later version.
 
9
 *
 
10
 *  This program 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
 
13
 *  GNU Library General Public License for more details.
 
14
 *
 
15
 *  You should have received a copy of the GNU General Public License
 
16
 *  along with this program; if not, write to the Free Software
 
17
 *  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
18
 */
 
19
 
 
20
#ifndef _XFCE_PANEL_PLACES_H
 
21
#define _XFCE_PANEL_PLACES_H
 
22
 
 
23
#include <gtk/gtk.h>
 
24
#include <libxfce4panel/xfce-panel-plugin.h>
 
25
 
 
26
#define PLUGIN_NAME "places"
 
27
 
 
28
typedef struct
 
29
{
 
30
  // plugin
 
31
  XfcePanelPlugin   *plugin;
 
32
 
 
33
  // view
 
34
  GtkWidget         *view_button;
 
35
  GtkWidget         *view_button_image;
 
36
  GtkWidget         *view_menu;
 
37
  GtkTooltips       *view_tooltips;
 
38
  gulong             view_theme_timeout_id;
 
39
 
 
40
  // model
 
41
  gpointer           bookmarks;
 
42
 
 
43
} PlacesData;
 
44
 
 
45
void places_load_thunar(const gchar*);
 
46
 
 
47
#endif
 
48
// vim: ai et tabstop=4