forked from jverein/jverein
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kontextmenüs von Rechnung, Spendenbescheinigung und Zugeordnete Buchu…
…ngen erweitert (#649)
- Loading branch information
1 parent
2169c4f
commit d55265b
Showing
8 changed files
with
119 additions
and
14 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
40 changes: 40 additions & 0 deletions
40
src/de/jost_net/JVerein/gui/menu/BuchungPartAnzeigenMenu.java
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,40 @@ | ||
/********************************************************************** | ||
* Copyright (c) by Heiner Jostkleigrewe | ||
* This program is free software: you can redistribute it and/or modify it under the terms of the | ||
* GNU General Public License as published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without | ||
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See | ||
* the GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along with this program. If not, | ||
* see <http://www.gnu.org/licenses/>. | ||
* | ||
* [email protected] | ||
* www.jverein.de | ||
**********************************************************************/ | ||
package de.jost_net.JVerein.gui.menu; | ||
|
||
import de.jost_net.JVerein.gui.action.BuchungAction; | ||
import de.jost_net.JVerein.gui.action.MitgliedDetailAction; | ||
import de.willuhn.jameica.gui.parts.CheckedSingleContextMenuItem; | ||
import de.willuhn.jameica.gui.parts.ContextMenu; | ||
|
||
/** | ||
* Kontext-Menu zu den Buchungen. | ||
*/ | ||
public class BuchungPartAnzeigenMenu extends ContextMenu | ||
{ | ||
/** | ||
* Erzeugt ein Kontext-Menu fuer die Liste der Buchungen. | ||
*/ | ||
|
||
public BuchungPartAnzeigenMenu() | ||
{ | ||
addItem(new CheckedSingleContextMenuItem("Anzeigen", | ||
new BuchungAction(false), "text-x-generic.png")); | ||
addItem(new CheckedSingleContextMenuItem("Mitglied anzeigen", | ||
new MitgliedDetailAction(), "user-friends.png")); | ||
} | ||
} |
40 changes: 40 additions & 0 deletions
40
src/de/jost_net/JVerein/gui/menu/BuchungPartBearbeitenMenu.java
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,40 @@ | ||
/********************************************************************** | ||
* Copyright (c) by Heiner Jostkleigrewe | ||
* This program is free software: you can redistribute it and/or modify it under the terms of the | ||
* GNU General Public License as published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without | ||
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See | ||
* the GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along with this program. If not, | ||
* see <http://www.gnu.org/licenses/>. | ||
* | ||
* [email protected] | ||
* www.jverein.de | ||
**********************************************************************/ | ||
package de.jost_net.JVerein.gui.menu; | ||
|
||
import de.jost_net.JVerein.gui.action.BuchungAction; | ||
import de.jost_net.JVerein.gui.action.MitgliedDetailAction; | ||
import de.willuhn.jameica.gui.parts.CheckedSingleContextMenuItem; | ||
import de.willuhn.jameica.gui.parts.ContextMenu; | ||
|
||
/** | ||
* Kontext-Menu zu den Buchungen. | ||
*/ | ||
public class BuchungPartBearbeitenMenu extends ContextMenu | ||
{ | ||
/** | ||
* Erzeugt ein Kontext-Menu fuer die Liste der Buchungen. | ||
*/ | ||
|
||
public BuchungPartBearbeitenMenu() | ||
{ | ||
addItem(new CheckedSingleContextMenuItem("Bearbeiten", | ||
new BuchungAction(false), "text-x-generic.png")); | ||
addItem(new CheckedSingleContextMenuItem("Mitglied anzeigen", | ||
new MitgliedDetailAction(), "user-friends.png")); | ||
} | ||
} |
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