repo
stringclasses
1k values
file_url
stringlengths
96
373
file_path
stringlengths
11
294
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
6 values
commit_sha
stringclasses
1k values
retrieved_at
stringdate
2026-01-04 14:45:56
2026-01-04 18:30:23
truncated
bool
2 classes
akshetpandey/react-native-cronet
https://github.com/akshetpandey/react-native-cronet/blob/486391286a328f760ee620157f2c10859307d6fd/android/src/main/java/com/akshetpandey/rncronet/RNCronetOkHttpNetworkFetcher.java
android/src/main/java/com/akshetpandey/rncronet/RNCronetOkHttpNetworkFetcher.java
package com.akshetpandey.rncronet; import android.net.Uri; import android.os.SystemClock; import com.facebook.imagepipeline.backends.okhttp3.OkHttpNetworkFetcher; import com.facebook.imagepipeline.producers.NetworkFetcher; import com.facebook.react.bridge.ReadableMap; import com.facebook.react.bridge.ReadableMapKeySe...
java
MIT
486391286a328f760ee620157f2c10859307d6fd
2026-01-05T02:41:19.160773Z
false
akshetpandey/react-native-cronet
https://github.com/akshetpandey/react-native-cronet/blob/486391286a328f760ee620157f2c10859307d6fd/android/src/main/java/com/akshetpandey/rncronet/RNCronetOkHttpCallFactory.java
android/src/main/java/com/akshetpandey/rncronet/RNCronetOkHttpCallFactory.java
package com.akshetpandey.rncronet; import org.chromium.net.CronetEngine; import okhttp3.Call; import okhttp3.OkHttpClient; import okhttp3.Request; import okhttp3.internal.annotations.EverythingIsNonNull; @EverythingIsNonNull public class RNCronetOkHttpCallFactory implements Call.Factory { private final OkHttpClie...
java
MIT
486391286a328f760ee620157f2c10859307d6fd
2026-01-05T02:41:19.160773Z
false
akshetpandey/react-native-cronet
https://github.com/akshetpandey/react-native-cronet/blob/486391286a328f760ee620157f2c10859307d6fd/android/src/main/java/com/akshetpandey/rncronet/RNCronetFrescoImagePipelineConfig.java
android/src/main/java/com/akshetpandey/rncronet/RNCronetFrescoImagePipelineConfig.java
package com.akshetpandey.rncronet; import android.content.Context; import com.facebook.imagepipeline.backends.okhttp3.OkHttpImagePipelineConfigFactory; import com.facebook.imagepipeline.core.ImagePipelineConfig; import com.facebook.imagepipeline.listener.RequestListener; import com.facebook.react.modules.fresco.Systr...
java
MIT
486391286a328f760ee620157f2c10859307d6fd
2026-01-05T02:41:19.160773Z
false
akshetpandey/react-native-cronet
https://github.com/akshetpandey/react-native-cronet/blob/486391286a328f760ee620157f2c10859307d6fd/android/src/main/java/com/akshetpandey/rncronet/RNCronetNetworkingModule.java
android/src/main/java/com/akshetpandey/rncronet/RNCronetNetworkingModule.java
package com.akshetpandey.rncronet; import androidx.annotation.NonNull; import com.facebook.react.bridge.ReactApplicationContext; import com.facebook.react.bridge.ReactContextBaseJavaModule; import com.facebook.react.modules.network.OkHttpClientFactory; import com.facebook.react.modules.network.OkHttpClientProvider; i...
java
MIT
486391286a328f760ee620157f2c10859307d6fd
2026-01-05T02:41:19.160773Z
false
akshetpandey/react-native-cronet
https://github.com/akshetpandey/react-native-cronet/blob/486391286a328f760ee620157f2c10859307d6fd/android/src/main/java/com/akshetpandey/rncronet/RNCronetNetworkingPackage.java
android/src/main/java/com/akshetpandey/rncronet/RNCronetNetworkingPackage.java
package com.akshetpandey.rncronet; import androidx.annotation.NonNull; import com.facebook.react.ReactPackage; import com.facebook.react.bridge.NativeModule; import com.facebook.react.bridge.ReactApplicationContext; import com.facebook.react.uimanager.ViewManager; import java.util.Arrays; import java.util.Collection...
java
MIT
486391286a328f760ee620157f2c10859307d6fd
2026-01-05T02:41:19.160773Z
false
akshetpandey/react-native-cronet
https://github.com/akshetpandey/react-native-cronet/blob/486391286a328f760ee620157f2c10859307d6fd/android/src/main/java/com/akshetpandey/rncronet/RNCronetOkHttpCall.java
android/src/main/java/com/akshetpandey/rncronet/RNCronetOkHttpCall.java
package com.akshetpandey.rncronet; import androidx.annotation.Nullable; import org.chromium.net.CronetEngine; import org.chromium.net.UrlRequest; import java.io.IOException; import java.util.concurrent.TimeUnit; import okhttp3.Call; import okhttp3.Callback; import okhttp3.EventListener; import okhttp3.OkHttpClient;...
java
MIT
486391286a328f760ee620157f2c10859307d6fd
2026-01-05T02:41:19.160773Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/CoordinateConverter.java
alpha/MyBox/src/main/java/thridparty/CoordinateConverter.java
package thridparty; import mara.mybox.tools.DoubleTools; /** * @Author https://www.jianshu.com/p/c39a2c72dc65?from=singlemessage * * Changed by Mara */ public class CoordinateConverter { public static boolean outOfChina(double lon, double lat) { return lon < 72.004 || lon > 137.8347 || lat < 0.8293 |...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/QRCodeWriter.java
alpha/MyBox/src/main/java/thridparty/QRCodeWriter.java
package thridparty; import com.google.zxing.BarcodeFormat; import com.google.zxing.EncodeHintType; import com.google.zxing.Writer; import com.google.zxing.WriterException; import com.google.zxing.common.BitMatrix; import com.google.zxing.qrcode.decoder.ErrorCorrectionLevel; import com.google.zxing.qrcode.encoder.ByteM...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/EncodingDetect.java
alpha/MyBox/src/main/java/thridparty/EncodingDetect.java
package thridparty; /** * @Author https://www.cnblogs.com/ChurchYim/p/8427373.html * * Changed by Mara * My updates are marked with #####. */ import java.io.File; import java.io.FileInputStream; import java.io.InputStream; import java.net.URL; public class EncodingDetect { public static int MAX_CHECK_BYTES ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
true
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/ColorTemperature.java
alpha/MyBox/src/main/java/thridparty/ColorTemperature.java
package thridparty; /** * @Author http://brucelindbloom.com/index.html?Eqn_XYZ_to_T.html * http://brucelindbloom.com/index.html?Eqn_T_to_xy.html * */ public class ColorTemperature { public static double[] rt = { /* reciprocal temperature (K) */ -Double.MAX_VALUE, 10.0e-6, 20.0e-6, 30.0e-6, 40.0e-6, 50...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/GifDecoder.java
alpha/MyBox/src/main/java/thridparty/GifDecoder.java
package thridparty; import static java.lang.System.arraycopy; import java.awt.Color; import java.awt.Graphics2D; import java.awt.image.BufferedImage; import java.awt.image.DataBufferInt; import java.io.IOException; import java.io.InputStream; import java.util.ArrayList; import java.util.List; /* * Copyright 2014 Dh...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/miguelemosreverte/Quantize.java
alpha/MyBox/src/main/java/thridparty/miguelemosreverte/Quantize.java
package thridparty.miguelemosreverte; /* * @(#)Quantize.java 0.90 9/19/00 Adam Doppelt */ /** * An efficient color quantization algorithm, adapted from the C++ * implementation quantize.c in <a * href="http://www.imagemagick.org/">ImageMagick</a>. The pixels for * an image are placed into an oct tree. The oct t...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/miguelemosreverte/PDFUtils.java
alpha/MyBox/src/main/java/thridparty/miguelemosreverte/PDFUtils.java
package thridparty.miguelemosreverte; import java.awt.*; import java.awt.geom.Ellipse2D; import java.awt.geom.Line2D; import java.awt.geom.Path2D; import java.io.ByteArrayOutputStream; import java.io.IOException; import java.util.ArrayList; import java.util.HashMap; import java.util.Map; import java.util.TreeMap; imp...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/miguelemosreverte/VectorizingUtils.java
alpha/MyBox/src/main/java/thridparty/miguelemosreverte/VectorizingUtils.java
package thridparty.miguelemosreverte; import java.util.ArrayList; import java.util.HashMap; import thridparty.miguelemosreverte.ImageTracer.ImageData; import thridparty.miguelemosreverte.ImageTracer.IndexedImage; public class VectorizingUtils { //////////////////////////////////////////////////////////// // ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/miguelemosreverte/ImageTracer.java
alpha/MyBox/src/main/java/thridparty/miguelemosreverte/ImageTracer.java
// https://github.com/miguelemosreverte/imagetracerjava package thridparty.miguelemosreverte; import java.awt.Color; import java.awt.image.BufferedImage; import java.io.BufferedWriter; import java.io.File; import java.io.FileWriter; import java.util.ArrayList; import java.util.HashMap; import javax.imageio.ImageIO; p...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/miguelemosreverte/SelectiveBlur.java
alpha/MyBox/src/main/java/thridparty/miguelemosreverte/SelectiveBlur.java
package thridparty.miguelemosreverte; import thridparty.miguelemosreverte.ImageTracer.ImageData; public class SelectiveBlur { // Gaussian kernels for blur static double[][] gks = {{0.27901, 0.44198, 0.27901}, {0.135336, 0.228569, 0.272192, 0.228569, 0.135336}, {0.086776, 0.136394, 0.178908, 0.195843, 0.17890...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/miguelemosreverte/SVGUtils.java
alpha/MyBox/src/main/java/thridparty/miguelemosreverte/SVGUtils.java
package thridparty.miguelemosreverte; import java.util.ArrayList; import java.util.HashMap; import java.util.Map.Entry; import java.util.TreeMap; import thridparty.miguelemosreverte.ImageTracer.IndexedImage; public class SVGUtils { //////////////////////////////////////////////////////////// // // SVG D...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/LittleEndianRandomAccessFile.java
alpha/MyBox/src/main/java/thridparty/image4j/LittleEndianRandomAccessFile.java
/* * LittleEndianRandomAccessFile.java * * Created on 07 November 2006, 03:04 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package thridparty.image4j; import java.io.FileNotFoundException; import java.io.IOException; import java.io.RandomAccessFile; /*...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/ICOEncoder.java
alpha/MyBox/src/main/java/thridparty/image4j/ICOEncoder.java
/* * ICOEncoder.java * * Created on 12 May 2006, 04:08 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package thridparty.image4j; import java.awt.image.BufferedImage; import java.awt.image.IndexColorModel; import java.awt.image.Raster; import java.awt.ima...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/CountingInput.java
alpha/MyBox/src/main/java/thridparty/image4j/CountingInput.java
package thridparty.image4j; public interface CountingInput { int getCount(); }
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/BMPEncoder.java
alpha/MyBox/src/main/java/thridparty/image4j/BMPEncoder.java
/* * BMPEncoder.java * * Created on 11 May 2006, 04:19 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package thridparty.image4j; import java.awt.image.BufferedImage; import java.awt.image.IndexColorModel; import java.awt.image.Raster; import java.io.*; ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/IconEntry.java
alpha/MyBox/src/main/java/thridparty/image4j/IconEntry.java
package thridparty.image4j; import java.io.IOException; /** * Represents an <tt>IconEntry</tt> structure, which contains information about an ICO image. * @author Ian McDonagh */ public class IconEntry { /** * The width of the icon image in pixels. * <tt>0</tt> specifies a width of 256 pixels. */ publ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/CountingDataInputStream.java
alpha/MyBox/src/main/java/thridparty/image4j/CountingDataInputStream.java
package thridparty.image4j; import java.io.*; public class CountingDataInputStream extends DataInputStream implements CountingDataInput { public CountingDataInputStream(InputStream in) { super(new CountingInputStream(in)); } @Override public int getCount() { return ((CountingInputStream) in).getCount(); } ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/BMPImage.java
alpha/MyBox/src/main/java/thridparty/image4j/BMPImage.java
/* * BMPImage.java * * Created on February 19, 2007, 8:08 AM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package thridparty.image4j; /** * Contains a decoded BMP image, as well as information about the source encoded image. * @since 0.7 * @author Ia...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/IOUtils.java
alpha/MyBox/src/main/java/thridparty/image4j/IOUtils.java
package thridparty.image4j; import java.io.*; public class IOUtils { public static int skip(InputStream in, int count, boolean strict) throws IOException { int skipped = 0; while (skipped < count) { int b = in.read(); if (b == -1) { break; } skipped++; } if (skipped < count && strict) { t...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/InfoHeader.java
alpha/MyBox/src/main/java/thridparty/image4j/InfoHeader.java
/* * InfoHeader.java * * Created on 10 May 2006, 08:10 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package thridparty.image4j; import java.io.IOException; /** * Represents a bitmap <tt>InfoHeader</tt> structure, which provides header information. * ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/ICODecoder.java
alpha/MyBox/src/main/java/thridparty/image4j/ICODecoder.java
/* * ICODecoder.java * * Created on May 9, 2006, 9:31 PM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package thridparty.image4j; import java.awt.image.*; import java.io.*; import java.util.*; import mara.mybox.dev.MyBoxLog; /** * Decodes images in ICO...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/ICOImage.java
alpha/MyBox/src/main/java/thridparty/image4j/ICOImage.java
/* * ICOImage.java * * Created on February 19, 2007, 8:11 AM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package thridparty.image4j; import thridparty.image4j.InfoHeader; /** * Contains a decoded ICO image, as well as information about the source enc...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/ColorEntry.java
alpha/MyBox/src/main/java/thridparty/image4j/ColorEntry.java
/* * ColorEntry.java * * Created on 10 May 2006, 08:29 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package thridparty.image4j; import java.io.IOException; /** * Represents an RGB colour entry used in the palette of an indexed image (colour depth &lt;...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/LittleEndianOutputStream.java
alpha/MyBox/src/main/java/thridparty/image4j/LittleEndianOutputStream.java
/* * LittleEndianOutputStream.java * * Created on 07 November 2006, 08:26 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package thridparty.image4j; import java.io.DataOutputStream; import java.io.IOException; /** * Writes little-endian data to a target...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/ImageUtil.java
alpha/MyBox/src/main/java/thridparty/image4j/ImageUtil.java
/* * ImageUtil.java * * Created on 15 May 2006, 01:12 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package thridparty.image4j; import java.awt.AlphaComposite; import java.awt.Composite; import java.awt.Graphics2D; import java.awt.Image; import java.awt....
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/CountingInputStream.java
alpha/MyBox/src/main/java/thridparty/image4j/CountingInputStream.java
package thridparty.image4j; import java.io.*; public class CountingInputStream extends FilterInputStream { private int count; public CountingInputStream(InputStream src) { super(src); } public int getCount() { return count; } @Override public int read() throws IOException { int b = super.read(); ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/CountingDataInput.java
alpha/MyBox/src/main/java/thridparty/image4j/CountingDataInput.java
package thridparty.image4j; import java.io.DataInput; public interface CountingDataInput extends DataInput, CountingInput { }
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/EndianUtils.java
alpha/MyBox/src/main/java/thridparty/image4j/EndianUtils.java
package thridparty.image4j; /** * Provides utility methods for endian conversions [big-endian to little-endian; * little-endian to big-endian]. * * @author Ian McDonagh */ public class EndianUtils { /** * Reverses the byte order of the source <tt>short</tt> value * * @param value * the sour...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/BMPConstants.java
alpha/MyBox/src/main/java/thridparty/image4j/BMPConstants.java
/* * BMPConstants.java * * Created on 10 May 2006, 08:17 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package thridparty.image4j; /** * Provides constants used with BMP format. * * @author Ian McDonagh */ public class BMPConstants { private BMPCo...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/ICOConstants.java
alpha/MyBox/src/main/java/thridparty/image4j/ICOConstants.java
/* * ICOConstants.java * * Created on May 13, 2006, 8:07 PM * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package thridparty.image4j; /** * Provides constants used with ICO format. * @author Ian McDonagh */ public class ICOConstants { /** * In...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/BMPDecoder.java
alpha/MyBox/src/main/java/thridparty/image4j/BMPDecoder.java
/* * Decodes a BMP image from an <tt>InputStream</tt> to a <tt>BufferedImage</tt> * * @author Ian McDonagh */ package thridparty.image4j; import java.awt.image.*; import java.io.*; /** * Decodes images in BMP format. * @author Ian McDonagh */ public class BMPDecoder { private BufferedImage img; priv...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/LittleEndianInputStream.java
alpha/MyBox/src/main/java/thridparty/image4j/LittleEndianInputStream.java
/* * LittleEndianInputStream.java * * Created on 07 November 2006, 08:26 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package thridparty.image4j; import java.io.EOFException; import java.io.IOException; /** * Reads little-endian data from a source <tt...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/image4j/ConvertUtil.java
alpha/MyBox/src/main/java/thridparty/image4j/ConvertUtil.java
/* * ConvertUtil.java * * Created on 12 May 2006, 09:22 * * To change this template, choose Tools | Template Manager * and open the template in the editor. */ package thridparty.image4j; import java.awt.Transparency; import java.awt.image.BufferedImage; import java.awt.image.ColorConvertOp; import java.awt.ima...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/jankovicsandras/ImageTracer.java
alpha/MyBox/src/main/java/thridparty/jankovicsandras/ImageTracer.java
// https://github.com/jankovicsandras/imagetracerjava /* ImageTracer.java (Desktop version with javax.imageio. See ImageTracerAndroid.java for the Android version.) Simple raster image tracer and vectorizer written in Java. This is a port of imagetracer.js. by András Jankovics 2015, 2016 andras@jankovics.net */...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
true
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/IgnoreResourceHandler.java
alpha/MyBox/src/main/java/thridparty/pdfdom/IgnoreResourceHandler.java
/* * Copyright (c) Matthew Abboud 2016 * * Pdf2Dom is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pdf2Dom is ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/HtmlDivLine.java
alpha/MyBox/src/main/java/thridparty/pdfdom/HtmlDivLine.java
/** * HtmlDivLine.java * * Created on 13. 10. 2022, 11:33:54 by burgetr */ package thridparty.pdfdom; /** * Maps input line to an HTML div rectangle, since HTML does not support standard lines. */ public class HtmlDivLine { private final float x1; private final float y1; private final float x2; p...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/FontTable.java
alpha/MyBox/src/main/java/thridparty/pdfdom/FontTable.java
/** * */ package thridparty.pdfdom; import java.util.ArrayList; import java.util.List; import java.util.regex.Matcher; import java.util.regex.Pattern; import mara.mybox.dev.MyBoxLog; import org.apache.pdfbox.pdmodel.common.PDStream; import org.apache.pdfbox.pdmodel.font.PDFont; import org.apache.pdfbox.pdmodel.font....
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/PDFDomTreeConfig.java
alpha/MyBox/src/main/java/thridparty/pdfdom/PDFDomTreeConfig.java
/* * Copyright (c) Matthew Abboud 2016 * * Pdf2Dom is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pdf2Dom is ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/SaveResourceToDirHandler.java
alpha/MyBox/src/main/java/thridparty/pdfdom/SaveResourceToDirHandler.java
/* * Copyright (c) Matthew Abboud 2016 * * Pdf2Dom is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pdf2Dom is ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/BoxStyle.java
alpha/MyBox/src/main/java/thridparty/pdfdom/BoxStyle.java
/** * BoxStyle.java * (c) Radek Burget, 2011 * * Pdf2Dom is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pdf2Dom ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/PathDrawer.java
alpha/MyBox/src/main/java/thridparty/pdfdom/PathDrawer.java
/* * Copyright (c) Matthew Abboud 2016 * * Pdf2Dom is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pdf2Dom is ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/PDFBoxTree.java
alpha/MyBox/src/main/java/thridparty/pdfdom/PDFBoxTree.java
/** * PDFBoxTree.java * (c) Radek Burget, 2011 * * Pdf2Dom is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pdf2Dom ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
true
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/EmbedAsBase64Handler.java
alpha/MyBox/src/main/java/thridparty/pdfdom/EmbedAsBase64Handler.java
/* * Copyright (c) Matthew Abboud 2016 * * Pdf2Dom is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pdf2Dom is ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/ImageResource.java
alpha/MyBox/src/main/java/thridparty/pdfdom/ImageResource.java
/* * Copyright (c) Matthew Abboud 2016 * * Pdf2Dom is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pdf2Dom is ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/Base64Coder.java
alpha/MyBox/src/main/java/thridparty/pdfdom/Base64Coder.java
package thridparty.pdfdom; /** * A Base64 Encoder/Decoder. * * <p> * This class is used to encode and decode data in Base64 format as described in RFC 1521. * * <p> * This is "Open Source" software and released under the <a href="http://www.gnu.org/licenses/lgpl.html">GNU/LGPL</a> license.<br> * It is provided...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/HtmlResourceHandler.java
alpha/MyBox/src/main/java/thridparty/pdfdom/HtmlResourceHandler.java
/* * Copyright (c) Matthew Abboud 2016 * * Pdf2Dom is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pdf2Dom is ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/ImageUtils.java
alpha/MyBox/src/main/java/thridparty/pdfdom/ImageUtils.java
package thridparty.pdfdom; import java.awt.*; import java.awt.geom.AffineTransform; import java.awt.geom.Point2D; import java.awt.image.AffineTransformOp; import java.awt.image.BufferedImage; class ImageUtils { public static BufferedImage rotateImage(BufferedImage image, double theta) { int degrees = ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/PDFDomTree.java
alpha/MyBox/src/main/java/thridparty/pdfdom/PDFDomTree.java
/** * PDFDomTree.java * (c) Radek Burget, 2011 * * Pdf2Dom is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pdf2Dom ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/PathSegment.java
alpha/MyBox/src/main/java/thridparty/pdfdom/PathSegment.java
/** * SubPath.java * (c) Radek Burget, 2015 * * Pdf2Dom is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pdf2Dom i...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/PDFToHTML.java
alpha/MyBox/src/main/java/thridparty/pdfdom/PDFToHTML.java
/** * PDFToHTML.java * (c) Radek Burget, 2011 * * Pdf2Dom is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pdf2Dom i...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/HtmlResource.java
alpha/MyBox/src/main/java/thridparty/pdfdom/HtmlResource.java
/* * Copyright (c) Matthew Abboud 2016 * * Pdf2Dom is free software: you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Pdf2Dom is ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/thridparty/pdfdom/TextMetrics.java
alpha/MyBox/src/main/java/thridparty/pdfdom/TextMetrics.java
package thridparty.pdfdom; import java.io.IOException; import org.apache.fontbox.util.BoundingBox; import org.apache.pdfbox.pdmodel.font.PDFont; import org.apache.pdfbox.text.TextPosition; public class TextMetrics { private float x, baseline, width, height, pointSize, descent, ascent, fontSize; private PDFo...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/MainApp.java
alpha/MyBox/src/main/java/mara/mybox/MainApp.java
package mara.mybox; import java.util.ResourceBundle; import javafx.application.Application; import javafx.fxml.FXMLLoader; import javafx.scene.Scene; import javafx.scene.layout.Pane; import javafx.stage.Stage; import mara.mybox.controller.MyBoxLoadingController; import mara.mybox.dev.MyBoxLog; import mara.mybox.value....
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/MyBox.java
alpha/MyBox/src/main/java/mara/mybox/MyBox.java
package mara.mybox; import java.io.File; import java.lang.management.ManagementFactory; import java.text.MessageFormat; import java.util.ArrayList; import java.util.List; import javafx.application.Application; import javafx.application.Platform; import javax.imageio.ImageIO; import mara.mybox.controller.MyBoxLoadingCo...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/Data2DChartGroupSelfComparisonBarsController.java
alpha/MyBox/src/main/java/mara/mybox/controller/Data2DChartGroupSelfComparisonBarsController.java
package mara.mybox.controller; import javafx.scene.Node; import mara.mybox.dev.MyBoxLog; import mara.mybox.fxml.WindowTools; import mara.mybox.value.Fxmls; import static mara.mybox.value.Languages.message; /** * @Author Mara * @CreateDate 2022-10-30 * @License Apache License Version 2.0 */ public class Data2DChar...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/DataTreeQueryResultsController.java
alpha/MyBox/src/main/java/mara/mybox/controller/DataTreeQueryResultsController.java
package mara.mybox.controller; import java.util.List; import javafx.event.Event; import javafx.fxml.FXML; import javafx.scene.input.KeyEvent; import mara.mybox.data2d.DataTable; import mara.mybox.data2d.TmpTable; import mara.mybox.db.table.BaseNodeTable; import mara.mybox.dev.MyBoxLog; import mara.mybox.fxml.WindowToo...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ImagesSpliceController.java
alpha/MyBox/src/main/java/mara/mybox/controller/ImagesSpliceController.java
package mara.mybox.controller; import java.sql.Connection; import java.util.Arrays; import java.util.List; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.event.Event; import javafx.fxml.FXML; import javafx.scene.control.ComboBox; import javafx.scene.control.RadioButt...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/LoadingController.java
alpha/MyBox/src/main/java/mara/mybox/controller/LoadingController.java
package mara.mybox.controller; import java.util.Date; import java.util.Timer; import java.util.TimerTask; import javafx.application.Platform; import javafx.beans.property.SimpleBooleanProperty; import javafx.concurrent.Task; import javafx.fxml.FXML; import javafx.scene.control.Label; import javafx.scene.control.Progre...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ControlStroke.java
alpha/MyBox/src/main/java/mara/mybox/controller/ControlStroke.java
package mara.mybox.controller; import java.awt.BasicStroke; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import javafx.fxml.FXML; import javafx.scene.control.CheckBox; import javafx.scene.control.ComboBox; import javafx.scene.control.RadioButton; import javafx.scene.control.TextField; im...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/HtmlDomDeleteController.java
alpha/MyBox/src/main/java/mara/mybox/controller/HtmlDomDeleteController.java
package mara.mybox.controller; import java.util.List; import javafx.fxml.FXML; import javafx.scene.control.TreeItem; import javafx.scene.control.TreeTableView; import mara.mybox.data.HtmlNode; import mara.mybox.dev.MyBoxLog; import mara.mybox.fxml.FxSingletonTask; import mara.mybox.fxml.WindowTools; import mara.mybox....
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/Data2DGroupStatisticController.java
alpha/MyBox/src/main/java/mara/mybox/controller/Data2DGroupStatisticController.java
package mara.mybox.controller; import java.util.ArrayList; import java.util.List; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.event.Event; import javafx.fxml.FXML; import javafx.scene.Node; import javafx.scene.control.CheckBox; import javafx.scene.control.RadioBut...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/SvgFromImageController.java
alpha/MyBox/src/main/java/mara/mybox/controller/SvgFromImageController.java
package mara.mybox.controller; import java.awt.image.BufferedImage; import java.io.File; import java.nio.charset.Charset; import javafx.embed.swing.SwingFXUtils; import javafx.fxml.FXML; import javafx.scene.image.Image; import mara.mybox.fxml.FxSingletonTask; import mara.mybox.fxml.WindowTools; import mara.mybox.tools...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ColorQueryController.java
alpha/MyBox/src/main/java/mara/mybox/controller/ColorQueryController.java
package mara.mybox.controller; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.event.Event; import javafx.fxml.FXML; import javafx.scene.control.Button; import javafx.scene.control.RadioButton; import javafx.scene.control.Tab; import javafx.scene.control.TextField; im...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ColorsBlendController.java
alpha/MyBox/src/main/java/mara/mybox/controller/ColorsBlendController.java
package mara.mybox.controller; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.fxml.FXML; import javafx.scene.control.Tab; import javafx.scene.input.KeyEvent; import javafx.scene.paint.Color; ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ControlImageScope.java
alpha/MyBox/src/main/java/mara/mybox/controller/ControlImageScope.java
package mara.mybox.controller; import java.util.Arrays; import javafx.beans.binding.Bindings; import javafx.beans.property.SimpleBooleanProperty; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.collections.ListChangeListener; import javafx.fxml.FXML; import javafx.sce...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ControlImageText.java
alpha/MyBox/src/main/java/mara/mybox/controller/ControlImageText.java
package mara.mybox.controller; import java.awt.Font; import java.awt.FontMetrics; import java.awt.Graphics2D; import java.awt.geom.Rectangle2D; import java.sql.Connection; import java.util.Arrays; import java.util.List; import javafx.application.Platform; import javafx.beans.value.ChangeListener; import javafx.beans.v...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/Data2DExportController.java
alpha/MyBox/src/main/java/mara/mybox/controller/Data2DExportController.java
package mara.mybox.controller; import java.util.ArrayList; import java.util.List; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.fxml.FXML; import javafx.scene.control.CheckBox; import javafx.scene.control.Tab; import javafx.scene.layout.VBox; import mara.mybox.data2...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/BaseImageController_Base.java
alpha/MyBox/src/main/java/mara/mybox/controller/BaseImageController_Base.java
package mara.mybox.controller; import javafx.beans.property.SimpleBooleanProperty; import javafx.fxml.FXML; import javafx.scene.control.Button; import javafx.scene.control.CheckBox; import javafx.scene.control.ComboBox; import javafx.scene.control.Label; import javafx.scene.control.ScrollPane; import javafx.scene.imag...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ControlImageRound.java
alpha/MyBox/src/main/java/mara/mybox/controller/ControlImageRound.java
package mara.mybox.controller; import java.util.Arrays; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.fxml.FXML; import javafx.scene.control.ComboBox; import javafx.scene.control.RadioButton; import javafx.scene.control.Toggle; import javafx.scene.control.ToggleGrou...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/TextEditorFormatController.java
alpha/MyBox/src/main/java/mara/mybox/controller/TextEditorFormatController.java
package mara.mybox.controller; import javafx.fxml.FXML; import javafx.scene.control.ComboBox; import javafx.scene.control.Label; import mara.mybox.dev.MyBoxLog; import mara.mybox.fxml.WindowTools; import mara.mybox.tools.TextTools; import mara.mybox.value.Fxmls; import static mara.mybox.value.Languages.message; import...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ControlCircle.java
alpha/MyBox/src/main/java/mara/mybox/controller/ControlCircle.java
package mara.mybox.controller; import javafx.fxml.FXML; import javafx.scene.control.TextField; import mara.mybox.data.DoubleCircle; import mara.mybox.dev.MyBoxLog; import static mara.mybox.value.Languages.message; /** * @Author Mara * @CreateDate 2019-8-13 * @License Apache License Version 2.0 */ public class Con...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/DateInputController.java
alpha/MyBox/src/main/java/mara/mybox/controller/DateInputController.java
package mara.mybox.controller; import java.util.Date; import javafx.fxml.FXML; import javafx.scene.control.TextField; import javafx.scene.input.MouseEvent; import mara.mybox.db.data.ColumnDefinition.ColumnType; import mara.mybox.dev.MyBoxLog; import mara.mybox.fxml.PopTools; import mara.mybox.fxml.WindowTools; import ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ControlPdfPageAttributes.java
alpha/MyBox/src/main/java/mara/mybox/controller/ControlPdfPageAttributes.java
package mara.mybox.controller; import java.awt.Color; import java.io.File; import java.util.Arrays; import java.util.List; import javafx.fxml.FXML; import javafx.scene.control.CheckBox; import javafx.scene.control.ComboBox; import javafx.scene.control.TextField; import javafx.util.StringConverter; import mara.mybox.db...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ControlImageSepia.java
alpha/MyBox/src/main/java/mara/mybox/controller/ControlImageSepia.java
package mara.mybox.controller; import java.util.Arrays; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.fxml.FXML; import javafx.scene.control.ComboBox; import mara.mybox.image.data.PixelsOperation; import mara.mybox.image.data.PixelsOperationFactory; import mara.mybo...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ControlSvgNodeEdit.java
alpha/MyBox/src/main/java/mara/mybox/controller/ControlSvgNodeEdit.java
package mara.mybox.controller; import java.util.List; import javafx.event.Event; import javafx.fxml.FXML; import javafx.scene.control.MenuItem; import javafx.scene.control.Tab; import javafx.scene.control.TextArea; import javafx.scene.control.TreeItem; import javafx.scene.layout.FlowPane; import mara.mybox.data.Double...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/GameEliminationController.java
alpha/MyBox/src/main/java/mara/mybox/controller/GameEliminationController.java
package mara.mybox.controller; import java.io.File; import java.sql.Connection; import java.text.MessageFormat; import java.util.ArrayList; import java.util.Arrays; import java.util.Date; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.Random; import j...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
true
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ChromaticityBaseController.java
alpha/MyBox/src/main/java/mara/mybox/controller/ChromaticityBaseController.java
package mara.mybox.controller; import java.io.File; import java.util.List; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.event.Event; import javafx.fxml.FXML; import javafx.scene.control.RadioButton; import javafx.scene.control.TextField; import javafx.scene.control...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/DevTmpController.java
alpha/MyBox/src/main/java/mara/mybox/controller/DevTmpController.java
package mara.mybox.controller; import java.io.File; import java.nio.charset.Charset; import java.util.Arrays; import java.util.List; import mara.mybox.dev.MyBoxLog; import mara.mybox.fxml.FxTask; import mara.mybox.fxml.WindowTools; import mara.mybox.tools.TextFileTools; import mara.mybox.value.Fxmls; /** * @Author M...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ControlDataRowExpression.java
alpha/MyBox/src/main/java/mara/mybox/controller/ControlDataRowExpression.java
package mara.mybox.controller; import javafx.event.Event; import javafx.fxml.FXML; import javafx.scene.control.CheckBox; import javafx.scene.control.TextArea; import javafx.scene.input.MouseEvent; import mara.mybox.db.data.VisitHistory; import mara.mybox.db.table.TableNodeRowExpression; import mara.mybox.dev.MyBoxLog;...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/BaseLogsController.java
alpha/MyBox/src/main/java/mara/mybox/controller/BaseLogsController.java
package mara.mybox.controller; import java.util.Date; import javafx.application.Platform; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.fxml.FXML; import javafx.scene.control.CheckBox; import javafx.scene.control.TextArea; import javafx.scene.control.TextField; impo...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/DataTreeImportController.java
alpha/MyBox/src/main/java/mara/mybox/controller/DataTreeImportController.java
package mara.mybox.controller; import java.io.File; import java.sql.Connection; import java.util.List; import java.util.Stack; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.fxml.FXML; import javafx.scene.control.Label; import javafx.scene.control.RadioButton; import...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/BaseDataTreeHandleController.java
alpha/MyBox/src/main/java/mara/mybox/controller/BaseDataTreeHandleController.java
package mara.mybox.controller; import javafx.fxml.FXML; import mara.mybox.db.table.BaseNodeTable; import mara.mybox.dev.MyBoxLog; import mara.mybox.fxml.WindowTools; /** * @Author Mara * @CreateDate 2022-3-14 * @License Apache License Version 2.0 */ public abstract class BaseDataTreeHandleController extends BaseT...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ImageRoundBatchController.java
alpha/MyBox/src/main/java/mara/mybox/controller/ImageRoundBatchController.java
package mara.mybox.controller; import java.awt.image.BufferedImage; import java.io.File; import java.util.List; import javafx.fxml.FXML; import mara.mybox.image.tools.BufferedImageTools; import mara.mybox.dev.MyBoxLog; import mara.mybox.fxml.image.ImageDemos; import mara.mybox.fxml.FxTask; import static mara.mybox.val...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/PptSplitController.java
alpha/MyBox/src/main/java/mara/mybox/controller/PptSplitController.java
package mara.mybox.controller; import java.io.File; import java.io.FileInputStream; import java.io.FileOutputStream; import java.text.MessageFormat; import java.util.Iterator; import java.util.LinkedHashMap; import java.util.List; import javafx.beans.binding.Bindings; import javafx.fxml.FXML; import mara.mybox.db.data...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ImageScopeViewsController.java
alpha/MyBox/src/main/java/mara/mybox/controller/ImageScopeViewsController.java
package mara.mybox.controller; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.fxml.FXML; import javafx.scene.control.Tab; import javafx.scene.image.Image; import javafx.scene.input.KeyEvent; import javafx.scene.layout.VBox; import mara.mybox.dev.MyBoxLog; import mara...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ControlData2DMultipleLinearRegressionTable.java
alpha/MyBox/src/main/java/mara/mybox/controller/ControlData2DMultipleLinearRegressionTable.java
package mara.mybox.controller; import java.util.ArrayList; import java.util.List; import javafx.fxml.FXML; import mara.mybox.db.data.ColumnDefinition.ColumnType; import mara.mybox.db.data.Data2DColumn; import mara.mybox.dev.MyBoxLog; import mara.mybox.fxml.WindowTools; import mara.mybox.value.Fxmls; import static mara...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/Data2DStatisticController.java
alpha/MyBox/src/main/java/mara/mybox/controller/Data2DStatisticController.java
package mara.mybox.controller; import java.util.List; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.fxml.FXML; import javafx.scene.control.ComboBox; import javafx.scene.layout.FlowPane; import javafx.scene.layout.VBox; import mara.mybox.calculation.DescriptiveStatis...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ImageConvolutionBatchController.java
alpha/MyBox/src/main/java/mara/mybox/controller/ImageConvolutionBatchController.java
package mara.mybox.controller; import java.awt.image.BufferedImage; import javafx.fxml.FXML; import mara.mybox.image.data.ImageConvolution; import mara.mybox.db.data.ConvolutionKernel; import mara.mybox.fxml.FxTask; import static mara.mybox.value.Languages.message; /** * @Author Mara * @CreateDate 2018-9-23 * @Lic...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/SvgPathController.java
alpha/MyBox/src/main/java/mara/mybox/controller/SvgPathController.java
package mara.mybox.controller; import javafx.fxml.FXML; import javafx.scene.control.TreeItem; import mara.mybox.data.DoublePath; import mara.mybox.data.XmlTreeNode; import mara.mybox.dev.MyBoxLog; import mara.mybox.fxml.WindowTools; import mara.mybox.value.Fxmls; import static mara.mybox.value.Languages.message; impor...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/MyBoxLanguagesController.java
alpha/MyBox/src/main/java/mara/mybox/controller/MyBoxLanguagesController.java
package mara.mybox.controller; import java.io.File; import java.util.ArrayList; import java.util.Enumeration; import java.util.HashMap; import java.util.List; import java.util.Map; import java.util.Optional; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.event.Action...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/HtmlToPdfController.java
alpha/MyBox/src/main/java/mara/mybox/controller/HtmlToPdfController.java
package mara.mybox.controller; import java.io.File; import javafx.fxml.FXML; import mara.mybox.db.data.VisitHistory; import mara.mybox.dev.MyBoxLog; import mara.mybox.fxml.FxTask; import mara.mybox.tools.TextFileTools; import static mara.mybox.value.Languages.message; /** * @Author Mara * @CreateDate 2020-10-17 * ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ControlDataTreeSource.java
alpha/MyBox/src/main/java/mara/mybox/controller/ControlDataTreeSource.java
package mara.mybox.controller; import javafx.fxml.FXML; import javafx.scene.control.Label; import mara.mybox.db.data.DataNode; import mara.mybox.dev.MyBoxLog; /** * @Author Mara * @CreateDate 2024-12-2 * @License Apache License Version 2.0 */ public class ControlDataTreeSource extends BaseDataTreeController { ...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/ControlFFmpegOptions.java
alpha/MyBox/src/main/java/mara/mybox/controller/ControlFFmpegOptions.java
package mara.mybox.controller; //import com.github.kokorin.jaffree.ffprobe.FFprobeResult; //import com.github.kokorin.jaffree.ffprobe.Stream; import java.io.BufferedReader; import java.io.File; import java.nio.charset.Charset; import java.util.ArrayList; import java.util.Arrays; import java.util.List; import javafx.be...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
true
Mararsh/MyBox
https://github.com/Mararsh/MyBox/blob/107ddc379fd2f4caad37e85c29367d21089b568c/alpha/MyBox/src/main/java/mara/mybox/controller/Data2DPasteContentInSystemClipboardController.java
alpha/MyBox/src/main/java/mara/mybox/controller/Data2DPasteContentInSystemClipboardController.java
package mara.mybox.controller; import javafx.beans.value.ChangeListener; import javafx.beans.value.ObservableValue; import javafx.fxml.FXML; import javafx.scene.input.KeyEvent; import mara.mybox.dev.MyBoxLog; import mara.mybox.fxml.WindowTools; import mara.mybox.value.Fxmls; import static mara.mybox.value.Languages.me...
java
Apache-2.0
107ddc379fd2f4caad37e85c29367d21089b568c
2026-01-05T02:30:12.428303Z
false