]> Pileus Git - lackey/commitdiff
Add edit view
authorAndy Spencer <andy753421@gmail.com>
Sun, 16 Jun 2013 04:39:55 +0000 (04:39 +0000)
committerAndy Spencer <andy753421@gmail.com>
Sun, 16 Jun 2013 04:39:55 +0000 (04:39 +0000)
makefile
src/view.c
views/edit.c [new file with mode: 0644]

index c1acd8f3a9169828df4d19f7587aae47bb371f10..3fefedb2868f52815d2a9f1d75b01c1407def9e9 100644 (file)
--- a/makefile
+++ b/makefile
@@ -19,7 +19,7 @@ PROG      ?= lackey
 PROG_SRC  ?= main view date cal conf util
 TEST      ?= test
 TEST_SRC  ?= test date cal conf util
-VIEWS     ?= day week month year events todo settings help
+VIEWS     ?= day week month year events todo settings help edit
 CALS      ?= dummy ical
 
 # For ncursesw
index dfc087120f8b55d40d5b6d84488c6c02ee1cd1f0..623028e15cda1075c4d31b00b98666217728a301 100644 (file)
@@ -53,6 +53,7 @@ VIEW(events);
 VIEW(todo);
 VIEW(settings);
 VIEW(help);
+VIEW(edit);
 
 /* View data */
 static const char *names[] = {
@@ -73,6 +74,7 @@ view_t views[] = {
        { "Settings", settings_init, settings_size, settings_draw, settings_run, {KEY_F(7), '7'} },
        { "Help",     help_init,     help_size,     help_draw,     help_run,     {KEY_F(8), '8'} },
        { NULL,       NULL,          NULL,          NULL,          NULL,         {             } },
+       { "Edit",     edit_init,     edit_size,     edit_draw,     edit_run,     {             } },
 };
 
 /* Config data */
@@ -346,6 +348,8 @@ int view_run(int key, mmask_t btn, int row, int col)
                        return view_set(ACTIVE, -1);
                case '?':    // help
                        return view_set(ACTIVE, 9);
+               case 'e':    // edit
+                       return view_set(ACTIVE, 11);
        }
 
        /* Pass key to active view */
diff --git a/views/edit.c b/views/edit.c
new file mode 100644 (file)
index 0000000..8e8c871
--- /dev/null
@@ -0,0 +1,51 @@
+/*
+ * Copyright (C) 2013 Andy Spencer <andy753421@gmail.com>
+ *
+ * This program 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.
+ *
+ * This program 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 <string.h>
+#include <ncurses.h>
+
+#include "util.h"
+#include "conf.h"
+#include "date.h"
+#include "cal.h"
+#include "view.h"
+
+/* Static data */
+static WINDOW *win;
+
+/* Edit init */
+void edit_init(WINDOW *_win)
+{
+       win = _win;
+}
+
+/* Edit init */
+void edit_size(int rows, int cols)
+{
+}
+
+/* Edit draw */
+void edit_draw(void)
+{
+       mvwprintw(win, 1, 1, "Edit\n");
+}
+
+/* Edit run */
+int edit_run(int key, mmask_t btn, int row, int col)
+{
+       return 0;
+}