yacos/src/main_window.h

26 lines
350 B
C
Raw Normal View History

2019-07-20 23:50:50 +02:00
#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