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
|
## HINT
Sources and Documentation for Viewing HINT files under Linux.
This implementation uses GTK-3 to build the user interface for hintview.
It
### Makefile
Controls the making of the hintview application.
In addition to the files in this directory, the files in the ../backend
and ../resources directory are required.
### hintview.1
The man page for hintview
### hintview.tex
The man page for hintview as a TeX file. Use "hitex hintview" to get the HINT version of the manual page.
### hintview.spec
Packaging script for use with `rpmbuild` and `debbuild`
### main.c and main.h
A short main program and its exported identifiers.
### renderOGL.c
The rendering frontend using OpenGL.
### gui.h
Function prototypes for the following C files implementing the GUI.
### about.c
Implements the about box and other message boxes.
### header.c
Implements the header bar and the menu.
### preferences.c
Implements the preferences dialog.
### search.c
Implements the search window.
### outline.c
Implements the outlines window.
### header.c
Implements the header bar with buttons and menu.
### settings.c
Implements saving preferences to make them persistent.
### resources.xml
Used to generate resources.c and resources.h files.
Currently only a HINT logo from ../resources/logo/
is referenced.
### edu.hm.cs.hintview.gschema.xml
The schema used by gsettings and settings.c to store
and retrieve preferences.
|