├── .idea ├── encodings.xml ├── misc.xml ├── modules.xml ├── uiDesigner.xml ├── vcs.xml └── workspace.xml ├── README.md ├── ScreenMatch.iml ├── ScreenMatch.jar ├── out └── production │ └── ScreenMatch │ ├── META-INF │ └── plugin.xml │ └── com │ ├── duke │ └── screenmatch │ │ ├── dp │ │ ├── DimenItem.class │ │ ├── Main.class │ │ ├── SAXReadHandler.class │ │ ├── Tools.class │ │ └── XmlIO.class │ │ ├── listener │ │ └── OnOkClickListener.class │ │ ├── log │ │ ├── WriteFileLog$EnterChar.class │ │ └── WriteFileLog.class │ │ ├── settings │ │ ├── Settings.class │ │ ├── screenMatch.properties │ │ └── screenMatch_example_dimens.xml │ │ ├── ui │ │ ├── MainAction$1.class │ │ ├── MainAction.class │ │ ├── SelectModuleDialog$1.class │ │ ├── SelectModuleDialog$2.class │ │ ├── SelectModuleDialog$3.class │ │ ├── SelectModuleDialog$4.class │ │ └── SelectModuleDialog.class │ │ └── utils │ │ ├── Utils$1.class │ │ └── Utils.class │ └── intellij │ └── uiDesigner │ └── core │ ├── AbstractLayout.class │ ├── DimensionInfo.class │ ├── GridConstraints.class │ ├── GridLayoutManager.class │ ├── HorizontalInfo.class │ ├── LayoutState.class │ ├── Spacer.class │ ├── SupportCode$TextWithMnemonic.class │ ├── SupportCode.class │ ├── Util.class │ └── VerticalInfo.class ├── resources └── META-INF │ └── plugin.xml └── src └── com └── duke └── screenmatch ├── dp ├── DimenItem.java ├── Main.java ├── SAXReadHandler.java ├── Tools.java └── XmlIO.java ├── listener └── OnOkClickListener.java ├── log └── WriteFileLog.java ├── settings ├── Settings.java ├── screenMatch.properties └── screenMatch_example_dimens.xml ├── ui ├── MainAction.java ├── SelectModuleDialog.form └── SelectModuleDialog.java └── utils └── Utils.java /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/uiDesigner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/.idea/uiDesigner.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/README.md -------------------------------------------------------------------------------- /ScreenMatch.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/ScreenMatch.iml -------------------------------------------------------------------------------- /ScreenMatch.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/ScreenMatch.jar -------------------------------------------------------------------------------- /out/production/ScreenMatch/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/META-INF/plugin.xml -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/dp/DimenItem.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/dp/DimenItem.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/dp/Main.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/dp/Main.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/dp/SAXReadHandler.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/dp/SAXReadHandler.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/dp/Tools.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/dp/Tools.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/dp/XmlIO.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/dp/XmlIO.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/listener/OnOkClickListener.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/listener/OnOkClickListener.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/log/WriteFileLog$EnterChar.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/log/WriteFileLog$EnterChar.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/log/WriteFileLog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/log/WriteFileLog.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/settings/Settings.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/settings/Settings.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/settings/screenMatch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/settings/screenMatch.properties -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/settings/screenMatch_example_dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/settings/screenMatch_example_dimens.xml -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/ui/MainAction$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/ui/MainAction$1.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/ui/MainAction.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/ui/MainAction.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/ui/SelectModuleDialog$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/ui/SelectModuleDialog$1.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/ui/SelectModuleDialog$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/ui/SelectModuleDialog$2.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/ui/SelectModuleDialog$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/ui/SelectModuleDialog$3.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/ui/SelectModuleDialog$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/ui/SelectModuleDialog$4.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/ui/SelectModuleDialog.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/ui/SelectModuleDialog.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/utils/Utils$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/utils/Utils$1.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/duke/screenmatch/utils/Utils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/duke/screenmatch/utils/Utils.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/intellij/uiDesigner/core/AbstractLayout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/intellij/uiDesigner/core/AbstractLayout.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/intellij/uiDesigner/core/DimensionInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/intellij/uiDesigner/core/DimensionInfo.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/intellij/uiDesigner/core/GridConstraints.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/intellij/uiDesigner/core/GridConstraints.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/intellij/uiDesigner/core/GridLayoutManager.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/intellij/uiDesigner/core/GridLayoutManager.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/intellij/uiDesigner/core/HorizontalInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/intellij/uiDesigner/core/HorizontalInfo.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/intellij/uiDesigner/core/LayoutState.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/intellij/uiDesigner/core/LayoutState.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/intellij/uiDesigner/core/Spacer.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/intellij/uiDesigner/core/Spacer.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/intellij/uiDesigner/core/SupportCode$TextWithMnemonic.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/intellij/uiDesigner/core/SupportCode$TextWithMnemonic.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/intellij/uiDesigner/core/SupportCode.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/intellij/uiDesigner/core/SupportCode.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/intellij/uiDesigner/core/Util.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/intellij/uiDesigner/core/Util.class -------------------------------------------------------------------------------- /out/production/ScreenMatch/com/intellij/uiDesigner/core/VerticalInfo.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/out/production/ScreenMatch/com/intellij/uiDesigner/core/VerticalInfo.class -------------------------------------------------------------------------------- /resources/META-INF/plugin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/resources/META-INF/plugin.xml -------------------------------------------------------------------------------- /src/com/duke/screenmatch/dp/DimenItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/src/com/duke/screenmatch/dp/DimenItem.java -------------------------------------------------------------------------------- /src/com/duke/screenmatch/dp/Main.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/src/com/duke/screenmatch/dp/Main.java -------------------------------------------------------------------------------- /src/com/duke/screenmatch/dp/SAXReadHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/src/com/duke/screenmatch/dp/SAXReadHandler.java -------------------------------------------------------------------------------- /src/com/duke/screenmatch/dp/Tools.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/src/com/duke/screenmatch/dp/Tools.java -------------------------------------------------------------------------------- /src/com/duke/screenmatch/dp/XmlIO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/src/com/duke/screenmatch/dp/XmlIO.java -------------------------------------------------------------------------------- /src/com/duke/screenmatch/listener/OnOkClickListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/src/com/duke/screenmatch/listener/OnOkClickListener.java -------------------------------------------------------------------------------- /src/com/duke/screenmatch/log/WriteFileLog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/src/com/duke/screenmatch/log/WriteFileLog.java -------------------------------------------------------------------------------- /src/com/duke/screenmatch/settings/Settings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/src/com/duke/screenmatch/settings/Settings.java -------------------------------------------------------------------------------- /src/com/duke/screenmatch/settings/screenMatch.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/src/com/duke/screenmatch/settings/screenMatch.properties -------------------------------------------------------------------------------- /src/com/duke/screenmatch/settings/screenMatch_example_dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/src/com/duke/screenmatch/settings/screenMatch_example_dimens.xml -------------------------------------------------------------------------------- /src/com/duke/screenmatch/ui/MainAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/src/com/duke/screenmatch/ui/MainAction.java -------------------------------------------------------------------------------- /src/com/duke/screenmatch/ui/SelectModuleDialog.form: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/src/com/duke/screenmatch/ui/SelectModuleDialog.form -------------------------------------------------------------------------------- /src/com/duke/screenmatch/ui/SelectModuleDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/src/com/duke/screenmatch/ui/SelectModuleDialog.java -------------------------------------------------------------------------------- /src/com/duke/screenmatch/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mengzhinan/ScreenMatch/HEAD/src/com/duke/screenmatch/utils/Utils.java --------------------------------------------------------------------------------