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

« back to all changes in this revision

Viewing changes to src/Typeset/Line/lazy_typeset.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Michele Angrisano
  • Date: 2007-06-12 12:50:14 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20070612125014-qifjye1qab4l42gx
Tags: 1:1.0.6.10-1ubuntu1
* Merge from Debian unstable, remaining changes:
  - debian/patches/11-desktop-file.dpatch
    Fix category in desktop file
  - Update maintainer in field debian/control.

Show diffs side-by-side

added added

removed removed

Lines of Context:
14
14
#include "Line/lazy_vstream.hpp"
15
15
#include "Format/format.hpp"
16
16
#include "Stack/stacker.hpp"
 
17
#include "Boxes/construct.hpp"
 
18
#include "analyze.hpp"
17
19
 
18
20
array<line_item> typeset_marker (edit_env env, path ip);
19
21
array<line_item> typeset_concat (edit_env, tree t, path ip);
20
22
array<line_item> join (array<line_item> a, array<line_item> b);
21
23
lazy make_lazy_paragraph (edit_env env, tree t, path ip);
22
24
lazy make_lazy_table (edit_env env, tree t, path ip);
 
25
lazy make_lazy_canvas (edit_env env, tree t, path ip);
 
26
lazy make_lazy_ornament (edit_env env, tree t, path ip);
23
27
 
24
28
/******************************************************************************
25
29
* Documents
527
531
  case HLINK:
528
532
  case ACTION:
529
533
    return make_lazy_compound (env, t, ip);
 
534
  case CANVAS:
 
535
    return make_lazy_canvas (env, t, ip);
 
536
  case ORNAMENT:
 
537
    return make_lazy_ornament (env, t, ip);
530
538
  default:
531
539
    if (L(t) < START_EXTENSIONS) return make_lazy_paragraph (env, t, ip);
532
540
    else return make_lazy_compound (env, t, ip);