lyx_mirror/src/lyxdraw.h
Lars Gullik Bjønnes 0eccdd1c36 merge from the string-switch branch and ready for a prelease.
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@162 a592a061-630c-0410-9148-cb99ea01b6c8
1999-10-02 16:21:10 +00:00

55 lines
614 B
C++

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