1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834
|
/*
* TimeTracker - the Time Usage Meter
*/
/*
* Projectlist.c
*/
/*
* By Harald Tveit Alvestrand, UNINETT, Norway
*
* This code has NO guarantees; use it as you see fit.
* See the README file for details.
*
* Handling of the project file: Reading, writing and editing it
*
*/
/*
* ------------ SHARED VARIABLES -----------------
*/
#include "titrax.h"
/*
* ------------ GLOBAL VARIABLES (to this file) -----------------
*/
static Widget addproject;
static Widget addshell;
static Widget addDialog;
static Widget editproject;
static Widget editshell;
static Widget editDialog;
static Widget messageBox;
static Widget messageshell;
static Widget scrollbar;
/*
* Global variables for edit box
*/
int edited_index;
int edited_time;
String edited_project;
char edited_timestring[10];
void timeshavechanged(); /*
*
* *
* * *
* * * *
* * * * *
* * * * * * Declared later in this file
*/
void DeleteProject();
int testfortime();
int TestForNoOldProject();
void MessageBox();
/*
* Information about the current project list
*/
int noOfProjects = 0;
int lastRealProject = 0;
void
makeemptyprojectlist()
{
char filename[MAXPATHLEN];
FILE *inputfile;
(void) sprintf(filename, "%.*s/projectlist", PREFIXLEN, TimeTrackerdirectory);
inputfile = fopen(filename, "w");
fprintf(inputfile, "empty\n");
fclose(inputfile);
}
static void
addLine(toAll, scan, tobuf)
String **toAll;
int *scan;
String tobuf;
{
(*toAll)[*scan] = (String) malloc(strlen(tobuf) + 1);
strcpy((*toAll)[*scan], tobuf);
++*scan;
*toAll = (String *) realloc(*toAll, (*scan + 1) * sizeof(String));
(*toAll)[*scan] = NULL;
}
/*
* Add an extra line to an existing nameList
* Used by handling of dead projects.
*/
static void
addExtraLine(buf)
String buf;
{
addLine(&nameList, &noOfProjects, buf);
timeUsed = (int *) realloc(timeUsed, noOfProjects * sizeof(int));
timeUsed[noOfProjects - 1] = 0;
timeList = (String *) realloc(timeList,
(noOfProjects + 1) * sizeof(String));
timeList[noOfProjects - 1] = (String) malloc(TIMESTRINGLEN + 1);
timeList[noOfProjects - 1][0] = 0;
timeList[noOfProjects] = NULL;
}
void
ListIsModified()
{
XawListChange(list_widget, nameList, 0, 0, True);
XawListChange(timelist_widget, timeList, 0, 0, True);
timeshavechanged();
}
void
addDeadProject(buf, mins)
String buf;
int mins;
{
if (noOfProjects == lastRealProject) {
/*
* Add visual marker
*/
addExtraLine("============================");
timeUsed[noOfProjects - 1] = 0;
}
addExtraLine(buf);
timeUsed[noOfProjects - 1] = mins;
ListIsModified();
}
/*
* Read a projectlist from a file
*/
String *
makealist()
{
char buffer[80];
String tobuf;
String *toAll;
int scan;
char filename[MAXPATHLEN];
FILE *inputfile;
(void) sprintf(filename, "%.*s/projectlist", PREFIXLEN, TimeTrackerdirectory);
if ((inputfile = fopen(filename, "r")) == NULL) {
makeemptyprojectlist();
inputfile = fopen(filename, "r");
if (inputfile == NULL) {
char ermsg[100];
(void) sprintf(ermsg,
"Unable to open or create projectfile %s", filename);
perror(ermsg);
return NULL;
}
}
scan = 0;
toAll = (String *) malloc(sizeof(String));
while ((tobuf = fgets(buffer, 80, inputfile))) {
buffer[strlen(buffer) - 1] = 0; /*
* Cut the newline
*/
if (strlen(buffer) > (size_t) 0) { /*
* IGNORE all blank lines
*/
addLine(&toAll, &scan, tobuf);
}
}
if (scan == 0) { /*
* Error: Empty project file
*/
makeemptyprojectlist(); /*
* make an empty, 1-project list
*/
return makealist(); /*
* and return with it
*/
}
toAll[scan] = NULL;
fclose(inputfile);
lastRealProject = noOfProjects = scan;
return toAll;
}
/*
* Put the project list into the global variables
*/
int
makethelist()
{
int listlen, scan;
nameList = makealist();
if (nameList == NULL) {
return -1;
}
for (listlen = 0; nameList[listlen]; ++listlen);
timeList = (String *) malloc((listlen + 1) * sizeof(String));
for (scan = 0; scan < listlen; scan++) {
timeList[scan] = (String) malloc(TIMESTRINGLEN + 1);
timeList[scan][0] = 0;
}
timeList[scan] = NULL;
timeUsed = (int *) malloc(listlen * sizeof(int));
clear();
return 0;
}
/*
* Add a new project to the projectlist after the currently highlighted
* project, or first if there is none
*/
void
AddNewProject(p_index, newproject)
int p_index;
String newproject;
{
char filename[MAXPATHLEN];
int j;
FILE *outputfile;
/*
* NOTE: No check whatsoever for more than 1 project of same name!
*/
(void) sprintf(filename, "%.*s/projectlist", PREFIXLEN, TimeTrackerdirectory);
outputfile = fopen(filename, "w");
if (outputfile == NULL) {
MessageBox(toplevel, "Could not open project file when adding");
return;
}
if (p_index == -1)
fprintf(outputfile, "%s\n", newproject);
for (j = 0; j < lastRealProject; j++) {
fprintf(outputfile, "%s\n", nameList[j]);
if (j == p_index)
fprintf(outputfile, "%s\n", newproject);
}
fclose(outputfile);
}
/*
* function to delete a project from the projectlistfile
Simply saves the current content of the projectnames array
*/
void
DeleteProject(p_index)
int p_index;
{
int j;
char filename[MAXPATHLEN];
FILE *outputfile;
int counter;
(void) sprintf(filename, "%.*s/projectlist", PREFIXLEN, TimeTrackerdirectory);
/*
* MISSING: Code to check that projectlist is not changed before writing
* it back!!!!!!!!!!!!
*/
outputfile = fopen(filename, "w");
counter = 0;
for (j = 0; j < lastRealProject; j++) {
if (j != p_index) {
fprintf(outputfile, "%s\n", nameList[j]);
++counter;
}
}
if (counter == 0)
fprintf(outputfile, "empty\n");
fclose(outputfile);
}
/*
* =========== Above this line is list handling. Below is X =============
*/
/*
* Useful functions
*/
Widget
addButton(father, name, callback, c_data)
Widget father;
String name;
XtCallbackProc callback;
XtPointer c_data;
{
Widget w;
w = XtCreateManagedWidget(name,
commandWidgetClass, father, NULL, 0);
if (callback)
XtAddCallback(w, XtNcallback, callback, c_data);
return w;
}
void
Popup(w, topLevel)
Widget w;
Widget topLevel;
{
Position x;
Position y;
Dimension width;
Dimension height;
Arg arg[2];
int i;
/*
* get the coordinates of the toplevel widget.
*/
i = 0;
XtSetArg(arg[i], XtNwidth, &width);
++i;
XtSetArg(arg[i], XtNheight, &height);
++i;
XtGetValues(topLevel, arg, i);
if (width != 0 && height != 0) {
/*
* Sometimes called before toplevel realized
*/
XtTranslateCoords(topLevel,
(Position) 1,
(Position) 1,
&x, &y);
i = 0;
XtSetArg(arg[i], XtNx, x);
++i;
XtSetArg(arg[i], XtNy, y);
++i;
XtSetValues(w, arg, i);
}
XtPopup(w, XtGrabExclusive);
}
/*
* ------------- A simple message box ----------------
*/
void
MessageBox(w, string)
Widget w;
String string;
{
int i;
Arg arg[1];
i = 0;
XtSetArg(arg[i], XtNlabel, string);
++i;
XtSetValues(messageBox, arg, i);
Popup(messageshell, w);
}
/*
* ARGSUSED
*/
void
MessageOK(w, call_data, useless2)
Widget w;
XtPointer call_data;
XtPointer useless2;
{
XtPopdown((Widget) call_data);
}
void
initMessageBox()
{
/*
* The shell used for messages
*/
messageshell = XtCreatePopupShell(
"messagepopup", transientShellWidgetClass, toplevel,
NULL, 0);
messageBox = XtCreateManagedWidget(
"messagebox", dialogWidgetClass, messageshell, NULL, 0);
messageOkButton = addButton(messageBox, "OK", MessageOK, messageshell);
}
/*
* ---------- ADDING A PROJECT -------------
*/
/*
* ARGSUSED
*/
static void
Add(widget, event, params, parmcount)
Widget widget;
XEvent *event;
String *params;
Cardinal *parmcount;
{
Arg wargs[1];
int n;
n = 0;
XtSetArg(wargs[n], XtNvalue, "");
++n;
XtSetValues(addDialog, wargs, n);
Popup(addshell, toplevel);
}
/*
* ---- ADD dialog box: Add a project to the projectlist file ----
*/
/*
* Add dialog done button callback
*/
/*
* ARGSUSED
*/
static void
AddDone(widget, event, params, parmcount)
Widget widget;
XEvent *event;
String *params;
Cardinal *parmcount;
{
String string;
int current;
save(0, "Adding new project");
XtPopdown(addshell);
string = XawDialogGetValueString(addDialog);
current = currentProject();
AddNewProject(current, string);
(void) makethelist();
XawListChange(list_widget, nameList, 0, 0, True);
XawListChange(timelist_widget, timeList, 0, 0, True);
/*
* Set currency to the new project
*/
XawListHighlight(list_widget, current + 1);
XawListHighlight(timelist_widget, current + 1);
addprevtimes();
timeshavechanged();
}
/*
* Add dialog cancel button callback
*/
/*
* ARGSUSED
*/
static void
AddCancel(widget, event, params, parmcount)
Widget widget;
XEvent *event;
String *params;
Cardinal *parmcount;
{
XtPopdown(addshell);
}
void
initAddShell()
{
Arg wargs[10];
int n;
/*
* The shell for the "add project" dialog
*/
addshell = XtCreatePopupShell(
"addpopup", transientShellWidgetClass, commandBox,
NULL, 0);
n = 0;
/*
* This MUST be hardcoded, or else the text box does not appear
*/
XtSetArg(wargs[n], XtNvalue, "");
++n;
addDialog = XtCreateManagedWidget(
"dialog", dialogWidgetClass, addshell, wargs, n);
addButton(addDialog, "done", NULL, NULL);
addButton(addDialog, "cancel", NULL, NULL);
}
/*
* -------------- EDITING A PROJECT ----------------
*/
int
EditedTime(dialog)
Widget dialog;
/*
* Return number of minutes from the edit field
*/
{
String string;
int hours, minutes;
int count;
int result;
string = XawDialogGetValueString(dialog);
count = sscanf(string, "%d:%d", &hours, &minutes);
if (count == 1)
result = hours * 60;
else if (count == 2)
result = hours * 60 + minutes;
else
result = 0;
if (result < 0)
result = 0;
return result;
}
void
EditSetTime(w)
Widget w;
{
Arg arg[1];
int n;
float pos;
sprintf(edited_timestring, "%2d:%02d", edited_time / 60,
edited_time % 60);
n = 0;
XtSetArg(arg[n], XtNvalue, edited_timestring);
++n;
XtSetValues(w, arg, n);
/*
* Set scrollbar to percentage of 24 hours
*/
pos = (1.0 * edited_time) / (MINSPERDAY + 0.0);
XawScrollbarSetThumb(scrollbar, pos, -1.0);
}
/*
* ARGSUSED
*/
static void
Edit(widget, event, params, parmcount)
Widget widget;
XEvent *event;
String *params;
Cardinal *parmcount;
{
Arg arg[2];
int n;
n = 0;
edited_index = currentProject();
if (edited_index < 0)
MessageBox(toplevel, "No highlighted projet");
else {
edited_time = timeUsed[edited_index];
edited_project = nameList[edited_index];
EditSetTime(editDialog);
XtSetArg(arg[n], XtNlabel, edited_project);
++n;
XtSetArg(arg[n], XtNvalue, edited_timestring);
++n;
XtSetValues(editDialog, arg, n);
Popup(editshell, toplevel);
}
}
/*
* Edit dialog done button callback
*/
/*
* ARGSUSED
*/
static void
EditDone(widget, event, params, parmcount)
Widget widget;
XEvent *event;
String *params;
Cardinal *parmcount;
{
XtPopdown(editshell);
/*
* Copy data back to the projectlist
*/
timeUsed[edited_index] = EditedTime(editDialog);
timeshavechanged();
}
/*
* Edit dialog cancel button callback
*/
/*
* ARGSUSED
*/
static void
EditCancel(widget, event, params, parmcount)
Widget widget;
XEvent *event;
String *params;
Cardinal *parmcount;
{
XtPopdown(editshell);
}
/*
* Delete current project
*/
/*
* ARGSUSED
*/
static void
Delete(widget, event, params, parmcount)
Widget widget;
XEvent *event;
String *params;
Cardinal *parmcount;
{
int cur;
cur = currentProject();
if (cur < 0)
MessageBox(toplevel, "No highlighted projet");
else {
save(0, "Deleting a project");
DeleteProject(cur);
(void) makethelist();
ListIsModified();
addprevtimes();
timeshavechanged();
}
}
/*
* ARGSUSED
*/
static void
EditIncrement(widget, event, params, parmcount)
Widget widget;
XEvent *event;
String *params;
Cardinal *parmcount;
{
edited_time = EditedTime(editDialog);
if (*parmcount > 0)
edited_time += atoi(params[0]);
else
edited_time += incPlus;
if (edited_time < 0)
edited_time = 0;
EditSetTime(editDialog);
}
/*
* ------- Scrollbar handling -------
*/
/*
* Callback function: Set worked-on-this from scrollbar
*/
/*
* Called as the JumpProc callback
*/
/*
* ARGSUSED
*/
void
ScrollMoved(widget, client_data, call_data)
Widget widget;
XtPointer client_data;
XtPointer call_data;
{
/*
* Get the top of the thumb
*/
edited_time = (*(float *) call_data) * MINSPERDAY;
edited_time = edited_time / 5; /*
* HACK: Reduce to 5-minute intervals
*/
edited_time = edited_time * 5;
EditSetTime(editDialog);
}
/*
* Callback function: Respond to left and right button presses
*/
/*
* Called as the ScrollProc callback
*/
/*
* ARGSUSED
*/
void
ScrollClicked(widget, client_data, call_data)
Widget widget;
XtPointer client_data;
XtPointer call_data;
{
/*
* Scroll something proportional
*/
int tojump;
int length;
float proportion;
int addminutes;
tojump = (int) call_data;
/*
* get the current length of the scrollbar. This code DOES NOT WORK.
*/
#ifdef PROBLEM_WITH_GETVALUES_FIXED
i = 0;
XtSetArg(arg[i], XtNlength, &length);
++i;
XtGetValues(widget, arg, i);
#else
length = 240; /*
* Read by hand from the app-defaults file
*/
#endif
/*
* Right end moves one-fourth of MINSPERDAY. OK?
*/
proportion = tojump * 1.0 / length;
addminutes = proportion * MINSPERDAY / 4;
edited_time += addminutes;
if (edited_time > MINSPERDAY)
edited_time = MINSPERDAY;
if (edited_time < 0)
edited_time = 0;
edited_time = edited_time / 5; /*
* HACK: Reduce to 5-minute intervals
*/
edited_time = edited_time * 5;
EditSetTime(editDialog);
}
static void
initEditShell()
{
Widget doneButton;
Arg wargs[10];
int n;
/*
* The shell for the "add project" dialog
*/
editshell = XtCreatePopupShell(
"editpopup", transientShellWidgetClass, commandBox,
NULL, 0);
editDialog = XtCreateManagedWidget(
"dialog", dialogWidgetClass, editshell, NULL, 0);
doneButton = addButton(editDialog, "done", NULL, NULL);
addButton(editDialog, "cancel", NULL, NULL);
addButton(editDialog, "plus", NULL, NULL);
addButton(editDialog, "minus", NULL, NULL);
addButton(editDialog, "delete", NULL, NULL);
/*
* Add the scrollbar below the action buttons
*/
/*
* A scrollbar
*/
n = 0;
XtSetArg(wargs[n], XtNfromVert, doneButton);
++n;
scrollbar = XtCreateManagedWidget("scrollbar", scrollbarWidgetClass,
editDialog, wargs, n);
XtAddCallback(scrollbar, XtNjumpProc, ScrollMoved, NULL);
XtAddCallback(scrollbar, XtNscrollProc, ScrollClicked, NULL);
}
static void
RegisterActions()
{
/*
* Must be static to allow initialization
*/
static XtActionsRec actions[] =
{
{"edit", Edit},
{"add", Add},
{"addok", AddDone},
{"addcancel", AddCancel},
{"edit", Edit},
{"editok", EditDone},
{"editcancel", EditCancel},
{"editincrement", EditIncrement},
{"delete", Delete},
};
XtAppAddActions(appContext, actions, XtNumber(actions));
}
/*
* Code for initialization of the projectlist editor
*/
void
initprojectlisteditor()
{
/*
* The "add project" button
*/
addproject = addButton(commandBox, "add", NULL, NULL);
editproject = addButton(commandBox, "edit", NULL, NULL);
initAddShell();
initEditShell();
RegisterActions();
}
|