mirror of
https://github.com/ToshioCP/Gtk4-tutorial.git
synced 2025-01-13 20:03:33 +01:00
32 lines
478 B
C
32 lines
478 B
C
|
#ifndef __TFE_NOTEBOOK_H__
|
||
|
#define __TFE_NOTEBOOK_H__
|
||
|
|
||
|
#include <gtk/gtk.h>
|
||
|
|
||
|
gboolean
|
||
|
has_saved (GtkNotebook *nb);
|
||
|
|
||
|
gboolean
|
||
|
has_saved_all (GtkNotebook *nb);
|
||
|
|
||
|
void
|
||
|
notebook_page_save(GtkNotebook *nb);
|
||
|
|
||
|
void
|
||
|
notebook_page_saveas(GtkNotebook *nb);
|
||
|
|
||
|
void
|
||
|
notebook_page_close (GtkNotebook *nb);
|
||
|
|
||
|
void
|
||
|
notebook_page_open (GtkNotebook *nb);
|
||
|
|
||
|
void
|
||
|
notebook_page_new_with_file (GtkNotebook *nb, GFile *file);
|
||
|
|
||
|
void
|
||
|
notebook_page_new (GtkNotebook *nb);
|
||
|
|
||
|
#endif /* __TFE_NOTEBOOK_H__ */
|
||
|
|