~ubuntu-branches/ubuntu/utopic/tcm/utopic

« back to all changes in this revision

Viewing changes to src/tb/linepiece.c

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2003-07-03 20:08:21 UTC
  • Revision ID: james.westby@ubuntu.com-20030703200821-se4xtqx25e5miczi
Tags: upstream-2.20
ImportĀ upstreamĀ versionĀ 2.20

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
////////////////////////////////////////////////////////////////////////////////
 
2
//
 
3
// This file is part of Toolkit for Conceptual Modeling (TCM).
 
4
// (c) copyright 1996, Vrije Universiteit Amsterdam.
 
5
// Author: Frank Dehne (frank@cs.vu.nl).
 
6
//
 
7
// TCM is free software; you can redistribute it and/or modify
 
8
// it under the terms of the GNU General Public License as published by
 
9
// the Free Software Foundation; either version 2 of the License, or 
 
10
// (at your option) any later version.
 
11
//
 
12
// TCM is distributed in the hope that it will be useful,
 
13
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
// GNU General Public License for more details.
 
16
//
 
17
// You should have received a copy of the GNU General Public License
 
18
// along with TCM; if not, write to the Free Software
 
19
// Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
 
20
// 02111-1307, USA.
 
21
////////////////////////////////////////////////////////////////////////////////
 
22
#include "grafport.h"
 
23
#include "inputfile.h"
 
24
#include "outputfile.h"
 
25
#include "linepiece.h"
 
26
#include <stdlib.h>
 
27
 
 
28
LinePiece::LinePiece(Grafport *g, Point *from, Point *to, 
 
29
                        LineStyle::Type t, unsigned n) {
 
30
        lineStyle = t;
 
31
        lineWidth = n;
 
32
        beginP = *from;
 
33
        endP = *to;
 
34
        grafport = g;
 
35
        visible = True;
 
36
}
 
37
 
 
38
void LinePiece::Draw() {
 
39
        if (!visible)
 
40
                return;
 
41
        grafport->SetLineWidth(lineWidth);
 
42
        grafport->SetLineStyle(lineStyle);
 
43
        grafport->DrawLine(beginP.x, beginP.y, endP.x, endP.y);
 
44
}
 
45
 
 
46
void LinePiece::Undraw() {
 
47
        Draw();
 
48
}
 
49
 
 
50
void LinePiece::UpdateLineStyle(LineStyle::Type t) {
 
51
        if (visible)
 
52
                Undraw();
 
53
        lineStyle = t;
 
54
        if (visible)
 
55
                Draw();
 
56
}
 
57
 
 
58
void LinePiece::UpdateLineWidth(unsigned n) {
 
59
        if (visible)
 
60
                Undraw();
 
61
        lineWidth = n;
 
62
        if (visible)
 
63
                Draw();
 
64
}
 
65
 
 
66
bool LinePiece::HitLine(int x, int y) {
 
67
        // should be like containptline in Line::
 
68
        return (beginP.x <= x && x <= endP.x && beginP.y <= y && y <= endP.y);
 
69
}
 
70
 
 
71
void LinePiece::UpdatePoints(const Point *p1, const Point *p2) {
 
72
        if (visible)
 
73
                Undraw();
 
74
        SetPoints(p1, p2);
 
75
        if (visible)
 
76
                Draw();
 
77
}
 
78
 
 
79
void LinePiece::UpdateBegin(const Point *p) {
 
80
        if (visible)
 
81
                Undraw();
 
82
        SetBegin(p);
 
83
        if (visible)
 
84
                Draw();
 
85
}
 
86
 
 
87
void LinePiece::UpdateEnd(const Point *p) {
 
88
        if (visible)
 
89
                Undraw();
 
90
        SetEnd(p);
 
91
        if (visible)
 
92
                Draw();
 
93
}
 
94
 
 
95
void LinePiece::Write(OutputFile *ofile) {
 
96
        string nm;
 
97
        LineStyle::Type2String(lineStyle, &nm);
 
98
        (*ofile) << "\t{ LineStyle " << nm << " }\n";
 
99
        (*ofile) << "\t{ LineWidth " << lineWidth << " }\n";
 
100
}
 
101
 
 
102
bool LinePiece::Read(InputFile *ifile, double format) {
 
103
        visible = False; // avoid multiple redraws
 
104
        string val;
 
105
        if (format <= 1.08) {
 
106
                if (!ifile->ReadAttribute("LineType", &val))
 
107
                        return False;
 
108
                if (val.toint() != lineStyle)
 
109
                        lineStyle = (LineStyle::Type)val.toint();
 
110
        }
 
111
        else {
 
112
                if (!ifile->ReadAttribute("LineStyle", &val))
 
113
                        return False;
 
114
                lineStyle = LineStyle::String2Type(&val);
 
115
                // Fat is old stuff.
 
116
                if (val %= "Fat")
 
117
                        lineWidth = 3;
 
118
                if (format >= 1.22) {
 
119
                        if (!ifile->ReadAttribute("LineWidth", &val))
 
120
                                return False;
 
121
                        lineWidth = val.toint();
 
122
                }
 
123
        }
 
124
        return True;
 
125
}