home *** CD-ROM | disk | FTP | other *** search
Java Source | 1996-08-14 | 689 b | 32 lines |
- // OrientIcon.java
- // 16.03.96
- //
- // The icon on the orientation screen
-
- package cybcerone.orient;
-
- import java.awt.Rectangle;
-
- import cybcerone.utils.IdPanel;
- import cybcerone.utils.Appletlike;
-
- /**
- * Useless gratuitous graphic.
- */
- class OrientIcon extends IdPanel {
- private static final Rectangle placement = new Rectangle (734, 0, 290, 200);
-
- private static final String id = "OrientIcon";
- private static final String statusText = "Maps and orientation";
-
- private static final String bgFile =
- OrientPanel.imagePath + "titre_orientation.gif";
-
- OrientIcon (Appletlike app) {
- super (id, statusText, app);
- reshape (placement);
-
- setBackground (bgFile, 1);
- }
- }
-