From b7fd4e6fe1b63220e382f1365ec441b58da9d3c0 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Sun, 14 Feb 2016 23:27:53 +0000 Subject: [PATCH] Move raw events into plugins. --- res/com/dmdirc/ui/messages/format.yml | 4 -- src/com/dmdirc/events/RawDataInEvent.java | 47 --------------------- src/com/dmdirc/events/RawDataOutEvent.java | 48 ---------------------- 3 files changed, 99 deletions(-) delete mode 100644 src/com/dmdirc/events/RawDataInEvent.java delete mode 100644 src/com/dmdirc/events/RawDataOutEvent.java diff --git a/res/com/dmdirc/ui/messages/format.yml b/res/com/dmdirc/ui/messages/format.yml index a28642b60..5daecd279 100644 --- a/res/com/dmdirc/ui/messages/format.yml +++ b/res/com/dmdirc/ui/messages/format.yml @@ -214,10 +214,6 @@ UserInfoResponseEvent: iterate: "properties" format: "{{friendlyName}}: {{rawValue}}" colour: 10 -RawDataInEvent: - format: "<< {{line}}" -RawDataOutEvent: - format: ">> {{line}}" ################## TODO ############################################################################ # selfCTCP=4->- [%1$s] %2$s diff --git a/src/com/dmdirc/events/RawDataInEvent.java b/src/com/dmdirc/events/RawDataInEvent.java deleted file mode 100644 index 5a819aae5..000000000 --- a/src/com/dmdirc/events/RawDataInEvent.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * Copyright (c) 2006-2015 DMDirc Developers - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - -package com.dmdirc.events; - -import com.dmdirc.interfaces.WindowModel; - -/** - * Event raised when a raw data in line is displayed. - */ -public class RawDataInEvent extends BaseDisplayableEvent { - - private final String line; - - public RawDataInEvent(final long timestamp, final WindowModel source, final String line) { - super(timestamp, source); - this.line = line; - } - - public RawDataInEvent(final WindowModel source, final String line) { - super(source); - this.line = line; - } - - public String getLine() { - return line; - } -} diff --git a/src/com/dmdirc/events/RawDataOutEvent.java b/src/com/dmdirc/events/RawDataOutEvent.java deleted file mode 100644 index fd85677fb..000000000 --- a/src/com/dmdirc/events/RawDataOutEvent.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * Copyright (c) 2006-2015 DMDirc Developers - * - * Permission is hereby granted, free of charge, to any person obtaining a copy - * of this software and associated documentation files (the "Software"), to deal - * in the Software without restriction, including without limitation the rights - * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell - * copies of the Software, and to permit persons to whom the Software is - * furnished to do so, subject to the following conditions: - * - * The above copyright notice and this permission notice shall be included in - * all copies or substantial portions of the Software. - * - * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR - * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, - * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE - * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER - * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, - * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE - * SOFTWARE. - */ - -package com.dmdirc.events; - -import com.dmdirc.interfaces.WindowModel; - -/** - * Event raised when a raw data out line is displayed. - */ -public class RawDataOutEvent extends BaseDisplayableEvent { - - private final String line; - - public RawDataOutEvent(final long timestamp, final WindowModel source, final String line) { - super(timestamp, source); - this.line = line; - } - - public RawDataOutEvent(final WindowModel source, final String line) { - super(source); - this.line = line; - } - - public String getLine() { - return line; - } - -}