* copy daves great handler script and modify it to fit the simpler needs of webcit.
[citadel.git] / webcit / notes.c
index e3589b2ae92d9294c6f9eabf8e8901f63902e3a4..497251d3997c81e25e910e207b0e8c2aa9b42075 100644 (file)
@@ -7,14 +7,27 @@
 #include "groupdav.h"
 #include "webserver.h"
 
+int pastel_palette[9][3] = {
+       { 0x80, 0x80, 0x80 },
+       { 0xff, 0x80, 0x80 },
+       { 0x80, 0x80, 0xff },
+       { 0xff, 0xff, 0x80 },
+       { 0x80, 0xff, 0x80 },
+       { 0xff, 0x80, 0xff },
+       { 0x80, 0xff, 0xff },
+       { 0xff, 0x80, 0x80 },
+       { 0x80, 0x80, 0x80 }
+};
+
+
 /*
  * Display a <div> containing a rendered sticky note.
  */
 void display_vnote_div(struct vnote *v) {
+       int i;
 
-       /* begin outer div */
 
-       wprintf("<div id=\"note-%s\" ", v->uid);
+       wprintf("<div id=\"note-%s\" ", v->uid);        // begin outer div
        wprintf("class=\"stickynote_outer\" ");
        wprintf("style=\"");
        wprintf("left: %dpx; ", v->pos_left);
@@ -24,9 +37,11 @@ void display_vnote_div(struct vnote *v) {
        wprintf("background-color: #%02X%02X%02X ", v->color_red, v->color_green, v->color_blue);
        wprintf("\">");
 
-       /* begin title bar */
 
-       wprintf("<div id=\"titlebar-%s\" ", v->uid);
+
+
+
+       wprintf("<div id=\"titlebar-%s\" ", v->uid);    // begin title bar div
        wprintf("class=\"stickynote_titlebar\" ");
        wprintf("onMouseDown=\"NotesDragMouseDown(event,'%s')\" ", v->uid);
        wprintf("style=\"");
@@ -36,8 +51,9 @@ void display_vnote_div(struct vnote *v) {
        wprintf("<table border=0 cellpadding=0 cellspacing=0 valign=middle width=100%%><tr>");
 
        wprintf("<td align=left valign=middle>");
-       wprintf("<img onclick=\"alert('FIXME');\" ");
+       wprintf("<img onclick=\"NotesClickPalette(event,'%s')\" ", v->uid);
        wprintf("src=\"static/8paint16.gif\">");
+
        wprintf("</td>");
 
        wprintf("<td></td>");   // nothing in the title bar, it's just for dragging
@@ -47,46 +63,80 @@ void display_vnote_div(struct vnote *v) {
        wprintf("src=\"static/closewindow.gif\">");
        wprintf("</td></tr></table>");
 
-       wprintf("</div>\n");
+       wprintf("</div>\n");                            // end title bar div
+
+
 
-       /* begin note body */
 
-       wprintf("<div id=\"notebody-%s\" ", v->uid);
+
+       wprintf("<div id=\"notebody-%s\" ", v->uid);    // begin body div
        wprintf("class=\"stickynote_body\"");
        wprintf(">");
        escputs(v->body);
-       wprintf("</div>\n");
+       wprintf("</div>\n");                            // end body div
 
        wprintf("<script type=\"text/javascript\">");
        wprintf(" new Ajax.InPlaceEditor('notebody-%s', 'ajax_update_note?note_uid=%s', "
-               "{rows:%d,cols:%d,highlightcolor:'#%02X%02X%02X',highlightendcolor:'#%02X%02X%02X',"
+               "{rows:%d,cols:%d,onEnterHover:false,onLeaveHover:false,"
                "okText:'%s',cancelText:'%s',clickToEditText:'%s'});",
                v->uid,
                v->uid,
                (v->pos_height / 16) - 5,
                (v->pos_width / 9) - 1,
-               v->color_red, v->color_green, v->color_blue,
-               v->color_red, v->color_green, v->color_blue,
                _("Save"),
                _("Cancel"),
                _("Click on any note to edit it.")
        );
        wprintf("</script>\n");
 
-       /* begin resize handle */
 
-       wprintf("<div id=\"resize-%s\" ", v->uid);
+
+       wprintf("<div id=\"resize-%s\" ", v->uid);      // begin resize handle div
        wprintf("class=\"stickynote_resize\" ");
        wprintf("onMouseDown=\"NotesResizeMouseDown(event,'%s')\"", v->uid);
-       wprintf(">");
+       wprintf("> </div>");                            // end resize handle div
+
+
+
+
+       /* embed color selector - it doesn't have to be inside the title bar html because
+        * it's a separate div placed by css
+        */
+       wprintf("<div id=\"palette-%s\" ", v->uid);     // begin stickynote_palette div
+       wprintf("class=\"stickynote_palette\">");
+
+       wprintf("<table border=0 cellpadding=0 cellspacing=0>");
+       for (i=0; i<9; ++i) {
+               if ((i%3)==0) wprintf("<tr>");
+               wprintf("<td ");
+               wprintf("onClick=\"NotesClickColor(event,'%s',%d,%d,%d,'#%02x%02x%02x','#%02x%02x%02x')\" ",
+                       v->uid,
+                       pastel_palette[i][0],           // color values to pass to ajax call
+                       pastel_palette[i][1],
+                       pastel_palette[i][2],
+                       pastel_palette[i][0],           // new color of note
+                       pastel_palette[i][1],
+                       pastel_palette[i][2],
+                       pastel_palette[i][0] / 2,       // new color of title bar
+                       pastel_palette[i][1] / 2,
+                       pastel_palette[i][2] / 2
+               );
+               wprintf("bgcolor=\"#%02x%02x%02x\"> </td>",
+                       pastel_palette[i][0],
+                       pastel_palette[i][1],
+                       pastel_palette[i][2]
+               );
+               if (((i+1)%3)==0) wprintf("</tr>");
+       }
+       wprintf("</table>");
+
+       wprintf("</div>");                              // end stickynote_palette div
 
-       wprintf("<img src=\"static/resizecorner.png\">");
 
-       wprintf("</div>\n");
 
-       /* end of note */
 
-       wprintf("</div>\n");
+
+       wprintf("</div>\n");                            // end outer div
 }
 
 
@@ -136,6 +186,9 @@ struct vnote *vnote_new_from_msg(long msgnum) {
                        if (!vnote_from_body) {
                                vnote_from_body = vnote_new();
                                vnote_from_body->uid = strdup(uid_from_headers);
+                               vnote_from_body->color_red = pastel_palette[3][0];
+                               vnote_from_body->color_green = pastel_palette[3][1];
+                               vnote_from_body->color_blue = pastel_palette[3][2];
                                vnote_from_body->body = malloc(32768);
                                vnote_from_body->body[0] = 0;
                                body_len = 0;
@@ -204,7 +257,7 @@ void ajax_update_note(void) {
                return;
        }
 
-       lprintf(9, "Note UID = %s\n", bstr("note_uid"));
+       // lprintf(9, "Note UID = %s\n", bstr("note_uid"));
        serv_printf("EUID %s", bstr("note_uid"));
        serv_getln(buf, sizeof buf);
        if (buf[0] != '2') {
@@ -214,12 +267,12 @@ void ajax_update_note(void) {
                return;
        }
        msgnum = atol(&buf[4]);
-       lprintf(9, "Note msg = %ld\n", msgnum);
+       // lprintf(9, "Note msg = %ld\n", msgnum);
 
        // Was this request a delete operation?  If so, nuke it...
        if (havebstr("deletenote")) {
                if (!strcasecmp(bstr("deletenote"), "yes")) {
-                       serv_printf("DELE %ld", msgnum);
+                       serv_printf("DELE %d", msgnum);
                        serv_getln(buf, sizeof buf);
                        begin_ajax_response();
                        wprintf("%s", buf);
@@ -232,7 +285,7 @@ void ajax_update_note(void) {
        v = vnote_new_from_msg(msgnum);
        if (!v) {
                begin_ajax_response();
-               wprintf("Cannot locate a vNote within message %ld\n", msgnum);
+               wprintf("Cannot locate a vNote within message %d\n", msgnum);
                end_ajax_response();
                return;
        }
@@ -250,6 +303,15 @@ void ajax_update_note(void) {
         if (havebstr("width")) {
                v->pos_width = atoi(bstr("width"));
        }
+        if (havebstr("red")) {
+               v->color_red = atoi(bstr("red"));
+       }
+        if (havebstr("green")) {
+               v->color_green = atoi(bstr("green"));
+       }
+        if (havebstr("blue")) {
+               v->color_blue = atoi(bstr("blue"));
+       }
         if (havebstr("value")) {       // I would have preferred 'body' but InPlaceEditor hardcodes 'value'
                if (v->body) free(v->body);
                v->body = strdup(bstr("value"));
@@ -307,6 +369,9 @@ void add_new_note(void) {
        if (v) {
                v->uid = malloc(128);
                generate_uuid(v->uid);
+               v->color_red = pastel_palette[3][0];
+               v->color_green = pastel_palette[3][1];
+               v->color_blue = pastel_palette[3][2];
                v->body = strdup(_("Click on any note to edit it."));
                write_vnote_to_server(v);
                vnote_free(v);
@@ -314,3 +379,11 @@ void add_new_note(void) {
        
        readloop("readfwd");
 }
+
+void 
+InitModule_NOTES
+(void)
+{
+       WebcitAddUrlHandler(HKEY("add_new_note"), add_new_note, 0);
+       WebcitAddUrlHandler(HKEY("ajax_update_note"), ajax_update_note, 0);
+}