Skip to content

Commit 478f3bf

Browse files
authored
Merge pull request #287 from jlawyerorg/develop
added link to gewschutzrecht01
2 parents d6d5734 + 5392fff commit 478f3bf

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

src/2.6.0.0/gewschutzrecht01_meta.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,6 @@ For more information on this, and how to apply and follow the GNU AGPL, see
547547

548548
name = "gew. Schutzrecht"
549549
description = "gewerbliches Schutzrecht"
550-
version = "0.3.0";
550+
version = "0.4.0";
551551
author = "Jens Kutschke"
552-
updated = "30.01.2026"
552+
updated = "18.03.2026"

src/2.6.0.0/gewschutzrecht01_ui.groovy

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -696,6 +696,7 @@ import java.io.File
696696
import java.io.FileOutputStream
697697
import java.util.ArrayList
698698
import com.jdimension.jlawyer.client.plugins.form.FormPluginCallback
699+
import com.jdimension.jlawyer.client.utils.DesktopUtils
699700

700701
public class gewschutzrecht01_ui implements com.jdimension.jlawyer.client.plugins.form.FormPluginMethods {
701702

@@ -736,6 +737,7 @@ public class gewschutzrecht01_ui implements com.jdimension.jlawyer.client.plugin
736737
JComboBox cmbAktenstatus = null;
737738
JTextField txtGetoetetAm = null;
738739
JTextArea txtNotiz = null;
740+
JTextField txtExternalLink = null;
739741

740742
// Schutzartenspezifische Panels
741743
JPanel pnlPatent = null;
@@ -1283,6 +1285,29 @@ public class gewschutzrecht01_ui implements com.jdimension.jlawyer.client.plugin
12831285
}
12841286
}
12851287

1288+
// Link
1289+
tr {
1290+
td (colfill:true, align: 'left') {
1291+
label(text: 'Link:')
1292+
}
1293+
td (colfill:true, align: 'left') {
1294+
panel {
1295+
tableLayout (cellpadding: 0) {
1296+
tr {
1297+
td {
1298+
txtExternalLink = textField(id: 'sExternalLink', name: "_EXTLINK", clientPropertyJlawyerdescription: "externer Link", text: '', columns: 50)
1299+
}
1300+
td {
1301+
button(text: 'Öffnen', actionPerformed: {
1302+
DesktopUtils.openBrowser(txtExternalLink.getText());
1303+
})
1304+
}
1305+
}
1306+
}
1307+
}
1308+
}
1309+
}
1310+
12861311
// Anmeldetag
12871312
tr {
12881313
td (colfill:true, align: 'left') {

src/j-lawyer-forms.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,6 @@
115115

116116
<form id="rechtspsy01" type="plugin" depends="formslib" name="psych. Gutachten" description="Bearbeitung rechtspsychologischer Gutachten" placeholder="RPSY" version="1.4.0" for="3.3.0.2,3.4.0.0,3.4.0.1,3.4.0.2,3.4.0.3,3.4.0.4,3.5.0.0" url="https://www.j-lawyer.org/downloads/j-lawyer-plugins/forms/2.6.0.0" files="rechtspsy01_meta.groovy,rechtspsy01_ui.groovy"/>
117117

118-
<form id="gewschutzrecht01" type="plugin" depends="formslib" name="gew. Schutzrecht" description="gewerbliches Schutzrecht" placeholder="GSR" version="0.3.0" for="3.3.0.2,3.4.0.0,3.4.0.1,3.4.0.2,3.4.0.3,3.4.0.4,3.5.0.0" url="https://www.j-lawyer.org/downloads/j-lawyer-plugins/forms/2.6.0.0" files="gewschutzrecht01_meta.groovy,gewschutzrecht01_ui.groovy"/>
118+
<form id="gewschutzrecht01" type="plugin" depends="formslib" name="gew. Schutzrecht" description="gewerbliches Schutzrecht" placeholder="GSR" version="0.4.0" for="3.3.0.2,3.4.0.0,3.4.0.1,3.4.0.2,3.4.0.3,3.4.0.4,3.5.0.0" url="https://www.j-lawyer.org/downloads/j-lawyer-plugins/forms/2.6.0.0" files="gewschutzrecht01_meta.groovy,gewschutzrecht01_ui.groovy"/>
119119

120120
</forms>

0 commit comments

Comments
 (0)