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
|
// $Id: CalendarFormT.cc 2641 2007-09-02 21:31:02Z flaterco $
/* Calendar Manage construction, organization, and printing of calendars.
Copyright (C) 1998 David Flater.
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 "common.hh"
#include "Calendar.hh"
#include "CalendarFormNotC.hh"
#include "CalendarFormT.hh"
CalendarFormT::CalendarFormT (Station &station,
Timestamp startTime,
Timestamp endTime,
Mode::Mode mode):
CalendarFormNotC (station, startTime, endTime, mode, Format::text) {}
// Returns true if buf[0] through buf[buflen-1] are all empty or null.
static const bool isNullLine (SafeVector<Dstr> &buf) {
for (unsigned a=0; a<buf.size(); ++a)
if (buf[a].length())
return false;
return true;
}
void CalendarFormT::flushBuffer (Dstr &text_out,
SafeVector<Dstr> &buf,
HeadersBool headers unusedParameter) {
char fmt[80];
unsigned columnWidth (Global::settings["tw"].u / buf.size());
if (columnWidth < 2)
return;
SafeVector<char> tbuf (columnWidth+1);
sprintf (fmt, "%%-%u.%us ", columnWidth-1, columnWidth-1);
while (!isNullLine (buf)) {
for (unsigned a=0; a<buf.size(); ++a) {
Dstr strip;
buf[a].getline (strip);
sprintf (&(tbuf[0]), fmt, strip.aschar());
text_out += &(tbuf[0]);
}
text_out += '\n';
}
}
void CalendarFormT::monthBanner (Dstr &buf, Date date) {
Dstr heading;
date.printCalendarHeading (heading);
int numspaces (((int)(Global::settings["tw"].u) - (int)(heading.length()))
/ 2);
for (int a=0; a<numspaces; ++a)
buf += ' ';
buf += heading;
buf += '\n';
}
void CalendarFormT::hardLineBreak (Dstr &buf) {
buf += '\n';
}
void CalendarFormT::pageBreak (Dstr &buf) {
buf += '\n';
}
void CalendarFormT::startTable (Dstr &buf,
unsigned numcols unusedParameter) {
buf += '\n';
}
// Cleanup2006 Done
|