Home | History | Annotate | Download | only in data

Lines Matching full:slideshow

122     public static final int SLIDESHOW = 4;
132 // Slideshow for this message, if applicable. If it's a simple attachment,
133 // i.e. not SLIDESHOW, it will contain only one slide.
252 // If we get an empty slideshow, tear down all MMS
257 mAttachmentType = SLIDESHOW;
395 public static void removeThumbnailsFromCache(SlideshowModel slideshow) {
396 if (slideshow != null) {
399 Iterator<SlideModel> iterator = slideshow.iterator();
435 // Special case for deleting a slideshow. When ComposeMessageActivity gets told to
440 // a slide zero. In the case of an already attached slideshow, ensureSlideshow will do
441 // nothing and the slideshow will remain such that if a user adds a slideshow again, they'll
442 // see their old slideshow they previously deleted. Here we really delete the slideshow.
443 if (type == TEXT && mAttachmentType == SLIDESHOW && mSlideshow != null && dataUri == null
461 correctAttachmentState(true); // this can remove the slideshow if there are no attachments
548 SlideshowModel slideshow = SlideshowModel.createNew(mActivity);
549 SlideModel slide = new SlideModel(slideshow);
550 slideshow.add(slide);
552 mSlideshow = slideshow;
607 // one (a newly initialized slideshow has one empty slide). The first time we
669 * Returns the slideshow associated with this message.
676 * Returns true if the message has a real slideshow, as opposed to just
680 return (mAttachmentType == SLIDESHOW);
713 * Moves the message text into the slideshow. Should be called any time
735 * Sets the message text out of the slideshow. Should be called any time
736 * a slideshow is loaded from disk.
1211 final SlideshowModel slideshow = mSlideshow;
1227 slideshow.prepareForSend();
1228 sendMmsWorker(conv, mmsUri, persister, slideshow, sendReq, textOnly);
1344 SlideshowModel slideshow, SendReq sendReq, boolean textOnly) {
1431 mmsUri = createDraftMmsMessage(persister, sendReq, slideshow, mmsUri,
1435 updateDraftMmsMessage(mmsUri, persister, slideshow, sendReq, null);
1445 // in the remaining space in the slideshow.
1448 slideshow.finalResize(mmsUri);
1460 slideshow.getCurrentMessageSize());
1569 SlideshowModel slideshow, Uri preUri, Context context,
1571 if (slideshow == null) {
1575 PduBody pb = slideshow.toPduBody();
1580 slideshow.sync(pb);
1629 SlideshowModel slideshow, SendReq sendReq, HashMap<Uri, InputStream> preOpenedFiles) {
1639 final PduBody pb = slideshow.toPduBody();
1647 slideshow.sync(pb);