From abf1ca4911dd95b9f248e03b3c433b8f1dc1e848 Mon Sep 17 00:00:00 2001 From: enikey Date: Fri, 19 Dec 2008 06:37:28 +0000 Subject: [PATCH] [Layout, Developement] Added interface Repaintable. Interface will be used in HextileDecoder class to draw immediantly little rectangles of data while processing big rectangle. git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@3425 3789f03b-4d11-0410-bbf8-ca57d06f2519 --- java/src/com/tightvnc/decoder/common/Repaintable.java | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 java/src/com/tightvnc/decoder/common/Repaintable.java diff --git a/java/src/com/tightvnc/decoder/common/Repaintable.java b/java/src/com/tightvnc/decoder/common/Repaintable.java new file mode 100644 index 00000000..de11f4c8 --- /dev/null +++ b/java/src/com/tightvnc/decoder/common/Repaintable.java @@ -0,0 +1,7 @@ +package com.tightvnc.decoder.common; + +public interface Repaintable { + + public void scheduleRepaint(int x, int y, int w, int h); + +} -- 2.39.5