Package cx.fbn.nevernote.signals

Examples of cx.fbn.nevernote.signals.NotebookSignal


    tagCounter = new ArrayList<TagCounter>();
    selectedNotebooks = new ArrayList<String>();
       
    reloadIndexes();
   
     notebookSignal = new NotebookSignal();
     notebookCounterRunner = new CounterRunner("notebook_counter.log", CounterRunner.NOTEBOOK,
             Global.getDatabaseUrl(), Global.getIndexDatabaseUrl(), Global.getResourceDatabaseUrl(),
             Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword);
     notebookCounterRunner.setNoteIndex(getNoteIndex());
     notebookCounterRunner.notebookSignal.countsChanged.connect(this, "setNotebookCounter(List)");
View Full Code Here


    logger = new ApplicationLogger(logname);
   
    noteSignal = new NoteSignal();
    status = new StatusSignal();
    tagSignal = new TagSignal();
    notebookSignal = new NotebookSignal();
    noteIndexSignal = new NoteIndexSignal();
    noteSignal = new NoteSignal();
    searchSignal = new SavedSearchSignal();
    syncSignal = new SyncSignal();
    resourceSignal = new NoteResourceSignal();
View Full Code Here

    threadLock = new QMutex();
    logger = new ApplicationLogger(logname);
//    setAutoDelete(false); 
    conn = new DatabaseConnection(logger, u, i, r, uid, pswd, cpswd, 300);
    keepRunning = true;
    notebookSignal = new NotebookSignal();
    tagSignal = new TagSignal();
    trashSignal = new TrashSignal();
   
    records = new Vector<NoteRecord>();
  }
View Full Code Here

TOP

Related Classes of cx.fbn.nevernote.signals.NotebookSignal

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.