~robertcarr/bamf/unity-webapps-tab

« back to all changes in this revision

Viewing changes to src/bamf-tab-source.h

  • Committer: Robert Carr
  • Date: 2012-02-07 17:59:57 UTC
  • Revision ID: racarr@canonical.com-20120207175957-canf37msn7sdkia4
Remove bamf-tab-source.(c|h)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright (C) 2010-2011 Canonical Ltd
3
 
 *
4
 
 * This program is free software: you can redistribute it and/or modify
5
 
 * it under the terms of the GNU General Public License version 3 as
6
 
 * published by the Free Software Foundation.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful,
9
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
 * GNU General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU General Public License
14
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 *
16
 
 * Authored by: Jason Smith <jason.smith@canonical.com>
17
 
 *              Marco Trevisan (Treviño) <3v1n0@ubuntu.com>
18
 
 *
19
 
 */
20
 
 
21
 
#ifndef __BAMFTABSOURCE_H__
22
 
#define __BAMFTABSOURCE_H__
23
 
 
24
 
#include "bamf.h"
25
 
#include <glib.h>
26
 
#include <glib-object.h>
27
 
 
28
 
#define BAMF_TYPE_TAB_SOURCE                    (bamf_tab_source_get_type ())
29
 
#define BAMF_TAB_SOURCE(obj)                    (G_TYPE_CHECK_INSTANCE_CAST ((obj), BAMF_TYPE_TAB_SOURCE, BamfTabSource))
30
 
#define BAMF_IS_TAB_SOURCE(obj)                 (G_TYPE_CHECK_INSTANCE_TYPE ((obj), BAMF_TYPE_TAB_SOURCE))
31
 
#define BAMF_TAB_SOURCE_CLASS(klass)            (G_TYPE_CHECK_CLASS_CAST ((klass), BAMF_TYPE_TAB_SOURCE, BamfTabSourceClass))
32
 
#define BAMF_IS_TAB_SOURCE_CLASS(klass)         (G_TYPE_CHECK_CLASS_TYPE ((klass), BAMF_TYPE_TAB_SOURCE))
33
 
#define BAMF_TAB_SOURCE_GET_CLASS(obj)          (G_TYPE_INSTANCE_GET_CLASS ((obj), BAMF_TYPE_TAB_SOURCE, BamfTabSourceClass))
34
 
 
35
 
typedef struct _BamfTabSource BamfTabSource;
36
 
typedef struct _BamfTabSourceClass BamfTabSourceClass;
37
 
typedef struct _BamfTabSourcePrivate BamfTabSourcePrivate;
38
 
 
39
 
struct _BamfTabSourceClass
40
 
{
41
 
  GObjectClass parent;
42
 
 
43
 
  /*< signals >*/
44
 
  void    (*tab_uri_changed)   (char *id, char *old_uri, char *new_uri);
45
 
  void    (*tab_opened)        (char *id);
46
 
  void    (*tab_closed)        (char *id);
47
 
};
48
 
 
49
 
struct _BamfTabSource
50
 
{
51
 
  GObject parent;
52
 
 
53
 
  /* private */
54
 
  BamfTabSourcePrivate *priv;
55
 
};
56
 
 
57
 
GType           bamf_tab_source_get_type         (void) G_GNUC_CONST;
58
 
 
59
 
char         ** bamf_tab_source_tab_ids          (BamfTabSource *self);
60
 
 
61
 
void            bamf_tab_source_show_tab         (BamfTabSource *self, char *id);
62
 
 
63
 
gchar         * bamf_tab_source_get_tab_preview  (BamfTabSource *self, char *id);
64
 
 
65
 
char          * bamf_tab_source_get_tab_uri      (BamfTabSource *self, char *id);
66
 
 
67
 
guint32         bamf_tab_source_get_tab_xid      (BamfTabSource *self, char *id);
68
 
 
69
 
BamfTabSource * bamf_tab_source_new              (char *bus, char *path);
70
 
 
71
 
#endif