forked from openjverein/jverein
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Vor Zurueck Buttons für Date Inputs in Listen Views (openjverein#514)
* Vor Zurueck Buttons für Date Inputs in Listen Views * Tooltip für Vor und Zurück Buttons
- Loading branch information
1 parent
dea60cf
commit fa5ec4b
Showing
16 changed files
with
274 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
package de.jost_net.JVerein.gui.parts; | ||
|
||
import de.willuhn.jameica.gui.Action; | ||
import de.willuhn.jameica.gui.parts.Button; | ||
|
||
public class ToolTipButton extends Button | ||
{ | ||
/** | ||
* @param title | ||
* Beschriftung. | ||
* @param action | ||
* Action, die beim Klick ausgefuehrt werden soll. | ||
*/ | ||
public ToolTipButton(String title, Action action, Object context, | ||
boolean defaultButton, String icon) | ||
{ | ||
super(title, action, context, defaultButton, icon); | ||
} | ||
|
||
public void setToolTipText(String text) | ||
{ | ||
this.button.setToolTipText(text); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.