aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUnia <jthidskes@live.nl>2013-04-08 20:16:28 +0200
committerUnia <jthidskes@live.nl>2013-04-08 20:16:28 +0200
commit7a0637f2ea56fca8d5963ff2607fd62146336edb (patch)
treed09cc9b8826ca154cc288c31b2144563aff49a9b
parent69160392add9a35020d45fbaceae0bf8b1d2aae4 (diff)
added license
-rw-r--r--gstopwatch.c25
1 files changed, 22 insertions, 3 deletions
diff --git a/gstopwatch.c b/gstopwatch.c
index 29b2148..3ae0c62 100644
--- a/gstopwatch.c
+++ b/gstopwatch.c
@@ -1,3 +1,22 @@
+/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*- */
+/*
+ * gstopwatch
+ * Copyright (C) 2013 Jente (jthidskes at outlook dot com)
+ *
+ * gstopwatch is free software: you can redistribute it and/or modify it
+ * under the terms of the GNU General Public License as published by the
+ * Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * gstopwatch is distributed in the hope that it will be useful, but
+ * WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along
+ * with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
#include <gtk/gtk.h>
enum {
@@ -8,15 +27,15 @@ enum {
enum {
N_LAP,
- SPLIT,
+ /*SPLIT,*/
TIME,
N_COLUMNS
};
GTimer *timer;
gchar output[100];
-gint state = STOPPED, lap = 0, hours, minutes, split_hours, split_minutes, prev_hours, prev_minutes;
-gdouble seconds, split_seconds, prev_seconds;
+gint state = STOPPED, lap = 0, hours, minutes; /*split_hours, split_minutes, prev_hours, prev_minutes;*/
+gdouble seconds; /*split_seconds, prev_seconds;*/
GtkWidget *timer_display, *button_timer, *button_funcs, *tree;
GtkListStore *liststore;
GtkTreeSelection *selection;