├── .gitignore ├── README.md └── Source ├── BinaryData ├── SiteData.zip ├── close.png ├── cut.png ├── icon.jpg ├── logo.png ├── mic.png ├── next.png ├── ok.png ├── play.png ├── prev.png ├── stop.png ├── system-r.png ├── system.png ├── trans-cn.h ├── view.png └── width.png ├── DocTreeViewItem.cpp ├── DocTreeViewItem.h ├── EditAndPreview.cpp ├── EditAndPreview.h ├── FileTreeContainer.cpp ├── FileTreeContainer.h ├── HtmlProcessor.cpp ├── HtmlProcessor.h ├── KeywordsComp.cpp ├── KeywordsComp.h ├── Main.cpp ├── MainComponent.cpp ├── MainComponent.h ├── MarkdownEditor.cpp ├── MarkdownEditor.h ├── README.md ├── RecordComp.cpp ├── RecordComp.h ├── ReplaceComponent.cpp ├── ReplaceComponent.h ├── SetupPanel.cpp ├── SetupPanel.h ├── StatisComp.cpp ├── StatisComp.h ├── SwingLibrary ├── AudioDataPlayer.cpp ├── AudioDataPlayer.h ├── AudioRecorder.cpp ├── AudioRecorder.h ├── MD2Html.cpp ├── MD2Html.h ├── PasswordPropertyComponent.cpp ├── PasswordPropertyComponent.h ├── SwingEditor.cpp ├── SwingEditor.h ├── SwingLookAndFeel.cpp ├── SwingLookAndFeel.h ├── SwingRegex.h ├── SwingUtilities.cpp └── SwingUtilities.h ├── ThemeEditor.cpp ├── ThemeEditor.h ├── TipsBank.cpp ├── TipsBank.h ├── TopToolBar.cpp ├── TopToolBar.h ├── WdtpHeader.h ├── libHackBackup ├── juce_TextEditor.cpp └── juce_TextEditor.h └── version /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/README.md -------------------------------------------------------------------------------- /Source/BinaryData/SiteData.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/SiteData.zip -------------------------------------------------------------------------------- /Source/BinaryData/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/close.png -------------------------------------------------------------------------------- /Source/BinaryData/cut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/cut.png -------------------------------------------------------------------------------- /Source/BinaryData/icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/icon.jpg -------------------------------------------------------------------------------- /Source/BinaryData/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/logo.png -------------------------------------------------------------------------------- /Source/BinaryData/mic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/mic.png -------------------------------------------------------------------------------- /Source/BinaryData/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/next.png -------------------------------------------------------------------------------- /Source/BinaryData/ok.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/ok.png -------------------------------------------------------------------------------- /Source/BinaryData/play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/play.png -------------------------------------------------------------------------------- /Source/BinaryData/prev.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/prev.png -------------------------------------------------------------------------------- /Source/BinaryData/stop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/stop.png -------------------------------------------------------------------------------- /Source/BinaryData/system-r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/system-r.png -------------------------------------------------------------------------------- /Source/BinaryData/system.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/system.png -------------------------------------------------------------------------------- /Source/BinaryData/trans-cn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/trans-cn.h -------------------------------------------------------------------------------- /Source/BinaryData/view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/view.png -------------------------------------------------------------------------------- /Source/BinaryData/width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/BinaryData/width.png -------------------------------------------------------------------------------- /Source/DocTreeViewItem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/DocTreeViewItem.cpp -------------------------------------------------------------------------------- /Source/DocTreeViewItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/DocTreeViewItem.h -------------------------------------------------------------------------------- /Source/EditAndPreview.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/EditAndPreview.cpp -------------------------------------------------------------------------------- /Source/EditAndPreview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/EditAndPreview.h -------------------------------------------------------------------------------- /Source/FileTreeContainer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/FileTreeContainer.cpp -------------------------------------------------------------------------------- /Source/FileTreeContainer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/FileTreeContainer.h -------------------------------------------------------------------------------- /Source/HtmlProcessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/HtmlProcessor.cpp -------------------------------------------------------------------------------- /Source/HtmlProcessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/HtmlProcessor.h -------------------------------------------------------------------------------- /Source/KeywordsComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/KeywordsComp.cpp -------------------------------------------------------------------------------- /Source/KeywordsComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/KeywordsComp.h -------------------------------------------------------------------------------- /Source/Main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/Main.cpp -------------------------------------------------------------------------------- /Source/MainComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/MainComponent.cpp -------------------------------------------------------------------------------- /Source/MainComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/MainComponent.h -------------------------------------------------------------------------------- /Source/MarkdownEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/MarkdownEditor.cpp -------------------------------------------------------------------------------- /Source/MarkdownEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/MarkdownEditor.h -------------------------------------------------------------------------------- /Source/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/README.md -------------------------------------------------------------------------------- /Source/RecordComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/RecordComp.cpp -------------------------------------------------------------------------------- /Source/RecordComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/RecordComp.h -------------------------------------------------------------------------------- /Source/ReplaceComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/ReplaceComponent.cpp -------------------------------------------------------------------------------- /Source/ReplaceComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/ReplaceComponent.h -------------------------------------------------------------------------------- /Source/SetupPanel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SetupPanel.cpp -------------------------------------------------------------------------------- /Source/SetupPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SetupPanel.h -------------------------------------------------------------------------------- /Source/StatisComp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/StatisComp.cpp -------------------------------------------------------------------------------- /Source/StatisComp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/StatisComp.h -------------------------------------------------------------------------------- /Source/SwingLibrary/AudioDataPlayer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/AudioDataPlayer.cpp -------------------------------------------------------------------------------- /Source/SwingLibrary/AudioDataPlayer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/AudioDataPlayer.h -------------------------------------------------------------------------------- /Source/SwingLibrary/AudioRecorder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/AudioRecorder.cpp -------------------------------------------------------------------------------- /Source/SwingLibrary/AudioRecorder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/AudioRecorder.h -------------------------------------------------------------------------------- /Source/SwingLibrary/MD2Html.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/MD2Html.cpp -------------------------------------------------------------------------------- /Source/SwingLibrary/MD2Html.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/MD2Html.h -------------------------------------------------------------------------------- /Source/SwingLibrary/PasswordPropertyComponent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/PasswordPropertyComponent.cpp -------------------------------------------------------------------------------- /Source/SwingLibrary/PasswordPropertyComponent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/PasswordPropertyComponent.h -------------------------------------------------------------------------------- /Source/SwingLibrary/SwingEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/SwingEditor.cpp -------------------------------------------------------------------------------- /Source/SwingLibrary/SwingEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/SwingEditor.h -------------------------------------------------------------------------------- /Source/SwingLibrary/SwingLookAndFeel.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/SwingLookAndFeel.cpp -------------------------------------------------------------------------------- /Source/SwingLibrary/SwingLookAndFeel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/SwingLookAndFeel.h -------------------------------------------------------------------------------- /Source/SwingLibrary/SwingRegex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/SwingRegex.h -------------------------------------------------------------------------------- /Source/SwingLibrary/SwingUtilities.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/SwingUtilities.cpp -------------------------------------------------------------------------------- /Source/SwingLibrary/SwingUtilities.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/SwingLibrary/SwingUtilities.h -------------------------------------------------------------------------------- /Source/ThemeEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/ThemeEditor.cpp -------------------------------------------------------------------------------- /Source/ThemeEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/ThemeEditor.h -------------------------------------------------------------------------------- /Source/TipsBank.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/TipsBank.cpp -------------------------------------------------------------------------------- /Source/TipsBank.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/TipsBank.h -------------------------------------------------------------------------------- /Source/TopToolBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/TopToolBar.cpp -------------------------------------------------------------------------------- /Source/TopToolBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/TopToolBar.h -------------------------------------------------------------------------------- /Source/WdtpHeader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/WdtpHeader.h -------------------------------------------------------------------------------- /Source/libHackBackup/juce_TextEditor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/libHackBackup/juce_TextEditor.cpp -------------------------------------------------------------------------------- /Source/libHackBackup/juce_TextEditor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LegendRhine/WDTP/HEAD/Source/libHackBackup/juce_TextEditor.h -------------------------------------------------------------------------------- /Source/version: -------------------------------------------------------------------------------- 1 | 1.0.0626 2 | --------------------------------------------------------------------------------