File: letterformat.c

package info (click to toggle)
latex2rtf 2.3.8-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 6,964 kB
  • ctags: 2,684
  • sloc: ansic: 20,222; makefile: 653; sh: 478; perl: 22
file content (169 lines) | stat: -rwxr-xr-x 5,360 bytes parent folder | download | duplicates (5)
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

/* letterformat.c - LaTeX commands specific to the letter format

Copyright (C) 2001-2002 The Free Software Foundation

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 2
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, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.

This file is available from http://sourceforge.net/projects/latex2rtf/
 
Authors:
    2001-2002 Scott Prahl
*/

#include <stdlib.h>
#include <string.h>
#include "main.h"
#include "parser.h"
#include "letterformat.h"
#include "cfg.h"
#include "commands.h"
#include "funct1.h"
#include "convert.h"
#include "vertical.h"

static int g_letterOpened = FALSE; /* true after \opening */

static char *g_letterToAddress = NULL;
static char *g_letterReturnAddress = NULL;
static char *g_letterSignature = NULL;

void CmdSignature(int code)

/******************************************************************************
 purpose: saves the signature in the letter document style
          Use in the preamble or between \begin{letter} and \opening
 ******************************************************************************/
{
    if (g_letterSignature)
        free(g_letterSignature);
    g_letterSignature = getBraceParam();
}

void CmdAddress(int code)

/******************************************************************************
 purpose: saves the address in the letter document style
          Use in the preamble or between \begin{letter} and \opening
 ******************************************************************************/
{
    if (g_letterReturnAddress)
        free(g_letterReturnAddress);
    g_letterReturnAddress = getBraceParam();
}

void CmdLetter(int code)

/******************************************************************************
  purpose: pushes all necessary letter-commands on a stack
parameter: code: on/off-option for environment
 ******************************************************************************/
{
    if (code & ON) {
        PushEnvironment(LETTER_MODE);
        if (g_letterToAddress)
            free(g_letterToAddress);
        g_letterToAddress = getBraceParam();
    } else {
        PopEnvironment();
    }
}

void CmdOpening(int code)

/******************************************************************************
 purpose: /opening{Dear...} prints return address, Date, to address and opening
 ******************************************************************************/
{
    char oldalignment;
    char *s;

/* put return address and date at the top right */
    g_letterOpened = TRUE;
    oldalignment = getAlignment();
    setAlignment(RIGHT);
    fprintRTF("\n\\par\\pard\\q%c ", getAlignment());
    diagnostics(5, "Entering ConvertString() from CmdAddress");
    ConvertString(g_letterReturnAddress);
    diagnostics(5, "Exiting ConvertString() from CmdAddress");

/* put the date on the right */
    fprintRTF("\\par\\chdate ");

/* put addressee on the left */
    setAlignment(LEFT);
    fprintRTF("\n\\par\\pard\\q%c ", getAlignment());
    diagnostics(4, "Entering Convert() from CmdOpening");
    ConvertString(g_letterToAddress);
    diagnostics(4, "Exiting Convert() from CmdOpening");

/*  finally print the opening*/
    s = getBraceParam();
    ConvertString(s);
    free(s);

    setAlignment(oldalignment);
    fprintRTF("\n\\par\\pard\\q%c ", getAlignment());
}

void CmdClosing( /* @unused@ */ int code)

/******************************************************************************
 purpose: special command in the LaTex-letter-environment will be converted to a
      similar Rtf-style
 ******************************************************************************/
{
    char oldalignment;
    char *s;

    oldalignment = getAlignment();

/* print closing on the right */
    setAlignment(RIGHT);
    fprintRTF("\n\\par\\pard\\q%c ", getAlignment());
    diagnostics(5, "Entering ConvertString() from CmdClosing");
    s = getBraceParam();
    ConvertString(s);
    free(s);
    diagnostics(5, "Exiting ConvertString() from CmdClosing");

/* print signature a couple of lines down */
    fprintRTF("\n\\par\\par\\par ");

    diagnostics(5, "Entering ConvertString() from CmdSignature");
    ConvertString(g_letterSignature);
    diagnostics(5, "Exiting ConvertString() from CmdSignature");

    g_letterOpened = FALSE;
    setAlignment(oldalignment);
    fprintRTF("\n\\par\\pard\\q%c ", getAlignment());
}

void CmdPs(int code)

/******************************************************************************
 purpose: translate encl and cc into appropriate language
 ******************************************************************************/
{
    char *s = getBraceParam();

    if (code == LETTER_ENCL)
        ConvertBabelName("ENCLNAME");
    else if (code == LETTER_CC)
        ConvertBabelName("CCNAME");

    ConvertString(s);
    free(s);
}