Package com.screenrunner.data

Examples of com.screenrunner.data.ScripturePassage


  }
 
  private void playlistEditorInsertScripture() {
    ScripturePicker dlg = new ScripturePicker(false);
    if(dlg.showDialog() != ScripturePicker.RESULT_OK) return;
    ScripturePassage p = dlg.getSelectedPassage();
    ScreenRunner.playlist.add(p);
    setPlaylistEditorModified(true);
  }
View Full Code Here


    int book = bookList.getSelectedIndex();
    if(book == -1) return;
   
    String ref = bookList.getSelectedValue().toString() + " " + c + ":" + a + "-" + b;
   
    ScripturePassage p = new ScripturePassage(curScripture, ref, perSlide);
    Display.getDisplay().prepareNextBackground(ScreenRunner.currentStyle, p.getStyleType());
    Display.getDisplay().prepareNextSlide(p, 1, ScreenRunner.currentStyle);
    Display.getDisplay().applyChanges();
   
    if((start + perSlide) <= end) {
      startVerseList.setSelectedIndex(startVerseList.getSelectedIndex() + perSlide);
View Full Code Here

    int perSlide = (Integer)versesPerSlideSpinner.getValue();
    String a = (String)startVerseList.getSelectedValue();
    String b = (String)endVerseList.getSelectedValue();
    String c = (String)chapterList.getSelectedValue();
    String ref = bookList.getSelectedValue().toString() + " " + c + ":" + a + "-" + b;
    ScripturePassage p = new ScripturePassage(curScripture, ref, perSlide);
    return p;
  }
View Full Code Here

TOP

Related Classes of com.screenrunner.data.ScripturePassage

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.