26 lines
612 B
C
26 lines
612 B
C
//
|
|
// Created by selim on 01.06.2022.
|
|
//
|
|
|
|
#ifndef AUTOCAT_GNOME_PLATEVIEW_H
|
|
#define AUTOCAT_GNOME_PLATEVIEW_H
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#define PLATEVIEW(obj) GTK_CHECK_CAST(obj, plateview_get_type(), PlateView)
|
|
#define PLATEVIEW_CLASS(klass) GTK_CHECK_CLASS_CAST(klass, plateview_get_type(), PlateViewClass)
|
|
|
|
typedef struct {
|
|
|
|
} PlateView;
|
|
|
|
typedef struct {
|
|
GtkWidgetClass parent_class;
|
|
} PlateViewClass;
|
|
|
|
guint plateview_get_type (void);
|
|
GtkWidget* plateview_new (void);
|
|
void plateview_clear (PlateView* view);
|
|
|
|
#endif //AUTOCAT_GNOME_PLATEVIEW_H
|