aboutsummaryrefslogtreecommitdiff
path: root/src/calp.c
blob: d9f0d3a946189de67df28a2d9279248551d28425 (plain)
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
#include <stdio.h>
#include <stdlib.h>
#include <cairo/cairo-pdf.h>
#include <pango/pangocairo.h>

#include "draw.h"
#include "date.h"

// Metric
#define A4_WIDTH 210
#define A4_HEIGHT 297

#define US_LETTER_WIDTH 216
#define US_LETTER_HEIGHT 279

// Font Settings
#define FONT_FAMILY "Sans"
#define FONT_SIZE_NORMAL 10
#define FONT_SIZE_LARGE 40

int main (void) {
   // Definitions
   // -----------
   //double width = US_LETTER_WIDTH;
   //double height = US_LETTER_HEIGHT;

   double width = A4_WIDTH;
   double height = A4_HEIGHT;

   // Convert to inches, then 1 unit = 1/72th inch
   width = (width / 25.4) * 72.0;
   height = (height / 25.4) * 72.0;

   extern char *months[];
   int num_of_months = 12;
   extern int days_in_month[12];

   // TBD: Add ability to choose filename
   char *filename;
   filename = "output.pdf";

   // Create dimensions struct to hold measurements
   struct dimensions dim;

   struct month_info month;


   // Leap year adjustment: increment February day count by one
   int year = 2026;
   if (isleap(year)) {
      days_in_month[1]++;
   }




   // Initialization
   // --------------
   // Calculates measurements, stores them in dimensions struct. See "draw.h"
   calculate_dimensions(width, height, &dim);

   cairo_surface_t *surface = cairo_pdf_surface_create(filename, dim.paper_width, dim.paper_height);
   cairo_t *paper = cairo_create(surface);

   // Sub-surface for rendering content in day boxes
   cairo_surface_t *day = 
      cairo_surface_create_similar(surface, CAIRO_CONTENT_COLOR_ALPHA, dim.day_width, dim.day_height);
   cairo_t *cd = cairo_create(day);

   // General rectangle struct for positioning. Used whenever dimensions need
   // to be passed to another function
   // PangoRectangle logical_extents;

   // Fill background with white color
   cairo_set_source_rgb (paper, 255.0, 255.0, 255.0);
   fill_bg(paper);




   // Construction
   // ------------
   // Print dimensions, for debugging
   //print_dimensions(&dim);

   // Draw all months
   //
   struct RGB color;

   color = hex_to_rgb("#81bbd3");

   printf("red: %f\n", color.r);
   printf("green: %f\n", color.g);
   printf("blue: %f\n", color.b);

   for (int i = 0; i < num_of_months; i++) {
      // Set the 
      month.first_day = day_of_week(1, i + 1, year);
      month.num_of_days = days_in_month[i];

      cairo_set_source_rgb (paper, 0.0, 0.0, 0.0);
      draw_month_title(paper, &dim, months[i]);

      calculate_minimum_rows(&month, &dim);

      draw_month(paper, cd, day, &month, &dim);
      draw_month_grid(paper, &month, &dim);

      // Go to next page in pdf
      cairo_show_page(paper); 
   }


   

   // Clean up
   // --------
   cairo_destroy(paper);
   cairo_surface_destroy(surface);
   return 0;
}