Crossfire JXClient, Trunk  R20561
Segment.java
Go to the documentation of this file.
1 /*
2  * This file is part of JXClient, the Fullscreen Java Crossfire Client.
3  *
4  * JXClient is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; either version 2 of the License, or
7  * (at your option) any later version.
8  *
9  * JXClient is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with JXClient; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17  *
18  * Copyright (C) 2005-2008 Yann Chachkoff.
19  * Copyright (C) 2006-2011 Andreas Kirschbaum.
20  */
21 
22 package com.realtime.crossfire.jxclient.gui.log;
23 
24 import java.awt.Graphics;
25 import java.awt.font.FontRenderContext;
26 import java.awt.geom.RectangularShape;
27 import org.jetbrains.annotations.NotNull;
28 
34 public interface Segment {
35 
40  void setX(int x);
41 
46  void setY(int y);
47 
52  void setWidth(int width);
53 
60  void draw(@NotNull Graphics g, int y, @NotNull Fonts fonts);
61 
67  void updateAttributes(@NotNull Fonts fonts, @NotNull FontRenderContext context);
68 
75  @NotNull
76  RectangularShape getSize(@NotNull Fonts fonts, @NotNull FontRenderContext context);
77 
78 }
RectangularShape getSize(@NotNull Fonts fonts, @NotNull FontRenderContext context)
Returns the size of this segment in pixels.
void draw(@NotNull Graphics g, int y, @NotNull Fonts fonts)
Draws this segment to a Graphics instance.
One segment of a Line which should be displayed without changing text attributes. ...
Definition: Segment.java:34
void updateAttributes(@NotNull Fonts fonts, @NotNull FontRenderContext context)
Updates the cached attributes of this segment.
void setY(int y)
Sets the y-coordinate to display the segment.
void setWidth(int width)
Sets the width to display the segment.
void setX(int x)
Sets the x-coordinate to display the segment.