Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
T
TTTAndroidClient
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ttt
TTTAndroidClient
Commits
cdb7c8ea
Commit
cdb7c8ea
authored
Mar 20, 2014
by
Thomas Krex
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
annotations color korrigiert
parent
95655791
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
5 additions
and
9 deletions
+5
-9
TTTCLient/bin/TTTCLient.apk
TTTCLient/bin/TTTCLient.apk
+0
-0
TTTCLient/bin/classes.dex
TTTCLient/bin/classes.dex
+0
-0
TTTCLient/bin/resources.ap_
TTTCLient/bin/resources.ap_
+0
-0
TTTCLient/src/tttclient/core/Recording.java
TTTCLient/src/tttclient/core/Recording.java
+2
-2
TTTCLient/src/tttclient/messages/FreehandAnnotation.java
TTTCLient/src/tttclient/messages/FreehandAnnotation.java
+1
-4
TTTCLient/src/tttclient/messages/RectangleAnnotation.java
TTTCLient/src/tttclient/messages/RectangleAnnotation.java
+2
-3
No files found.
TTTCLient/bin/TTTCLient.apk
View file @
cdb7c8ea
No preview for this file type
TTTCLient/bin/classes.dex
View file @
cdb7c8ea
No preview for this file type
TTTCLient/bin/resources.ap_
View file @
cdb7c8ea
No preview for this file type
TTTCLient/src/tttclient/core/Recording.java
View file @
cdb7c8ea
...
...
@@ -530,7 +530,7 @@ public class Recording extends MessageProducerAdapter implements Runnable {
public
void
setTime
(
int
time
,
boolean
refresh
)
{
// refresh determine if display is updated or not
setAdjusting
(
true
);
//
setAdjusting(true);
time
=
sync
(
time
);
...
...
@@ -545,7 +545,7 @@ public class Recording extends MessageProducerAdapter implements Runnable {
setAudioPlayerTime
(
time
);
}
setAdjusting
(
false
);
//
setAdjusting(false);
}
...
...
TTTCLient/src/tttclient/messages/FreehandAnnotation.java
View file @
cdb7c8ea
...
...
@@ -31,7 +31,6 @@ import tttclient.core.Constants;
import
tttclient.shapes.StrokedPath
;
import
android.graphics.Bitmap
;
import
android.graphics.Canvas
;
import
android.graphics.Color
;
import
android.graphics.Paint.Cap
;
import
android.graphics.Paint.Join
;
import
android.graphics.Paint.Style
;
...
...
@@ -113,9 +112,7 @@ public class FreehandAnnotation extends Annotation {
@Override
public
void
paint
(
Canvas
canvas
)
{
// paint.setColor(annotationColors[color]);
// TODO just for testing
strokedPath
.
setColor
(
Color
.
RED
);
strokedPath
.
setColor
(
annotationColors
[
color
]);
strokedPath
.
setStyle
(
Style
.
STROKE
);
strokedPath
.
paint
(
canvas
);
...
...
TTTCLient/src/tttclient/messages/RectangleAnnotation.java
View file @
cdb7c8ea
...
...
@@ -31,7 +31,6 @@ import tttclient.core.Constants;
import
tttclient.shapes.StrokedRect
;
import
android.graphics.Bitmap
;
import
android.graphics.Canvas
;
import
android.graphics.Color
;
import
android.graphics.Paint.Cap
;
import
android.graphics.Paint.Join
;
import
android.graphics.Paint.Style
;
...
...
@@ -124,8 +123,8 @@ public class RectangleAnnotation extends SimpleAnnotation {
// graphics.setColor(annotationColors[color]);
// graphics.fill(shape);
// TODO rot als Test
rect
.
setColor
(
Color
.
RED
);
rect
.
setStyle
(
Style
.
FILL
);
rect
.
setColor
(
annotationColors
[
color
]
);
rect
.
setStyle
(
Style
.
STROKE
);
rect
.
paint
(
canvas
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment