File: TextFormatterXLP.h

package info (click to toggle)
helpviewer.app 0.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,940 kB
  • sloc: objc: 2,416; makefile: 12
file content (78 lines) | stat: -rw-r--r-- 2,328 bytes parent folder | download | duplicates (2)
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
/*
    This file is part of HelpViewer (http://www.roard.com/helpviewer)
    Copyright (C) 2003 Nicolas Roard (nicolas@roard.com)
                  2020 Riccardo Mottola (rm@gnu.org)

    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
*/

#ifndef __TEXT_FORMATTER_XLP_H__
#define __TEXT_FORMATTER_XLP_H__

#include <Foundation/Foundation.h>
#include <AppKit/AppKit.h>
#include "TextFormatter.h"
#include "Section.h"
#include "BRCell.h"
#include "FigureCell.h"
#include "NoteCell.h"
//#include "Parser.h"

#ifdef MACOSX
@interface TextFormatterXLP : NSObject <TextFormatter>
#else
#include <GNUstepBase/GSXML.h>
@interface TextFormatterXLP : GSSAXHandler <TextFormatter>
#endif
{
	NSTextView* textView;
	NSMutableArray* pages;
	NSString* path;
	NSData* content;

	BOOL _document;
	NSMutableAttributedString* _currentContent;
	Section* _firstSection;
	Section* _currentSection;

	BOOL _italic, _bold, _smallcaps;
	BOOL _code, _url, _pre;

	BOOL _legendfig;
	BOOL _ol, _ul, _li;

	BOOL _note,_listing,_caution,_information;

	int _listLevel;

	NSMutableArray* legends;
	NSMutableArray* _listCounter;
	NSString* imgSource;
	NSMutableAttributedString* _string;
	NSMutableAttributedString* _preString;
	int legendX;
	int legendY;

	NSBundle* Bundle;
}
- (void) addImage: (NSString*) pathname;
- (void) addImage: (NSImage*) img onString: (NSMutableAttributedString*) as;
- (void) addLegendFig: (NSString*) imgpath withLegends: (NSArray*) plegends;
- (void) addNote: (NSMutableAttributedString*) string withImage: (NSImage*) img withColor: (NSColor*) color;
- (void) addRuleTo: (NSMutableAttributedString*) string withHeight: (CGFloat) height;
@end

#endif