home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Dream 52
/
Amiga_Dream_52.iso
/
Linux
/
Divers
/
lyx-0.13.2.tar.gz
/
lyx-0.13.2.tar
/
lyx-0.13.2
/
src
/
lyxdraw.h
< prev
next >
Wrap
C/C++ Source or Header
|
1998-04-23
|
582b
|
52 lines
// -*- C++ -*-
#ifndef _LYX_DRAW_H
#define _LYX_DRAW_H
#include FORMS_H_LOCATION
#include "lyxfont.h"
///
enum gc_type {
///
gc_clear,
///
gc_latex,
///
gc_foot,
///
gc_math,
///
gc_math_frame,
///
gc_fill,
///
gc_copy,
///
gc_select,
///
gc_on_off_line,
///
gc_thin_on_off_line,
///
gc_thick_line,
///
gc_lighted,
///
gc_selection,
///
gc_minipage,
///
gc_note,
///
gc_note_frame
};
///
extern GC getGC(gc_type typ);
///
extern GC GetAccentGC(LyXFont const &f, int line_width);
///
extern GC GetColorGC(LyXFont::FONT_COLOR color);
#endif