X-Git-Url: http://git.sourceforge.jp/view?p=neighbornote%2FNeighborNote.git;a=blobdiff_plain;f=src%2Fcx%2Ffbn%2Fnevernote%2FNeverNote.java;h=1533417b95bdd59fd934bbabb2c01b9605ecea3f;hp=60aeda2925cb03d917a868ecf7c373afe9a7a30f;hb=6eaeae2d5778d3d1d4c3dd4c058baad83de42b15;hpb=f0b50834b2ca26f89c70e93c309f1d96c61b45e9 diff --git a/src/cx/fbn/nevernote/NeverNote.java b/src/cx/fbn/nevernote/NeverNote.java index 60aeda2..1533417 100644 --- a/src/cx/fbn/nevernote/NeverNote.java +++ b/src/cx/fbn/nevernote/NeverNote.java @@ -21,24 +21,32 @@ import java.awt.Desktop; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; +import java.net.Authenticator; +import java.net.PasswordAuthentication; import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; import java.sql.Connection; import java.sql.DriverManager; import java.sql.SQLException; +import java.sql.Statement; import java.text.SimpleDateFormat; import java.util.ArrayList; import java.util.Calendar; +import java.util.Collection; import java.util.Collections; import java.util.Comparator; import java.util.Date; import java.util.GregorianCalendar; import java.util.HashMap; +import java.util.Iterator; import java.util.List; import java.util.SortedMap; import java.util.Vector; +import org.apache.log4j.Level; +import org.apache.log4j.Logger; import org.apache.thrift.TException; +import org.h2.tools.ChangeFileEncryption; import com.evernote.edam.error.EDAMNotFoundException; import com.evernote.edam.error.EDAMSystemException; @@ -46,9 +54,11 @@ import com.evernote.edam.error.EDAMUserException; import com.evernote.edam.notestore.NoteFilter; import com.evernote.edam.notestore.NoteVersionId; import com.evernote.edam.type.Data; +import com.evernote.edam.type.LinkedNotebook; import com.evernote.edam.type.Note; import com.evernote.edam.type.NoteAttributes; import com.evernote.edam.type.Notebook; +import com.evernote.edam.type.Publishing; import com.evernote.edam.type.QueryFormat; import com.evernote.edam.type.Resource; import com.evernote.edam.type.SavedSearch; @@ -56,9 +66,9 @@ import com.evernote.edam.type.Tag; import com.evernote.edam.type.User; import com.trolltech.qt.QThread; import com.trolltech.qt.core.QByteArray; -import com.trolltech.qt.core.QDataStream; import com.trolltech.qt.core.QDateTime; import com.trolltech.qt.core.QDir; +import com.trolltech.qt.core.QEvent; import com.trolltech.qt.core.QFile; import com.trolltech.qt.core.QFileInfo; import com.trolltech.qt.core.QFileSystemWatcher; @@ -74,6 +84,8 @@ import com.trolltech.qt.core.QTimer; import com.trolltech.qt.core.QTranslator; import com.trolltech.qt.core.QUrl; import com.trolltech.qt.core.Qt; +import com.trolltech.qt.core.Qt.BGMode; +import com.trolltech.qt.core.Qt.ItemDataRole; import com.trolltech.qt.core.Qt.SortOrder; import com.trolltech.qt.core.Qt.WidgetAttribute; import com.trolltech.qt.gui.QAbstractItemView; @@ -100,10 +112,11 @@ import com.trolltech.qt.gui.QMainWindow; import com.trolltech.qt.gui.QMenu; import com.trolltech.qt.gui.QMessageBox; import com.trolltech.qt.gui.QMessageBox.StandardButton; +import com.trolltech.qt.gui.QPainter; +import com.trolltech.qt.gui.QPalette.ColorRole; import com.trolltech.qt.gui.QPixmap; import com.trolltech.qt.gui.QPrintDialog; import com.trolltech.qt.gui.QPrinter; -import com.trolltech.qt.gui.QProgressBar; import com.trolltech.qt.gui.QSizePolicy; import com.trolltech.qt.gui.QSizePolicy.Policy; import com.trolltech.qt.gui.QSpinBox; @@ -115,45 +128,53 @@ import com.trolltech.qt.gui.QTableWidgetItem; import com.trolltech.qt.gui.QTextEdit; import com.trolltech.qt.gui.QToolBar; import com.trolltech.qt.gui.QTreeWidgetItem; +import com.trolltech.qt.network.QNetworkAccessManager; +import com.trolltech.qt.network.QNetworkReply; +import com.trolltech.qt.network.QNetworkRequest; import com.trolltech.qt.webkit.QWebPage.WebAction; import com.trolltech.qt.webkit.QWebSettings; -import com.trolltech.qt.xml.QDomAttr; -import com.trolltech.qt.xml.QDomDocument; -import com.trolltech.qt.xml.QDomElement; -import com.trolltech.qt.xml.QDomNodeList; -import cx.fbn.nevernote.config.FileManager; import cx.fbn.nevernote.config.InitializationException; import cx.fbn.nevernote.config.StartupConfig; import cx.fbn.nevernote.dialog.AccountDialog; import cx.fbn.nevernote.dialog.ConfigDialog; +import cx.fbn.nevernote.dialog.DBEncryptDialog; import cx.fbn.nevernote.dialog.DatabaseLoginDialog; import cx.fbn.nevernote.dialog.DatabaseStatus; import cx.fbn.nevernote.dialog.FindDialog; +import cx.fbn.nevernote.dialog.IgnoreSync; import cx.fbn.nevernote.dialog.LoginDialog; import cx.fbn.nevernote.dialog.NotebookArchive; import cx.fbn.nevernote.dialog.NotebookEdit; import cx.fbn.nevernote.dialog.OnlineNoteHistory; +import cx.fbn.nevernote.dialog.PublishNotebook; import cx.fbn.nevernote.dialog.SavedSearchEdit; +import cx.fbn.nevernote.dialog.SetIcon; +import cx.fbn.nevernote.dialog.ShareNotebook; +import cx.fbn.nevernote.dialog.StackNotebook; import cx.fbn.nevernote.dialog.TagEdit; import cx.fbn.nevernote.dialog.ThumbnailViewer; +import cx.fbn.nevernote.dialog.UpgradeAvailableDialog; import cx.fbn.nevernote.dialog.WatchFolder; -import cx.fbn.nevernote.filters.EnSearch; +import cx.fbn.nevernote.filters.FilterEditorNotebooks; +import cx.fbn.nevernote.filters.FilterEditorTags; import cx.fbn.nevernote.gui.AttributeTreeWidget; import cx.fbn.nevernote.gui.BrowserWindow; import cx.fbn.nevernote.gui.DateAttributeFilterTable; +import cx.fbn.nevernote.gui.ExternalBrowse; import cx.fbn.nevernote.gui.MainMenuBar; import cx.fbn.nevernote.gui.NotebookTreeWidget; -import cx.fbn.nevernote.gui.PDFPreview; import cx.fbn.nevernote.gui.SavedSearchTreeWidget; import cx.fbn.nevernote.gui.TableView; import cx.fbn.nevernote.gui.TagTreeWidget; import cx.fbn.nevernote.gui.Thumbnailer; import cx.fbn.nevernote.gui.TrashTreeWidget; +import cx.fbn.nevernote.gui.controls.QuotaProgressBar; import cx.fbn.nevernote.sql.DatabaseConnection; import cx.fbn.nevernote.sql.WatchFolderRecord; import cx.fbn.nevernote.threads.IndexRunner; import cx.fbn.nevernote.threads.SyncRunner; +import cx.fbn.nevernote.threads.ThumbnailRunner; import cx.fbn.nevernote.utilities.AESEncrypter; import cx.fbn.nevernote.utilities.ApplicationLogger; import cx.fbn.nevernote.utilities.FileImporter; @@ -162,7 +183,7 @@ import cx.fbn.nevernote.utilities.ListManager; import cx.fbn.nevernote.utilities.SyncTimes; import cx.fbn.nevernote.xml.ExportData; import cx.fbn.nevernote.xml.ImportData; -import cx.fbn.nevernote.xml.XMLInsertHilight; +import cx.fbn.nevernote.xml.NoteFormatter; public class NeverNote extends QMainWindow{ @@ -179,6 +200,7 @@ public class NeverNote extends QMainWindow{ QAction trayExitAction; // Exit the application QAction trayShowAction; // toggle the show/hide action QAction trayAddNoteAction; // Add a note from the system tray + QNetworkAccessManager versionChecker; // Used when checking for new versions NotebookTreeWidget notebookTree; // List of notebooks AttributeTreeWidget attributeTree; // List of note attributes @@ -188,23 +210,25 @@ public class NeverNote extends QMainWindow{ TableView noteTableView; // List of notes (the widget). public BrowserWindow browserWindow; // Window containing browser & labels - QToolBar toolBar; // The tool bar under the menu -// QLineEdit searchField; // The search filter bar on the toolbar + public QToolBar toolBar; // The tool bar under the menu QComboBox searchField; // search filter bar on the toolbar; boolean searchPerformed = false; // Search was done? - QProgressBar quotaBar; // The current quota usage + QuotaProgressBar quotaBar; // The current quota usage ApplicationLogger logger; List selectedNotebookGUIDs; // List of notebook GUIDs List selectedTagGUIDs; // List of selected tag GUIDs List selectedNoteGUIDs; // List of selected notes String selectedSavedSearchGUID; // Currently selected saved searches + private final HashMap externalWindows; // Notes being edited by an external window; NoteFilter filter; // Note filter String currentNoteGuid; // GUID of the current note Note currentNote; // The currently viewed note boolean noteDirty; // Has the note been changed? - boolean inkNote; // if this is an ink note, it is read only + boolean inkNote; // if this is an ink note, it is read only + boolean readOnly; // Is this note read-only? + ListManager listManager; // DB runnable task @@ -217,11 +241,14 @@ public class NeverNote extends QMainWindow{ QTimer syncTimer; // Sync on an interval QTimer syncDelayTimer; // Sync delay to free up database SyncRunner syncRunner; // thread to do a sync. - QThread syncThread; + QThread syncThread; // Thread which talks to evernote + ThumbnailRunner thumbnailRunner; // Runner for thumbnail thread + QThread thumbnailThread; // Thread that generates pretty pictures QTimer saveTimer; // Timer to save note contents QTimer authTimer; // Refresh authentication QTimer externalFileSaveTimer; // Save files altered externally + QTimer thumbnailTimer; // Wakeup & scan for thumbnails List externalFiles; // External files to save later List importFilesKeep; // Auto-import files to save later List importFilesDelete; // Auto-import files to save later @@ -241,9 +268,9 @@ public class NeverNote extends QMainWindow{ QAction downButton; // Go to the next item in the list QAction upButton; // Go to the prev. item in the list; QAction synchronizeButton; // Synchronize with Evernote - List synchronizeAnimation; // Synchronize movie + QAction allNotesButton; // Reset & view all notes QTimer synchronizeAnimationTimer; // Timer to change animation button - int synchronizeFrame; // Current frame being viewed + int synchronizeIconAngle; // Used to rotate sync icon QAction printButton; // Print Button QAction tagButton; // Tag edit button QAction attributeButton; // Attribute information button @@ -274,12 +301,24 @@ public class NeverNote extends QMainWindow{ int saveThreadDeadCount=0; // number of consecutive dead times for the save thread HashMap noteCache; // Cash of note content + HashMap readOnlyCache; // List of cashe notes that are read-only + HashMap inkNoteCache; // List of cache notes that are ink notes List historyGuids; // GUIDs of previously viewed items int historyPosition; // Position within the viewed items boolean fromHistory; // Is this from the history queue? String trashNoteGuid; // Guid to restore / set into or out of trash to save position - Thumbnailer preview; // generate preview image + List thumbGenerators; // generate preview image ThumbnailViewer thumbnailViewer; // View preview thumbnail; + boolean encryptOnShutdown; // should I encrypt when I close? + boolean decryptOnShutdown; // should I decrypt on shutdown; + String encryptCipher; // What cipher should I use? + Signal0 minimizeToTray; + boolean windowMaximized = false; // Keep track of the window state for restores + List pdfReadyQueue; // Queue of PDFs that are ready to be rendered. + List syncIcons; // Array of icons used in sync animation + private boolean closeAction = false; // Used to say when to close or when to minimize + private static Logger log = Logger.getLogger(NeverNote.class); + String iconPath = new String("classpath:cx/fbn/nevernote/icons/"); @@ -290,16 +329,29 @@ public class NeverNote extends QMainWindow{ //*************************************************************** //*************************************************************** // Application Constructor + @SuppressWarnings("static-access") public NeverNote(DatabaseConnection dbConn) { conn = dbConn; + if (conn.getConnection() == null) { + String msg = new String(tr("Unable to connect to the database.\n\nThe most probable reason is that some other process\n" + + "is accessing the database or NeverNote is already running.\n\n" + + "Please end any other process or shutdown the other NeverNote before starting.\n\nExiting program.")); + + QMessageBox.critical(null, tr("Database Connection Error") ,msg); + System.exit(16); + } thread().setPriority(Thread.MAX_PRIORITY); logger = new ApplicationLogger("nevernote.log"); - logger.log(logger.HIGH, tr("Starting Application")); - + logger.log(logger.HIGH, "Starting Application"); + + decryptOnShutdown = false; + encryptOnShutdown = false; conn.checkDatabaseVersion(); + + // Start building the invalid XML tables Global.invalidElements = conn.getInvalidXMLTable().getInvalidElements(); List elements = conn.getInvalidXMLTable().getInvalidAttributeElements(); @@ -310,12 +362,8 @@ public class NeverNote extends QMainWindow{ logger.log(logger.EXTREME, "Starting GUI build"); - QTranslator qtTranslator = new QTranslator(); - qtTranslator.load("classpath:/translations/qt_" + QLocale.system().name() + ".qm"); - QApplication.instance().installTranslator(qtTranslator); - QTranslator nevernoteTranslator = new QTranslator(); - nevernoteTranslator.load("classpath:/translations/nevernote_"+QLocale.system().name()+ ".qm"); + nevernoteTranslator.load(Global.getFileManager().getTranslateFilePath("nevernote_" + QLocale.system().name() + ".qm")); QApplication.instance().installTranslator(nevernoteTranslator); Global.originalPalette = QApplication.palette(); @@ -323,7 +371,7 @@ public class NeverNote extends QMainWindow{ if (Global.useStandardPalette()) QApplication.setPalette(QApplication.style().standardPalette()); setWindowTitle("NeverNote"); - + mainLeftRightSplitter = new QSplitter(); setCentralWidget(mainLeftRightSplitter); leftSplitter1 = new QSplitter(); @@ -337,26 +385,26 @@ public class NeverNote extends QMainWindow{ indexRunnerCount = 1; QThreadPool.globalInstance().setMaxThreadCount(indexRunnerCount+5); // increase max thread count - logger.log(logger.EXTREME, tr("Building list manager")); - listManager = new ListManager(conn, logger, Global.mainThreadId); + logger.log(logger.EXTREME, "Building list manager"); + listManager = new ListManager(conn, logger); - logger.log(logger.EXTREME, tr("Building index runners & timers")); + logger.log(logger.EXTREME, "Building index runners & timers"); indexRunner = new IndexRunner("indexRunner.log", Global.getDatabaseUrl(), Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword); indexThread = new QThread(indexRunner, "Index Thread"); + indexRunner.indexAttachmentsLocally = Global.indexAttachmentsLocally(); indexThread.start(); synchronizeAnimationTimer = new QTimer(); synchronizeAnimationTimer.timeout.connect(this, "updateSyncButton()"); indexTimer = new QTimer(); - indexTime = 1000*60*5; // look for unindexed every 5 minutes -// indexTime = 1000*5; + indexTime = 1000*Global.getIndexThreadSleepInterval(); indexTimer.start(indexTime); // Start indexing timer indexTimer.timeout.connect(this, "indexTimer()"); indexDisabled = false; indexRunning = false; - logger.log(logger.EXTREME, tr("Setting sync thread & timers")); + logger.log(logger.EXTREME, "Setting sync thread & timers"); syncThreadsReady=1; syncRunner = new SyncRunner("syncRunner.log", Global.getDatabaseUrl(), Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword); syncTime = new SyncTimes().timeValue(Global.getSyncInterval()); @@ -378,23 +426,35 @@ public class NeverNote extends QMainWindow{ syncThread.start(); - logger.log(logger.EXTREME, tr("Starting authentication timer")); + logger.log(logger.EXTREME, "Starting thumnail thread"); + pdfReadyQueue = new ArrayList(); + thumbnailRunner = new ThumbnailRunner("thumbnailRunner.log", Global.getDatabaseUrl(), Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword); + thumbnailThread = new QThread(thumbnailRunner, "Thumbnail Thread"); + thumbnailRunner.noteSignal.thumbnailPageReady.connect(this, "thumbnailHTMLReady(String,QByteArray,Integer)"); + thumbnailThread.start(); + thumbGenerators = new ArrayList(); + thumbnailTimer = new QTimer(); + thumbnailTimer.timeout.connect(this, "thumbnailTimer()"); + thumbnailTimer(); + thumbnailTimer.setInterval(60*1000); // Thumbnail every minute + thumbnailTimer.start(); + + logger.log(logger.EXTREME, "Starting authentication timer"); authTimer = new QTimer(); authTimer.timeout.connect(this, "authTimer()"); authTimer.start(1000*60*15); syncRunner.syncSignal.authRefreshComplete.connect(this, "authRefreshComplete(boolean)"); - logger.log(logger.EXTREME, tr("Setting save note timer")); + logger.log(logger.EXTREME, "Setting save note timer"); saveTimer = new QTimer(); saveTimer.timeout.connect(this, "saveNote()"); if (Global.getAutoSaveInterval() > 0) { saveTimer.setInterval(1000*60*Global.getAutoSaveInterval()); -// saveTimer.setInterval(1000*10); // auto save every 20 seconds; saveTimer.start(); } + listManager.saveRunner.noteSignals.noteSaveRunnerError.connect(this, "saveRunnerError(String, String)"); -// Global.trace(); - logger.log(logger.EXTREME, tr("Starting external file monitor timer")); + logger.log(logger.EXTREME, "Starting external file monitor timer"); externalFileSaveTimer = new QTimer(); externalFileSaveTimer.timeout.connect(this, "externalFileEditedSaver()"); externalFileSaveTimer.setInterval(1000*5); // save every 5 seconds; @@ -403,12 +463,12 @@ public class NeverNote extends QMainWindow{ importFilesKeep = new ArrayList(); externalFileSaveTimer.start(); - notebookTree = new NotebookTreeWidget(); + notebookTree = new NotebookTreeWidget(conn); attributeTree = new AttributeTreeWidget(); tagTree = new TagTreeWidget(conn); savedSearchTree = new SavedSearchTreeWidget(); trashTree = new TrashTreeWidget(); - noteTableView = new TableView(logger); + noteTableView = new TableView(logger, listManager); QGridLayout leftGrid = new QGridLayout(); leftSplitter1.setLayout(leftGrid); @@ -420,21 +480,28 @@ public class NeverNote extends QMainWindow{ // Setup the browser window noteCache = new HashMap(); + readOnlyCache = new HashMap(); + inkNoteCache = new HashMap(); browserWindow = new BrowserWindow(conn); - browserIndexSplitter.addWidget(noteTableView); - browserIndexSplitter.addWidget(browserWindow); - mainLeftRightSplitter.addWidget(leftSplitter1); mainLeftRightSplitter.addWidget(browserIndexSplitter); - + + if (Global.getListView() == Global.View_List_Wide) { + browserIndexSplitter.addWidget(noteTableView); + browserIndexSplitter.addWidget(browserWindow); + } else { + mainLeftRightSplitter.addWidget(noteTableView); + mainLeftRightSplitter.addWidget(browserWindow); + } + searchField = new QComboBox(); searchField.setEditable(true); searchField.activatedIndex.connect(this, "searchFieldChanged()"); searchField.setDuplicatesEnabled(false); searchField.editTextChanged.connect(this,"searchFieldTextChanged(String)"); - quotaBar = new QProgressBar(); + quotaBar = new QuotaProgressBar(); // Setup the thumbnail viewer thumbnailViewer = new ThumbnailViewer(); @@ -442,6 +509,9 @@ public class NeverNote extends QMainWindow{ thumbnailViewer.downArrow.connect(this, "downAction()"); thumbnailViewer.leftArrow.connect(this, "nextViewedAction()"); thumbnailViewer.rightArrow.connect(this, "previousViewedAction()"); + + //Setup external browser manager + externalWindows = new HashMap(); listManager.loadNotesIndex(); initializeNotebookTree(); @@ -460,6 +530,7 @@ public class NeverNote extends QMainWindow{ tagTree.setDeleteAction(menuBar.tagDeleteAction); tagTree.setEditAction(menuBar.tagEditAction); tagTree.setAddAction(menuBar.tagAddAction); + tagTree.setIconAction(menuBar.tagIconAction); tagTree.setVisible(Global.isWindowVisible("tagTree")); tagTree.noteSignal.tagsAdded.connect(this, "tagsAdded(String, String)"); menuBar.hideTags.setChecked(Global.isWindowVisible("tagTree")); @@ -468,13 +539,20 @@ public class NeverNote extends QMainWindow{ notebookTree.setDeleteAction(menuBar.notebookDeleteAction); notebookTree.setEditAction(menuBar.notebookEditAction); notebookTree.setAddAction(menuBar.notebookAddAction); + notebookTree.setIconAction(menuBar.notebookIconAction); + notebookTree.setStackAction(menuBar.notebookStackAction); + notebookTree.setPublishAction(menuBar.notebookPublishAction); + notebookTree.setShareAction(menuBar.notebookShareAction); notebookTree.setVisible(Global.isWindowVisible("notebookTree")); notebookTree.noteSignal.notebookChanged.connect(this, "updateNoteNotebook(String, String)"); + notebookTree.noteSignal.tagsChanged.connect(this, "updateNoteTags(String, List)"); + notebookTree.noteSignal.tagsChanged.connect(this, "updateListTags(String, List)"); menuBar.hideNotebooks.setChecked(Global.isWindowVisible("notebookTree")); savedSearchTree.setAddAction(menuBar.savedSearchAddAction); savedSearchTree.setEditAction(menuBar.savedSearchEditAction); savedSearchTree.setDeleteAction(menuBar.savedSearchDeleteAction); + savedSearchTree.setIconAction(menuBar.savedSearchIconAction); savedSearchTree.itemSelectionChanged.connect(this, "updateSavedSearchSelection()"); savedSearchTree.setVisible(Global.isWindowVisible("savedSearchTree")); menuBar.hideSavedSearches.setChecked(Global.isWindowVisible("savedSearchTree")); @@ -490,13 +568,15 @@ public class NeverNote extends QMainWindow{ noteTableView.resetViewport.connect(this, "scrollToCurrentGuid()"); noteTableView.doubleClicked.connect(this, "listDoubleClick()"); listManager.trashSignal.countChanged.connect(trashTree, "updateCounts(Integer)"); + + quotaBar.setMouseClickAction(menuBar.accountAction); + trashTree.load(); trashTree.itemSelectionChanged.connect(this, "trashTreeSelection()"); trashTree.setEmptyAction(menuBar.emptyTrashAction); trashTree.setVisible(Global.isWindowVisible("trashTree")); menuBar.hideTrash.setChecked(Global.isWindowVisible("trashTree")); trashTree.updateCounts(listManager.getTrashCount()); - attributeTree.setVisible(Global.isWindowVisible("attributeTree")); menuBar.hideAttributes.setChecked(Global.isWindowVisible("attributeTree")); @@ -507,6 +587,8 @@ public class NeverNote extends QMainWindow{ toggleEditorButtonBar(); if (!Global.isWindowVisible("leftPanel")) menuBar.hideLeftSide.setChecked(true); + if (Global.isWindowVisible("noteInformation")) + toggleNoteInformation(); setMenuBar(menuBar); setupToolBar(); @@ -518,7 +600,7 @@ public class NeverNote extends QMainWindow{ trayExitAction = new QAction("Exit", this); trayAddNoteAction = new QAction("Add Note", this); - trayExitAction.triggered.connect(this, "close()"); + trayExitAction.triggered.connect(this, "closeNeverNote()"); trayAddNoteAction.triggered.connect(this, "addNote()"); trayShowAction.triggered.connect(this, "trayToggleVisible()"); @@ -547,7 +629,7 @@ public class NeverNote extends QMainWindow{ showColumns(); menuBar.showEditorBar.setChecked(Global.isWindowVisible("editorButtonBar")); if (menuBar.showEditorBar.isChecked()) - showEditorButtons(); + showEditorButtons(browserWindow); tagIndexUpdated(true); savedSearchIndexUpdated(); notebookIndexUpdated(); @@ -577,7 +659,7 @@ public class NeverNote extends QMainWindow{ setupFolderImports(); loadStyleSheet(); - restoreWindowState(); + restoreWindowState(true); if (Global.mimicEvernoteInterface) { notebookTree.selectGuid(""); @@ -590,14 +672,37 @@ public class NeverNote extends QMainWindow{ historyGuids.add(currentNoteGuid); historyPosition = 1; + menuBar.blockSignals(true); + menuBar.narrowListView.blockSignals(true); + menuBar.wideListView.blockSignals(true); + if (Global.getListView() == Global.View_List_Narrow) { + menuBar.narrowListView.setChecked(true); + } + else{ + menuBar.wideListView.setChecked(true); + } + menuBar.blockSignals(false); + menuBar.narrowListView.blockSignals(false); + menuBar.wideListView.blockSignals(false); + + if (Global.getListView() == Global.View_List_Wide) { + browserIndexSplitter.addWidget(noteTableView); + browserIndexSplitter.addWidget(browserWindow); + } else { + mainLeftRightSplitter.addWidget(noteTableView); + mainLeftRightSplitter.addWidget(browserWindow); + } + int sortCol = Global.getSortColumn(); int sortOrder = Global.getSortOrder(); noteTableView.sortByColumn(sortCol, SortOrder.resolve(sortOrder)); + if (Global.checkVersionUpgrade()) + checkForUpdates(); } - - + // Main entry point public static void main(String[] args) { + log.setLevel(Level.FATAL); QApplication.initialize(args); QPixmap pixmap = new QPixmap("classpath:cx/fbn/nevernote/icons/splash_logo.png"); QSplashScreen splash = new QSplashScreen(pixmap); @@ -615,7 +720,7 @@ public class NeverNote extends QMainWindow{ dbConn = setupDatabaseConnection(); // Must be last stage of setup - only safe once DB is open hence we know we are the only instance running - Global.getFileManager().purgeResDirectory(); + Global.getFileManager().purgeResDirectory(true); } catch (InitializationException e) { // Fatal @@ -627,10 +732,15 @@ public class NeverNote extends QMainWindow{ NeverNote application = new NeverNote(dbConn); application.setAttribute(WidgetAttribute.WA_DeleteOnClose, true); - if (Global.wasWindowMaximized()) - application.showMaximized(); - else - application.show(); + if (Global.startMinimized()) + application.showMinimized(); + else { + if (Global.wasWindowMaximized()) + application.showMaximized(); + else + application.show(); + } + if (showSplash) splash.finish(application); QApplication.exec(); @@ -645,8 +755,12 @@ public class NeverNote extends QMainWindow{ */ private static DatabaseConnection setupDatabaseConnection() throws InitializationException { ApplicationLogger logger = new ApplicationLogger("nevernote-database.log"); - DatabaseConnection dbConn = new DatabaseConnection(logger,Global.getDatabaseUrl(), Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword); - + + File f = Global.getFileManager().getDbDirFile(Global.databaseName + ".h2.db"); + boolean dbExists = f.exists(); + if (!dbExists) + Global.setDatabaseUrl(""); + if (Global.getDatabaseUrl().toUpperCase().indexOf("CIPHER=") > -1) { boolean goodCheck = false; while (!goodCheck) { @@ -659,28 +773,116 @@ public class NeverNote extends QMainWindow{ Global.getDatabaseUserPassword(), Global.cipherPassword); } } - return dbConn; + DatabaseConnection dbConn = new DatabaseConnection(logger,Global.getDatabaseUrl(), Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword); + return dbConn; + } + + // Encrypt the database upon shutdown + private void encryptOnShutdown() { + String dbPath= Global.getFileManager().getDbDirPath(""); + String dbName = "NeverNote"; + try { + Statement st = conn.getConnection().createStatement(); + st.execute("shutdown"); + if (QMessageBox.question(this, "Are you sure", + "Are you sure you wish to encrypt the database?", + QMessageBox.StandardButton.Yes, + QMessageBox.StandardButton.No) == StandardButton.Yes.value()) { + ChangeFileEncryption.execute(dbPath, dbName, encryptCipher, null, Global.cipherPassword.toCharArray(), true); + Global.setDatabaseUrl(Global.getDatabaseUrl() + ";CIPHER="+encryptCipher); + QMessageBox.information(this, "Encryption Complete", "Encryption is complete"); + } + } catch (SQLException e) { + e.printStackTrace(); + } + } + + // Decrypt the database upon shutdown + private void decryptOnShutdown() { + String dbPath= Global.getFileManager().getDbDirPath(""); + String dbName = "NeverNote"; + try { + Statement st = conn.getConnection().createStatement(); + st.execute("shutdown"); + if (Global.getDatabaseUrl().toUpperCase().indexOf(";CIPHER=AES") > -1) + encryptCipher = "AES"; + else + encryptCipher = "XTEA"; + if (QMessageBox.question(this, tr("Confirmation"), tr("Are you sure", + "Are you sure you wish to decrypt the database?"), + QMessageBox.StandardButton.Yes, + QMessageBox.StandardButton.No) == StandardButton.Yes.value()) { + + ChangeFileEncryption.execute(dbPath, dbName, encryptCipher, Global.cipherPassword.toCharArray(), null, true); + Global.setDatabaseUrl(""); + QMessageBox.information(this, tr("Decryption Complete"), tr("Decryption is complete")); + } + } catch (SQLException e) { + e.printStackTrace(); + } + } + /** + * Encrypt/Decrypt the local database + **/ + public void doDatabaseEncrypt() { + // The database is not currently encrypted + if (Global.getDatabaseUrl().toUpperCase().indexOf("CIPHER=") == -1) { + if (QMessageBox.question(this, tr("Confirmation"), tr("Encrypting the database is used" + + "to enhance security and is performed\nupon shutdown, but please be aware that if"+ + " you lose the password your\nis lost forever.\n\nIt is highly recommended you " + + "perform a backup and/or fully synchronize\n prior to executing this funtction.\n\n" + + "Do you wish to proceed?"), + QMessageBox.StandardButton.Yes, + QMessageBox.StandardButton.No)==StandardButton.No.value()) { + return; + } + DBEncryptDialog dialog = new DBEncryptDialog(); + dialog.exec(); + if (dialog.okPressed()) { + Global.cipherPassword = dialog.getPassword(); + encryptOnShutdown = true; + encryptCipher = dialog.getEncryptionMethod(); + } + } else { + DBEncryptDialog dialog = new DBEncryptDialog(); + dialog.setWindowTitle("Database Decryption"); + dialog.hideEncryption(); + dialog.exec(); + if (dialog.okPressed()) { + if (!dialog.getPassword().equals(Global.cipherPassword)) { + QMessageBox.critical(null, tr("Incorrect Password"), tr("Incorrect Password")); + return; + } + decryptOnShutdown = true; + encryptCipher = ""; + } + } + return; } private static void initializeGlobalSettings(String[] args) throws InitializationException { - StartupConfig startupConfig = new StartupConfig(); - - for (String arg : args) { - String lower = arg.toLowerCase(); - if (lower.startsWith("--name=")) - startupConfig.setName(arg.substring(arg.indexOf('=') + 1)); - if (lower.startsWith("--home=")) - startupConfig.setHomeDirPath(arg.substring(arg.indexOf('=') + 1)); - if (lower.startsWith("--disable-viewing")) - startupConfig.setDisableViewing(true); - } + StartupConfig startupConfig = new StartupConfig(); - Global.setup(startupConfig); + for (String arg : args) { + String lower = arg.toLowerCase(); + if (lower.startsWith("--name=")) + startupConfig.setName(arg.substring(arg.indexOf('=') + 1)); + if (lower.startsWith("--home=")) + startupConfig.setHomeDirPath(arg.substring(arg.indexOf('=') + 1)); + if (lower.startsWith("--disable-viewing")) + startupConfig.setDisableViewing(true); } + Global.setup(startupConfig); + } // Exit point @Override public void closeEvent(QCloseEvent event) { + if (Global.minimizeOnClose() && !closeAction && Global.showTrayIcon()) { + event.ignore(); + hide(); + return; + } logger.log(logger.HIGH, "Entering NeverNote.closeEvent"); waitCursor(true); @@ -689,18 +891,32 @@ public class NeverNote extends QMainWindow{ conn.getNoteTable().updateNoteTitle(currentNote.getGuid(), browserWindow.getTitle()); } saveNote(); - setMessage("Beginning shutdown."); - + setMessage(tr("Beginning shutdown.")); + + // Close down external windows + Collection windows = externalWindows.values(); + Iterator iterator = windows.iterator(); + while (iterator.hasNext()) { + ExternalBrowse browser = iterator.next(); + browser.windowClosing.disconnect(); + browser.close(); + } + + externalFileEditedSaver(); if (Global.isConnected && Global.synchronizeOnClose()) { - setMessage("Performing synchronization before closing."); + setMessage(tr("Performing synchronization before closing.")); syncRunner.addWork("SYNC"); } setMessage("Closing Program."); threadMonitorTimer.stop(); syncRunner.addWork("STOP"); + syncRunner.keepRunning = false; + thumbnailRunner.addWork("STOP"); + syncRunner.keepRunning = false; indexRunner.addWork("STOP"); + syncRunner.keepRunning = false; saveNote(); listManager.stop(); saveWindowState(); @@ -719,26 +935,9 @@ public class NeverNote extends QMainWindow{ syncRunner.notebookSignal.listChanged.disconnect(); syncRunner.noteIndexSignal.listChanged.disconnect(); - - int position = noteTableView.header.visualIndex(Global.noteTableCreationPosition); - Global.setColumnPosition("noteTableCreationPosition", position); - position = noteTableView.header.visualIndex(Global.noteTableTagPosition); - Global.setColumnPosition("noteTableTagPosition", position); - position = noteTableView.header.visualIndex(Global.noteTableNotebookPosition); - Global.setColumnPosition("noteTableNotebookPosition", position); - position = noteTableView.header.visualIndex(Global.noteTableChangedPosition); - Global.setColumnPosition("noteTableChangedPosition", position); - position = noteTableView.header.visualIndex(Global.noteTableAuthorPosition); - Global.setColumnPosition("noteTableAuthorPosition", position); - position = noteTableView.header.visualIndex(Global.noteTableSourceUrlPosition); - Global.setColumnPosition("noteTableSourceUrlPosition", position); - position = noteTableView.header.visualIndex(Global.noteTableSubjectDatePosition); - Global.setColumnPosition("noteTableSubjectDatePosition", position); - position = noteTableView.header.visualIndex(Global.noteTableTitlePosition); - Global.setColumnPosition("noteTableTitlePosition", position); - position = noteTableView.header.visualIndex(Global.noteTableSynchronizedPosition); - Global.setColumnPosition("noteTableSynchronizedPosition", position); - + if (isVisible()) + Global.saveWindowVisible("toolBar", toolBar.isVisible()); + saveNoteColumnPositions(); saveNoteIndexWidth(); int width = notebookTree.columnWidth(0); @@ -759,8 +958,12 @@ public class NeverNote extends QMainWindow{ Global.keepRunning = false; try { logger.log(logger.MEDIUM, "Waiting for indexThread to stop"); - indexRunner.thread().join(50); - logger.log(logger.MEDIUM, "Index thread has stopped"); + if (indexRunner.thread().isAlive()) + indexRunner.thread().join(50); + if (!indexRunner.thread().isAlive()) + logger.log(logger.MEDIUM, "Index thread has stopped"); + else + logger.log(logger.MEDIUM, "Index thread still running - bypassing"); } catch (InterruptedException e1) { e1.printStackTrace(); } @@ -774,9 +977,20 @@ public class NeverNote extends QMainWindow{ } } + if (encryptOnShutdown) { + encryptOnShutdown(); + } + if (decryptOnShutdown) { + decryptOnShutdown(); + } logger.log(logger.HIGH, "Leaving NeverNote.closeEvent"); } + @SuppressWarnings("unused") + private void closeNeverNote() { + closeAction = true; + close(); + } public void setMessage(String s) { logger.log(logger.HIGH, "Entering NeverNote.setMessage"); logger.log(logger.HIGH, "Message: " +s); @@ -786,16 +1000,21 @@ public class NeverNote extends QMainWindow{ } private void waitCursor(boolean wait) { - if (wait) - QApplication.setOverrideCursor(new QCursor(Qt.CursorShape.WaitCursor)); - else - QApplication.restoreOverrideCursor(); + if (wait) { + if (QApplication.overrideCursor() == null) + QApplication.setOverrideCursor(new QCursor(Qt.CursorShape.WaitCursor)); + } + else { + while (QApplication.overrideCursor() != null) + QApplication.restoreOverrideCursor(); + } } private void setupIndexListeners() { - indexRunner.noteSignal.noteIndexed.connect(this, "indexThreadComplete(String)"); - indexRunner.resourceSignal.resourceIndexed.connect(this, "indexThreadComplete(String)"); -// indexRunner.threadSignal.indexNeeded.connect(listManager, "setIndexNeeded(String, String, Boolean)"); +// indexRunner.noteSignal.noteIndexed.connect(this, "indexThreadComplete(String)"); +// indexRunner.resourceSignal.resourceIndexed.connect(this, "indexThreadComplete(String)"); + indexRunner.signal.indexStarted.connect(this, "indexStarted()"); + indexRunner.signal.indexFinished.connect(this, "indexComplete()"); } private void setupSyncSignalListeners() { syncRunner.tagSignal.listChanged.connect(this, "tagIndexUpdated()"); @@ -804,47 +1023,40 @@ public class NeverNote extends QMainWindow{ syncRunner.noteIndexSignal.listChanged.connect(this, "noteIndexUpdated(boolean)"); syncRunner.noteSignal.quotaChanged.connect(this, "updateQuotaBar()"); -// syncRunner.syncSignal.setSequenceDate.connect(this,"setSequenceDate(long)"); syncRunner.syncSignal.saveUploadAmount.connect(this,"saveUploadAmount(long)"); -// syncRunner.syncSignal.setUpdateSequenceNumber.connect(this,"setUpdateSequenceNumber(int)"); syncRunner.syncSignal.saveUserInformation.connect(this,"saveUserInformation(User)"); syncRunner.syncSignal.saveEvernoteUpdateCount.connect(this,"saveEvernoteUpdateCount(int)"); syncRunner.noteSignal.guidChanged.connect(this, "noteGuidChanged(String, String)"); syncRunner.noteSignal.noteChanged.connect(this, "invalidateNoteCache(String, String)"); syncRunner.resourceSignal.resourceGuidChanged.connect(this, "noteResourceGuidChanged(String,String,String)"); + syncRunner.noteSignal.noteDownloaded.connect(listManager, "noteDownloaded(Note)"); syncRunner.syncSignal.refreshLists.connect(this, "refreshLists()"); } private void setupBrowserSignalListeners() { - - browserWindow.fileWatcher.fileChanged.connect(this, "externalFileEdited(String)"); - browserWindow.noteSignal.tagsChanged.connect(this, "updateNoteTags(String, List)"); - browserWindow.noteSignal.tagsChanged.connect(this, "updateListTags(String, List)"); - browserWindow.noteSignal.noteChanged.connect(this, "invalidateNoteCache(String, String)"); - browserWindow.noteSignal.noteChanged.connect(this, "setNoteDirty()"); - browserWindow.noteSignal.titleChanged.connect(listManager, "updateNoteTitle(String, String)"); - browserWindow.noteSignal.titleChanged.connect(this, "updateListTitle(String, String)"); - browserWindow.noteSignal.notebookChanged.connect(this, "updateNoteNotebook(String, String)"); - browserWindow.noteSignal.createdDateChanged.connect(listManager, "updateNoteCreatedDate(String, QDateTime)"); - browserWindow.noteSignal.createdDateChanged.connect(this, "updateListDateCreated(String, QDateTime)"); - browserWindow.noteSignal.alteredDateChanged.connect(listManager, "updateNoteAlteredDate(String, QDateTime)"); - browserWindow.noteSignal.alteredDateChanged.connect(this, "updateListDateChanged(String, QDateTime)"); - browserWindow.noteSignal.subjectDateChanged.connect(listManager, "updateNoteSubjectDate(String, QDateTime)"); - browserWindow.noteSignal.subjectDateChanged.connect(this, "updateListDateSubject(String, QDateTime)"); - browserWindow.noteSignal.authorChanged.connect(listManager, "updateNoteAuthor(String, String)"); - browserWindow.noteSignal.geoChanged.connect(listManager, "updateNoteGeoTag(String, Double,Double,Double)"); - browserWindow.noteSignal.authorChanged.connect(this, "updateListAuthor(String, String)"); - browserWindow.noteSignal.geoChanged.connect(this, "setNoteDirty()"); - browserWindow.noteSignal.sourceUrlChanged.connect(listManager, "updateNoteSourceUrl(String, String)"); - browserWindow.noteSignal.sourceUrlChanged.connect(this, "updateListSourceUrl(String, String)"); - browserWindow.focusLost.connect(this, "saveNote()"); - browserWindow.resourceSignal.contentChanged.connect(this, "externalFileEdited(String)"); -// browserWindow.resourceSignal.externalFileEdit.connect(this, "saveResourceLater(String, String)"); + setupBrowserWindowListeners(browserWindow, true); } - + private void setupBrowserWindowListeners(BrowserWindow browser, boolean master) { + browser.fileWatcher.fileChanged.connect(this, "externalFileEdited(String)"); + browser.noteSignal.tagsChanged.connect(this, "updateNoteTags(String, List)"); + browser.noteSignal.tagsChanged.connect(this, "updateListTags(String, List)"); + if (master) browser.noteSignal.noteChanged.connect(this, "setNoteDirty()"); + browser.noteSignal.titleChanged.connect(listManager, "updateNoteTitle(String, String)"); + browser.noteSignal.titleChanged.connect(this, "updateNoteTitle(String, String)"); + browser.noteSignal.notebookChanged.connect(this, "updateNoteNotebook(String, String)"); + browser.noteSignal.createdDateChanged.connect(listManager, "updateNoteCreatedDate(String, QDateTime)"); + browser.noteSignal.alteredDateChanged.connect(listManager, "updateNoteAlteredDate(String, QDateTime)"); + browser.noteSignal.subjectDateChanged.connect(listManager, "updateNoteSubjectDate(String, QDateTime)"); + browser.noteSignal.authorChanged.connect(listManager, "updateNoteAuthor(String, String)"); + browser.noteSignal.geoChanged.connect(listManager, "updateNoteGeoTag(String, Double,Double,Double)"); + browser.noteSignal.geoChanged.connect(this, "setNoteDirty()"); + browser.noteSignal.sourceUrlChanged.connect(listManager, "updateNoteSourceUrl(String, String)"); + if (master) browser.focusLost.connect(this, "saveNote()"); + browser.resourceSignal.contentChanged.connect(this, "externalFileEdited(String)"); + } //*************************************************************** //*************************************************************** @@ -854,18 +1066,25 @@ public class NeverNote extends QMainWindow{ @SuppressWarnings("unused") private void settings() { logger.log(logger.HIGH, "Entering NeverNote.settings"); + saveNoteColumnPositions(); + saveNoteIndexWidth(); + showColumns(); ConfigDialog settings = new ConfigDialog(this); String dateFormat = Global.getDateFormat(); String timeFormat = Global.getTimeFormat(); + indexTime = 1000*Global.getIndexThreadSleepInterval(); + indexTimer.start(indexTime); // reset indexing timer + settings.exec(); + indexRunner.indexAttachmentsLocally = Global.indexAttachmentsLocally(); if (Global.showTrayIcon()) trayIcon.show(); else trayIcon.hide(); showColumns(); if (menuBar.showEditorBar.isChecked()) - showEditorButtons(); + showEditorButtons(browserWindow); // Reset the save timer if (Global.getAutoSaveInterval() > 0) @@ -877,13 +1096,15 @@ public class NeverNote extends QMainWindow{ // if (!dateFormat.equals(Global.getDateFormat()) || // !timeFormat.equals(Global.getTimeFormat())) { noteCache.clear(); + readOnlyCache.clear(); + inkNoteCache.clear(); noteIndexUpdated(true); // } logger.log(logger.HIGH, "Leaving NeverNote.settings"); } // Restore things to the way they were - private void restoreWindowState() { + private void restoreWindowState(boolean mainWindow) { // We need to name things or this doesn't work. setObjectName("NeverNote"); mainLeftRightSplitter.setObjectName("mainLeftRightSplitter"); @@ -891,7 +1112,8 @@ public class NeverNote extends QMainWindow{ leftSplitter1.setObjectName("leftSplitter1"); // Restore the actual positions. - restoreGeometry(Global.restoreGeometry(objectName())); + if (mainWindow) + restoreGeometry(Global.restoreGeometry(objectName())); mainLeftRightSplitter.restoreState(Global.restoreState(mainLeftRightSplitter.objectName())); browserIndexSplitter.restoreState(Global.restoreState(browserIndexSplitter.objectName())); leftSplitter1.restoreState(Global.restoreState(leftSplitter1.objectName())); @@ -913,6 +1135,32 @@ public class NeverNote extends QMainWindow{ file.close(); setStyleSheet(styleSheet); } + // Save column positions for the next time + private void saveNoteColumnPositions() { + int position = noteTableView.header.visualIndex(Global.noteTableCreationPosition); + Global.setColumnPosition("noteTableCreationPosition", position); + position = noteTableView.header.visualIndex(Global.noteTableTagPosition); + Global.setColumnPosition("noteTableTagPosition", position); + position = noteTableView.header.visualIndex(Global.noteTableNotebookPosition); + Global.setColumnPosition("noteTableNotebookPosition", position); + position = noteTableView.header.visualIndex(Global.noteTableChangedPosition); + Global.setColumnPosition("noteTableChangedPosition", position); + position = noteTableView.header.visualIndex(Global.noteTableAuthorPosition); + Global.setColumnPosition("noteTableAuthorPosition", position); + position = noteTableView.header.visualIndex(Global.noteTableSourceUrlPosition); + Global.setColumnPosition("noteTableSourceUrlPosition", position); + position = noteTableView.header.visualIndex(Global.noteTableSubjectDatePosition); + Global.setColumnPosition("noteTableSubjectDatePosition", position); + position = noteTableView.header.visualIndex(Global.noteTableTitlePosition); + Global.setColumnPosition("noteTableTitlePosition", position); + position = noteTableView.header.visualIndex(Global.noteTableSynchronizedPosition); + Global.setColumnPosition("noteTableSynchronizedPosition", position); + position = noteTableView.header.visualIndex(Global.noteTableGuidPosition); + Global.setColumnPosition("noteTableGuidPosition", position); + position = noteTableView.header.visualIndex(Global.noteTableThumbnailPosition); + Global.setColumnPosition("noteTableThumbnailPosition", position); + + } // Save column widths for the next time private void saveNoteIndexWidth() { int width; @@ -936,6 +1184,10 @@ public class NeverNote extends QMainWindow{ Global.setColumnWidth("noteTableSubjectDatePosition", width); width = noteTableView.getColumnWidth(Global.noteTableSynchronizedPosition); Global.setColumnWidth("noteTableSynchronizedPosition", width); + width = noteTableView.getColumnWidth(Global.noteTableThumbnailPosition); + Global.setColumnWidth("noteTableThumbnailPosition", width); + width = noteTableView.getColumnWidth(Global.noteTableGuidPosition); + Global.setColumnWidth("noteTableGuidPosition", width); } @@ -947,13 +1199,12 @@ public class NeverNote extends QMainWindow{ // Setup the tree containing the user's notebooks. private void initializeNotebookTree() { logger.log(logger.HIGH, "Entering NeverNote.initializeNotebookTree"); - notebookTree.itemSelectionChanged.connect(this, "notebookTreeSelection()"); +// notebookTree.itemClicked.connect(this, "notebookTreeSelection()"); + notebookTree.selectionSignal.connect(this, "notebookTreeSelection()"); listManager.notebookSignal.refreshNotebookTreeCounts.connect(notebookTree, "updateCounts(List, List)"); - // notebookTree.resize(Global.getSize("notebookTree")); logger.log(logger.HIGH, "Leaving NeverNote.initializeNotebookTree"); } // Listener when a notebook is selected - @SuppressWarnings("unused") private void notebookTreeSelection() { logger.log(logger.HIGH, "Entering NeverNote.notebookTreeSelection"); @@ -964,35 +1215,44 @@ public class NeverNote extends QMainWindow{ clearTagFilter(); searchField.clear(); } - menuBar.noteRestoreAction.setVisible(false); menuBar.notebookEditAction.setEnabled(true); menuBar.notebookDeleteAction.setEnabled(true); + menuBar.notebookPublishAction.setEnabled(true); + menuBar.notebookShareAction.setEnabled(true); + menuBar.notebookIconAction.setEnabled(true); + menuBar.notebookStackAction.setEnabled(true); List selections = notebookTree.selectedItems(); - QTreeWidgetItem currentSelection; selectedNotebookGUIDs.clear(); - if (!Global.mimicEvernoteInterface) { - for (int i=0; i 0) { + guid = (selections.get(0).text(2)); + stackName = selections.get(0).text(0); + } + if (!Global.mimicEvernoteInterface) { + // If no notebooks are selected, we make it look like the "all notebooks" one was selected + if (selections.size()==0) { + selectedNotebookGUIDs.clear(); + for (int i=0; i < listManager.getNotebookIndex().size(); i++) { + selectedNotebookGUIDs.add(listManager.getNotebookIndex().get(i).getGuid()); + } + menuBar.notebookEditAction.setEnabled(false); + menuBar.notebookDeleteAction.setEnabled(false); + menuBar.notebookStackAction.setEnabled(false); + menuBar.notebookIconAction.setEnabled(false); + } + } + if (!guid.equals("") && !guid.equals("STACK")) { + selectedNotebookGUIDs.add(guid); + menuBar.notebookIconAction.setEnabled(true); } else { - String guid = ""; - if (selections.size() > 0) - guid = (selections.get(0).text(2)); - if (!guid.equals("")) - selectedNotebookGUIDs.add(guid); + menuBar.notebookIconAction.setEnabled(true); + for (int j=0; j icons = conn.getNotebookTable().getAllIcons(); + notebookTree.setIcons(icons); + + if (selectedNotebookGUIDs == null) selectedNotebookGUIDs = new ArrayList(); List books = conn.getNotebookTable().getAll(); for (int i=books.size()-1; i>=0; i--) { @@ -1084,29 +1349,107 @@ public class NeverNote extends QMainWindow{ } // Edit an existing notebook @SuppressWarnings("unused") + private void stackNotebook() { + logger.log(logger.HIGH, "Entering NeverNote.stackNotebook"); + StackNotebook edit = new StackNotebook(); + + List selections = notebookTree.selectedItems(); + QTreeWidgetItem currentSelection; + for (int i=0; i selections = notebookTree.selectedItems(); QTreeWidgetItem currentSelection; currentSelection = selections.get(0); edit.setNotebook(currentSelection.text(0)); - edit.setNotebooks(listManager.getNotebookIndex()); + + String guid = currentSelection.text(2); + if (!guid.equalsIgnoreCase("STACK")) { + edit.setTitle(tr("Edit Notebook")); + edit.setNotebooks(listManager.getNotebookIndex()); + edit.setLocalCheckboxEnabled(false); + for (int i=0; i filteredBooks = notebookFilter.getValidNotebooks(currentNote, listManager.getNotebookIndex()); + browserWindow.setNotebookList(filteredBooks); + Iterator set = externalWindows.keySet().iterator(); + while(set.hasNext()) + externalWindows.get(set.next()).getBrowserWindow().setNotebookList(filteredBooks); logger.log(logger.HIGH, "Leaving NeverNote.editNotebook"); } + // Publish a notebook + @SuppressWarnings("unused") + private void publishNotebook() { + List selections = notebookTree.selectedItems(); + QTreeWidgetItem currentSelection; + currentSelection = selections.get(0); + String guid = currentSelection.text(2); + + if (guid.equalsIgnoreCase("STACK") || guid.equalsIgnoreCase("")) + return; + + Notebook n = null; + int position = 0; + for (int i=0; i selections = notebookTree.selectedItems(); + QTreeWidgetItem currentSelection; + currentSelection = selections.get(0); + String guid = currentSelection.text(2); + + if (guid.equalsIgnoreCase("STACK") || guid.equalsIgnoreCase("")) + return; + + Notebook n = null;; + for (int i=0; i selections = notebookTree.selectedItems(); @@ -1137,28 +1552,44 @@ public class NeverNote extends QMainWindow{ QTreeWidgetItem currentSelection; currentSelection = selections.get(i); String guid = currentSelection.text(2); - for (int j=0; j=0; i--) { - // if (dbRunner.getLocalNotebooks().get(i).equals(arg0)) - // } - notebookTree.load(listManager.getNotebookIndex(), listManager.getLocalNotebooks()); - listManager.countNotebookResults(listManager.getNoteIndex()); -// notebookTree.updateCounts(listManager.getNotebookIndex(), listManager.getNotebookCounter()); + + notebookIndexUpdated(); +// notebookTreeSelection(); +// notebookTree.load(listManager.getNotebookIndex(), listManager.getLocalNotebooks()); +// listManager.countNotebookResults(listManager.getNoteIndex()); logger.log(logger.HIGH, "Entering NeverNote.deleteNotebook"); } // A note's notebook has been updated @@ -1194,7 +1629,7 @@ public class NeverNote extends QMainWindow{ for (int i=0; i filteredBooks = notebookFilter.getValidNotebooks(currentNote, listManager.getNotebookIndex()); + browserWindow.setNotebookList(filteredBooks); + + // Update any external windows + Iterator set = externalWindows.keySet().iterator(); + while(set.hasNext()) + externalWindows.get(set.next()).getBrowserWindow().setNotebookList(filteredBooks); + waitCursor(false); - browserWindow.setNotebookList(nbooks); } + // Change the notebook's icon + @SuppressWarnings("unused") + private void setNotebookIcon() { + boolean stackSelected = false; + boolean allNotebookSelected = false; + + QTreeWidgetItem currentSelection; + List selections = notebookTree.selectedItems(); + if (selections.size() == 0) + return; + + currentSelection = selections.get(0); + String guid = currentSelection.text(2); + if (guid.equalsIgnoreCase("")) + allNotebookSelected = true; + if (guid.equalsIgnoreCase("STACK")) + stackSelected = true; + QIcon currentIcon = currentSelection.icon(0); + QIcon icon; + SetIcon dialog; + + if (!stackSelected && !allNotebookSelected) { + icon = conn.getNotebookTable().getIcon(guid); + if (icon == null) { + dialog = new SetIcon(currentIcon); + dialog.setUseDefaultIcon(true); + } else { + dialog = new SetIcon(icon); + dialog.setUseDefaultIcon(false); + } + } else { + if (stackSelected) { + icon = conn.getSystemIconTable().getIcon(currentSelection.text(0), "STACK"); + } else { + icon = conn.getSystemIconTable().getIcon(currentSelection.text(0), "ALLNOTEBOOK"); + } + if (icon == null) { + dialog = new SetIcon(currentIcon); + dialog.setUseDefaultIcon(true); + } else { + dialog = new SetIcon(icon); + dialog.setUseDefaultIcon(false); + } + } + dialog.exec(); + if (dialog.okPressed()) { + QIcon newIcon = dialog.getIcon(); + if (stackSelected) { + conn.getSystemIconTable().setIcon(currentSelection.text(0), "STACK", newIcon, dialog.getFileType()); + if (newIcon == null) { + newIcon = new QIcon(iconPath+"books2.png"); + } + currentSelection.setIcon(0,newIcon); + return; + } + if (allNotebookSelected) { + conn.getSystemIconTable().setIcon(currentSelection.text(0), "ALLNOTEBOOK", newIcon, dialog.getFileType()); + if (newIcon == null) { + newIcon = new QIcon(iconPath+"notebook-green.png"); + } + currentSelection.setIcon(0,newIcon); + return; + } + conn.getNotebookTable().setIcon(guid, newIcon, dialog.getFileType()); + if (newIcon == null) { + boolean isPublished = false;; + boolean found = false; + for (int i=0; i 0 @@ -1354,7 +1880,7 @@ public class NeverNote extends QMainWindow{ private void deleteTag() { logger.log(logger.HIGH, "Entering NeverNote.deleteTag"); - if (QMessageBox.question(this, "Confirmation", "Delete the selected tags?", + if (QMessageBox.question(this, tr("Confirmation"), tr("Delete the selected tags?"), QMessageBox.StandardButton.Yes, QMessageBox.StandardButton.No)==StandardButton.No.value()) { return; @@ -1367,6 +1893,7 @@ public class NeverNote extends QMainWindow{ removeTagItem(currentSelection.text(2)); } tagIndexUpdated(true); + tagTreeSelection(); listManager.countTagResults(listManager.getNoteIndex()); // tagTree.updateCounts(listManager.getTagCounter()); logger.log(logger.HIGH, "Leaving NeverNote.deleteTag"); @@ -1393,19 +1920,16 @@ public class NeverNote extends QMainWindow{ // Setup the tree containing the user's tags private void initializeTagTree() { logger.log(logger.HIGH, "Entering NeverNote.initializeTagTree"); - tagTree.itemSelectionChanged.connect(this, "tagTreeSelection()"); +// tagTree.itemSelectionChanged.connect(this, "tagTreeSelection()"); +// tagTree.itemClicked.connect(this, "tagTreeSelection()"); + tagTree.selectionSignal.connect(this, "tagTreeSelection()"); listManager.tagSignal.refreshTagTreeCounts.connect(tagTree, "updateCounts(List)"); logger.log(logger.HIGH, "Leaving NeverNote.initializeTagTree"); } // Listener when a tag is selected - @SuppressWarnings("unused") private void tagTreeSelection() { logger.log(logger.HIGH, "Entering NeverNote.tagTreeSelection"); - - List x = tagTree.selectedItems(); - for (int i=0; i 0) { menuBar.tagEditAction.setEnabled(true); menuBar.tagDeleteAction.setEnabled(true); + menuBar.tagIconAction.setEnabled(true); } else { menuBar.tagEditAction.setEnabled(false); menuBar.tagDeleteAction.setEnabled(false); + menuBar.tagIconAction.setEnabled(true); } listManager.setSelectedTags(selectedTagGUIDs); listManager.loadNotesIndex(); @@ -1441,11 +1967,14 @@ public class NeverNote extends QMainWindow{ logger.log(logger.HIGH, "Entering NeverNote.tagIndexUpdated"); if (selectedTagGUIDs == null) selectedTagGUIDs = new ArrayList(); -// selectedTagGUIDs.clear(); // clear out old entries + if (reload) + listManager.reloadTagIndex(); tagTree.blockSignals(true); - if (reload) + if (reload) { + tagTree.setIcons(conn.getTagTable().getAllIcons()); tagTree.load(listManager.getTagIndex()); + } for (int i=selectedTagGUIDs.size()-1; i>=0; i--) { boolean found = tagTree.selectGuid(selectedTagGUIDs.get(i)); if (!found) @@ -1534,25 +2063,31 @@ public class NeverNote extends QMainWindow{ if (tagName == null) return; - for (int i=0; i ix = noteTableView.model.itemData(modelIndex); - String titleGuid = (String)ix.values().toArray()[0]; - if (titleGuid.equals(noteGuid)) { - String text = (String)noteTableView.model.data(i, Global.noteTableTagPosition); - if (!text.trim().equals("")) - text = text + Global.tagDelimeter + " " +tagName; - else - text = tagName; - noteTableView.model.setData(i, Global.noteTableTagPosition, text); - noteTableView.model.setData(i, Global.noteTableSynchronizedPosition, "false"); - if (noteGuid.equals(currentNoteGuid)) - browserWindow.setTag(text); - i=noteTableView.model.rowCount(); + for (int i=0; i tagNames = new ArrayList(); + tagNames.add(new String(tagName)); + Note n = listManager.getMasterNoteIndex().get(i); + for (int j=0; j selections = tagTree.selectedItems(); + if (selections.size() == 0) + return; + + currentSelection = selections.get(0); + String guid = currentSelection.text(2); + + QIcon currentIcon = currentSelection.icon(0); + QIcon icon = conn.getTagTable().getIcon(guid); + SetIcon dialog; + if (icon == null) { + dialog = new SetIcon(currentIcon); + dialog.setUseDefaultIcon(true); + } else { + dialog = new SetIcon(icon); + dialog.setUseDefaultIcon(false); + } + dialog.exec(); + if (dialog.okPressed()) { + QIcon newIcon = dialog.getIcon(); + conn.getTagTable().setIcon(guid, newIcon, dialog.getFileType()); + if (newIcon == null) + newIcon = new QIcon(iconPath+"tag.png"); + currentSelection.setIcon(0, newIcon); + } + } + //*************************************************************** //*************************************************************** @@ -1602,7 +2169,7 @@ public class NeverNote extends QMainWindow{ private void editSavedSearch() { logger.log(logger.HIGH, "Entering NeverNote.editSavedSearch"); SavedSearchEdit edit = new SavedSearchEdit(); - edit.setTitle("Edit Search"); + edit.setTitle(tr("Edit Search")); List selections = savedSearchTree.selectedItems(); QTreeWidgetItem currentSelection; currentSelection = selections.get(0); @@ -1680,6 +2247,7 @@ public class NeverNote extends QMainWindow{ String currentGuid = selectedSavedSearchGUID; menuBar.savedSearchEditAction.setEnabled(true); menuBar.savedSearchDeleteAction.setEnabled(true); + menuBar.savedSearchIconAction.setEnabled(true); List selections = savedSearchTree.selectedItems(); QTreeWidgetItem currentSelection; selectedSavedSearchGUID = ""; @@ -1706,6 +2274,7 @@ public class NeverNote extends QMainWindow{ private void clearSavedSearchFilter() { menuBar.savedSearchEditAction.setEnabled(false); menuBar.savedSearchDeleteAction.setEnabled(false); + menuBar.savedSearchIconAction.setEnabled(false); savedSearchTree.blockSignals(true); savedSearchTree.clearSelection(); savedSearchTree.blockSignals(false); @@ -1719,6 +2288,7 @@ public class NeverNote extends QMainWindow{ if (selectedSavedSearchGUID == null) selectedSavedSearchGUID = new String(); savedSearchTree.blockSignals(true); + savedSearchTree.setIcons(conn.getSavedSearchTable().getAllIcons()); savedSearchTree.load(listManager.getSavedSearchIndex()); savedSearchTree.selectGuid(selectedSavedSearchGUID); savedSearchTree.blockSignals(false); @@ -1730,17 +2300,20 @@ public class NeverNote extends QMainWindow{ menuBar.savedSearchEditAction.setEnabled(true); menuBar.savedSearchDeleteAction.setEnabled(true); + menuBar.savedSearchIconAction.setEnabled(true); List selections = savedSearchTree.selectedItems(); if (selections.size() > 0) { menuBar.savedSearchEditAction.setEnabled(true); menuBar.savedSearchDeleteAction.setEnabled(true); + menuBar.savedSearchIconAction.setEnabled(true); selectedSavedSearchGUID = selections.get(0).text(1); SavedSearch s = conn.getSavedSearchTable().getSavedSearch(selectedSavedSearchGUID); searchField.setEditText(s.getQuery()); } else { menuBar.savedSearchEditAction.setEnabled(false); menuBar.savedSearchDeleteAction.setEnabled(false); + menuBar.savedSearchIconAction.setEnabled(false); selectedSavedSearchGUID = ""; searchField.setEditText(""); } @@ -1762,6 +2335,37 @@ public class NeverNote extends QMainWindow{ Global.saveWindowVisible("savedSearchTree", savedSearchTree.isVisible()); logger.log(logger.HIGH, "Leaving NeverNote.toggleSavedSearchWindow"); } + // Change the icon for a saved search + @SuppressWarnings("unused") + private void setSavedSearchIcon() { + QTreeWidgetItem currentSelection; + List selections = savedSearchTree.selectedItems(); + if (selections.size() == 0) + return; + + currentSelection = selections.get(0); + String guid = currentSelection.text(1); + + QIcon currentIcon = currentSelection.icon(0); + QIcon icon = conn.getSavedSearchTable().getIcon(guid); + SetIcon dialog; + if (icon == null) { + dialog = new SetIcon(currentIcon); + dialog.setUseDefaultIcon(true); + } else { + dialog = new SetIcon(icon); + dialog.setUseDefaultIcon(false); + } + dialog.exec(); + if (dialog.okPressed()) { + QIcon newIcon = dialog.getIcon(); + conn.getSavedSearchTable().setIcon(guid, newIcon, dialog.getFileType()); + if (newIcon == null) + newIcon = new QIcon(iconPath+"search.png"); + currentSelection.setIcon(0, newIcon); + } + + } @@ -1782,6 +2386,7 @@ public class NeverNote extends QMainWindow{ status.setUnindexed(unindexed); status.setNoteCount(conn.getNoteTable().getNoteCount()); status.setNotebookCount(listManager.getNotebookIndex().size()); + status.setUnindexedResourceCount(conn.getNoteTable().noteResourceTable.getUnindexedCount()); status.setSavedSearchCount(listManager.getSavedSearchIndex().size()); status.setTagCount(listManager.getTagIndex().size()); status.setResourceCount(conn.getNoteTable().noteResourceTable.getResourceCount()); @@ -1793,9 +2398,9 @@ public class NeverNote extends QMainWindow{ @SuppressWarnings("unused") private void compactDatabase() { logger.log(logger.HIGH, "Entering NeverNote.compactDatabase"); - if (QMessageBox.question(this, "Confirmation", "This will free unused space in the database, "+ + if (QMessageBox.question(this, tr("Confirmation"), tr("This will free unused space in the database, "+ "but please be aware that depending upon the size of your database this can be time consuming " + - "and NeverNote will be unresponsive until it is complete. Do you wish to continue?", + "and NeverNote will be unresponsive until it is complete. Do you wish to continue?"), QMessageBox.StandardButton.Yes, QMessageBox.StandardButton.No)==StandardButton.No.value() && Global.verifyDelete() == true) { return; @@ -1828,7 +2433,7 @@ public class NeverNote extends QMainWindow{ return; textBox.setText(file.readAll().toString()); file.close(); - dialog.setWindowTitle("Release Notes"); + dialog.setWindowTitle(tr("Release Notes")); dialog.setLayout(layout); dialog.show(); logger.log(logger.HIGH, "Leaving NeverNote.releaseNotes"); @@ -1844,7 +2449,7 @@ public class NeverNote extends QMainWindow{ textBox.addItems(emitLog); dialog.setLayout(layout); - dialog.setWindowTitle("Mesasge Log"); + dialog.setWindowTitle(tr("Mesasge Log")); dialog.show(); logger.log(logger.HIGH, "Leaving NeverNote.logger"); } @@ -1854,14 +2459,18 @@ public class NeverNote extends QMainWindow{ logger.log(logger.HIGH, "Entering NeverNote.about"); QMessageBox.about(this, tr("About NeverNote"), - tr("

NeverNote


Version "+Global.version+"
Evernote" - +" Generic client.

" + tr("

NeverNote


Version ") + +Global.version + +tr("
Evernote" + +"An Open Source Evernote Client.

" +"Licensed under GPL v2.


" +"Evernote is copyright 2001-2010 by Evernote Corporation
" +"Jambi and QT are the licensed trademark of Nokia Corporation
" +"PDFRenderer is licened under the LGPL
" + +"JTidy is copyrighted under the World Wide Web Consortium
" + +"Apache Common Utilities licensed under the Apache License Version 2.0
" +"Jazzy is licened under the LGPL
" - +"Java is a registered trademark of Sun Microsystems.

")); + +"Java is a registered trademark of Oracle Corporation.

")); logger.log(logger.HIGH, "Leaving NeverNote.about"); } // Hide the entire left hand side @@ -1886,7 +2495,75 @@ public class NeverNote extends QMainWindow{ Global.saveWindowVisible("leftPanel", hidden); } + public void checkForUpdates() { + // Send off thread to check for a new version + versionChecker = new QNetworkAccessManager(this); + versionChecker.finished.connect(this, "upgradeFileRead(QNetworkReply)"); + QNetworkRequest request = new QNetworkRequest(); + request.setUrl(new QUrl(Global.getUpdatesAvailableUrl())); + versionChecker.get(request); + } + @SuppressWarnings("unused") + private void upgradeFileRead(QNetworkReply reply) { + if (!reply.isReadable()) + return; + + String winVersion = Global.version; + String osxVersion = Global.version; + String linuxVersion = Global.version; + String linux64Version = Global.version; + String version = Global.version; + + // Determine the versions available + QByteArray data = reply.readLine(); + while (data != null && !reply.atEnd()) { + String line = data.toString(); + String lineVersion; + if (line.contains(":")) + lineVersion = line.substring(line.indexOf(":")+1).replace(" ", "").replace("\n", ""); + else + lineVersion = ""; + if (line.toLowerCase().contains("windows")) + winVersion = lineVersion; + else if (line.toLowerCase().contains("os-x")) + osxVersion = lineVersion; + else if (line.toLowerCase().contains("linux amd64")) + linux64Version = lineVersion; + else if (line.toLowerCase().contains("linux i386")) + linuxVersion = lineVersion; + else if (line.toLowerCase().contains("default")) + version = lineVersion; + // Read the next line + data = reply.readLine(); + } + + // Now we need to determine what system we are on. + if (System.getProperty("os.name").toLowerCase().contains("windows")) + version = winVersion; + if (System.getProperty("os.name").toLowerCase().contains("mac os")) + version = osxVersion; + if (System.getProperty("os.name").toLowerCase().contains("Linux")) { + if (System.getProperty("os.arch").contains("amd64") || + System.getProperty("os.arch").contains("x86_64") || + System.getProperty("os.arch").contains("i686")) + version = linux64Version; + else + version = linuxVersion; + } + + + if (Global.version.equals(version)) + return; + + UpgradeAvailableDialog dialog = new UpgradeAvailableDialog(); + dialog.exec(); + if (dialog.remindMe()) + Global.setCheckVersionUpgrade(true); + else + Global.setCheckVersionUpgrade(false); + } + //*************************************************************** //*************************************************************** @@ -1895,20 +2572,45 @@ public class NeverNote extends QMainWindow{ //*************************************************************** // Text in the search bar has been cleared private void searchFieldCleared() { + saveNote(); + + // This is done because we want to force a reload of + // images. Some images we may want to highlight the text. + readOnlyCache.clear(); + inkNoteCache.clear(); + noteCache.clear(); + QWebSettings.setMaximumPagesInCache(0); + QWebSettings.setObjectCacheCapacities(0, 0, 0); + searchField.setEditText(""); + saveNoteColumnPositions(); saveNoteIndexWidth(); + noteIndexUpdated(true); + if (currentNote == null && listManager.getNoteIndex().size() > 0) { + currentNote = listManager.getNoteIndex().get(0); + currentNoteGuid = currentNote.getGuid(); + } + if (currentNote != null) + loadNoteBrowserInformation(browserWindow); } // text in the search bar changed. We only use this to tell if it was cleared, // otherwise we trigger off searchFieldChanged. @SuppressWarnings("unused") private void searchFieldTextChanged(String text) { + QWebSettings.setMaximumPagesInCache(0); + QWebSettings.setObjectCacheCapacities(0, 0, 0); + if (text.trim().equals("")) { searchFieldCleared(); if (searchPerformed) { + + // This is done because we want to force a reload of + // images. Some images we may want to highlight the text. noteCache.clear(); + readOnlyCache.clear(); + inkNoteCache.clear(); + listManager.setEnSearch(""); -///// listManager.clearNoteIndexSearch(); - //noteIndexUpdated(true); listManager.loadNotesIndex(); refreshEvernoteNote(true); noteIndexUpdated(false); @@ -1920,6 +2622,9 @@ public class NeverNote extends QMainWindow{ private void searchFieldChanged() { logger.log(logger.HIGH, "Entering NeverNote.searchFieldChanged"); noteCache.clear(); + readOnlyCache.clear(); + inkNoteCache.clear(); + saveNoteColumnPositions(); saveNoteIndexWidth(); String text = searchField.currentText(); listManager.setEnSearch(text.trim()); @@ -1930,75 +2635,96 @@ public class NeverNote extends QMainWindow{ searchPerformed = true; logger.log(logger.HIGH, "Leaving NeverNote.searchFieldChanged"); } + // Build the window tool bar private void setupToolBar() { logger.log(logger.HIGH, "Entering NeverNote.setupToolBar"); - toolBar = addToolBar(tr("toolBar")); + toolBar = addToolBar(tr("Tool Bar")); + menuBar.setupToolBarVisible(); + if (!Global.isWindowVisible("toolBar")) + toolBar.setVisible(false); + else + toolBar.setVisible(true); prevButton = toolBar.addAction("Previous"); QIcon prevIcon = new QIcon(iconPath+"back.png"); prevButton.setIcon(prevIcon); prevButton.triggered.connect(this, "previousViewedAction()"); + togglePrevArrowButton(Global.isToolbarButtonVisible("prevArrow")); nextButton = toolBar.addAction("Next"); QIcon nextIcon = new QIcon(iconPath+"forward.png"); nextButton.setIcon(nextIcon); nextButton.triggered.connect(this, "nextViewedAction()"); + toggleNextArrowButton(Global.isToolbarButtonVisible("nextArrow")); upButton = toolBar.addAction("Up"); QIcon upIcon = new QIcon(iconPath+"up.png"); upButton.setIcon(upIcon); upButton.triggered.connect(this, "upAction()"); + toggleUpArrowButton(Global.isToolbarButtonVisible("upArrow")); + downButton = toolBar.addAction("Down"); QIcon downIcon = new QIcon(iconPath+"down.png"); downButton.setIcon(downIcon); downButton.triggered.connect(this, "downAction()"); + toggleDownArrowButton(Global.isToolbarButtonVisible("downArrow")); synchronizeButton = toolBar.addAction("Synchronize"); - synchronizeAnimation = new ArrayList(); - synchronizeAnimation.add(new QIcon(iconPath+"synchronize-0.png")); - synchronizeAnimation.add(new QIcon(iconPath+"synchronize-1.png")); - synchronizeAnimation.add(new QIcon(iconPath+"synchronize-2.png")); - synchronizeAnimation.add(new QIcon(iconPath+"synchronize-3.png")); - synchronizeButton.setIcon(synchronizeAnimation.get(0)); - synchronizeFrame = 0; + synchronizeButton.setIcon(new QIcon(iconPath+"synchronize.png")); + synchronizeIconAngle = 0; synchronizeButton.triggered.connect(this, "evernoteSync()"); + toggleSynchronizeButton(Global.isToolbarButtonVisible("synchronize")); printButton = toolBar.addAction("Print"); QIcon printIcon = new QIcon(iconPath+"print.png"); printButton.setIcon(printIcon); printButton.triggered.connect(this, "printNote()"); - + togglePrintButton(Global.isToolbarButtonVisible("print")); + tagButton = toolBar.addAction("Tag"); QIcon tagIcon = new QIcon(iconPath+"tag.png"); tagButton.setIcon(tagIcon); tagButton.triggered.connect(browserWindow, "modifyTags()"); - + toggleTagButton(Global.isToolbarButtonVisible("tag")); + attributeButton = toolBar.addAction("Attributes"); QIcon attributeIcon = new QIcon(iconPath+"attribute.png"); attributeButton.setIcon(attributeIcon); attributeButton.triggered.connect(this, "toggleNoteInformation()"); + toggleAttributeButton(Global.isToolbarButtonVisible("attribute")); emailButton = toolBar.addAction("Email"); QIcon emailIcon = new QIcon(iconPath+"email.png"); emailButton.setIcon(emailIcon); emailButton.triggered.connect(this, "emailNote()"); - + toggleEmailButton(Global.isToolbarButtonVisible("email")); + deleteButton = toolBar.addAction("Delete"); QIcon deleteIcon = new QIcon(iconPath+"delete.png"); deleteButton.setIcon(deleteIcon); deleteButton.triggered.connect(this, "deleteNote()"); - + toggleDeleteButton(Global.isToolbarButtonVisible("delete")); + newButton = toolBar.addAction("New"); QIcon newIcon = new QIcon(iconPath+"new.png"); newButton.triggered.connect(this, "addNote()"); newButton.setIcon(newIcon); + toggleNewButton(Global.isToolbarButtonVisible("new")); + + allNotesButton = toolBar.addAction("All Notes"); + QIcon allIcon = new QIcon(iconPath+"books.png"); + allNotesButton.triggered.connect(this, "allNotes()"); + allNotesButton.setIcon(allIcon); + toggleAllNotesButton(Global.isToolbarButtonVisible("allNotes")); + toolBar.addSeparator(); - toolBar.addWidget(new QLabel("Quota:")); + toolBar.addWidget(new QLabel(tr("Quota:"))); toolBar.addWidget(quotaBar); //quotaBar.setSizePolicy(Policy.Minimum, Policy.Minimum); updateQuotaBar(); + toolBar.addSeparator(); // Setup the zoom zoomSpinner = new QSpinBox(); @@ -2008,12 +2734,12 @@ public class NeverNote extends QMainWindow{ zoomSpinner.setSingleStep(10); zoomSpinner.setValue(100); zoomSpinner.valueChanged.connect(this, "zoomChanged()"); - toolBar.addWidget(new QLabel("Zoom")); + toolBar.addWidget(new QLabel(tr("Zoom"))); toolBar.addWidget(zoomSpinner); //toolBar.addWidget(new QLabel(" ")); toolBar.addSeparator(); - toolBar.addWidget(new QLabel(" Search:")); + toolBar.addWidget(new QLabel(tr(" Search:"))); toolBar.addWidget(searchField); QSizePolicy sizePolicy = new QSizePolicy(); sizePolicy.setHorizontalPolicy(Policy.MinimumExpanding); @@ -2024,16 +2750,165 @@ public class NeverNote extends QMainWindow{ QIcon searchClearIcon = new QIcon(iconPath+"searchclear.png"); searchClearButton.setIcon(searchClearIcon); searchClearButton.triggered.connect(this, "searchFieldCleared()"); - + toggleSearchClearButton(Global.isToolbarButtonVisible("searchClear")); + logger.log(logger.HIGH, "Leaving NeverNote.setupToolBar"); } // Update the sychronize button picture + @Override + public QMenu createPopupMenu() { + QMenu contextMenu = super.createPopupMenu(); + + contextMenu.addSeparator(); + QAction prevAction = addContextAction("prevArrow", tr("Previous Arrow")); + contextMenu.addAction(prevAction); + prevAction.triggered.connect(this, "togglePrevArrowButton(Boolean)"); + + QAction nextAction = addContextAction("nextArrow", tr("Next Arrow")); + contextMenu.addAction(nextAction); + nextAction.triggered.connect(this, "toggleNextArrowButton(Boolean)"); + + QAction upAction = addContextAction("upArrow", tr("Up Arrow")); + contextMenu.addAction(upAction); + upAction.triggered.connect(this, "toggleUpArrowButton(Boolean)"); + + QAction downAction = addContextAction("downArrow", tr("Down Arrow")); + contextMenu.addAction(downAction); + downAction.triggered.connect(this, "toggleDownArrowButton(Boolean)"); + + QAction synchronizeAction = addContextAction("synchronize", tr("Synchronize")); + contextMenu.addAction(synchronizeAction); + synchronizeAction.triggered.connect(this, "toggleSynchronizeButton(Boolean)"); + + QAction printAction = addContextAction("print", tr("Print")); + contextMenu.addAction(printAction); + printAction.triggered.connect(this, "togglePrintButton(Boolean)"); + + QAction tagAction = addContextAction("tag", tr("Tag")); + contextMenu.addAction(tagAction); + tagAction.triggered.connect(this, "toggleTagButton(Boolean)"); + + QAction attributeAction = addContextAction("attribute", tr("Attribute")); + contextMenu.addAction(attributeAction); + attributeAction.triggered.connect(this, "toggleAttributeButton(Boolean)"); + + QAction emailAction = addContextAction("email", tr("Email")); + contextMenu.addAction(emailAction); + emailAction.triggered.connect(this, "toggleEmailButton(Boolean)"); + + QAction deleteAction = addContextAction("delete", tr("Delete")); + contextMenu.addAction(deleteAction); + deleteAction.triggered.connect(this, "toggleDeleteButton(Boolean)"); + + QAction newAction = addContextAction("new", tr("Add")); + contextMenu.addAction(newAction); + newAction.triggered.connect(this, "toggleNewButton(Boolean)"); + + QAction allNotesAction = addContextAction("allNotes", tr("All Notes")); + contextMenu.addAction(allNotesAction); + allNotesAction.triggered.connect(this, "toggleAllNotesButton(Boolean)"); + + QAction searchClearAction = addContextAction("searchClear", tr("Search Clear")); + contextMenu.addAction(searchClearAction); + searchClearAction.triggered.connect(this, "toggleSearchClearButton(Boolean)"); + + return contextMenu; + + } + private QAction addContextAction(String config, String name) { + QAction newAction = new QAction(this); + newAction.setText(name); + newAction.setCheckable(true); + newAction.setChecked(Global.isToolbarButtonVisible(config)); + return newAction; + } + private void togglePrevArrowButton(Boolean toggle) { + prevButton.setVisible(toggle); + Global.saveToolbarButtonsVisible("prevArrow", toggle); + } + private void toggleNextArrowButton(Boolean toggle) { + nextButton.setVisible(toggle); + Global.saveToolbarButtonsVisible("nextArrow", toggle); + } + private void toggleUpArrowButton(Boolean toggle) { + upButton.setVisible(toggle); + Global.saveToolbarButtonsVisible("upArrow", toggle); + } + private void toggleDownArrowButton(Boolean toggle) { + downButton.setVisible(toggle); + Global.saveToolbarButtonsVisible("downArrow", toggle); + } + private void toggleSynchronizeButton(Boolean toggle) { + synchronizeButton.setVisible(toggle); + Global.saveToolbarButtonsVisible("synchronize", toggle); + } + private void togglePrintButton(Boolean toggle) { + printButton.setVisible(toggle); + Global.saveToolbarButtonsVisible("print", toggle); + } + private void toggleTagButton(Boolean toggle) { + tagButton.setVisible(toggle); + Global.saveToolbarButtonsVisible("tag", toggle); + } + private void toggleAttributeButton(Boolean toggle) { + attributeButton.setVisible(toggle); + Global.saveToolbarButtonsVisible("attribute", toggle); + } + private void toggleEmailButton(Boolean toggle) { + emailButton.setVisible(toggle); + Global.saveToolbarButtonsVisible("email", toggle); + } + private void toggleDeleteButton(Boolean toggle) { + deleteButton.setVisible(toggle); + Global.saveToolbarButtonsVisible("delete", toggle); + } + private void toggleNewButton(Boolean toggle) { + newButton.setVisible(toggle); + Global.saveToolbarButtonsVisible("new", toggle); + } + private void toggleAllNotesButton(Boolean toggle) { + allNotesButton.setVisible(toggle); + Global.saveToolbarButtonsVisible("allNotes", toggle); + } + private void toggleSearchClearButton(Boolean toggle) { + searchClearButton.setVisible(toggle); + Global.saveToolbarButtonsVisible("searchClear", toggle); + } + + + + + @SuppressWarnings("unused") private void updateSyncButton() { - synchronizeFrame++; - if (synchronizeFrame == 4) - synchronizeFrame = 0; - synchronizeButton.setIcon(synchronizeAnimation.get(synchronizeFrame)); + + if (syncIcons == null) { + syncIcons = new ArrayList(); + double angle = 0.0; + synchronizeIconAngle = 0; + QPixmap pix = new QPixmap(iconPath+"synchronize.png"); + syncIcons.add(pix); + for (int i=0; i<=360; i++) { + QPixmap rotatedPix = new QPixmap(pix.size()); + QPainter p = new QPainter(rotatedPix); + rotatedPix.fill(toolBar.palette().color(ColorRole.Button)); + QSize size = pix.size(); + p.translate(size.width()/2, size.height()/2); + angle = angle+1.0; + p.rotate(angle); + p.setBackgroundMode(BGMode.OpaqueMode); + p.translate(-size.width()/2, -size.height()/2); + p.drawPixmap(0,0, pix); + p.end(); + syncIcons.add(rotatedPix); + } + } + + synchronizeIconAngle++; + if (synchronizeIconAngle > 359) + synchronizeIconAngle=0; + synchronizeButton.setIcon(syncIcons.get(synchronizeIconAngle)); + } // Synchronize with Evernote @SuppressWarnings("unused") @@ -2042,7 +2917,8 @@ public class NeverNote extends QMainWindow{ if (!Global.isConnected) remoteConnect(); if (Global.isConnected) - synchronizeAnimationTimer.start(200); + synchronizeAnimationTimer.start(5); +// synchronizeAnimationTimer.start(200); syncTimer(); logger.log(logger.HIGH, "Leaving NeverNote.evernoteSync"); } @@ -2071,6 +2947,10 @@ public class NeverNote extends QMainWindow{ hide(); } else { show(); + if (windowMaximized) + showMaximized(); + else + showNormal(); raise(); } } @@ -2194,9 +3074,10 @@ public class NeverNote extends QMainWindow{ // SyncRunner had a problem and things are disconnected @SuppressWarnings("unused") private void remoteErrorDisconnect() { - menuBar.connectAction.setText("Connect"); - menuBar.connectAction.setToolTip("Connect to Evernote"); + menuBar.connectAction.setText(tr("Connect")); + menuBar.connectAction.setToolTip(tr("Connect to Evernote")); menuBar.synchronizeAction.setEnabled(false); + Global.isConnected = false; synchronizeAnimationTimer.stop(); return; } @@ -2242,6 +3123,30 @@ public class NeverNote extends QMainWindow{ syncRunner.userStoreUrl = Global.userStoreUrl; syncRunner.noteStoreUrl = Global.noteStoreUrl; syncRunner.noteStoreUrlBase = Global.noteStoreUrlBase; + + if (Global.getProxyValue("url").equals("")) { + System.setProperty("http.proxyHost","") ; + System.setProperty("http.proxyPort", "") ; + System.setProperty("https.proxyHost","") ; + System.setProperty("https.proxyPort", "") ; + } else { + // PROXY + System.setProperty("http.proxyHost",Global.getProxyValue("url")) ; + System.setProperty("http.proxyPort", Global.getProxyValue("port")) ; + System.setProperty("https.proxyHost",Global.getProxyValue("url")) ; + System.setProperty("https.proxyPort", Global.getProxyValue("port")) ; + + if (Global.getProxyValue("userid").equals("")) { + Authenticator.setDefault(new Authenticator() { + @Override + protected PasswordAuthentication getPasswordAuthentication() { + return new + PasswordAuthentication(Global.getProxyValue("userid"),Global.getProxyValue("password").toCharArray()); + }}); + } + } + + syncRunner.enConnect(); Global.isConnected = syncRunner.isConnected; setupOnlineMenu(); @@ -2251,12 +3156,12 @@ public class NeverNote extends QMainWindow{ private void setupConnectMenuOptions() { logger.log(logger.HIGH, "entering NeverNote.setupConnectMenuOptions"); if (!Global.isConnected) { - menuBar.connectAction.setText("Connect"); - menuBar.connectAction.setToolTip("Connect to Evernote"); + menuBar.connectAction.setText(tr("Connect")); + menuBar.connectAction.setToolTip(tr("Connect to Evernote")); menuBar.synchronizeAction.setEnabled(false); } else { - menuBar.connectAction.setText("Disconnect"); - menuBar.connectAction.setToolTip("Disconnect from Evernote"); + menuBar.connectAction.setText(tr("Disconnect")); + menuBar.connectAction.setToolTip(tr("Disconnect from Evernote")); menuBar.synchronizeAction.setEnabled(true); } logger.log(logger.HIGH, "Leaving NeverNote.setupConnectionMenuOptions"); @@ -2272,10 +3177,10 @@ public class NeverNote extends QMainWindow{ @SuppressWarnings("unused") private void attributeTreeClicked(QTreeWidgetItem item, Integer integer) { - clearTagFilter(); - clearNotebookFilter(); +// clearTagFilter(); +// clearNotebookFilter(); clearTrashFilter(); - clearSavedSearchFilter(); +// clearSavedSearchFilter(); if (attributeTreeSelected == null || item.nativeId() != attributeTreeSelected.nativeId()) { if (item.childCount() > 0) { @@ -2290,10 +3195,9 @@ public class NeverNote extends QMainWindow{ DateAttributeFilterTable f = null; f = findDateAttributeFilterTable(item.parent()); if (f!=null) - f.select(item.text(0)); + f.select(item.parent().indexOfChild(item)); else { - String text = item.text(0); - Global.containsFilter.select(text); + Global.containsFilter.select(item.parent().indexOfChild(item)); } } listManager.loadNotesIndex(); @@ -2314,21 +3218,22 @@ public class NeverNote extends QMainWindow{ private DateAttributeFilterTable findDateAttributeFilterTable(QTreeWidgetItem w) { if (w.parent() != null && w.childCount() > 0) { QTreeWidgetItem parent = w.parent(); - if (parent.text(0).equalsIgnoreCase("created") && - w.text(0).equalsIgnoreCase("since")) + if (parent.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Created && + w.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Since) return Global.createdSinceFilter; - if (parent.text(0).equalsIgnoreCase("created") && - w.text(0).equalsIgnoreCase("before")) + if (parent.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Created && + w.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Before) return Global.createdBeforeFilter; - if (parent.text(0).equalsIgnoreCase("last modified") && - w.text(0).equalsIgnoreCase("since")) + if (parent.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.LastModified && + w.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Since) return Global.changedSinceFilter; - if (parent.text(0).equalsIgnoreCase("last modified") && - w.text(0).equalsIgnoreCase("before")) + if (parent.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.LastModified && + w.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Before) return Global.changedBeforeFilter; } return null; } + // Show/Hide attribute search window private void toggleAttributesWindow() { logger.log(logger.HIGH, "Entering NeverNote.toggleAttributesWindow"); @@ -2391,7 +3296,8 @@ public class NeverNote extends QMainWindow{ noteTableView.showColumn(Global.noteTableGuidPosition); List selections = noteTableView.selectionModel().selectedRows(); - noteTableView.hideColumn(Global.noteTableGuidPosition); + if (!Global.isColumnVisible("guid")) + noteTableView.hideColumn(Global.noteTableGuidPosition); if (selections.size() > 0) { QModelIndex index; @@ -2414,7 +3320,7 @@ public class NeverNote extends QMainWindow{ upButton.setEnabled(false); else upButton.setEnabled(true); - if (row < noteTableView.model.rowCount()-1) + if (row < listManager.getNoteTableModel().rowCount()-1) downButton.setEnabled(true); else downButton.setEnabled(false); @@ -2448,11 +3354,10 @@ public class NeverNote extends QMainWindow{ // Trigger a refresh when the note db has been updated private void noteIndexUpdated(boolean reload) { logger.log(logger.HIGH, "Entering NeverNote.noteIndexUpdated"); - Global.traceReset(); saveNote(); refreshEvernoteNoteList(); logger.log(logger.HIGH, "Calling note table reload in NeverNote.noteIndexUpdated() - "+reload); - noteTableView.load(listManager, reload); + noteTableView.load(reload); scrollToGuid(currentNoteGuid); logger.log(logger.HIGH, "Leaving NeverNote.noteIndexUpdated"); } @@ -2475,10 +3380,11 @@ public class NeverNote extends QMainWindow{ if (currentNoteGuid == null) currentNoteGuid = new String(); + //determine current note guid for (Note note : listManager.getNoteIndex()) { tempNoteGuid = note.getGuid(); if (currentNoteGuid.equals(tempNoteGuid)) { - saveCurrentNoteGuid = new String(tempNoteGuid); + saveCurrentNoteGuid = tempNoteGuid; } } @@ -2489,14 +3395,16 @@ public class NeverNote extends QMainWindow{ browserWindow.setDisabled(true); } - if (saveCurrentNoteGuid.equals("") && listManager.getNoteIndex().size() >0) { - currentNoteGuid = listManager.getNoteIndex().get(listManager.getNoteIndex().size()-1).getGuid(); + if (saveCurrentNoteGuid.equals("") && listManager.getNoteIndex().size() > 0) { currentNote = listManager.getNoteIndex().get(listManager.getNoteIndex().size()-1); + currentNoteGuid = currentNote.getGuid(); refreshEvernoteNote(true); } else { + //we can reload if note not dirty +// refreshEvernoteNote(!noteDirty); refreshEvernoteNote(false); } - reloadTagTree(); + reloadTagTree(false); logger.log(logger.HIGH, "Leaving NeverNote.refreshEvernoteNoteList"); } @@ -2557,7 +3465,7 @@ public class NeverNote extends QMainWindow{ private void downAction() { List selections = noteTableView.selectionModel().selectedRows(); int row = selections.get(0).row(); - int max = noteTableView.model.rowCount(); + int max = listManager.getNoteTableModel().rowCount(); if (row < max-1) { noteTableView.selectRow(row+1); } @@ -2573,14 +3481,15 @@ public class NeverNote extends QMainWindow{ tagBuffer.append(", "); } - for (int i=0; i ix = noteTableView.model.itemData(modelIndex); + SortedMap ix = listManager.getNoteTableModel().itemData(modelIndex); String tableGuid = (String)ix.values().toArray()[0]; if (tableGuid.equals(guid)) { - noteTableView.model.setData(i, Global.noteTableTagPosition,tagBuffer.toString()); - noteTableView.model.setData(i, Global.noteTableSynchronizedPosition, "false"); + listManager.getNoteTableModel().setData(i, Global.noteTableTagPosition,tagBuffer.toString()); + listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false"); + noteTableView.proxyModel.invalidate(); return; } } @@ -2589,63 +3498,29 @@ public class NeverNote extends QMainWindow{ } // Update a title for a specific note in the list @SuppressWarnings("unused") - private void updateListTitle(String guid, String title) { - logger.log(logger.HIGH, "Entering NeverNote.updateListTitle"); - - for (int i=0; i ix = noteTableView.proxyModel.itemData(modelIndex); - SortedMap ix = noteTableView.model.itemData(modelIndex); - String tableGuid = (String)ix.values().toArray()[0]; - if (tableGuid.equals(guid)) { - noteTableView.model.setData(i, Global.noteTableTitlePosition,title); - noteTableView.model.setData(i, Global.noteTableSynchronizedPosition, "false"); - return; - } - } - } - logger.log(logger.HIGH, "Leaving NeverNote.updateListTitle"); - } - // Update a title for a specific note in the list - @SuppressWarnings("unused") private void updateListAuthor(String guid, String author) { logger.log(logger.HIGH, "Entering NeverNote.updateListAuthor"); - for (int i=0; i ix = noteTableView.proxyModel.itemData(modelIndex); - SortedMap ix = noteTableView.model.itemData(modelIndex); + SortedMap ix = listManager.getNoteTableModel().itemData(modelIndex); String tableGuid = (String)ix.values().toArray()[0]; if (tableGuid.equals(guid)) { - noteTableView.model.setData(i, Global.noteTableAuthorPosition,author); - noteTableView.model.setData(i, Global.noteTableSynchronizedPosition, "false"); + listManager.getNoteTableModel().setData(i, Global.noteTableAuthorPosition,author); + listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false"); + noteTableView.proxyModel.invalidate(); return; } } } + logger.log(logger.HIGH, "Leaving NeverNote.updateListAuthor"); } private void updateListNoteNotebook(String guid, String notebook) { logger.log(logger.HIGH, "Entering NeverNote.updateListNoteNotebook"); - - for (int i=0; i ix = noteTableView.proxyModel.itemData(modelIndex); - SortedMap ix = noteTableView.model.itemData(modelIndex); - String tableGuid = (String)ix.values().toArray()[0]; - if (tableGuid.equals(guid)) { - noteTableView.model.setData(i, Global.noteTableNotebookPosition,notebook); - noteTableView.model.setData(i, Global.noteTableSynchronizedPosition, "false"); - return; - } - } - } + listManager.getNoteTableModel().updateNoteSyncStatus(guid, false); logger.log(logger.HIGH, "Leaving NeverNote.updateListNoteNotebook"); } // Update a title for a specific note in the list @@ -2653,33 +3528,35 @@ public class NeverNote extends QMainWindow{ private void updateListSourceUrl(String guid, String url) { logger.log(logger.HIGH, "Entering NeverNote.updateListAuthor"); - for (int i=0; i ix = noteTableView.proxyModel.itemData(modelIndex); - SortedMap ix = noteTableView.model.itemData(modelIndex); + SortedMap ix = listManager.getNoteTableModel().itemData(modelIndex); String tableGuid = (String)ix.values().toArray()[0]; if (tableGuid.equals(guid)) { - noteTableView.model.setData(i, Global.noteTableSynchronizedPosition, "false"); - noteTableView.model.setData(i, Global.noteTableSourceUrlPosition,url); + listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false"); + listManager.getNoteTableModel().setData(i, Global.noteTableSourceUrlPosition,url); + noteTableView.proxyModel.invalidate(); return; } } } logger.log(logger.HIGH, "Leaving NeverNote.updateListAuthor"); } + @SuppressWarnings("unused") private void updateListGuid(String oldGuid, String newGuid) { logger.log(logger.HIGH, "Entering NeverNote.updateListTitle"); - for (int i=0; i ix = noteTableView.model.itemData(modelIndex); + SortedMap ix = listManager.getNoteTableModel().itemData(modelIndex); String tableGuid = (String)ix.values().toArray()[0]; if (tableGuid.equals(oldGuid)) { - noteTableView.model.setData(i, Global.noteTableGuidPosition,newGuid); - //noteTableView.model.setData(i, Global.noteTableSynchronizedPosition, "false"); + listManager.getNoteTableModel().setData(i, Global.noteTableGuidPosition,newGuid); + //listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false"); return; } } @@ -2693,15 +3570,14 @@ public class NeverNote extends QMainWindow{ if (listManager.getNoteIndex().get(j).getTagGuids().contains(guid)) { String newName = listManager.getTagNamesForNote(listManager.getNoteIndex().get(j)); - for (int i=0; i ix = noteTableView.model.itemData(modelIndex); + SortedMap ix = listManager.getNoteTableModel().itemData(modelIndex); String noteGuid = (String)ix.values().toArray()[0]; if (noteGuid.equalsIgnoreCase(listManager.getNoteIndex().get(j).getGuid())) { - noteTableView.model.setData(i, Global.noteTableTagPosition, newName); - //noteTableView.model.setData(i, Global.noteTableSynchronizedPosition, "false"); - i=noteTableView.model.rowCount(); + listManager.getNoteTableModel().setData(i, Global.noteTableTagPosition, newName); + i=listManager.getNoteTableModel().rowCount(); } } } @@ -2720,15 +3596,14 @@ public class NeverNote extends QMainWindow{ } String newName = listManager.getTagNamesForNote(listManager.getNoteIndex().get(j)); - for (int i=0; i ix = noteTableView.model.itemData(modelIndex); + SortedMap ix = listManager.getNoteTableModel().itemData(modelIndex); String noteGuid = (String)ix.values().toArray()[0]; if (noteGuid.equalsIgnoreCase(listManager.getNoteIndex().get(j).getGuid())) { - noteTableView.model.setData(i, Global.noteTableTagPosition, newName); -// noteTableView.model.setData(i, Global.noteTableSynchronizedPosition, "false"); - i=noteTableView.model.rowCount(); + listManager.getNoteTableModel().setData(i, Global.noteTableTagPosition, newName); + i=listManager.getNoteTableModel().rowCount(); } } } @@ -2739,14 +3614,13 @@ public class NeverNote extends QMainWindow{ private void updateListNotebookName(String oldName, String newName) { logger.log(logger.HIGH, "Entering NeverNote.updateListNotebookName"); - for (int i=0; i ix = noteTableView.model.itemData(modelIndex); + SortedMap ix = listManager.getNoteTableModel().itemData(modelIndex); String tableName = (String)ix.values().toArray()[0]; if (tableName.equalsIgnoreCase(oldName)) { -// noteTableView.model.setData(i, Global.noteTableSynchronizedPosition, "false"); - noteTableView.model.setData(i, Global.noteTableNotebookPosition, newName); + listManager.getNoteTableModel().setData(i, Global.noteTableNotebookPosition, newName); } } } @@ -2756,13 +3630,14 @@ public class NeverNote extends QMainWindow{ private void updateListDateCreated(String guid, QDateTime date) { logger.log(logger.HIGH, "Entering NeverNote.updateListDateCreated"); - for (int i=0; i ix = noteTableView.model.itemData(modelIndex); + SortedMap ix = listManager.getNoteTableModel().itemData(modelIndex); String tableGuid = (String)ix.values().toArray()[0]; if (tableGuid.equals(guid)) { - noteTableView.model.setData(i, Global.noteTableCreationPosition, date.toString(Global.getDateFormat()+" " +Global.getTimeFormat())); + listManager.getNoteTableModel().setData(i, Global.noteTableCreationPosition, date.toString(Global.getDateFormat()+" " +Global.getTimeFormat())); + noteTableView.proxyModel.invalidate(); return; } } @@ -2773,32 +3648,32 @@ public class NeverNote extends QMainWindow{ private void updateListDateSubject(String guid, QDateTime date) { logger.log(logger.HIGH, "Entering NeverNote.updateListDateSubject"); - for (int i=0; i ix = noteTableView.model.itemData(modelIndex); + SortedMap ix = listManager.getNoteTableModel().itemData(modelIndex); String tableGuid = (String)ix.values().toArray()[0]; if (tableGuid.equals(guid)) { - noteTableView.model.setData(i, Global.noteTableSynchronizedPosition, "false"); - noteTableView.model.setData(i, Global.noteTableSubjectDatePosition, date.toString(Global.getDateFormat()+" " +Global.getTimeFormat())); + listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false"); + listManager.getNoteTableModel().setData(i, Global.noteTableSubjectDatePosition, date.toString(Global.getDateFormat()+" " +Global.getTimeFormat())); + noteTableView.proxyModel.invalidate(); return; } } } logger.log(logger.HIGH, "Leaving NeverNote.updateListDateCreated"); } - @SuppressWarnings("unused") private void updateListDateChanged(String guid, QDateTime date) { logger.log(logger.HIGH, "Entering NeverNote.updateListDateChanged"); - for (int i=0; i ix = noteTableView.model.itemData(modelIndex); + SortedMap ix = listManager.getNoteTableModel().itemData(modelIndex); String tableGuid = (String)ix.values().toArray()[0]; if (tableGuid.equals(guid)) { - noteTableView.model.setData(i, Global.noteTableSynchronizedPosition, "false"); - noteTableView.model.setData(i, Global.noteTableChangedPosition, date.toString(Global.getDateFormat()+" " +Global.getTimeFormat())); + listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false"); + listManager.getNoteTableModel().setData(i, Global.noteTableChangedPosition, date.toString(Global.getDateFormat()+" " +Global.getTimeFormat())); return; } } @@ -2807,23 +3682,11 @@ public class NeverNote extends QMainWindow{ } private void updateListDateChanged() { logger.log(logger.HIGH, "Entering NeverNote.updateListDateChanged"); - QDateTime date = new QDateTime(QDateTime.currentDateTime()); - for (int i=0; i ix = noteTableView.model.itemData(modelIndex); - String tableGuid = (String)ix.values().toArray()[0]; - if (tableGuid.equals(currentNoteGuid)) { - noteTableView.model.setData(i, Global.noteTableSynchronizedPosition, "false"); - noteTableView.model.setData(i, Global.noteTableChangedPosition, date.toString(Global.getDateFormat()+" " +Global.getTimeFormat())); - return; - } - } - } + QDateTime date = new QDateTime(QDateTime.currentDateTime()); + updateListDateChanged(currentNoteGuid, date); logger.log(logger.HIGH, "Leaving NeverNote.updateListDateChanged"); } // Redo scroll - @SuppressWarnings("unused") private void scrollToCurrentGuid() { //scrollToGuid(currentNoteGuid); List selections = noteTableView.selectionModel().selectedRows(); @@ -2865,9 +3728,10 @@ public class NeverNote extends QMainWindow{ // noteTableView.setCurrentIndex(index); noteTableView.selectRow(i); noteTableView.scrollTo(index, ScrollHint.EnsureVisible); // This should work, but it doesn't - i=noteTableView.model.rowCount(); + i=listManager.getNoteTableModel().rowCount(); } } + noteTableView.repaint(); } // Show/Hide columns private void showColumns() { @@ -2879,11 +3743,9 @@ public class NeverNote extends QMainWindow{ noteTableView.setColumnHidden(Global.noteTableTagPosition, !Global.isColumnVisible("tags")); noteTableView.setColumnHidden(Global.noteTableNotebookPosition, !Global.isColumnVisible("notebook")); noteTableView.setColumnHidden(Global.noteTableSynchronizedPosition, !Global.isColumnVisible("synchronized")); - } - // Open a separate window - @SuppressWarnings("unused") - private void listDoubleClick() { - + noteTableView.setColumnHidden(Global.noteTableGuidPosition, !Global.isColumnVisible("guid")); + noteTableView.setColumnHidden(Global.noteTableThumbnailPosition, !Global.isColumnVisible("thumbnail")); + noteTableView.setColumnHidden(Global.noteTableTitlePosition, !Global.isColumnVisible("title")); } // Title color has changed @SuppressWarnings("unused") @@ -2897,30 +3759,156 @@ public class NeverNote extends QMainWindow{ if (backgroundColor.rgb() == QColor.black.rgb() || backgroundColor.rgb() == QColor.blue.rgb()) foregroundColor.setRgb(QColor.white.rgb()); - if (selectedNoteGUIDs.size() == 0) - selectedNoteGUIDs.add(currentNoteGuid); - - for (int j=0; j ix = noteTableView.model.itemData(modelIndex); - String tableGuid = (String)ix.values().toArray()[0]; - if (tableGuid.equals(selectedNoteGUIDs.get(j))) { - for (int k=0; k ix = listManager.getNoteTableModel().itemData(modelIndex); + String tableGuid = (String)ix.values().toArray()[0]; + if (tableGuid.equals(selectedNoteGUIDs.get(j))) { + for (int k=0; k0) + line.append(Global.tagDelimeter+" "); + line.append(values.get(i)); + } + if (guid.equals(currentNoteGuid)) { + browserWindow.setTag(line.toString()); } - logger.log(logger.HIGH, "Leaving NeverNote.updateListAuthor"); + } + @SuppressWarnings("unused") + private void externalWindowClosing(String guid) { + externalWindows.remove(guid); } + //*************************************************************** //*************************************************************** //** These functions deal with Note specific things @@ -2929,71 +3917,110 @@ public class NeverNote extends QMainWindow{ @SuppressWarnings("unused") private void setNoteDirty() { logger.log(logger.EXTREME, "Entering NeverNote.setNoteDirty()"); - noteDirty = true; - - listManager.getUnsynchronizedNotes().add(currentNoteGuid); - for (int i=0; i ix = noteTableView.model.itemData(modelIndex); + SortedMap ix = listManager.getNoteTableModel().itemData(modelIndex); String tableGuid = (String)ix.values().toArray()[0]; if (tableGuid.equals(currentNoteGuid)) { - noteTableView.model.setData(i, Global.noteTableSynchronizedPosition, "false"); + listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false"); return; } } } + */ logger.log(logger.EXTREME, "Leaving NeverNote.setNoteDirty()"); } + @SuppressWarnings("unused") + private void saveNoteExternalBrowser(String guid, String content, Boolean save, BrowserWindow browser) { + QTextCodec codec = QTextCodec.codecForName("UTF-8"); + QByteArray unicode = codec.fromUnicode(content); + noteCache.remove(guid); + noteCache.put(guid, unicode.toString()); + if (guid.equals(currentNoteGuid)) { + noteDirty = true; + browserWindow.getBrowser().setContent(unicode); + } + if (save) { + thumbnailRunner.addWork("GENERATE "+ guid); + saveNote(guid, browser); + } + + } private void saveNote() { - logger.log(logger.EXTREME, "Inside NeverNote.saveNote()"); if (noteDirty) { - logger.log(logger.EXTREME, "Note is dirty."); - waitCursor(true); - - preview = new Thumbnailer(currentNoteGuid, new QSize(1024,768)); - preview.finished.connect(this, "saveThumbnail(String)"); - preview.setContent(browserWindow.getContent()); + saveNote(currentNoteGuid, browserWindow); + thumbnailRunner.addWork("GENERATE "+ currentNoteGuid); + noteDirty = false; + } + } + private void saveNote(String guid, BrowserWindow window) { + logger.log(logger.EXTREME, "Inside NeverNote.saveNote()"); + logger.log(logger.EXTREME, "Note is dirty."); + waitCursor(true); - logger.log(logger.EXTREME, "Saving to cache"); - QTextCodec codec = QTextCodec.codecForLocale(); + logger.log(logger.EXTREME, "Saving to cache"); + QTextCodec codec = QTextCodec.codecForLocale(); // QTextDecoder decoder = codec.makeDecoder(); - codec = QTextCodec.codecForName("UTF-8"); - QByteArray unicode = codec.fromUnicode(browserWindow.getContent()); - noteCache.put(currentNoteGuid, unicode.toString()); + codec = QTextCodec.codecForName("UTF-8"); + QByteArray unicode = codec.fromUnicode(window.getContent()); + noteCache.put(guid, unicode.toString()); - logger.log(logger.EXTREME, "updating list manager"); - listManager.updateNoteContent(currentNoteGuid, browserWindow.getContent()); - logger.log(logger.EXTREME, "Updating title"); - listManager.updateNoteTitle(currentNoteGuid, browserWindow.getTitle()); - updateListDateChanged(); + logger.log(logger.EXTREME, "updating list manager"); + listManager.updateNoteContent(guid, window.getContent()); + logger.log(logger.EXTREME, "Updating title"); + listManager.updateNoteTitle(guid, window.getTitle()); + updateListDateChanged(); - logger.log(logger.EXTREME, "Looking through note index for refreshed note"); - for (int i=0; i or encoded characters are ugly js.append(""); - js.append(""); + js.append(""); js.append(""); + js.append(""); js.append(""); js.append(""); - js.append(rebuildNoteHTML(currentNoteGuid, currentNote.getContent())); + formatter.setNote(currentNote, Global.pdfPreview()); + js.append(formatter.rebuildNoteHTML()); js.append(""); js.replace("", ""); js.replace("", ""); js.replace("", ""); - browserWindow.getBrowser().setContent(js); + browser.getBrowser().setContent(js); noteCache.put(currentNoteGuid, js.toString()); - if (conn.getNoteTable().isThumbnailNeeded(currentNoteGuid)) { - preview = new Thumbnailer(currentNoteGuid, new QSize(1024,768)); - preview.finished.connect(this, "saveThumbnail(String)"); - preview.setContent(js.toString()); - } + + if (formatter.resourceError) + resourceErrorMessage(); + readOnly = formatter.readOnly; + inkNote = formatter.inkNote; + if (readOnly) + readOnlyCache.put(currentNoteGuid, true); + if (inkNote) + inkNoteCache.put(currentNoteGuid, true); } else { logger.log(logger.HIGH, "Note content is being pulled from the cache"); - String cachedContent = modifyCachedTodoTags(noteCache.get(currentNoteGuid)); - browserWindow.getBrowser().setContent(new QByteArray(cachedContent)); + String cachedContent = formatter.modifyCachedTodoTags(noteCache.get(currentNoteGuid)); + js = new QByteArray(cachedContent); + browser.getBrowser().setContent(js); + if (readOnlyCache.containsKey(currentNoteGuid)) + readOnly = true; + if (inkNoteCache.containsKey(currentNoteGuid)) + inkNote = true; + } + if (conn.getNoteTable().isThumbnailNeeded(currentNoteGuid)) { + thumbnailHTMLReady(currentNoteGuid, js, Global.calculateThumbnailZoom(js.toString())); + } + + if (readOnly || inkNote) + browser.getBrowser().page().setContentEditable(false); // We don't allow editing of ink notes + else + browser.getBrowser().page().setContentEditable(true); + browser.setReadOnly(readOnly); + deleteButton.setEnabled(!readOnly); + tagButton.setEnabled(!readOnly); + menuBar.noteDelete.setEnabled(!readOnly); + menuBar.noteTags.setEnabled(!readOnly); + browser.setNote(currentNote); + + if (conn.getNotebookTable().isLinked(currentNote.getNotebookGuid())) { + deleteButton.setEnabled(false); + menuBar.notebookDeleteAction.setEnabled(false); + } else { + deleteButton.setEnabled(true); + menuBar.notebookDeleteAction.setEnabled(true); } - - browserWindow.getBrowser().page().setContentEditable(!inkNote); // We don't allow editing of ink notes - browserWindow.setNote(currentNote); // Build a list of non-closed notebooks List nbooks = new ArrayList(); @@ -3045,56 +4110,42 @@ public class NeverNote extends QMainWindow{ nbooks.add(listManager.getNotebookIndex().get(i)); } - browserWindow.setNotebookList(nbooks); - browserWindow.setTitle(currentNote.getTitle()); - browserWindow.setTag(getTagNamesForNote(currentNote)); - browserWindow.setAuthor(currentNote.getAttributes().getAuthor()); + browser.setTitle(currentNote.getTitle()); + browser.setTag(getTagNamesForNote(currentNote)); + browser.setAuthor(currentNote.getAttributes().getAuthor()); - browserWindow.setAltered(currentNote.getUpdated()); - browserWindow.setCreation(currentNote.getCreated()); + browser.setAltered(currentNote.getUpdated()); + browser.setCreation(currentNote.getCreated()); if (currentNote.getAttributes().getSubjectDate() > 0) - browserWindow.setSubjectDate(currentNote.getAttributes().getSubjectDate()); + browser.setSubjectDate(currentNote.getAttributes().getSubjectDate()); else - browserWindow.setSubjectDate(currentNote.getCreated()); - browserWindow.setUrl(currentNote.getAttributes().getSourceURL()); - browserWindow.setAllTags(listManager.getTagIndex()); - browserWindow.setCurrentTags(currentNote.getTagNames()); + browser.setSubjectDate(currentNote.getCreated()); + browser.setUrl(currentNote.getAttributes().getSourceURL()); + + FilterEditorTags tagFilter = new FilterEditorTags(conn, logger); + List tagList = tagFilter.getValidTags(currentNote); + browser.setAllTags(tagList); + + browser.setCurrentTags(currentNote.getTagNames()); noteDirty = false; scrollToGuid(currentNoteGuid); - browserWindow.loadingData(false); + browser.loadingData(false); if (thumbnailViewer.isActiveWindow()) thumbnailView(); + + FilterEditorNotebooks notebookFilter = new FilterEditorNotebooks(conn, logger); + browser.setNotebookList(notebookFilter.getValidNotebooks(currentNote, listManager.getNotebookIndex())); + waitCursor(false); logger.log(logger.HIGH, "Leaving NeverNote.refreshEvernoteNote"); } // Save a generated thumbnail - @SuppressWarnings("unused") - private void saveThumbnail(String guid) { - QFile tFile = new QFile(Global.getFileManager().getResDirPath("thumbnail-" + guid + ".png")); - tFile.open(OpenModeFlag.ReadOnly); - QByteArray imgBytes = tFile.readAll(); - tFile.close(); - conn.getNoteTable().setThumbnail(guid, imgBytes); - conn.getNoteTable().setThumbnailNeeded(guid, false); - thumbnailViewer.setThumbnail(QImage.fromData(imgBytes)); - if (thumbnailViewer.isVisible()) - thumbnailViewer.showFullScreen(); - - /* - QByteArray img2 = new QByteArray(conn.getNoteTable().getThumbnail(guid)); - QFile file = new QFile(Global.currentDir+"res/aaaa.png"); - file.open(OpenModeFlag.WriteOnly); - file.write(img2); - file.close(); - */ - } - // Show/Hide note information - @SuppressWarnings("unused") private void toggleNoteInformation() { logger.log(logger.HIGH, "Entering NeverNote.toggleNoteInformation"); browserWindow.toggleInformation(); menuBar.noteAttributes.setChecked(browserWindow.isExtended()); + Global.saveWindowVisible("noteInformation", browserWindow.isExtended()); logger.log(logger.HIGH, "Leaving NeverNote.toggleNoteInformation"); } // Listener triggered when a print button is pressed @@ -3121,7 +4172,8 @@ public class NeverNote extends QMainWindow{ String text2 = browserWindow.getContentsToEmail(); QUrl url = new QUrl("mailto:"); url.addQueryItem("subject", currentNote.getTitle()); - url.addQueryItem("body", QUrl.toPercentEncoding(text2).toString()); +// url.addQueryItem("body", QUrl.toPercentEncoding(text2).toString()); + url.addQueryItem("body", text2); QDesktopServices.openUrl(url); } /* @@ -3153,35 +4205,21 @@ public class NeverNote extends QMainWindow{ @SuppressWarnings("unused") private void fullReindex() { logger.log(logger.HIGH, "Entering NeverNote.fullReindex"); - // If we are deleting non-trash notes - if (currentNote.getDeleted() == 0) { - if (QMessageBox.question(this, "Confirmation", "This will cause all notes & attachments to be reindexed, "+ - "but please be aware that depending upon the size of your database updating all these records " + - "can be time consuming and NeverNote will be unresponsive until it is complete. Do you wish to continue?", - QMessageBox.StandardButton.Yes, - QMessageBox.StandardButton.No)==StandardButton.No.value() && Global.verifyDelete() == true) { - return; - } - } - waitCursor(true); - setMessage("Marking notes for reindex."); - conn.getNoteTable().reindexAllNotes(); - conn.getNoteTable().noteResourceTable.reindexAll(); - setMessage("Database will be reindexed."); - waitCursor(false); - logger.log(logger.HIGH, "Leaving NeverNote.fullRefresh"); + indexRunner.addWork("REINDEXALL"); + setMessage(tr("Database will be reindexed.")); + logger.log(logger.HIGH, "Leaving NeverNote.fullReindex"); } // Listener when a user wants to reindex a specific note @SuppressWarnings("unused") private void reindexNote() { logger.log(logger.HIGH, "Entering NeverNote.reindexNote"); for (int i=0; i 1) - setMessage("Notes will be reindexed."); + setMessage(tr("Notes will be reindexed.")); else - setMessage("Note will be reindexed."); + setMessage(tr("Note will be reindexed.")); logger.log(logger.HIGH, "Leaving NeverNote.reindexNote"); } // Delete the note @@ -3196,7 +4234,7 @@ public class NeverNote extends QMainWindow{ // If we are deleting non-trash notes if (currentNote.isActive()) { if (Global.verifyDelete()) { - if (QMessageBox.question(this, "Confirmation", "Delete selected note(s)?", + if (QMessageBox.question(this, tr("Confirmation"), tr("Delete selected note(s)?"), QMessageBox.StandardButton.Yes, QMessageBox.StandardButton.No)==StandardButton.No.value() && Global.verifyDelete() == true) { return; @@ -3219,13 +4257,13 @@ public class NeverNote extends QMainWindow{ if (selectedNoteGUIDs.size() == 0 && !currentNoteGuid.equals("")) selectedNoteGUIDs.add(currentNoteGuid); for (int i=selectedNoteGUIDs.size()-1; i>=0; i--) { - for (int j=noteTableView.model.rowCount()-1; j>=0; j--) { - QModelIndex modelIndex = noteTableView.model.index(j, Global.noteTableGuidPosition); + for (int j=listManager.getNoteTableModel().rowCount()-1; j>=0; j--) { + QModelIndex modelIndex = listManager.getNoteTableModel().index(j, Global.noteTableGuidPosition); if (modelIndex != null) { - SortedMap ix = noteTableView.model.itemData(modelIndex); + SortedMap ix = listManager.getNoteTableModel().itemData(modelIndex); String tableGuid = (String)ix.values().toArray()[0]; if (tableGuid.equals(selectedNoteGUIDs.get(i))) { - noteTableView.model.removeRow(j); + listManager.getNoteTableModel().removeRow(j); j=-1; } } @@ -3248,12 +4286,22 @@ public class NeverNote extends QMainWindow{ browserWindow.setReadOnly(false); saveNote(); Calendar currentTime = new GregorianCalendar(); - String noteString = new String("\n" + + StringBuffer noteString = new StringBuffer(100); + noteString.append("\n" + "\n" + - "\n
"); + "\n"); + + if (Global.overrideDefaultFont()) { + noteString.append(""); + noteString.append(""); + noteString.append("
\n"); + noteString.append("
\n
\n"); + } else + noteString.append("
\n"); + noteString.append("
"); Long l = new Long(currentTime.getTimeInMillis()); - String randint = new String(Long.toString(l)); + String randint = new String(Long.toString(l)); // Find a notebook. We first look for a selected notebook (the "All Notebooks" one doesn't count). // Then we look @@ -3301,7 +4349,7 @@ public class NeverNote extends QMainWindow{ newNote.setGuid(randint); newNote.setNotebookGuid(notebook); newNote.setTitle(""); - newNote.setContent(noteString); + newNote.setContent(noteString.toString()); newNote.setDeleted(0); newNote.setCreated(System.currentTimeMillis()); newNote.setUpdated(System.currentTimeMillis()); @@ -3311,18 +4359,36 @@ public class NeverNote extends QMainWindow{ na.setLongitude(0.0); na.setAltitude(0.0); newNote.setAttributes(new NoteAttributes()); + newNote.setTagGuids(new ArrayList()); + newNote.setTagNames(new ArrayList()); + + // If new notes are to be created based upon the selected tags, then we need to assign the tags + if (Global.newNoteWithSelectedTags()) { + List selections = tagTree.selectedItems(); + QTreeWidgetItem currentSelection; + for (int i=0; i resList = conn.getNoteTable().noteResourceTable.getNoteResources(guid, true); + oldNote.setContent(conn.getNoteTable().getNoteContentBinary(guid)); oldNote.setResources(resList); duplicateNote(oldNote); } @@ -3487,10 +4556,24 @@ public class NeverNote extends QMainWindow{ listManager.addNote(newNote); conn.getNoteTable().addNote(newNote, true); listManager.getUnsynchronizedNotes().add(newNote.getGuid()); - noteTableView.insertRow(listManager, newNote, true, -1); + noteTableView.insertRow(newNote, true, -1); listManager.countNotebookResults(listManager.getNoteIndex()); waitCursor(false); } + // View all notes + @SuppressWarnings("unused") + private void allNotes() { + clearAttributeFilter(); + clearNotebookFilter(); + clearSavedSearchFilter(); + clearTrashFilter(); + clearTagFilter(); + searchField.clear(); + if (Global.mimicEvernoteInterface) { + notebookTree.selectGuid(""); + } + notebookTreeSelection(); + } // Merge notes @SuppressWarnings("unused") private void mergeNotes() { @@ -3591,7 +4674,55 @@ public class NeverNote extends QMainWindow{ if (!thumbnailViewer.isVisible()) thumbnailViewer.showFullScreen(); } + // An error happened while saving a note. Inform the user + @SuppressWarnings("unused") + private void saveRunnerError(String guid, String msg) { + if (msg == null) { + String title = "*Unknown*"; + for (int i=0; i= 1) { + logger.log(logger.EXTREME, "No available thumbnail generators. Aborting " +guid); + return; + } + + logger.log(logger.EXTREME, "Creating new thumbnail generator " +guid); + Thumbnailer preview = new Thumbnailer(logger, conn, listManager, thumbnailRunner); + thumbGenerators.add(preview); + if (preview.mutex.tryLock()) { + logger.log(logger.EXTREME, "Loading thumbnail for " +guid); + preview.loadContent(guid, html, zoom); + } + logger.log(logger.HIGH, "Exiting thumnailHTMLReady()"); + } + + + //********************************************************** //********************************************************** //* Online user actions @@ -3600,9 +4731,11 @@ public class NeverNote extends QMainWindow{ private void setupOnlineMenu() { if (!Global.isConnected) { menuBar.noteOnlineHistoryAction.setEnabled(false); + menuBar.selectiveSyncAction.setEnabled(false); return; } else { menuBar.noteOnlineHistoryAction.setEnabled(true); + menuBar.selectiveSyncAction.setEnabled(true); } } @SuppressWarnings("unused") @@ -3610,12 +4743,12 @@ public class NeverNote extends QMainWindow{ if (currentNoteGuid == null || currentNoteGuid.equals("")) return; if (currentNote.getUpdateSequenceNum() == 0) { - setMessage("Note has never been synchronized."); - QMessageBox.information(this, "Error", "This note has never been sent to Evernote, so there is no history."); + setMessage(tr("Note has never been synchronized.")); + QMessageBox.information(this, tr("Error"), tr("This note has never been sent to Evernote, so there is no history.")); return; } - setMessage("Getting Note History"); + setMessage(tr("Getting Note History")); waitCursor(true); Note currentOnlineNote = null; versions = null; @@ -3632,7 +4765,7 @@ public class NeverNote extends QMainWindow{ setMessage("EDAMSystemException: " +e.getMessage()); return; } catch (EDAMNotFoundException e) { - setMessage("Note not found on server."); + setMessage(tr("Note not found on server.")); QMessageBox.information(this, "Error", "This note could not be found on Evernote's servers."); return; } catch (TException e) { @@ -3642,7 +4775,7 @@ public class NeverNote extends QMainWindow{ // If we've gotten this far, we have a good note. if (historyWindow == null) { - historyWindow = new OnlineNoteHistory(conn); + historyWindow = new OnlineNoteHistory(logger, conn); historyWindow.historyCombo.activated.connect(this, "reloadHistoryWindow(String)"); historyWindow.restoreAsNew.clicked.connect(this, "restoreHistoryNoteAsNew()"); historyWindow.restore.clicked.connect(this, "restoreHistoryNote()"); @@ -3656,7 +4789,7 @@ public class NeverNote extends QMainWindow{ loadHistoryWindowContent(currentOnlineNote); historyWindow.load(versions); - setMessage("History retrieved"); + setMessage(tr("History retrieved")); waitCursor(false); historyWindow.exec(); } @@ -3669,7 +4802,7 @@ public class NeverNote extends QMainWindow{ int usn = 0; for (int i=0; i -1) { - appl = fn.substring(pos+1); - } - } - } - - String fileDetails = null; - if (r.getAttributes() != null && r.getAttributes().getFileName() != null && !r.getAttributes().getFileName().equals("")) - fileDetails = r.getAttributes().getFileName(); - String contextFileName; - FileManager fileManager = Global.getFileManager(); - if (fileDetails != null && !fileDetails.equals("")) { - enmedia.setAttribute("href", "nnres://" +r.getGuid() +Global.attachmentNameDelimeter +fileDetails); - contextFileName = fileManager.getResDirPath(r.getGuid() + Global.attachmentNameDelimeter + fileDetails); - } else { - enmedia.setAttribute("href", "nnres://" +r.getGuid() +Global.attachmentNameDelimeter +appl); - contextFileName = fileManager.getResDirPath(r.getGuid() + Global.attachmentNameDelimeter + appl); - } - contextFileName = contextFileName.replace("\\", "/"); - enmedia.setAttribute("onContextMenu", "window.jambi.resourceContextMenu('" +contextFileName +"');"); - if (fileDetails == null || fileDetails.equals("")) - fileDetails = ""; - enmedia.setAttribute("en-tag", "en-media"); - enmedia.setAttribute("guid", r.getGuid()); - enmedia.setTagName("a"); - QDomElement newText = doc.createElement("img"); - boolean goodPreview = false; - String filePath = ""; - if (appl.equalsIgnoreCase("pdf") && Global.pdfPreview()) { - String fileName; - Resource res = conn.getNoteTable().noteResourceTable.getNoteResource(r.getGuid(), true); - if (res.getAttributes() != null && - res.getAttributes().getFileName() != null && - !res.getAttributes().getFileName().trim().equals("")) - fileName = res.getGuid()+Global.attachmentNameDelimeter+res.getAttributes().getFileName(); - else - fileName = res.getGuid()+".pdf"; - QFile file = new QFile(fileManager.getResDirPath(fileName)); - QFile.OpenMode mode = new QFile.OpenMode(); - mode.set(QFile.OpenModeFlag.WriteOnly); - file.open(mode); - QDataStream out = new QDataStream(file); - Resource resBinary = conn.getNoteTable().noteResourceTable.getNoteResource(res.getGuid(), true); - QByteArray binData = new QByteArray(resBinary.getData().getBody()); - resBinary = null; - out.writeBytes(binData.toByteArray()); - file.close(); - PDFPreview pdfPreview = new PDFPreview(); - goodPreview = pdfPreview.setupPreview(file.fileName(), appl,0); - if (goodPreview) { - QDomElement span = doc.createElement("span"); - QDomElement table = doc.createElement("table"); - span.setAttribute("pdfNavigationTable", "true"); - QDomElement tr = doc.createElement("tr"); - QDomElement td = doc.createElement("td"); - QDomElement left = doc.createElement("img"); - left.setAttribute("onMouseDown", "window.jambi.nextPage('" +file.fileName() +"')"); - left.setAttribute("onMouseDown", "window.jambi.nextPage('" +file.fileName() +"')"); - left.setAttribute("onMouseOver", "style.cursor='hand'"); - QDomElement right = doc.createElement("img"); - right.setAttribute("onMouseDown", "window.jambi.nextPage('" +file.fileName() +"')"); - left.setAttribute("onMouseDown", "window.jambi.previousPage('" +file.fileName() +"')"); - // NFC TODO: should these be file:// URLs? - left.setAttribute("src", Global.getFileManager().getImageDirPath("small_left.png")); - right.setAttribute("src", Global.getFileManager().getImageDirPath("small_right.png")); - right.setAttribute("onMouseOver", "style.cursor='hand'"); - - table.appendChild(tr); - tr.appendChild(td); - td.appendChild(left); - td.appendChild(right); - span.appendChild(table); - enmedia.parentNode().insertBefore(span, enmedia); - } - filePath = fileName+".png"; - } - String icon = findIcon(appl); - if (icon.equals("attachment.png")) - icon = findIcon(fileDetails.substring(fileDetails.indexOf(".")+1)); - // NFC TODO: should this be a 'file://' URL? - newText.setAttribute("src", Global.getFileManager().getImageDirPath(icon)); - if (goodPreview) { - // NFC TODO: should this be a 'file://' URL? - newText.setAttribute("src", fileManager.getResDirPath(filePath)); - newText.setAttribute("style", "border-style:solid; border-color:green; padding:0.5mm 0.5mm 0.5mm 0.5mm;"); - } - newText.setAttribute("title", fileDetails); - enmedia.removeChild(enmedia.firstChild()); - - enmedia.appendChild(newText); - } - } - logger.log(logger.HIGH, "Leaving NeverNote.modifyApplicationTags"); + setMessage(tr("Note has been restored.")); } - // Modify the en-to tag into an input field - private void modifyTodoTags(QDomElement todo) { - logger.log(logger.HIGH, "Entering NeverNote.modifyTodoTags"); - todo.setAttribute("type", "checkbox"); - String checked = todo.attribute("checked"); - todo.removeAttribute("checked"); - if (checked.equalsIgnoreCase("true")) - todo.setAttribute("checked", ""); - else - todo.setAttribute("unchecked",""); - todo.setAttribute("value", checked); - todo.setAttribute("onClick", "value=checked;window.jambi.contentChanged(); "); - todo.setTagName("input"); - logger.log(logger.HIGH, "Leaving NeverNote.modifyTodoTags"); - } - // Modify any cached todo tags that may have changed - private String modifyCachedTodoTags(String note) { - logger.log(logger.HIGH, "Entering NeverNote.modifyCachedTodoTags"); - StringBuffer html = new StringBuffer(note); - for (int i=html.indexOf("-1; i=html.indexOf("",i+1); - String input = html.substring(i,endPos); - if (input.indexOf("value=\"true\"") > 0) - input = input.replace("unchecked=\"\"", "checked=\"\""); - else - input = input.replace("checked=\"\"", "unchecked=\"\""); - html.replace(i, endPos, input); - i++; + @SuppressWarnings("unused") + private void setupSelectiveSync() { + + // Get a list of valid notebooks + List notebooks = null; + List tags = null; + try { + notebooks = syncRunner.noteStore.listNotebooks(syncRunner.authToken); + tags = syncRunner.noteStore.listTags(syncRunner.authToken); + } catch (EDAMUserException e) { + setMessage("EDAMUserException: " +e.getMessage()); + return; + } catch (EDAMSystemException e) { + setMessage("EDAMSystemException: " +e.getMessage()); + return; + } catch (TException e) { + setMessage("EDAMTransactionException: " +e.getMessage()); + return; } - logger.log(logger.HIGH, "Leaving NeverNote.modifyCachedTodoTags"); - return html.toString(); - } - // Modify the en-media tag into an image tag so it can be displayed. - private void modifyImageTags(QDomElement docElem, QDomElement enmedia, QDomAttr hash) { - logger.log(logger.HIGH, "Entering NeverNote.modifyImageTags"); - String type = enmedia.attribute("type"); - if (type.startsWith("image/")) - type = "."+type.substring(6); - else - type=""; - String resGuid = conn.getNoteTable().noteResourceTable.getNoteResourceGuidByHashHex(currentNoteGuid, hash.value()); - QFile tfile = new QFile(Global.getFileManager().getResDirPath(resGuid + type)); - if (!tfile.exists()) { - Resource r = null; - if (resGuid != null) - r = conn.getNoteTable().noteResourceTable.getNoteResource(resGuid,true); - if (r==null || r.getData() == null || r.getData().getBody().length == 0) - resourceErrorMessage(); - if (r!= null && r.getData() != null && r.getData().getBody().length > 0) { - tfile.open(new QIODevice.OpenMode(QIODevice.OpenModeFlag.WriteOnly)); - QByteArray binData = new QByteArray(r.getData().getBody()); - tfile.write(binData); - tfile.close(); - enmedia.setAttribute("src", QUrl.fromLocalFile(tfile.fileName()).toString()); - enmedia.setAttribute("en-tag", "en-media"); - enmedia.setNodeValue(""); - enmedia.setAttribute("guid", r.getGuid()); - enmedia.setTagName("img"); + // Split up notebooks into synchronized & non-synchronized + List ignoredBooks = new ArrayList(); + List dbIgnoredNotebooks = conn.getSyncTable().getIgnoreRecords("NOTEBOOK"); + + for (int i=notebooks.size()-1; i>=0; i--) { + for (int j=0; j(); - tempFiles.clear(); - QDomElement docElem = doc.documentElement(); - - // Modify en-media tags - QDomNodeList anchors = docElem.elementsByTagName("en-media"); - int enMediaCount = anchors.length(); - for (int i=enMediaCount-1; i>=0; i--) { - QDomElement enmedia = anchors.at(i).toElement(); - if (enmedia.hasAttribute("type")) { - QDomAttr attr = enmedia.attributeNode("type"); - QDomAttr hash = enmedia.attributeNode("hash"); - String[] type = attr.nodeValue().split("/"); - String appl = type[1]; - - if (type[0] != null) { - if (type[0].equals("image")) { - modifyImageTags(docElem, enmedia, hash); - } - if (!type[0].equals("image")) { - modifyApplicationTags(doc, docElem, enmedia, hash, appl); - } + + // split up tags into synchronized & non-synchronized + List ignoredTags = new ArrayList(); + List dbIgnoredTags = conn.getSyncTable().getIgnoreRecords("TAG"); + + for (int i=tags.size()-1; i>=0; i--) { + for (int j=0; j oldIgnoreNotebooks = conn.getSyncTable().getIgnoreRecords("NOTEBOOK"); + for (int i=0; i newNotebooks = new ArrayList(); + for (int i=ignore.getIgnoredBookList().count()-1; i>=0; i--) { + String text = ignore.getIgnoredBookList().takeItem(i).text(); + for (int j=0; j=0; i--) { - QDomElement enmedia = anchors.at(i).toElement(); - modifyTodoTags(enmedia); + // Clear out old tags & add new ones + List oldIgnoreTags = conn.getSyncTable().getIgnoreRecords("TAG"); + for (int i=0; i=0; i--) { - QDomElement enmedia = anchors.at(i).toElement(); - enmedia.setAttribute("contentEditable","false"); - enmedia.setAttribute("src", Global.getFileManager().getImageDirPath("encrypt.png")); - enmedia.setAttribute("en-tag","en-crypt"); - enmedia.setAttribute("alt", enmedia.text()); - Global.cryptCounter++; - enmedia.setAttribute("id", "crypt"+Global.cryptCounter.toString()); - String encryptedText = enmedia.text(); - - // If the encryption string contains crlf at the end, remove them because they mess up the javascript. - if (encryptedText.endsWith("\n")) - encryptedText = encryptedText.substring(0,encryptedText.length()-1); - if (encryptedText.endsWith("\r")) - encryptedText = encryptedText.substring(0,encryptedText.length()-1); - - // Add the commands - String hint = enmedia.attribute("hint"); - hint = hint.replace("'","'"); - enmedia.setAttribute("onClick", "window.jambi.decryptText('crypt"+Global.cryptCounter.toString()+"', '"+encryptedText+"', '"+hint+"');"); - enmedia.setAttribute("onMouseOver", "style.cursor='hand'"); - enmedia.setTagName("img"); - enmedia.removeChild(enmedia.firstChild()); // Remove the actual encrypted text - } - - logger.log(logger.HIGH, "Leaving NeverNote.modifyTags"); - return doc; - } - // Rebuild the note HTML to something usable - private String rebuildNoteHTML(String noteGuid, String note) { - logger.log(logger.HIGH, "Entering NeverNote.rebuildNoteHTML"); - logger.log(logger.EXTREME, "Note guid: " +noteGuid); - logger.log(logger.EXTREME, "Note Text:" +note); - QDomDocument doc = new QDomDocument(); - QDomDocument.Result result = doc.setContent(note); - if (!result.success) { - logger.log(logger.MEDIUM, tr("Parse error when rebuilding HTML")); - logger.log(logger.MEDIUM, tr("Note guid: " +noteGuid)); - logger.log(logger.EXTREME, tr("Start of unmodified note HTML")); - logger.log(logger.EXTREME, note); - logger.log(logger.EXTREME, tr("End of unmodified note HTML")); - return note; + List newTags = new ArrayList(); + for (int i=ignore.getIgnoredTagList().count()-1; i>=0; i--) { + String text = ignore.getIgnoredTagList().takeItem(i).text(); + for (int j=0; j(); - tempFiles.clear(); - - doc = modifyTags(doc); - doc = addHilight(doc); - QDomElement docElem = doc.documentElement(); - docElem.setTagName("Body"); -// docElem.setAttribute("bgcolor", "green"); - logger.log(logger.EXTREME, "Rebuilt HTML:"); - logger.log(logger.EXTREME, doc.toString()); - logger.log(logger.HIGH, "Leaving NeverNote.rebuildNoteHTML"); - // Fix the stupid problem where inserting an tag after an tag (which is done - // to get the application tag to work properly) causes spaces to be inserted - // between the & . This messes things up later. This is an ugly hack. - StringBuffer html = new StringBuffer(doc.toString()); - for (int i=html.indexOf("-1; i=html.indexOf("\n",i+1); - int z = html.indexOf("i; j--) - html.deleteCharAt(j); - i=html.indexOf("/>", z+1); - z = html.indexOf("",i); - for (int j=z-1; j>i+1; j--) - html.deleteCharAt(j); - } - return html.toString(); - } - // Scan and do hilighting of words - private QDomDocument addHilight(QDomDocument doc) { - EnSearch e = listManager.getEnSearch(); - if (e.hilightWords == null || e.hilightWords.size() == 0) - return doc; - XMLInsertHilight hilight = new XMLInsertHilight(doc, listManager.getEnSearch().hilightWords); - return hilight.getDoc(); - } - + + conn.getNoteTable().expungeIgnoreSynchronizedNotes(newNotebooks, newTags); + waitCursor(false); + refreshLists(); + } + + + //********************************************************** + //********************************************************** + //* XML Modifying methods + //********************************************************** + //********************************************************** // An error has happended fetching a resource. let the user know private void resourceErrorMessage() { if (inkNote) @@ -4074,7 +4984,6 @@ public class NeverNote extends QMainWindow{ "this note on the Evernote servers. Sorry."+ "\n\nP.S. You might want to re-synchronize to see if it corrects this problem.\nWho knows, you might get lucky.")); inkNote = true; -//// browserWindow.setEnabled(false); browserWindow.setReadOnly(true); } @@ -4103,7 +5012,9 @@ public class NeverNote extends QMainWindow{ syncRunner.syncDeletedContent = Global.synchronizeDeletedContent(); if (syncThreadsReady > 0) { + indexRunner.interrupt = true; saveNoteIndexWidth(); + saveNoteColumnPositions(); if (syncRunner.addWork("SYNC")) { syncRunning = true; syncRunner.syncNeeded = true; @@ -4115,51 +5026,33 @@ public class NeverNote extends QMainWindow{ } @SuppressWarnings("unused") private void syncThreadComplete(Boolean refreshNeeded) { - setMessage("Finalizing Synchronization"); + setMessage(tr("Finalizing Synchronization")); syncThreadsReady++; syncRunning = false; syncRunner.syncNeeded = false; synchronizeAnimationTimer.stop(); - noteIndexUpdated(true); - synchronizeButton.setIcon(synchronizeAnimation.get(0)); + synchronizeButton.setIcon(new QIcon(iconPath+"synchronize.png")); saveNote(); -// noteTableView.selectionModel().selectionChanged.disconnect(this, "noteTableSelection()"); + if (currentNote == null) { + currentNote = conn.getNoteTable().getNote(currentNoteGuid, false, false, false, false, true); + } + listManager.setUnsynchronizedNotes(conn.getNoteTable().getUnsynchronizedGUIDs()); + noteIndexUpdated(false); noteTableView.selectionModel().blockSignals(true); scrollToGuid(currentNoteGuid); noteTableView.selectionModel().blockSignals(false); -// noteTableView.selectionModel().selectionChanged.connect(this, "noteTableSelection()"); -// indexRunner.setKeepRunning(Global.keepRunning); - - listManager.setUnsynchronizedNotes(conn.getNoteTable().getUnsynchronizedGUIDs()); - for (int i=0; i ix = noteTableView.model.itemData(modelIndex); - String tableGuid = (String)ix.values().toArray()[0]; - String synch = "true"; - for (int j=0; j MAX) - QMessageBox.information(this, "A thread his died.", "It appears as the tag counter thread has died. I recommend "+ - "checking stopping NeverNote, saving the logs for later viewing, and restarting. Sorry."); + QMessageBox.information(this, tr("A thread his died."), tr("It appears as the tag counter thread has died. I recommend "+ + "checking stopping NeverNote, saving the logs for later viewing, and restarting. Sorry.")); } else tagDeadCount=0; alive = listManager.threadCheck(Global.notebookCounterThreadId); if (!alive) { notebookThreadDeadCount++; - QMessageBox.information(this, "A thread his died.", "It appears as the notebook counter thread has died. I recommend "+ - "checking stopping NeverNote, saving the logs for later viewing, and restarting. Sorry."); + QMessageBox.information(this, tr("A thread his died."), tr("It appears as the notebook counter thread has died. I recommend "+ + "checking stopping NeverNote, saving the logs for later viewing, and restarting. Sorry.")); } else notebookThreadDeadCount=0; alive = listManager.threadCheck(Global.trashCounterThreadId); if (!alive) { trashDeadCount++; - QMessageBox.information(this, "A thread his died.", "It appears as the trash counter thread has died. I recommend "+ - "checking stopping NeverNote, saving the logs for later viewing, and restarting. Sorry."); + QMessageBox.information(this, tr("A thread his died."), ("It appears as the trash counter thread has died. I recommend "+ + "checking stopping NeverNote, saving the logs for later viewing, and restarting. Sorry.")); } else trashDeadCount = 0; alive = listManager.threadCheck(Global.saveThreadId); if (!alive) { saveThreadDeadCount++; - QMessageBox.information(this, "A thread his died.", "It appears as the note saver thread has died. I recommend "+ - "checking stopping NeverNote, saving the logs for later viewing, and restarting. Sorry."); + QMessageBox.information(this, tr("A thread his died."), tr("It appears as the note saver thread has died. I recommend "+ + "checking stopping NeverNote, saving the logs for later viewing, and restarting. Sorry.")); } else saveThreadDeadCount=0; if (!syncThread.isAlive()) { syncThreadDeadCount++; - QMessageBox.information(this, "A thread his died.", "It appears as the synchronization thread has died. I recommend "+ - "checking stopping NeverNote, saving the logs for later viewing, and restarting. Sorry."); + QMessageBox.information(this, tr("A thread his died."), tr("It appears as the synchronization thread has died. I recommend "+ + "checking stopping NeverNote, saving the logs for later viewing, and restarting. Sorry.")); } else syncThreadDeadCount=0; if (!indexThread.isAlive()) { indexThreadDeadCount++; - QMessageBox.information(this, "A thread his died.", "It appears as the index thread has died. I recommend "+ - "checking stopping NeverNote, saving the logs for later viewing, and restarting. Sorry."); + QMessageBox.information(this, tr("A thread his died."), tr("It appears as the index thread has died. I recommend "+ + "checking stopping NeverNote, saving the logs for later viewing, and restarting. Sorry.")); } else indexThreadDeadCount=0; } - + private void thumbnailTimer() { + if (Global.enableThumbnails() && conn.getNoteTable().getThumbnailNeededCount() > 1) { + thumbnailTimer.setInterval(10*1000); + thumbnailRunner.addWork("SCAN"); + } else { + thumbnailTimer.setInterval(60*1000); + } + } //************************************************** //* Backup & Restore @@ -4362,7 +5215,7 @@ public class NeverNote extends QMainWindow{ QFileDialog fd = new QFileDialog(this); fd.setFileMode(FileMode.AnyFile); fd.setConfirmOverwrite(true); - fd.setWindowTitle("Backup Database"); + fd.setWindowTitle(tr("Backup Database")); fd.setFilter(tr("NeverNote Export (*.nnex);;All Files (*.*)")); fd.setAcceptMode(AcceptMode.AcceptSave); fd.setDirectory(System.getProperty("user.home")); @@ -4372,7 +5225,7 @@ public class NeverNote extends QMainWindow{ waitCursor(true); - setMessage("Backing up database"); + setMessage(tr("Backing up database")); saveNote(); // conn.backupDatabase(Global.getUpdateSequenceNumber(), Global.getSequenceDate()); @@ -4382,18 +5235,18 @@ public class NeverNote extends QMainWindow{ if (!fileName.endsWith(".nnex")) fileName = fileName +".nnex"; noteWriter.exportData(fileName); - setMessage("Database backup completed."); + setMessage(tr("Database backup completed.")); waitCursor(false); } @SuppressWarnings("unused") private void databaseRestore() { - if (QMessageBox.question(this, "Confirmation", - "This is used to restore a database from backups.\n" + + if (QMessageBox.question(this, tr("Confirmation"), + tr("This is used to restore a database from backups.\n" + "It is HIGHLY recommened that this only be used to populate\n" + "an empty database. Restoring into a database that\n already has data" + - " can cause problems.\n\nAre you sure you want to continue?", + " can cause problems.\n\nAre you sure you want to continue?"), QMessageBox.StandardButton.Yes, QMessageBox.StandardButton.No)==StandardButton.No.value()) { return; @@ -4403,7 +5256,7 @@ public class NeverNote extends QMainWindow{ QFileDialog fd = new QFileDialog(this); fd.setFileMode(FileMode.ExistingFile); fd.setConfirmOverwrite(true); - fd.setWindowTitle("Restore Database"); + fd.setWindowTitle(tr("Restore Database")); fd.setFilter(tr("NeverNote Export (*.nnex);;All Files (*.*)")); fd.setAcceptMode(AcceptMode.AcceptOpen); fd.setDirectory(System.getProperty("user.home")); @@ -4413,7 +5266,7 @@ public class NeverNote extends QMainWindow{ waitCursor(true); - setMessage("Restoring database"); + setMessage(tr("Restoring database")); ImportData noteReader = new ImportData(conn, true); noteReader.importData(fd.selectedFiles().get(0)); @@ -4427,7 +5280,7 @@ public class NeverNote extends QMainWindow{ listManager.loadNoteTitleColors(); refreshLists(); refreshEvernoteNote(true); - setMessage("Database has been restored."); + setMessage(tr("Database has been restored.")); waitCursor(false); } @SuppressWarnings("unused") @@ -4435,7 +5288,7 @@ public class NeverNote extends QMainWindow{ QFileDialog fd = new QFileDialog(this); fd.setFileMode(FileMode.AnyFile); fd.setConfirmOverwrite(true); - fd.setWindowTitle("Backup Database"); + fd.setWindowTitle(tr("Backup Database")); fd.setFilter(tr("NeverNote Export (*.nnex);;All Files (*.*)")); fd.setAcceptMode(AcceptMode.AcceptSave); fd.setDirectory(System.getProperty("user.home")); @@ -4445,7 +5298,7 @@ public class NeverNote extends QMainWindow{ waitCursor(true); - setMessage("Exporting Notes"); + setMessage(tr("Exporting Notes")); saveNote(); if (selectedNoteGUIDs.size() == 0 && !currentNoteGuid.equals("")) @@ -4457,7 +5310,7 @@ public class NeverNote extends QMainWindow{ if (!fileName.endsWith(".nnex")) fileName = fileName +".nnex"; noteWriter.exportData(fileName); - setMessage("Export completed."); + setMessage(tr("Export completed.")); waitCursor(false); @@ -4468,7 +5321,7 @@ public class NeverNote extends QMainWindow{ QFileDialog fd = new QFileDialog(this); fd.setFileMode(FileMode.ExistingFile); fd.setConfirmOverwrite(true); - fd.setWindowTitle("Import Notes"); + fd.setWindowTitle(tr("Import Notes")); fd.setFilter(tr("NeverNote Export (*.nnex);;All Files (*.*)")); fd.setAcceptMode(AcceptMode.AcceptOpen); fd.setDirectory(System.getProperty("user.home")); @@ -4506,7 +5359,7 @@ public class NeverNote extends QMainWindow{ listManager.loadNoteTitleColors(); refreshLists(); refreshEvernoteNote(false); - setMessage("Notes have been imported."); + setMessage(tr("Notes have been imported.")); waitCursor(false); setMessage("Import completed."); @@ -4643,7 +5496,7 @@ public class NeverNote extends QMainWindow{ listManager.addNote(newNote); conn.getNoteTable().addNote(newNote, true); listManager.getUnsynchronizedNotes().add(newNote.getGuid()); - noteTableView.insertRow(listManager, newNote, true, -1); + noteTableView.insertRow(newNote, true, -1); listManager.updateNoteContent(newNote.getGuid(), importer.getNoteContent()); listManager.countNotebookResults(listManager.getNoteIndex()); importedFiles.add(list.get(i).absoluteFilePath()); @@ -4684,7 +5537,7 @@ public class NeverNote extends QMainWindow{ listManager.addNote(newNote); conn.getNoteTable().addNote(newNote, true); listManager.getUnsynchronizedNotes().add(newNote.getGuid()); - noteTableView.insertRow(listManager, newNote, true, -1); + noteTableView.insertRow(newNote, true, -1); listManager.updateNoteContent(newNote.getGuid(), importer.getNoteContent()); listManager.countNotebookResults(listManager.getNoteIndex()); dir.remove(dir.at(i)); @@ -4739,7 +5592,11 @@ public class NeverNote extends QMainWindow{ byte[] hash = md.digest(); String newHash = Global.byteArrayToHexString(hash); if (r.getNoteGuid().equalsIgnoreCase(currentNoteGuid)) { - updateResourceContentHash(r.getGuid(), oldHash, newHash); + updateResourceContentHash(browserWindow, r.getGuid(), oldHash, newHash); + } + if (externalWindows.containsKey(r.getNoteGuid())) { + updateResourceContentHash(externalWindows.get(r.getNoteGuid()).getBrowserWindow(), + r.getGuid(), oldHash, newHash); } conn.getNoteTable().updateResourceContentHash(r.getNoteGuid(), oldHash, newHash); Data data = r.getData(); @@ -4756,6 +5613,13 @@ public class NeverNote extends QMainWindow{ browserWindow.getBrowser().triggerPageAction(WebAction.Reload); } + if (externalWindows.containsKey(r.getNoteGuid())) { + QWebSettings.setMaximumPagesInCache(0); + QWebSettings.setObjectCacheCapacities(0, 0, 0); + externalWindows.get(r.getNoteGuid()).getBrowserWindow().getBrowser().triggerPageAction(WebAction.Reload); + + } + logger.log(logger.HIGH, "Exiting externalFielEdited"); } // This is a timer event that tries to save any external files that were edited. This @@ -4787,29 +5651,45 @@ public class NeverNote extends QMainWindow{ // If an attachment on the current note was edited, we need to update the current notes's hash // Update a note content's hash. This happens if a resource is edited outside of NN - public void updateResourceContentHash(String guid, String oldHash, String newHash) { + public void updateResourceContentHash(BrowserWindow browser, String guid, String oldHash, String newHash) { int position = browserWindow.getContent().indexOf("en-tag=\"en-media\" guid=\""+guid+"\" type="); int endPos; for (;position>-1;) { - endPos = browserWindow.getContent().indexOf(">", position+1); - String oldSegment = browserWindow.getContent().substring(position,endPos); + endPos = browser.getContent().indexOf(">", position+1); + String oldSegment = browser.getContent().substring(position,endPos); int hashPos = oldSegment.indexOf("hash=\""); int hashEnd = oldSegment.indexOf("\"", hashPos+7); String hash = oldSegment.substring(hashPos+6, hashEnd); if (hash.equalsIgnoreCase(oldHash)) { String newSegment = oldSegment.replace(oldHash, newHash); - String content = browserWindow.getContent().substring(0,position) + + String content = browser.getContent().substring(0,position) + newSegment + - browserWindow.getContent().substring(endPos); - browserWindow.getBrowser().setContent(new QByteArray(content));; + browser.getContent().substring(endPos); + browser.getBrowser().setContent(new QByteArray(content));; } - position = browserWindow.getContent().indexOf("en-tag=\"en-media\" guid=\""+guid+"\" type=", position+1); + position = browser.getContent().indexOf("en-tag=\"en-media\" guid=\""+guid+"\" type=", position+1); } } - + //************************************************* + //* Minimize to tray + //************************************************* + @Override + public void changeEvent(QEvent e) { + if (e.type() == QEvent.Type.WindowStateChange) { + if (isMinimized() && Global.showTrayIcon()) { + e.accept(); + QTimer.singleShot(10, this, "hide()"); + return; + } + if (isMaximized()) + windowMaximized = true; + else + windowMaximized = false; + } + } //************************************************* //* Check database userid & passwords