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

« back to all changes in this revision

Viewing changes to panels/user-accounts/um-editable-button.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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 8 -*-
 
2
 *
 
3
 * Copyright 2009-2010  Red Hat, Inc,
 
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 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
 * Written by: Matthias Clasen <mclasen@redhat.com>
 
20
 */
 
21
 
 
22
#ifndef _UM_EDITABLE_BUTTON_H
 
23
#define _UM_EDITABLE_BUTTON_H
 
24
 
 
25
#include <gtk/gtk.h>
 
26
 
 
27
G_BEGIN_DECLS
 
28
 
 
29
#define UM_TYPE_EDITABLE_BUTTON  um_editable_button_get_type()
 
30
 
 
31
#define UM_EDITABLE_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), UM_TYPE_EDITABLE_BUTTON, UmEditableButton))
 
32
#define UM_EDITABLE_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), UM_TYPE_EDITABLE_BUTTON, UmEditableButtonClass))
 
33
#define UM_IS_EDITABLE_BUTTON(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), UM_TYPE_EDITABLE_BUTTON))
 
34
#define UM_IS_EDITABLE_BUTTON_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), UM_TYPE_EDITABLE_BUTTON))
 
35
#define UM_EDITABLE_BUTTON_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), UM_TYPE_EDITABLE_BUTTON, UmEditableButtonClass))
 
36
 
 
37
typedef struct _UmEditableButton UmEditableButton;
 
38
typedef struct _UmEditableButtonClass UmEditableButtonClass;
 
39
typedef struct _UmEditableButtonPrivate UmEditableButtonPrivate;
 
40
 
 
41
struct _UmEditableButton
 
42
{
 
43
  GtkAlignment parent;
 
44
 
 
45
  UmEditableButtonPrivate *priv;
 
46
};
 
47
 
 
48
struct _UmEditableButtonClass
 
49
{
 
50
  GtkAlignmentClass parent_class;
 
51
 
 
52
  void (* start_editing) (UmEditableButton *button);
 
53
  void (* activate)      (UmEditableButton *button);
 
54
};
 
55
 
 
56
GType        um_editable_button_get_type     (void) G_GNUC_CONST;
 
57
GtkWidget   *um_editable_button_new          (void);
 
58
void         um_editable_button_set_text     (UmEditableButton *button,
 
59
                                              const gchar      *text);
 
60
const gchar *um_editable_button_get_text     (UmEditableButton *button);
 
61
void         um_editable_button_set_editable (UmEditableButton *button,
 
62
                                              gboolean          editable);
 
63
gboolean     um_editable_button_get_editable (UmEditableButton *button);
 
64
void         um_editable_button_set_weight   (UmEditableButton *button,
 
65
                                              gint              weight);
 
66
gint         um_editable_button_get_weight   (UmEditableButton *button);
 
67
void         um_editable_button_set_scale    (UmEditableButton *button,
 
68
                                              gdouble           scale);
 
69
gdouble      um_editable_button_get_scale    (UmEditableButton *button);
 
70
 
 
71
G_END_DECLS
 
72
 
 
73
#endif /* _UM_EDITABLE_BUTTON_H_ */