public PrintWrapper()
 {
     marginx = 50;
     marginy = 50;
     job = new PrintJob (PrintConfig.Default ());
     job.GetPageSize (out page_width,
              out page_height);
     width = page_width - marginx - marginx;
     height = page_height - marginy - marginy;
     tags = new ArrayList ();
     tab_string = "        ";
     font = Font.
         FindClosestFromWeightSlant
         ("monospace", FontWeight.Regular,
          false, 8);
     line_space_ratio = 1.8;
 }