about summary refs log tree commit diff stats
path: root/txt2tooltip.pl
blob: d2af2c0dc78fc8d2ec4d3cb43614c97919bf8729 (plain) (blame)
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
#!/bin/perl

# Copyright (c) 2012 Todd T. Fries <todd@fries.net>
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
# copyright notice and this permission notice appear in all copies.
#
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

# read in 'ascii2txt.pl' formatted man pages, spit out #defines for tooltips

use strict;
use warnings;

our $verbose = 0;

my $line;
my @lines;
my @states = ("prekewords", "keywords", "postkeywords");
my $state = 0;

my $tipname;
my @tipinfo;
my $tiplines;
while(<STDIN>) {
	chomp($line = $_);
	if ($state == 0) {
		if ($line =~ /following keywords:$/) {
			$state++;
		}
		next;
	}
	if ($state == 1) {
		if ($line =~ /^$/) {
			next;
		}
		if ($line =~ /^[A-Z]/) {
			showtip($tipname,@tipinfo);
			$state++;
			next;
		}
		if ($line =~ /^ {11,11}([a-z_]+)[ ]*(.*)$/) {
			showtip($tipname,@tipinfo);
			$tiplines = 1;
			$tipname = $1;
			@tipinfo = ($2);
			next;
		}
		if ($line =~ /^ {39,39}(.*)$/) {
			push @tipinfo, $1;
		}
	}
}

sub showtip {
	my ($tip,@info) = @_;

	my $text;
	my $count = 1;

	if (!defined($tip) || length($tip) < 1) {
		return;
	}

	my $fmt;
	for my $line (@info) {
		$line =~ s/&/&amp;/g;
		$line =~ s/</&lt;/g;
		$line =~ s/>/&gt;/g;
		$line =~ s/"/&quot;/g;
		$line =~ s/^ {6,6}/\\t/g;
		$line =~ s/\\t {6,6}/\\t\\t/g;
		$line =~ s/\\t {6,6}/\\t\\t/g;
		if ($count > $#info) {
			$fmt = "	\"%s\"\n";
		} else {
			$fmt = "	\"%s\\n\" \\\n";
		}
		$text .= sprintf $fmt,$line;
		$count++;
	}

	$tip = uc($tip);
	printf "#define TT_%s%s",$tip,$text;
}
exit(0);