#include <gtk/gtk.h>
#include "timer.h"
#include "appdata.h"

#ifndef TIMESHOOTING_INTERFACE_H
#define TIMESHOOTING_INTERFACE_H

typedef struct _MainWindow MainWindow;

struct _MainWindow {
  AppData *data;

  GtkWidget *time;
  GtkWidget *wait;
  GtkWidget *repeat;

  GtkWidget *start;

  TimerWindow *timer_window;
};

MainWindow *main_window_create_new(AppData *data);
gboolean main_window_set_options(MainWindow *win,
				 guint seconds,
				 gboolean repeat);
#endif

