init
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
#pragma once
|
||||
|
||||
#include <gtk/gtk.h>
|
||||
|
||||
typedef struct {
|
||||
GtkWidget *header;
|
||||
GtkWidget *flow;
|
||||
char *name;
|
||||
} CategoryWidgets;
|
||||
|
||||
struct _MoeMojiWindow {
|
||||
GtkApplicationWindow parent_instance;
|
||||
GtkBox *outer_box;
|
||||
GtkBox *content_box;
|
||||
GtkSearchEntry *search_entry;
|
||||
GtkWidget *header_bar;
|
||||
GtkBox *category_bar;
|
||||
GPtrArray *category_widgets;
|
||||
};
|
||||
|
||||
G_BEGIN_DECLS
|
||||
|
||||
#define MOEMOJI_TYPE_WINDOW (moemoji_window_get_type())
|
||||
|
||||
G_DECLARE_FINAL_TYPE(MoeMojiWindow, moemoji_window, MOEMOJI, WINDOW,
|
||||
GtkApplicationWindow);
|
||||
|
||||
G_END_DECLS
|
||||
Reference in New Issue
Block a user