Hallo,
Ich schreibe aktuell an einem Packetlogger, da die letzen nicht mehr funktionieren.
Tanji ist ja leider patched, und an dem Programm wird nicht mehr weitergearbeitet.
Also habe ich mich entschlossen was kleines zu schreiben, die Vorstellung wird auch nicht gross.
Das ganze wurde in Java-FX geschrieben und mit CSS designt, gut eher Basic.
Hauptsache er funktioniert so wie er soll, weitere Updates werden dann gepostet wenn ich soweit bin.
CSS-Part:
Code
.bg-hbox {
-fx-background-color: #3A73BF;
}
.choicebox {
-fx-pref-width: 300;
-fx-pref-height: 30;
}
.logoText {
-fx-font-family: Roboto;
-fx-font-weight: 400;
-fx-font-size: 25;
-fx-font-style: none;
}
.btn {
-fx-pref-width: 300;
-fx-pref-height: 50;
-fx-background-color: #3A73BF;
-fx-font-family: Open-Sans;
-fx-font-weight: 300;
-fx-font-size: 18;
-fx-font-style: none;
-fx-text-fill: #FFF;
}
.btn:hover, :focus, :active {
-fx-background-color: #366CB2;
}
Alles anzeigen
Ich komme direkt zu dem Fortschritt:
Aktuell arbeite an der MainForm Gui (und danach an dem Sockets/Logging Part)
Für die Sockets kommen Java-Nio zum Einsatz.