Index: programs/mythfrontend/playbackbox.cpp
===================================================================
--- programs/mythfrontend/playbackbox.cpp	(revision 22465)
+++ programs/mythfrontend/playbackbox.cpp	(working copy)
@@ -433,8 +433,12 @@
 
 bool PlaybackBox::Create()
 {
-    if (!LoadWindowFromXML("recordings-ui.xml", "watchrecordings", this))
-        return false;
+    if (m_type == Delete && LoadWindowFromXML("recordings-ui.xml",
+                                              "deleterecordings", this))
+        VERBOSE(VB_EXTRA, "Found a customised delete recording screen");
+    else
+        if (!LoadWindowFromXML("recordings-ui.xml", "watchrecordings", this))
+            return false;
 
     m_groupList     = dynamic_cast<MythUIButtonList *> (GetChild("groups"));
     m_recordingList = dynamic_cast<MythUIButtonList *> (GetChild("recordings"));
@@ -580,17 +584,34 @@
         }
     }
 
+    QString desc;
+
     if (countInGroup > 1)
-        infoMap["description"] = QString(tr("There are %1 recordings in "
-                                            "this display group"))
-                                            .arg(countInGroup);
+        desc = tr("There are %1 recordings in this display group")
+               .arg(countInGroup);
     else if (countInGroup == 1)
-        infoMap["description"] = QString(tr("There is one recording in "
-                                                "this display group"));
+        desc = tr("There is one recording in this display group");
     else
-        infoMap["description"] = QString(tr("There are no recordings in "
-                                            "this display group"));
+        desc = tr("There are no recordings in this display group");
 
+    if (m_type == Delete && countInGroup > 1)
+    {
+        ProgramList  group     = m_progLists[groupname];
+        float        groupSize = 0.0;
+
+        for (ProgramList::iterator it = group.begin(); it != group.end(); ++it)
+        {
+            ProgramInfo *info = findMatchingProg(*it);
+            if (info)
+                groupSize += info->GetFilesize();
+        }
+
+        desc += tr(", which consume %1")
+                .arg(groupSize / 1024.0 / 1024.0 / 1024.0, 0, 'f', 2);
+        desc += QObject::tr("GB", "GigaBytes");
+    }
+
+    infoMap["description"] = desc;
     infoMap["rec_count"] = QString("%1").arg(countInGroup);
 
     ResetMap(m_currentMap);
Index: themes/default/recordings-ui.xml
===================================================================
--- themes/default/recordings-ui.xml	(revision 22465)
+++ themes/default/recordings-ui.xml	(working copy)
@@ -222,6 +222,256 @@
         </textarea>
     </window>
 
+    <!-- Exact copy of watchrecordings,
+         except for pagetitle, smaller description area,
+         and added filesize_str, usedbar and freereport -->
+    <window name="deleterecordings">
+
+        <textarea name="pagetitle" from="basetextarea">
+            <area>20,5,570,40</area>
+            <font>baselarge</font>
+            <value>Delete Recordings</value>
+        </textarea>
+
+        <imagetype name="listbackground">
+            <filename>reclist_background.png</filename>
+            <position>0,40</position>
+        </imagetype>
+
+        <buttonlist name="groups">
+            <area>30,70,188,300</area>
+            <buttonarea>0,0,188,250</buttonarea>
+            <spacing>5</spacing>
+            <scrollstyle>center</scrollstyle>
+            <wrapstyle>items</wrapstyle>
+            <statetype name="buttonitem">
+                <state name="active">
+                    <textarea name="name">
+                        <area>5,0,180,30</area>
+                        <font>basesmall</font>
+                        <cutdown>yes</cutdown>
+                        <align>left,vcenter</align>
+                    </textarea>
+                </state>
+                <state name="inactive" from="active" />
+                <state name="selected" from="active" />
+            </statetype>
+        </buttonlist>
+
+        <buttonlist name="recordings" from="basebuttonlist2">
+            <area>225,26,550,330</area>
+            <buttonarea>0,30,550,270</buttonarea>
+            <wrapstyle>captive</wrapstyle>
+            <statetype name="buttonitem">
+                <state name="active">
+                    <textarea name="titlesubtitle" from="buttontext">
+                        <area>32,1,328,24</area>
+                    </textarea>
+                    <textarea name="shortdate" from="titlesubtitle">
+                        <area>365,1,100,24</area>
+                        <align>right</align>
+                    </textarea>
+                    <textarea name="starttime" from="shortdate">
+                        <area>465,1,80,24</area>
+                        <align>right</align>
+                    </textarea>
+                    <statetype name="watched">
+                        <state name="yes">
+                            <imagetype name="yes">
+                                <position>5,5</position>
+                                <filename>small_watched.png</filename>
+                            </imagetype>
+                        </state>
+                        <state name="no" />
+                    </statetype>
+                    <statetype name="playlist">
+                        <state name="yes">
+                            <imagetype name="playlistyes">
+                                <position>15,0</position>
+                                <filename>playlist_yes.png</filename>
+                            </imagetype>
+                        </state>
+                        <state name="no" />
+                    </statetype>
+                </state>
+                <state name="inactive" from="active" />
+                <state name="selected" from="active">
+                    <shape name="selectbar">
+                        <area>25,0,527,25</area>
+                    </shape>
+                </state>
+            </statetype>
+            <statetype name="upscrollarrow">
+                <position>530,0</position>
+            </statetype>
+            <statetype name="downscrollarrow">
+                <position>530,304</position>
+            </statetype>
+        </buttonlist>
+
+        <imagetype name="autoexpire">
+            <filename>autoexpire.png</filename>
+            <position>648,500</position>
+        </imagetype>
+
+        <imagetype name="commflagged">
+            <filename>commflagged.png</filename>
+            <position>682,500</position>
+        </imagetype>
+
+        <imagetype name="bookmark">
+            <filename>bookmark.png</filename>
+            <position>716,500</position>
+        </imagetype>
+
+        <imagetype name="cutlist">
+            <filename>cutlist.png</filename>
+            <position>750,500</position>
+        </imagetype>
+
+        <statetype name="audioprops">
+            <position>648,540</position>
+            <showempty>yes</showempty>
+            <state name="stereo">
+                <imagetype name="stereo">
+                    <filename>stereo.png</filename>
+                </imagetype>
+            </state>
+            <state name="surround">
+                <imagetype name="surround">
+                    <filename>surround.png</filename>
+                </imagetype>
+            </state>
+            <state name="dolby">
+                <imagetype name="dolby">
+                    <filename>dd.png</filename>
+                </imagetype>
+            </state>
+            <state name="mono">
+                <imagetype name="mono">
+                    <filename>mono.png</filename>
+                </imagetype>
+            </state>
+        </statetype>
+
+        <statetype name="subtitletypes">
+            <position>682,540</position>
+            <showempty>yes</showempty>
+            <state name="cc">
+                <imagetype name="cc">
+                    <filename>cc.png</filename>
+                </imagetype>
+            </state>
+            <state name="subtitles">
+                <imagetype name="subtitles">
+                    <filename>subs.png</filename>
+                </imagetype>
+            </state>
+            <state name="onscreensub">
+                <imagetype name="onscreensub">
+                    <filename>subs_onscreen.png</filename>
+                </imagetype>
+            </state>
+        </statetype>
+
+        <statetype name="videoprops">
+            <position>716,540</position>
+            <showempty>yes</showempty>
+            <state name="hd1080">
+                <imagetype name="hd1080">
+                    <filename>hd1080.png</filename>
+                </imagetype>
+            </state>
+            <state name="hd720">
+                <imagetype name="hd720">
+                    <filename>hd720.png</filename>
+                </imagetype>
+            </state>
+            <state name="hdtv">
+                <imagetype name="hdtv">
+                    <filename>hd.png</filename>
+                </imagetype>
+            </state>
+            <state name="widescreen">
+                <imagetype name="widescreen">
+                    <filename>wide.png</filename>
+                </imagetype>
+            </state>
+        </statetype>
+
+<!--        <imagetype name="watched">
+            <filename>watched.png</filename>
+            <position>716,500</position>
+        </imagetype>-->
+
+        <imagetype name="processing">
+            <filename>processing.png</filename>
+            <position>750,540</position>
+        </imagetype>
+
+        <textarea name="title" from="basetextarea">
+            <area>25,345,700,40</area>
+            <font>baselarge</font>
+            <cutdown>yes</cutdown>
+            <align>vcenter</align>
+        </textarea>
+
+        <textarea name="channel" from="basetextarea">
+            <area>25,390,160,30</area>
+        </textarea>
+
+        <textarea name="timedate" from="basetextarea">
+            <area>195,390,480,30</area>
+        </textarea>
+
+        <textarea name="filesize_str" from="basetextarea">
+            <area>525,390,90,25</area>
+            <align>right</align>
+        </textarea>
+
+        <textarea name="description" from="basetextarea">
+            <area>25,420,590,125</area>
+            <multiline>yes</multiline>
+            <cutdown>yes</cutdown>
+            <value>%|"SUBTITLE|"% %STARS% %DESCRIPTION%</value>
+        </textarea>
+
+        <imagetype name="preview">
+            <area>620,375,160,120</area>
+            <preserveaspect>true</preserveaspect>
+        </imagetype>
+
+        <textarea name="norecordings">
+            <area>20,75,760,300</area>
+            <font>basemedium</font>
+            <value>
+            </value>
+            <multiline>yes</multiline>
+            <align>allcenter</align>
+        </textarea>
+
+        <!-- Copy of baseprogressbar from base.xml with changed fill image,
+             so that its like a "temperature" gauge, where full=danger=red -->
+        <progressbar name="usedbar">
+            <area>15,545,536,38</area>
+            <layout>horizontal</layout>
+            <style>reveal</style>
+            <imagetype name="background">
+                <filename>progressbar_background.png</filename>
+            </imagetype>
+            <imagetype name="progressimage">
+                <area>0,0,100%,100%</area>
+                <filename>progressbar_fill2.png</filename>
+            </imagetype>
+        </progressbar>
+
+        <textarea name="freereport">
+            <area>25,549,325,40</area>
+            <font>baselarge</font>
+        </textarea>
+
+    </window>
+
     <window name="groupselector">
         <area>-1,-1,500,500</area>
         <imagetype name="backimg">
Index: themes/default-wide/recordings-ui.xml
===================================================================
--- themes/default-wide/recordings-ui.xml	(revision 22465)
+++ themes/default-wide/recordings-ui.xml	(working copy)
@@ -221,6 +221,253 @@
         </textarea>
     </window>
 
+    <!-- Copy of watchrecordings, with tweaked alignments,
+         new pagetitle, and added usedbar, freereport, and filesize_str -->
+    <window name="deleterecordings">
+
+        <textarea name="pagetitle" from="basetextarea">
+            <area>20,20,570,40</area>
+            <font>baselarge</font>
+            <value>Delete Recordings</value>
+        </textarea>
+
+        <!-- Copy of baseprogressbar from base.xml with changed fill image,
+             so that its like a "temperature" gauge, where full=danger=red -->
+        <progressbar name="usedbar">
+            <area>530,15,536,38</area>
+            <layout>horizontal</layout>
+            <style>reveal</style>
+            <imagetype name="background">
+                <filename>progressbar_background.png</filename>
+            </imagetype>
+            <imagetype name="progressimage">
+                <area>0,0,100%,100%</area>
+                <filename>progressbar_fill2.png</filename>
+            </imagetype>
+        </progressbar>
+
+        <textarea name="freereport">
+            <area>538,18,325,40</area>
+            <font>baselarge</font>
+        </textarea>
+        <imagetype name="listbackground">
+            <filename>reclist_background.png</filename>
+            <position>0,60</position>
+        </imagetype>
+
+        <buttonlist name="groups">
+            <area>45,98,300,300</area>
+            <buttonarea>0,0,250,250</buttonarea>
+            <spacing>5</spacing>
+            <scrollstyle>center</scrollstyle>
+            <wrapstyle>items</wrapstyle>
+            <statetype name="buttonitem">
+                <state name="active">
+                    <textarea name="name">
+                        <area>5,0,300,30</area>
+                        <font>basesmall</font>
+                        <cutdown>yes</cutdown>
+                        <align>left,vcenter</align>
+                    </textarea>
+                </state>
+                <state name="inactive" from="active" />
+                <state name="selected" from="active" />
+            </statetype>
+        </buttonlist>
+
+        <buttonlist name="recordings" from="basebuttonlist2">
+            <area>365,44,880,350</area>
+            <buttonarea>0,30,880,290</buttonarea>
+            <wrapstyle>captive</wrapstyle>
+            <statetype name="buttonitem">
+                <state name="active">
+                    <textarea name="titlesubtitle" from="buttontext">
+                        <area>32,1,600,28</area>
+                    </textarea>
+                    <textarea name="shortdate" from="titlesubtitle">
+                        <area>640,1,120,28</area>
+                        <align>right</align>
+                    </textarea>
+                    <textarea name="starttime" from="shortdate">
+                        <area>770,1,105,28</area>
+                        <align>right</align>
+                    </textarea>
+                    <statetype name="watched">
+                        <state name="yes">
+                            <imagetype name="yes">
+                                <position>5,5</position>
+                                <filename>small_watched.png</filename>
+                            </imagetype>
+                        </state>
+                        <state name="no" />
+                    </statetype>
+                    <statetype name="playlist">
+                        <state name="yes">
+                            <imagetype name="playlistyes">
+                                <position>15,0</position>
+                                <filename>playlist_yes.png</filename>
+                            </imagetype>
+                        </state>
+                        <state name="no" />
+                    </statetype>
+                </state>
+                <state name="inactive" from="active" />
+                <state name="selected" from="active">
+                    <shape name="selectbar">
+                        <area>25,0,857,30</area>
+                    </shape>
+                </state>
+            </statetype>
+            <statetype name="upscrollarrow">
+                <position>850,0</position>
+            </statetype>
+            <statetype name="downscrollarrow">
+                <position>850,328</position>
+            </statetype>
+        </buttonlist>
+
+        <imagetype name="autoexpire">
+            <filename>autoexpire.png</filename>
+            <position>988,670</position>
+        </imagetype>
+
+        <imagetype name="commflagged">
+            <filename>commflagged.png</filename>
+            <position>1024,670</position>
+        </imagetype>
+
+        <imagetype name="bookmark">
+            <filename>bookmark.png</filename>
+            <position>1060,670</position>
+        </imagetype>
+
+        <imagetype name="cutlist">
+            <filename>cutlist.png</filename>
+            <position>1094,670</position>
+        </imagetype>
+
+        <statetype name="audioprops">
+            <position>1128,670</position>
+            <showempty>yes</showempty>
+            <state name="stereo">
+                <imagetype name="stereo">
+                    <filename>stereo.png</filename>
+                </imagetype>
+            </state>
+            <state name="surround">
+                <imagetype name="surround">
+                    <filename>surround.png</filename>
+                </imagetype>
+            </state>
+            <state name="dolby">
+                <imagetype name="dolby">
+                    <filename>dd.png</filename>
+                </imagetype>
+            </state>
+            <state name="mono">
+                <imagetype name="mono">
+                    <filename>mono.png</filename>
+                </imagetype>
+            </state>
+        </statetype>
+
+        <statetype name="subtitletypes">
+            <position>1162,670</position>
+            <showempty>yes</showempty>
+            <state name="cc">
+                <imagetype name="cc">
+                    <filename>cc.png</filename>
+                </imagetype>
+            </state>
+            <state name="subtitles">
+                <imagetype name="subtitles">
+                    <filename>subs.png</filename>
+                </imagetype>
+            </state>
+            <state name="onscreensub">
+                <imagetype name="onscreensub">
+                    <filename>subs_onscreen.png</filename>
+                </imagetype>
+            </state>
+        </statetype>
+
+        <statetype name="videoprops">
+            <position>1196,670</position>
+            <showempty>yes</showempty>
+            <state name="hd1080">
+                <imagetype name="hd1080">
+                    <filename>hd1080.png</filename>
+                </imagetype>
+            </state>
+            <state name="hd720">
+                <imagetype name="hd720">
+                    <filename>hd720.png</filename>
+                </imagetype>
+            </state>
+            <state name="hdtv">
+                <imagetype name="hdtv">
+                    <filename>hd.png</filename>
+                </imagetype>
+            </state>
+            <state name="widescreen">
+                <imagetype name="widescreen">
+                    <filename>wide.png</filename>
+                </imagetype>
+            </state>
+        </statetype>
+
+        <!--        <imagetype name="watched">
+            <filename>watched.png</filename>
+            <position>716,500</position>
+        </imagetype>-->
+
+        <imagetype name="processing">
+            <filename>processing.png</filename>
+            <position>1230,670</position>
+        </imagetype>
+
+        <textarea name="title" from="basetextarea">
+            <area>25,400,700,40</area>
+            <font>baselarge</font>
+            <cutdown>yes</cutdown>
+            <align>vcenter</align>
+        </textarea>
+
+        <textarea name="channel" from="basetextarea">
+            <area>25,445,160,30</area>
+        </textarea>
+
+        <textarea name="timedate" from="basetextarea">
+            <area>352,445,480,30</area>
+        </textarea>
+
+        <textarea name="filesize_str" from="basetextarea">
+            <area>825,445,90,25</area>
+            <align>right</align>
+        </textarea>
+
+        <textarea name="description" from="basetextarea">
+            <area>25,485,890,220</area>
+            <multiline>yes</multiline>
+            <cutdown>yes</cutdown>
+            <value>%|"SUBTITLE|"% %STARS% %DESCRIPTION%</value>
+        </textarea>
+
+        <imagetype name="preview">
+            <area>928,410,320,240</area>
+            <preserveaspect>true</preserveaspect>
+        </imagetype>
+
+        <textarea name="norecordings">
+            <area>20,75,760,300</area>
+            <font>basemedium</font>
+            <value>
+            </value>
+            <multiline>yes</multiline>
+            <align>allcenter</align>
+        </textarea>
+    </window>
+
     <window name="iconhelp">
         <area>-1,-1,700,500</area>
 
Index: themes/Terra/recordings-ui.xml
===================================================================
--- themes/Terra/recordings-ui.xml	(revision 22465)
+++ themes/Terra/recordings-ui.xml	(working copy)
@@ -305,6 +305,314 @@
         
     </window>
 
+    <!-- Exact copy of watchrecordings, except for heading,
+         added usedbar, and enabled filesize_str and freereport -->
+    <window name="deleterecordings">
+
+        <imagetype name="backdrop" from="basebackdrop" />
+        <imagetype name="topbar" from="basetopbar" />
+
+        <textarea name="heading" from="baseheading">
+            <value>Delete Recordings</value>
+        </textarea>
+
+        <imagetype name="groupframe">
+            <position>0,55</position>
+            <filename>recordings/groupframe.png</filename>
+        </imagetype>
+
+        <buttonlist name="groups">
+            <area>0,58,1280,38</area>
+            <spacing>15</spacing>
+            <scrollstyle>center</scrollstyle>
+            <wrapstyle>items</wrapstyle>
+            <layout>horizontal</layout>
+            <buttonarea>12,0,1260,40</buttonarea>
+            <statetype name="buttonitem">
+                <state name="active">
+                    <area>0,0,240,40</area>
+                    <textarea name="name" from="basetextarea">
+                        <area>4,3,232,36</area>
+                        <align>allcenter</align>
+                        <cutdown>yes</cutdown>
+                        <font>basemedium</font>
+                        <case>capitaliseall</case>
+                        <alpha>220</alpha>
+                    </textarea>
+                </state>
+                <state name="selected" from="active">
+                    <textarea name="name">
+                        <area>4,1,232,36</area>
+                        <font>baselargebrown</font>
+                    </textarea>
+                </state>
+                <state name="inactive" from="selected">
+                    <textarea name="name">
+                        <font>baselarge</font>
+                        <alpha>220</alpha>
+                    </textarea>
+                </state>
+            </statetype>
+            <statetype name="downscrollarrow">
+                <position>1264,0</position>
+                <state type="full">
+                    <imagetype name="right">
+                        <filename>shared/horizlist_internal_right_arrow.png</filename>
+                    </imagetype>
+                </state>
+            </statetype>
+            <statetype name="upscrollarrow">
+                <position>0,0</position>
+                <state type="full">
+                    <imagetype name="left">
+                        <filename>shared/horizlist_internal_left_arrow.png</filename>
+                    </imagetype>
+                </state>
+            </statetype>
+        </buttonlist>
+
+        <imagetype name="recbackground">
+            <position>0,132</position>
+            <filename>recordings/recordingsbackground.png</filename>
+        </imagetype>
+
+        <buttonlist name="recordings">
+            <area>0,116,1280,315</area>
+            <buttonarea>0,0,1280,290</buttonarea>
+            <wrapstyle>items</wrapstyle>
+            <scrollstyle>center</scrollstyle>
+            <layout>horizontal</layout>
+            <spacing>0</spacing>
+            <statetype name="buttonitem">
+                <state name="active">
+                    <area>0,18,256,262</area>
+                    <imagetype name="frame" />
+                    <imagetype name="preview">
+                        <area>0,1,256,144</area>
+                        <mask>recordings/previewmask_unselected.png</mask>
+                        <preserveaspect>true</preserveaspect>
+                    </imagetype>
+                    <statetype name="jobstate">
+                        <position>212,103</position>
+                        <state name="recording">
+                            <imagetype name="overlay">
+                                <filename>recordings/statusoverlay.png</filename>
+                            </imagetype>
+                            <imagetype name="animation">
+                                <position>6,6</position>
+                                <filepattern low="1" high="8">recordings/recording_%1.png</filepattern>
+                                <delay>160</delay>
+                            </imagetype>
+                        </state>
+                        <state name="transcoding" from="recording">
+                            <imagetype name="animation">
+                                <filepattern low="1" high="8">recordings/transcoding_%1.png</filepattern>
+                            </imagetype>
+                        </state>
+                        <state name="commflagging" from="recording">
+                            <imagetype name="animation">
+                                <filepattern low="1" high="8">recordings/flagging_%1.png</filepattern>
+                            </imagetype>
+                        </state>
+                    </statetype>
+                    <statetype name="watched">
+                        <position>10,103</position>
+                        <state name="yes">
+                            <imagetype name="overlay">
+                                <filename>recordings/statusoverlay.png</filename>
+                            </imagetype>
+                            <imagetype name="watchedimage">
+                                <position>2,8</position>
+                                <filename>shared/watched.png</filename>
+                            </imagetype>
+                        </state>
+                    </statetype>
+                    <textarea name="title" from="basetextarea">
+                        <area>8,148,240,60</area>
+                        <font>basemedium</font>
+                        <align>allcenter</align>
+                        <multiline>yes</multiline>
+                    </textarea>
+                    <textarea name="subtitle" from="basetextarea">
+                        <area>8,211,240,25</area>
+                        <align>hcenter</align>
+                        <font>basesmallbrown</font>
+                    </textarea>
+                    <textarea name="starttime" from="subtitle">
+                        <area>16,242,92,25</area>
+                        <align>left</align>
+                    </textarea>
+                    <textarea name="startdate" from="starttime">
+                        <area>108,242,132,25</area>
+                        <align>right</align>
+                    </textarea>
+                </state>
+                <state name="selected" from="active">
+                    <area>-17,0,291,307</area>
+                    <imagetype name="frame">
+                        <filename>recordings/selected_recording_background.png</filename>
+                    </imagetype>
+                    <imagetype name="preview">
+                        <area>2,4,288,162</area>
+                        <mask>recordings/previewmask.png</mask>
+                    </imagetype>
+                    <statetype name="status">
+                        <position>236,124</position>
+                    </statetype>
+                    <textarea name="title">
+                        <area>8,169,272,73</area>
+                        <font>baselarge</font>
+                    </textarea>
+                    <textarea name="subtitle">
+                        <area>8,243,272,25</area>
+                    </textarea>
+                    <textarea name="starttime">
+                        <area>20,274,100,25</area>
+                    </textarea>
+                    <textarea name="startdate">
+                        <area>130,274,138,25</area>
+                    </textarea>
+                    <statetype name="jobstate">
+                        <position>240,124</position>
+                    </statetype>
+                    <statetype name="watched">
+                        <position>13,124</position>
+                    </statetype>
+                </state>
+                <state name="inactive" from="active" />
+            </statetype>
+            <statetype name="upscrollarrow">
+                <position>0,289</position>
+                <state type="full">
+                    <imagetype name="left">
+                        <filename>shared/horizlist_left_arrow.png</filename>
+                    </imagetype>
+                </state>
+            </statetype>
+            <statetype name="downscrollarrow">
+                <position>1256,289</position>
+                <state type="full">
+                    <imagetype name="right">
+                        <filename>shared/horizlist_right_arrow.png</filename>
+                    </imagetype>
+                </state>
+            </statetype>
+        </buttonlist>
+
+        <shape name="textbackground" from="basetextbackground">
+            <position>30,433</position>
+        </shape>
+
+        <textarea name="title" from="basetextarea">
+            <area>48,438,810,35</area>
+            <font>baselarge</font>
+        </textarea>
+
+        <statetype name="cutlist">
+            <position>1018,442</position>
+            <state name="yes">
+                <imagetype name="on">
+                    <filename>shared/icons/cutlist.png</filename>
+                </imagetype>
+            </state>
+        </statetype>
+
+        <statetype name="commflagged">
+            <position>1063,442</position>
+            <state name="yes">
+                <imagetype name="on">
+                    <filename>shared/icons/adflagged.png</filename>
+                </imagetype>
+            </state>
+        </statetype>
+
+        <statetype name="bookmark">
+            <position>1094,442</position>
+            <state name="yes">
+                <imagetype name="on">
+                    <filename>shared/icons/bookmark.png</filename>
+                </imagetype>
+            </state>
+        </statetype>
+
+        <statetype name="autoexpire">
+            <position>1145,442</position>
+            <state name="yes">
+                <imagetype name="on">
+                    <filename>shared/icons/autoexpire.png</filename>
+                </imagetype>
+            </state>
+        </statetype>
+
+        <textarea name="filesize_str" from="basetextarea">
+            <area>360,647,200,30</area>
+            <align>right</align>
+        </textarea>
+        
+        <textarea name="freereport" from="basetextarea">
+            <area>570,647,300,30</area>
+            <align>left</align>
+        </textarea>
+
+        <statetype name="ratingstate" from="baserating">
+            <position>1193,435</position>
+        </statetype>
+
+        <textarea name="description" from="basetextarea">
+            <area>48,487,1190,145</area>
+            <multiline>yes</multiline>
+            <template>%|"SUBTITLE|"% %DESCRIPTION%</template>
+        </textarea>
+
+        <textarea name="year" from="basetextarea">
+            <area>48,647,290,30</area>
+        </textarea>
+
+        <statetype name="videoprops">
+            <position>597,648</position>
+            <state name="default">
+            </state>
+            <state name="hd1080">
+                <imagetype name="hdtv">
+                    <filename>shared/icons/hd_1080.png</filename>
+                </imagetype>
+            </state>
+            <state name="hd720">
+                <imagetype name="hdtv">
+                    <position>4,0</position>
+                    <filename>shared/icons/hd_720.png</filename>
+                </imagetype>
+            </state>
+            <state name="hdtv">
+                <imagetype name="hdtv">
+                    <position>4,0</position>
+                    <filename>shared/icons/hdtv.png</filename>
+                </imagetype>
+            </state>
+            <state name="widescreen">
+                <imagetype name="widescreen">
+                    <position>5,1</position>
+                    <filename>shared/icons/16_9.png</filename>
+                </imagetype>
+            </state>
+        </statetype>
+        
+        <textarea name="lentime" from="basetextarea">
+            <area>1030,647,200,30</area>
+            <align>right</align>
+        </textarea>
+
+        <progressbar name="usedbar" from="baseprogressbar"><!--519x16-->
+            <position>380,694</position>
+        </progressbar>
+
+        <textarea name="norecordings" from="description">
+            <font>basemedium</font>
+            <align>allcenter</align>
+        </textarea>
+        
+    </window>
+
     <window name="groupselector">
         <area>0,42,1280,515</area>
         <shape name="fade" from="basefadebackground" />
