~ubuntu-branches/debian/jessie/gnome-shell/jessie

« back to all changes in this revision

Viewing changes to src/shell-secure-text-buffer.h

  • Committer: Package Import Robot
  • Author(s): Michael Biebl
  • Date: 2012-05-30 13:19:38 UTC
  • mfrom: (18.1.24 experimental)
  • Revision ID: package-import@ubuntu.com-20120530131938-i3trc1g1p3is2u6x
Tags: 3.4.1-3
Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
 
2
/* shell-secure-text-buffer.h - secure memory clutter text buffer
 
3
 
 
4
   Copyright (C) 2009 Stefan Walter
 
5
   Copyright (C) 2012 Red Hat Inc.
 
6
 
 
7
   This program is free software; you can redistribute it and/or
 
8
   modify it under the terms of the GNU Library General Public License as
 
9
   published by the Free Software Foundation; either version 2 of the
 
10
   License, or (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 GNU
 
15
   Library General Public License for more details.
 
16
 
 
17
   You should have received a copy of the GNU Library General Public
 
18
   License along with the Gnome Library; see the file COPYING.LIB.  If not,
 
19
   write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 
20
   Boston, MA 02111-1307, USA.
 
21
 
 
22
   Author: Stef Walter <stefw@gnome.org>
 
23
*/
 
24
 
 
25
#ifndef __SHELL_SECURE_TEXT_BUFFER_H__
 
26
#define __SHELL_SECURE_TEXT_BUFFER_H__
 
27
 
 
28
#include <clutter/clutter.h>
 
29
 
 
30
G_BEGIN_DECLS
 
31
 
 
32
#define SHELL_TYPE_SECURE_TEXT_BUFFER            (shell_secure_text_buffer_get_type ())
 
33
#define SHELL_SECURE_TEXT_BUFFER(obj)            (G_TYPE_CHECK_INSTANCE_CAST ((obj), SHELL_TYPE_SECURE_TEXT_BUFFER, ShellSecureTextBuffer))
 
34
#define SHELL_IS_SECURE_TEXT_BUFFER(obj)         (G_TYPE_CHECK_INSTANCE_TYPE ((obj), SHELL_TYPE_SECURE_TEXT_BUFFER))
 
35
 
 
36
GType                     shell_secure_text_buffer_get_type               (void) G_GNUC_CONST;
 
37
 
 
38
ClutterTextBuffer *       shell_secure_text_buffer_new                    (void);
 
39
 
 
40
G_END_DECLS
 
41
 
 
42
#endif /* __SHELL_SECURE_TEXT_BUFFER_H__ */