TimerSettingsWindow.h 569 B

1234567891011121314151617181920
  1. #ifndef INCLUDED_TIMER_SETTINGS_WINDOW_H
  2. #define INCLUDED_TIMER_SETTINGS_WINDOW_H
  3. #include "TimerApplication.h"
  4. #include <gtk/gtk.h>
  5. G_BEGIN_DECLS
  6. #define TIMER_TYPE_SETTINGS_WINDOW timer_settings_window_get_type()
  7. G_DECLARE_FINAL_TYPE(TimerSettingsWindow, timer_settings_window, TIMER, SETTINGS_WINDOW, GtkDialog)
  8. TimerSettingsWindow *timer_settings_window_new(TimerApplication *app, GKeyFile *keyFile, GtkWindow *parentWindow);
  9. GKeyFile *timer_settings_window_get_key_file(TimerSettingsWindow *self);
  10. G_END_DECLS
  11. #endif /* INCLUDED_TIMER_SETTINGS_WINDOW_H */