Ticket #2124: 2124-v1.patch
File 2124-v1.patch, 5.2 KB (added by , 19 years ago) |
---|
-
themes/G.A.N.T./ui.xml
1321 1321 <filename>type/watched.png</filename> 1322 1322 <position>300,195</position> 1323 1323 </image> 1324 <image name="processing" draworder="6"> 1325 <filename>processing.png</filename> 1326 <position>20,106</position> 1327 </image> 1328 <image name="preserved" draworder="6"> 1329 <filename>preserve.png</filename> 1330 <position>289,106</position> 1331 </image> 1324 1332 1325 1326 1333 </container> 1327 1334 1328 1335 <container name="program_info_del"> -
themes/blue/ui.xml
Cannot display: file marked as a binary type. svn:mime-type = application/octet-stream Property changes on: themes/default/preserve.png ___________________________________________________________________ Name: svn:mime-type + application/octet-stream
887 887 <filename>type/watched.png</filename> 888 888 <position>302,106</position> 889 889 </image> 890 891 890 <image name="processing" draworder="6"> 892 891 <filename>processing.png</filename> 893 892 <position>20,106</position> 894 893 </image> 894 <image name="preserved" draworder="6"> 895 <filename>preserve.png</filename> 896 <position>289,106</position> 897 </image> 898 895 899 896 900 </container> 897 901 -
libs/libmythtv/programinfo.h
45 45 }; 46 46 47 47 enum FlagMask { 48 FL_COMMFLAG = 0x001, 49 FL_CUTLIST = 0x002, 50 FL_AUTOEXP = 0x004, 51 FL_EDITING = 0x008, 52 FL_BOOKMARK = 0x010, 53 FL_INUSERECORDING = 0x020, 54 FL_INUSEPLAYING = 0x040, 55 FL_STEREO = 0x080, 56 FL_CC = 0x100, 57 FL_HDTV = 0x200, 58 FL_TRANSCODED = 0x400, 59 FL_WATCHED = 0x800 48 FL_COMMFLAG = 0x0001, 49 FL_CUTLIST = 0x0002, 50 FL_AUTOEXP = 0x0004, 51 FL_EDITING = 0x0008, 52 FL_BOOKMARK = 0x0010, 53 FL_INUSERECORDING = 0x0020, 54 FL_INUSEPLAYING = 0x0040, 55 FL_STEREO = 0x0080, 56 FL_CC = 0x0100, 57 FL_HDTV = 0x0200, 58 FL_TRANSCODED = 0x0400, 59 FL_WATCHED = 0x0800, 60 FL_PRESERVED = 0x1000, 60 61 }; 61 62 62 63 enum RecStatusType { -
libs/libmythtv/programinfo.cpp
3667 3667 MSqlQuery query(MSqlQuery::InitCon()); 3668 3668 3669 3669 query.prepare("SELECT commflagged, cutlist, autoexpire, " 3670 "editing, bookmark, stereo, closecaptioned, hdtv, watched " 3670 "editing, bookmark, stereo, closecaptioned, " 3671 "hdtv, watched, preserve " 3671 3672 "FROM recorded LEFT JOIN recordedprogram ON " 3672 3673 "(recorded.chanid = recordedprogram.chanid AND " 3673 3674 "recorded.starttime = recordedprogram.starttime) " … … 3690 3691 flags |= (query.value(6).toInt() == 1) ? FL_CC : 0; 3691 3692 flags |= (query.value(7).toInt() == 1) ? FL_HDTV : 0; 3692 3693 flags |= (query.value(8).toInt() == 1) ? FL_WATCHED : 0; 3694 flags |= (query.value(9).toInt() == 1) ? FL_PRESERVED : 0; 3693 3695 } 3694 3696 3695 3697 return flags; -
programs/mythfrontend/playbackbox.cpp
811 811 iconMap["cc"] = FL_CC; 812 812 iconMap["hdtv"] = FL_HDTV; 813 813 iconMap["watched"] = FL_WATCHED; 814 iconMap["preserved"] = FL_PRESERVED; 814 815 815 816 UIImageType *itype; 816 817 for (it = iconMap.begin(); it != iconMap.end(); ++it) -
programs/mythbackend/mainserver.cpp
1064 1064 "recorded.progend, recorded.stars, " 1065 1065 "recordedprogram.stereo, recordedprogram.hdtv, " 1066 1066 "recordedprogram.closecaptioned, transcoded, " 1067 "recorded.recpriority, watched "1067 "recorded.recpriority, watched, recorded.preserve " 1068 1068 "FROM recorded " 1069 1069 "LEFT JOIN record ON recorded.recordid = record.recordid " 1070 1070 "LEFT JOIN channel ON recorded.chanid = channel.chanid " … … 1169 1169 flags |= (query.value(35).toInt() == TRANSCODING_COMPLETE) ? 1170 1170 FL_TRANSCODED : 0; 1171 1171 flags |= (query.value(37).toInt() == 1) ? FL_WATCHED : 0; 1172 flags |= (query.value(38).toInt() == 1) ? FL_PRESERVED : 0; 1172 1173 1173 1174 inUseKey = query.value(0).toString() + " " + 1174 1175 query.value(1).toDateTime().toString(Qt::ISODate);