yacos/src/main_window.h

26 lines
350 B
C

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
#include <gtk/gtk.h>
struct mainWindow {
GtkWidget *main_window;
GtkStack *stack_main;
struct page_intro {
GtkWidget *box;
} page_intro;
struct page_cart {
GtkWidget *box;
GtkListBox *list;
} page_cart;
};
struct mainWindow *mainWindow_new();
#endif // MAINWINDOW_H