summaryrefslogtreecommitdiff
path: root/docview/src/NewViewConstantsUnit.pas
blob: 4e191b15cb19d87e27d0b2f32a36629c867284e7 (plain)
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
Unit NewViewConstantsUnit;

{$mode objfpc}{$H+}

// NewView - a new OS/2 Help Viewer
// Copyright 2003 Aaron Lawrence (aaronl at consultant dot com)
// Copyright 2006-2009 Ronald Brill (rbri at rbri dot de)
// This software is released under the Gnu Public License - see readme.txt

// Common used constants for NewView

Interface

const
  PARAM_LINK_NOTE = 'note';
  PARAM_LINK_PROGRAM = 'program';
  PARAM_LINK_URL = 'url';
  PARAM_LINK_EXTERNAL = 'external';

  PRGM_EXPLORER = 'explore'; // web explorer
  PRGM_NETSCAPE = 'netscape';
  PRGM_MOZILLA = 'mozilla';
  PRGM_FIREFOX = 'firefox';


Implementation

End.