summaryrefslogtreecommitdiff
path: root/cmpcj/src/de/schwarzrot/cmpc/util/MediaTableFormat.java
diff options
context:
space:
mode:
Diffstat (limited to 'cmpcj/src/de/schwarzrot/cmpc/util/MediaTableFormat.java')
-rw-r--r--cmpcj/src/de/schwarzrot/cmpc/util/MediaTableFormat.java60
1 files changed, 45 insertions, 15 deletions
diff --git a/cmpcj/src/de/schwarzrot/cmpc/util/MediaTableFormat.java b/cmpcj/src/de/schwarzrot/cmpc/util/MediaTableFormat.java
index 7fa5452..d427e83 100644
--- a/cmpcj/src/de/schwarzrot/cmpc/util/MediaTableFormat.java
+++ b/cmpcj/src/de/schwarzrot/cmpc/util/MediaTableFormat.java
@@ -1,25 +1,25 @@
/**
* ======================== legal notice ======================
*
- * File: MediaTableFormat.java
- * Created:
- * Author: <a href="mailto:geronimo013@gmx.de">Geronimo</a>
- * Project: cmpc - a java frontend (client) part of compound media player
- * uses external players to play the media
+ * File: MediaTableFormat.java Created: Author: <a
+ * href="mailto:geronimo013@gmx.de">Geronimo</a> Project: cmpc - a java frontend
+ * (client) part of compound media player uses external players to play the
+ * media
*
* CMP - compound media player
*
- * is a client/server mediaplayer intended to play any media from any workstation
- * without the need to export or mount shares. cmps is an easy to use backend
- * with a (ready to use) HTML-interface. Additionally the backend supports
- * authentication via HTTP-digest authorization.
- * cmpc is a client with vdr-like osd-menues.
+ * is a client/server mediaplayer intended to play any media from any
+ * workstation without the need to export or mount shares. cmps is an easy to
+ * use backend with a (ready to use) HTML-interface. Additionally the backend
+ * supports authentication via HTTP-digest authorization. cmpc is a client with
+ * vdr-like osd-menues.
*
- * Copyright (c) 2012 Reinhard Mantey, some rights reserved!
- * published under Creative Commons by-sa
- * For details see http://creativecommons.org/licenses/by-sa/3.0/
+ * Copyright (c) 2012 Reinhard Mantey, some rights reserved! published under
+ * Creative Commons by-sa For details see
+ * http://creativecommons.org/licenses/by-sa/3.0/
*
- * The cmp project's homepage is at http://projects.vdr-developer.org/projects/cmp
+ * The cmp project's homepage is at
+ * http://projects.vdr-developer.org/projects/cmp
*
* --------------------------------------------------------------
*/
@@ -33,7 +33,7 @@ import de.schwarzrot.cmpc.domain.Media;
public class MediaTableFormat implements TableFormat<Media> {
@Override
public int getColumnCount() {
- return 2;
+ return 5;
}
@@ -43,6 +43,12 @@ public class MediaTableFormat implements TableFormat<Media> {
case 0:
return "Type";
case 1:
+ return "Format";
+ case 2:
+ return "Width";
+ case 3:
+ return "Height";
+ case 4:
return "Name";
default:
throw new IllegalStateException();
@@ -56,9 +62,33 @@ public class MediaTableFormat implements TableFormat<Media> {
case 0:
return m.getType();
case 1:
+ return m.getFormat();
+ case 2:
+ return m.getWidth();
+ case 3:
+ return m.getHeight();
+ case 4:
return m.getName();
default:
throw new IllegalStateException();
}
}
+
+
+ public int getColumnWidth(int column) {
+ switch (column) {
+ case 0:
+ return 80;
+ case 1:
+ return 100;
+ case 2:
+ return 60;
+ case 3:
+ return 60;
+ case 4:
+ return -1;
+ default:
+ throw new IllegalStateException();
+ }
+ }
}