|
Revision 10, 1.9 kB
(checked in by t, 3 years ago)
|
Tailorization
Import of the upstream sources from
Repository: :pserver:anonymous@cvs.sf.net:/cvsroot/familyjewels
Kind: cvs
Module: FRII
Revision: 2005-12-09 09:00:54 by titus
Original author: tailor@vallista.idyll.org
Date: 2005-12-09 09:00:54
|
| Line | |
|---|
| 1 |
|
|---|
| 2 |
|
|---|
| 3 |
|
|---|
| 4 |
|
|---|
| 5 |
|
|---|
| 6 |
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
|
|---|
| 10 |
|
|---|
| 11 |
|
|---|
| 12 |
|
|---|
| 13 |
|
|---|
| 14 |
|
|---|
| 15 |
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 |
|
|---|
| 19 |
|
|---|
| 20 |
|
|---|
| 21 |
|
|---|
| 22 |
|
|---|
| 23 |
|
|---|
| 24 |
#ifndef _CANVAS_HH |
|---|
| 25 |
#define _CANVAS_HH |
|---|
| 26 |
|
|---|
| 27 |
namespace gui { |
|---|
| 28 |
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 |
|
|---|
| 32 |
|
|---|
| 33 |
|
|---|
| 34 |
class _Canvas { |
|---|
| 35 |
public: |
|---|
| 36 |
|
|---|
| 37 |
virtual void set_top_sequence_coords(int start, int end) = 0; |
|---|
| 38 |
virtual void set_bot_sequence_coords(int start, int end) = 0; |
|---|
| 39 |
|
|---|
| 40 |
|
|---|
| 41 |
virtual const int get_top_start() const = 0; |
|---|
| 42 |
virtual const int get_bot_start() const = 0; |
|---|
| 43 |
virtual const int get_top_end() const = 0; |
|---|
| 44 |
virtual const int get_bot_end() const = 0; |
|---|
| 45 |
|
|---|
| 46 |
|
|---|
| 47 |
|
|---|
| 48 |
virtual void draw_feature(int top_pos, int bot_pos, unsigned int width, |
|---|
| 49 |
int orientation) = 0; |
|---|
| 50 |
virtual void draw_feature(int top_pos, int bot_pos) = 0; |
|---|
| 51 |
|
|---|
| 52 |
|
|---|
| 53 |
|
|---|
| 54 |
virtual void push_clip() { }; |
|---|
| 55 |
|
|---|
| 56 |
virtual ~_Canvas() { }; |
|---|
| 57 |
}; |
|---|
| 58 |
} |
|---|
| 59 |
|
|---|
| 60 |
#endif |
|---|
| 61 |
|
|---|