Package cx.fbn.nevernote.utilities

Examples of cx.fbn.nevernote.utilities.SyncTimes


   
    // Userid settings
    QGroupBox useridGroup = new QGroupBox(tr("Connection"));
   
    syncInterval = new QComboBox(this);
    syncTimes = new SyncTimes();
    syncInterval.addItems(syncTimes.stringValues());
   
    autoLogin = new QCheckBox("Automatic Connect");
    synchronizeDeletedContents = new QCheckBox("Synchronze Deleted Note Content");
    synchronizeOnClose = new QCheckBox("Synchronize On Shutdown (only if connected)");
View Full Code Here


    logger.log(logger.EXTREME, "Setting sync thread & timers");
    syncThreadsReady=1;
    syncRunner = new SyncRunner("syncRunner.log",
        Global.getDatabaseUrl(), Global.getIndexDatabaseUrl(), Global.getResourceDatabaseUrl(),
        Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword);
    syncTime = new SyncTimes().timeValue(Global.getSyncInterval());
    syncTimer = new QTimer();
    syncTimer.timeout.connect(this, "syncTimer()");
        syncRunner.status.message.connect(this, "setMessage(String)");
        syncRunner.syncSignal.finished.connect(this, "syncThreadComplete(Boolean)");
        syncRunner.syncSignal.errorDisconnect.connect(this, "remoteErrorDisconnect()");
View Full Code Here

TOP

Related Classes of cx.fbn.nevernote.utilities.SyncTimes

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.