TimerEditWindow.h 761 B

12345678910111213141516171819202122
  1. #ifndef INCLUDED_TIMER_EDIT_WINDOW_H
  2. #define INCLUDED_TIMER_EDIT_WINDOW_H
  3. #include "TimerApplication.h"
  4. #include <gtk/gtk.h>
  5. G_BEGIN_DECLS
  6. #define TIMER_TYPE_EDIT_WINDOW timer_edit_window_get_type()
  7. G_DECLARE_FINAL_TYPE(TimerEditWindow, timer_edit_window, TIMER, EDIT_WINDOW, GtkDialog)
  8. TimerEditWindow *timer_edit_window_new(const char *task, GDateTime *start, gint64 length, const char **taskOptions, gsize optionsLen, gboolean isNew, GDateTime *lastTask);
  9. GDateTime *timer_edit_window_get_start(TimerEditWindow *self);
  10. GDateTime *timer_edit_window_get_end(TimerEditWindow *self);
  11. gint64 timer_edit_window_get_length(TimerEditWindow *self);
  12. char *timer_edit_window_get_name(TimerEditWindow *self);
  13. G_END_DECLS
  14. #endif /* INCLUDED_TIMER_EDIT_WINDOW_H */