The WpfBridge native library can now enumerate all WPF and Silverlight Windows and list them in Synthuse. Still need to add a method to connect the Drag Target to locate the WPF window.
29 lines
578 B
Java
29 lines
578 B
Java
/*
|
|
* Copyright 2014, Synthuse.org
|
|
* Released under the Apache Version 2.0 License.
|
|
*
|
|
* last modified by ejakubowski
|
|
*/
|
|
|
|
package org.synthuse;
|
|
|
|
public class Config extends PropertiesSerializer {
|
|
|
|
public static String DEFAULT_PROP_FILENAME = "synthuse.properties";
|
|
|
|
public String disableWpf = "false";
|
|
public String urlList = "";
|
|
public String xpathList = "";
|
|
public String xpathHightlight = ".*process=\"([^\"]*)\".*";
|
|
|
|
public Config() //needed for cloning
|
|
{
|
|
}
|
|
|
|
public Config(String propertyFilename)
|
|
{
|
|
super(propertyFilename);
|
|
load(propertyFilename);
|
|
}
|
|
}
|