gnome-control-center/panels/user-accounts/um-user-image.h
Ondrej Holy 5c30530271 user-accounts: hidpi support for user's icons
This patch adds UmUserImage widget which respect scale factor.

https://bugzilla.gnome.org/show_bug.cgi?id=742395
2015-01-20 17:08:15 +01:00

55 lines
1.9 KiB
C

/*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
* (C) Copyright 2015 Red Hat, Inc.
*/
#ifndef _UM_USER_IMAGE_H
#define _UM_USER_IMAGE_H
#include <gtk/gtk.h>
#include <act/act.h>
G_BEGIN_DECLS
#define UM_TYPE_USER_IMAGE um_user_image_get_type()
#define UM_USER_IMAGE(obj) (G_TYPE_CHECK_INSTANCE_CAST ((obj), UM_TYPE_USER_IMAGE, UmUserImage))
#define UM_USER_IMAGE_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), UM_TYPE_USER_IMAGE, UmUserImageClass))
#define UM_IS_USER_IMAGE(obj) (G_TYPE_CHECK_INSTANCE_TYPE ((obj), UM_TYPE_USER_IMAGE))
#define UM_IS_USER_IMAGE_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), UM_TYPE_USER_IMAGE))
#define UM_USER_IMAGE_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), UM_TYPE_USER_IMAGE, UmUserImageClass))
typedef struct _UmUserImage UmUserImage;
typedef struct _UmUserImageClass UmUserImageClass;
typedef struct _UmUserImagePrivate UmUserImagePrivate;
struct _UmUserImage {
GtkImage parent;
UmUserImagePrivate *priv;
};
struct _UmUserImageClass {
GtkImageClass parent_class;
};
GType um_user_image_get_type (void) G_GNUC_CONST;
GtkWidget *um_user_image_new (void);
void um_user_image_set_user (UmUserImage *image, ActUser *user);
G_END_DECLS
#endif /* _UM_USER_IMAGE_H */