~ubuntu-branches/ubuntu/trusty/unity-control-center/trusty

« back to all changes in this revision

Viewing changes to panels/network/panel-cell-renderer-text.h

  • Committer: Package Import Robot
  • Author(s): Robert Ancell
  • Date: 2014-01-08 16:29:18 UTC
  • Revision ID: package-import@ubuntu.com-20140108162918-g29dd08tr913y2qh
Tags: upstream-14.04.0
ImportĀ upstreamĀ versionĀ 14.04.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Text: C; tab-width: 8; indent-tabs-text: nil; c-basic-offset: 8 -*-
 
2
 *
 
3
 * Copyright (C) 2012 Red Hat, Inc.
 
4
 *
 
5
 * Licensed under the GNU General Public License Version 2
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as published by
 
9
 * the Free Software Foundation; either version 2 of the License, or
 
10
 * (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program; if not, write to the Free Software
 
19
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 
20
 *
 
21
 * Written by Matthias Clasen
 
22
 */
 
23
 
 
24
#ifndef PANEL_CELL_RENDERER_TEXT_H
 
25
#define PANEL_CELL_RENDERER_TEXT_H
 
26
 
 
27
#include <glib-object.h>
 
28
#include <gtk/gtk.h>
 
29
 
 
30
#define PANEL_TYPE_CELL_RENDERER_TEXT           (panel_cell_renderer_text_get_type())
 
31
#define PANEL_CELL_RENDERER_TEXT(obj)           (G_TYPE_CHECK_INSTANCE_CAST((obj), PANEL_TYPE_CELL_RENDERER_TEXT, PanelCellRendererText))
 
32
#define PANEL_CELL_RENDERER_TEXT_CLASS(cls)     (G_TYPE_CHECK_CLASS_CAST((cls), PANEL_TYPE_CELL_RENDERER_TEXT, PanelCellRendererTextClass))
 
33
#define PANEL_IS_CELL_RENDERER_TEXT(obj)        (G_TYPE_CHECK_INSTANCE_TYPE((obj), PANEL_TYPE_CELL_RENDERER_TEXT))
 
34
#define PANEL_IS_CELL_RENDERER_TEXT_CLASS(cls)  (G_TYPE_CHECK_CLASS_TYPE((cls), PANEL_TYPE_CELL_RENDERER_TEXT))
 
35
#define PANEL_CELL_RENDERER_TEXT_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS((obj), PANEL_TYPE_CELL_RENDERER_TEXT, PanelCellRendererTextClass))
 
36
 
 
37
G_BEGIN_DECLS
 
38
 
 
39
typedef struct _PanelCellRendererText           PanelCellRendererText;
 
40
typedef struct _PanelCellRendererTextClass      PanelCellRendererTextClass;
 
41
 
 
42
struct _PanelCellRendererText
 
43
{
 
44
        GtkCellRendererText parent;
 
45
};
 
46
 
 
47
struct _PanelCellRendererTextClass
 
48
{
 
49
        GtkCellRendererTextClass parent_class;
 
50
 
 
51
        void (*activate) (PanelCellRendererText *text,
 
52
                          const gchar           *path);
 
53
};
 
54
 
 
55
GType            panel_cell_renderer_text_get_type (void);
 
56
GtkCellRenderer *panel_cell_renderer_text_new      (void);
 
57
 
 
58
G_END_DECLS
 
59
 
 
60
#endif /* PANEL_CELL_RENDERER_TEXT_H */
 
61