~ubuntu-branches/ubuntu/hardy/texmacs/hardy

« back to all changes in this revision

Viewing changes to src/System/Files/tex_files.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Ralf Treinen
  • Date: 2004-04-19 20:34:00 UTC
  • Revision ID: james.westby@ubuntu.com-20040419203400-g4e34ih0315wcn8v
Tags: upstream-1.0.3-R2
ImportĀ upstreamĀ versionĀ 1.0.3-R2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
/******************************************************************************
 
3
* MODULE     : tex_files.hpp
 
4
* DESCRIPTION: manipulation of TeX font files
 
5
* COPYRIGHT  : (C) 1999  Joris van der Hoeven
 
6
*******************************************************************************
 
7
* This software falls under the GNU general public license and comes WITHOUT
 
8
* ANY WARRANTY WHATSOEVER. See the file $TEXMACS_PATH/LICENSE for more details.
 
9
* If you don't have this file, write to the Free Software Foundation, Inc.,
 
10
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
11
******************************************************************************/
 
12
 
 
13
#ifndef TEX_FILES_H
 
14
#define TEX_FILES_H
 
15
#include "boot.hpp"
 
16
#include "url.hpp"
 
17
 
 
18
void   make_tex_tfm (string fn_name);
 
19
void   make_tex_pk (string fn_name, int dpi, int design_dpi, string where);
 
20
void   reset_tfm_path (bool rehash= true);
 
21
void   reset_pk_path (bool rehash= true);
 
22
url    resolve_tfm (url name);
 
23
url    resolve_pk (url name);
 
24
bool   exists_in_tex (url font_name);
 
25
void   ec_to_cm (string& name, unsigned char& c);
 
26
string pk_to_true_type (string& name);
 
27
 
 
28
#endif // defined TEX_FILES_H