gnome-shell/src/shell-square-bin.h
Jonas Dreßler d21a0b186e iconGrid: Subclass a C actor for BaseIcon
We create a lot of BaseIcons for the appGrid, one for every app, and for
all of those we have to hop through JS to get the preferred width. That
makes it another obvious target for moving to C, so let's do that.

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1755>
2021-03-13 22:13:25 +00:00

14 lines
290 B
C

#ifndef __SHELL_SQUARE_BIN_H__
#define __SHELL_SQUARE_BIN_H__
#include <st/st.h>
G_BEGIN_DECLS
#define SHELL_TYPE_SQUARE_BIN (shell_square_bin_get_type ())
G_DECLARE_FINAL_TYPE (ShellSquareBin, shell_square_bin, SHELL, SquareBin, StBin)
G_END_DECLS
#endif /* __SHELL_SQUARE_BIN_H__ */