Package com.starpoints.painter.editor
Class PainterTabbedMenu
- java.lang.Object
-
- com.starpoints.painter.PainterBase
-
- com.starpoints.painter.PainterMenu
-
- com.starpoints.painter.editor.PainterTabbedMenu
-
- All Implemented Interfaces:
InputController
,Painter
- Direct Known Subclasses:
PainterFlashAnimationInfoMenu
,PainterLevelInfoMenu
,PainterShopInfoMenu
public class PainterTabbedMenu extends PainterMenu
Painter for tabbed submenus in editor.
-
-
Field Summary
Fields Modifier and Type Field Description protected static int
TABHEADER_HEIGHT
-
Fields inherited from class com.starpoints.painter.PainterMenu
active, button, button_clicked, buttonCounter, buttonLeft, buttonRight, entries, finished, firstTimeOpt, hideBackground, image, listeners, numberEntries, numbers, paintCount, showButtons
-
Fields inherited from class com.starpoints.painter.PainterBase
area, areas, bigFont, controller, gameInfo, medFont, mouseArea, offset, oldMouseArea, options, smallFont, state, verysmallFont, xfactor, yfactor
-
-
Constructor Summary
Constructors Constructor Description PainterTabbedMenu()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addMenu(PainterMenuHorizontal menu, java.lang.String text)
int
getBaseHeight()
Gets the base height of this painter.int
getBaseWidth()
Gets the base width of this painter.boolean
keyPressed(KeyEvent e)
Processes keys in menu.boolean
mouseClicked(MouseEvent e)
Handles mouse clicksboolean
mouseMoved(MouseEvent e)
Handles mouse moves.void
onStartGame(GameState state)
Called if game is started.protected void
onTabChange(int activeTab2)
void
paint(Graphics g, GameState state)
Paints the menu.void
selectTab(int tab)
void
setArea(Rectangle area)
Sets the size for this Painter.-
Methods inherited from class com.starpoints.painter.PainterMenu
addMenuEntry, addMenuListener, draw, drawBackgroundImage, findIntegerIndex, findIntegerIndex, fireEmptyClickEvent, fireMenuEntryMouseOverEvent, fireMenuEntrySelectedEvent, fireMenuEntrySelectionChangedEvent, focusFirst, getButtonScalingFactor, getButtonXPos, getButtonYPos, getFocussedEntry, getFontSize, getLeftMouseBorder, getRightMouseBorder, handleEvent, isActive, isDownKey, isEnterKey, isFinished, isLeftKey, isRightKey, isShowingButtons, isUpKey, paintMenuEntry, removeMenuEntry, removeMenuListener, setActive, setFinished, setMouseArea, setShowButtons
-
Methods inherited from class com.starpoints.painter.PainterBase
draw, drawShaded, drawShaded, getArea, getEditor, getHeight, getIndent, getRepaintFactor, getWidth, getXFactor, getYFactor, isInputController, setController, setFontSize, setLevel, setOptions, setState
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.starpoints.event.InputController
getArea, getXFactor, getYFactor, setController
-
-
-
-
Field Detail
-
TABHEADER_HEIGHT
protected static final int TABHEADER_HEIGHT
- See Also:
- Constant Field Values
-
-
Method Detail
-
getBaseWidth
public int getBaseWidth()
Gets the base width of this painter.- Specified by:
getBaseWidth
in interfacePainter
- Overrides:
getBaseWidth
in classPainterBase
- Returns:
- 1070.
-
getBaseHeight
public int getBaseHeight()
Gets the base height of this painter.- Specified by:
getBaseHeight
in interfacePainter
- Overrides:
getBaseHeight
in classPainterBase
- Returns:
- 770.
-
paint
public void paint(Graphics g, GameState state)
Paints the menu.- Specified by:
paint
in interfacePainter
- Overrides:
paint
in classPainterMenu
- Parameters:
g
- The graphics.state
- The game state.
-
addMenu
public void addMenu(PainterMenuHorizontal menu, java.lang.String text)
-
setArea
public void setArea(Rectangle area)
Sets the size for this Painter. All graphic operations should be restricted to this area.- Specified by:
setArea
in interfacePainter
- Overrides:
setArea
in classPainterBase
- Parameters:
area
- The area.
-
selectTab
public void selectTab(int tab)
-
keyPressed
public boolean keyPressed(KeyEvent e)
Processes keys in menu.- Specified by:
keyPressed
in interfaceInputController
- Overrides:
keyPressed
in classPainterMenu
- Parameters:
e
- KeyEvent.- Returns:
- true, if the event is handled by this InputController.
-
mouseClicked
public boolean mouseClicked(MouseEvent e)
Handles mouse clicks- Specified by:
mouseClicked
in interfaceInputController
- Overrides:
mouseClicked
in classPainterMenu
- Parameters:
e
- MouseEvent.- Returns:
- true, if the event is handled by this InputController.
-
onTabChange
protected void onTabChange(int activeTab2)
-
mouseMoved
public boolean mouseMoved(MouseEvent e)
Handles mouse moves.- Specified by:
mouseMoved
in interfaceInputController
- Overrides:
mouseMoved
in classPainterMenu
- Parameters:
e
- MouseEvent- Returns:
- true, if the event is handled by this InputController.
-
onStartGame
public void onStartGame(GameState state)
Called if game is started.- Specified by:
onStartGame
in interfacePainter
- Overrides:
onStartGame
in classPainterBase
- Parameters:
state
- The game state.
-
-