OSDN Git Service

bb8dfa6a79db97a454885f5892649ae2f4749194
[neighbornote/NeighborNote.git] / src / cx / fbn / nevernote / NeverNote.java
1 /*
2  * This file is part of NeverNote 
3  * Copyright 2009 Randy Baumgarte
4  * 
5  * This file may be licensed under the terms of of the
6  * GNU General Public License Version 2 (the ``GPL'').
7  *
8  * Software distributed under the License is distributed
9  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
10  * express or implied. See the GPL for the specific language
11  * governing rights and limitations.
12  *
13  * You should have received a copy of the GPL along with this
14  * program. If not, go to http://www.gnu.org/licenses/gpl.html
15  * or write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17  *
18 */
19 package cx.fbn.nevernote;
20 import java.awt.Desktop;
21 import java.io.File;
22 import java.io.FileInputStream;
23 import java.io.FileNotFoundException;
24 import java.net.Authenticator;
25 import java.net.PasswordAuthentication;
26 import java.security.MessageDigest;
27 import java.security.NoSuchAlgorithmException;
28 import java.sql.Connection;
29 import java.sql.DriverManager;
30 import java.sql.SQLException;
31 import java.sql.Statement;
32 import java.text.SimpleDateFormat;
33 import java.util.ArrayList;
34 import java.util.Calendar;
35 import java.util.Collection;
36 import java.util.Collections;
37 import java.util.Comparator;
38 import java.util.Date;
39 import java.util.GregorianCalendar;
40 import java.util.HashMap;
41 import java.util.Iterator;
42 import java.util.List;
43 import java.util.SortedMap;
44 import java.util.Vector;
45
46 import org.apache.log4j.Level;
47 import org.apache.log4j.Logger;
48 import org.apache.thrift.TException;
49 import org.h2.tools.ChangeFileEncryption;
50
51 import com.evernote.edam.error.EDAMNotFoundException;
52 import com.evernote.edam.error.EDAMSystemException;
53 import com.evernote.edam.error.EDAMUserException;
54 import com.evernote.edam.notestore.NoteFilter;
55 import com.evernote.edam.notestore.NoteVersionId;
56 import com.evernote.edam.type.Data;
57 import com.evernote.edam.type.LinkedNotebook;
58 import com.evernote.edam.type.Note;
59 import com.evernote.edam.type.NoteAttributes;
60 import com.evernote.edam.type.Notebook;
61 import com.evernote.edam.type.Publishing;
62 import com.evernote.edam.type.QueryFormat;
63 import com.evernote.edam.type.Resource;
64 import com.evernote.edam.type.SavedSearch;
65 import com.evernote.edam.type.Tag;
66 import com.evernote.edam.type.User;
67 import com.trolltech.qt.QThread;
68 import com.trolltech.qt.core.QByteArray;
69 import com.trolltech.qt.core.QDateTime;
70 import com.trolltech.qt.core.QDir;
71 import com.trolltech.qt.core.QEvent;
72 import com.trolltech.qt.core.QFile;
73 import com.trolltech.qt.core.QFileInfo;
74 import com.trolltech.qt.core.QFileSystemWatcher;
75 import com.trolltech.qt.core.QIODevice;
76 import com.trolltech.qt.core.QIODevice.OpenModeFlag;
77 import com.trolltech.qt.core.QLocale;
78 import com.trolltech.qt.core.QModelIndex;
79 import com.trolltech.qt.core.QSize;
80 import com.trolltech.qt.core.QTemporaryFile;
81 import com.trolltech.qt.core.QTextCodec;
82 import com.trolltech.qt.core.QThreadPool;
83 import com.trolltech.qt.core.QTimer;
84 import com.trolltech.qt.core.QTranslator;
85 import com.trolltech.qt.core.QUrl;
86 import com.trolltech.qt.core.Qt;
87 import com.trolltech.qt.core.Qt.BGMode;
88 import com.trolltech.qt.core.Qt.ItemDataRole;
89 import com.trolltech.qt.core.Qt.SortOrder;
90 import com.trolltech.qt.core.Qt.WidgetAttribute;
91 import com.trolltech.qt.gui.QAbstractItemView;
92 import com.trolltech.qt.gui.QAbstractItemView.ScrollHint;
93 import com.trolltech.qt.gui.QAction;
94 import com.trolltech.qt.gui.QApplication;
95 import com.trolltech.qt.gui.QCloseEvent;
96 import com.trolltech.qt.gui.QColor;
97 import com.trolltech.qt.gui.QComboBox;
98 import com.trolltech.qt.gui.QComboBox.InsertPolicy;
99 import com.trolltech.qt.gui.QCursor;
100 import com.trolltech.qt.gui.QDesktopServices;
101 import com.trolltech.qt.gui.QDialog;
102 import com.trolltech.qt.gui.QFileDialog;
103 import com.trolltech.qt.gui.QFileDialog.AcceptMode;
104 import com.trolltech.qt.gui.QFileDialog.FileMode;
105 import com.trolltech.qt.gui.QGridLayout;
106 import com.trolltech.qt.gui.QHBoxLayout;
107 import com.trolltech.qt.gui.QIcon;
108 import com.trolltech.qt.gui.QImage;
109 import com.trolltech.qt.gui.QLabel;
110 import com.trolltech.qt.gui.QListWidget;
111 import com.trolltech.qt.gui.QMainWindow;
112 import com.trolltech.qt.gui.QMenu;
113 import com.trolltech.qt.gui.QMessageBox;
114 import com.trolltech.qt.gui.QMessageBox.StandardButton;
115 import com.trolltech.qt.gui.QPainter;
116 import com.trolltech.qt.gui.QPalette.ColorRole;
117 import com.trolltech.qt.gui.QPixmap;
118 import com.trolltech.qt.gui.QPrintDialog;
119 import com.trolltech.qt.gui.QPrinter;
120 import com.trolltech.qt.gui.QSizePolicy;
121 import com.trolltech.qt.gui.QSizePolicy.Policy;
122 import com.trolltech.qt.gui.QSpinBox;
123 import com.trolltech.qt.gui.QSplashScreen;
124 import com.trolltech.qt.gui.QSplitter;
125 import com.trolltech.qt.gui.QStatusBar;
126 import com.trolltech.qt.gui.QSystemTrayIcon;
127 import com.trolltech.qt.gui.QTableWidgetItem;
128 import com.trolltech.qt.gui.QTextEdit;
129 import com.trolltech.qt.gui.QToolBar;
130 import com.trolltech.qt.gui.QTreeWidgetItem;
131 import com.trolltech.qt.network.QNetworkAccessManager;
132 import com.trolltech.qt.network.QNetworkReply;
133 import com.trolltech.qt.network.QNetworkRequest;
134 import com.trolltech.qt.webkit.QWebPage.WebAction;
135 import com.trolltech.qt.webkit.QWebSettings;
136
137 import cx.fbn.nevernote.config.InitializationException;
138 import cx.fbn.nevernote.config.StartupConfig;
139 import cx.fbn.nevernote.dialog.AccountDialog;
140 import cx.fbn.nevernote.dialog.ConfigDialog;
141 import cx.fbn.nevernote.dialog.DBEncryptDialog;
142 import cx.fbn.nevernote.dialog.DatabaseLoginDialog;
143 import cx.fbn.nevernote.dialog.DatabaseStatus;
144 import cx.fbn.nevernote.dialog.FindDialog;
145 import cx.fbn.nevernote.dialog.IgnoreSync;
146 import cx.fbn.nevernote.dialog.LoginDialog;
147 import cx.fbn.nevernote.dialog.NotebookArchive;
148 import cx.fbn.nevernote.dialog.NotebookEdit;
149 import cx.fbn.nevernote.dialog.OnlineNoteHistory;
150 import cx.fbn.nevernote.dialog.PublishNotebook;
151 import cx.fbn.nevernote.dialog.SavedSearchEdit;
152 import cx.fbn.nevernote.dialog.SetIcon;
153 import cx.fbn.nevernote.dialog.ShareNotebook;
154 import cx.fbn.nevernote.dialog.StackNotebook;
155 import cx.fbn.nevernote.dialog.TagEdit;
156 import cx.fbn.nevernote.dialog.ThumbnailViewer;
157 import cx.fbn.nevernote.dialog.UpgradeAvailableDialog;
158 import cx.fbn.nevernote.dialog.WatchFolder;
159 import cx.fbn.nevernote.filters.FilterEditorNotebooks;
160 import cx.fbn.nevernote.filters.FilterEditorTags;
161 import cx.fbn.nevernote.gui.AttributeTreeWidget;
162 import cx.fbn.nevernote.gui.BrowserWindow;
163 import cx.fbn.nevernote.gui.DateAttributeFilterTable;
164 import cx.fbn.nevernote.gui.ExternalBrowse;
165 import cx.fbn.nevernote.gui.MainMenuBar;
166 import cx.fbn.nevernote.gui.NotebookTreeWidget;
167 import cx.fbn.nevernote.gui.SavedSearchTreeWidget;
168 import cx.fbn.nevernote.gui.TableView;
169 import cx.fbn.nevernote.gui.TagTreeWidget;
170 import cx.fbn.nevernote.gui.Thumbnailer;
171 import cx.fbn.nevernote.gui.TrashTreeWidget;
172 import cx.fbn.nevernote.gui.controls.QuotaProgressBar;
173 import cx.fbn.nevernote.sql.DatabaseConnection;
174 import cx.fbn.nevernote.sql.WatchFolderRecord;
175 import cx.fbn.nevernote.threads.IndexRunner;
176 import cx.fbn.nevernote.threads.SyncRunner;
177 import cx.fbn.nevernote.threads.ThumbnailRunner;
178 import cx.fbn.nevernote.utilities.AESEncrypter;
179 import cx.fbn.nevernote.utilities.ApplicationLogger;
180 import cx.fbn.nevernote.utilities.FileImporter;
181 import cx.fbn.nevernote.utilities.FileUtils;
182 import cx.fbn.nevernote.utilities.ListManager;
183 import cx.fbn.nevernote.utilities.SyncTimes;
184 import cx.fbn.nevernote.xml.ExportData;
185 import cx.fbn.nevernote.xml.ImportData;
186 import cx.fbn.nevernote.xml.NoteFormatter;
187
188
189 public class NeverNote extends QMainWindow{
190         
191         QStatusBar                              statusBar;                                      // Application status bar
192         
193         DatabaseConnection              conn;
194         
195         MainMenuBar                             menuBar;                                        // Main menu bar
196         FindDialog                              find;                                           // Text search in note dialog
197         List<String>                    emitLog;                                        // Messages displayed in the status bar;
198         QSystemTrayIcon                 trayIcon;                                       // little tray icon
199         QMenu                                   trayMenu;                                       // System tray menu
200         QAction                                 trayExitAction;                         // Exit the application
201         QAction                                 trayShowAction;                         // toggle the show/hide action          
202         QAction                                 trayAddNoteAction;                      // Add a note from the system tray
203         QNetworkAccessManager   versionChecker;                         // Used when checking for new versions
204         
205     NotebookTreeWidget          notebookTree;                           // List of notebooks
206     AttributeTreeWidget         attributeTree;                          // List of note attributes
207     TagTreeWidget                       tagTree;                                        // list of user created tags
208     SavedSearchTreeWidget       savedSearchTree;                        // list of saved searches
209     TrashTreeWidget                     trashTree;                                      // Trashcan
210     TableView                           noteTableView;                          //      List of notes (the widget).
211
212     public BrowserWindow        browserWindow;                          // Window containing browser & labels
213     public QToolBar             toolBar;                                        // The tool bar under the menu
214     QComboBox                           searchField;                            // search filter bar on the toolbar;
215     boolean                                     searchPerformed = false;        // Search was done?
216     QuotaProgressBar            quotaBar;                                       // The current quota usage
217     
218     ApplicationLogger           logger;
219     List<String>                        selectedNotebookGUIDs;          // List of notebook GUIDs
220     List<String>                        selectedTagGUIDs;                       // List of selected tag GUIDs
221     List<String>                        selectedNoteGUIDs;                      // List of selected notes
222     String                                      selectedSavedSearchGUID;        // Currently selected saved searches
223     private final HashMap<String, ExternalBrowse>       externalWindows;        // Notes being edited by an external window;
224     
225     NoteFilter                          filter;                                         // Note filter
226     String                                      currentNoteGuid;                        // GUID of the current note 
227     Note                                        currentNote;                            // The currently viewed note
228     boolean                                     noteDirty;                                      // Has the note been changed?
229     boolean                             inkNote;                   // if this is an ink note, it is read only
230     boolean                                     readOnly;                                       // Is this note read-only?
231         
232   
233     ListManager                         listManager;                                    // DB runnable task
234     
235     List<QTemporaryFile>        tempFiles;                                      // Array of temporary files;
236     
237     QTimer                                      indexTimer;                                     // timer to start the index thread
238     IndexRunner                         indexRunner;                            // thread to index notes
239     QThread                                     indexThread;
240     
241     QTimer                                      syncTimer;                                      // Sync on an interval
242     QTimer                                      syncDelayTimer;                         // Sync delay to free up database
243     SyncRunner                          syncRunner;                                     // thread to do a sync.
244     QThread                                     syncThread;                                     // Thread which talks to evernote
245     ThumbnailRunner                     thumbnailRunner;                        // Runner for thumbnail thread
246     QThread                                     thumbnailThread;                        // Thread that generates pretty pictures
247     QTimer                                      saveTimer;                                      // Timer to save note contents
248     
249     QTimer                                      authTimer;                                      // Refresh authentication
250     QTimer                                      externalFileSaveTimer;          // Save files altered externally
251     QTimer                                      thumbnailTimer;                         // Wakeup & scan for thumbnails
252     List<String>                        externalFiles;                          // External files to save later
253     List<String>                        importFilesKeep;                        // Auto-import files to save later
254     List<String>                        importFilesDelete;                      // Auto-import files to save later
255     
256     int                                         indexTime;                                      // how often to try and index
257     boolean                                     indexRunning;                           // Is indexing running?
258     boolean                                     indexDisabled;                          // Is indexing disabled?
259     
260     int                                         syncThreadsReady;                       // number of sync threads that are free
261     int                                         syncTime;                                       // Sync interval
262     boolean                                     syncRunning;                            // Is sync running?
263     boolean                                     automaticSync;                          // do sync automatically?
264     QTreeWidgetItem                     attributeTreeSelected;
265
266     QAction                             prevButton;                                     // Go to the previous item viewed
267     QAction                             nextButton;                                     // Go to the next item in the history
268     QAction                             downButton;                                     // Go to the next item in the list
269     QAction                             upButton;                                       // Go to the prev. item in the list;
270     QAction                             synchronizeButton;                      // Synchronize with Evernote
271     QAction                             allNotesButton;                         // Reset & view all notes
272     QTimer                              synchronizeAnimationTimer;      // Timer to change animation button
273     int                                 synchronizeIconAngle;           // Used to rotate sync icon
274     QAction                     printButton;                            // Print Button
275     QAction                             tagButton;                                      // Tag edit button
276     QAction                             attributeButton;                        // Attribute information button
277     QAction                     emailButton;                            // Email button
278     QAction                     deleteButton;                           // Delete button
279     QAction                             newButton;                                      // new Note Button;
280     QSpinBox                    zoomSpinner;                            // Zoom zoom
281     QAction                             searchClearButton;                      // Clear the search field
282     
283     QSplitter                   mainLeftRightSplitter;          // main splitter for left/right side
284     QSplitter                   leftSplitter1;                          // first left hand splitter
285     QSplitter                   browserIndexSplitter;           // splitter between note index & note text
286     
287     QFileSystemWatcher  importKeepWatcher;                      // Watch & keep auto-import
288     QFileSystemWatcher  importDeleteWatcher;            // Watch & Delete auto-import
289     List<String>                importedFiles;                          // History of imported files (so we don't import twice)
290     
291     OnlineNoteHistory   historyWindow;                          // online history window 
292     List<NoteVersionId> versions;                                       // history versions
293     
294     QTimer                              threadMonitorTimer;                     // Timer to watch threads.
295     int                                 dbThreadDeadCount=0;            // number of consecutive dead times for the db thread
296     int                                 syncThreadDeadCount=0;          // number of consecutive dead times for the sync thread
297     int                                 indexThreadDeadCount=0;         // number of consecutive dead times for the index thread
298     int                                 notebookThreadDeadCount=0;      // number of consecutive dead times for the notebook thread
299     int                                 tagDeadCount=0;                         // number of consecutive dead times for the tag thread
300     int                                 trashDeadCount=0;                       // number of consecutive dead times for the trash thread
301     int                                 saveThreadDeadCount=0;          // number of consecutive dead times for the save thread
302     
303     HashMap<String, String>             noteCache;                      // Cash of note content 
304     HashMap<String, Boolean>    readOnlyCache;          // List of cashe notes that are read-only
305     HashMap<String, Boolean>    inkNoteCache;           // List of cache notes that are ink notes 
306     List<String>                historyGuids;                           // GUIDs of previously viewed items
307     int                                 historyPosition;                        // Position within the viewed items
308     boolean                             fromHistory;                            // Is this from the history queue?
309     String                              trashNoteGuid;                          // Guid to restore / set into or out of trash to save position
310     List<Thumbnailer>   thumbGenerators;                                // generate preview image
311     ThumbnailViewer             thumbnailViewer;                        // View preview thumbnail; 
312     boolean                             encryptOnShutdown;                      // should I encrypt when I close?
313     boolean                             decryptOnShutdown;                      // should I decrypt on shutdown;
314     String                              encryptCipher;                          // What cipher should I use?
315     Signal0                     minimizeToTray;
316     boolean                             windowMaximized = false;        // Keep track of the window state for restores
317     List<String>                pdfReadyQueue;                          // Queue of PDFs that are ready to be rendered.
318     List<QPixmap>               syncIcons;                                      // Array of icons used in sync animation
319     private boolean             closeAction = false;            // Used to say when to close or when to minimize
320     private static Logger log = Logger.getLogger(NeverNote.class); 
321     private String              saveLastPath;                           // last path we used
322     
323     
324     String iconPath = new String("classpath:cx/fbn/nevernote/icons/");
325         
326         
327     //***************************************************************
328     //***************************************************************
329     //** Constructor & main entry point
330     //***************************************************************
331     //***************************************************************
332     // Application Constructor  
333         @SuppressWarnings("static-access")
334         public NeverNote(DatabaseConnection dbConn)  {
335                 conn = dbConn;          
336                 if (conn.getConnection() == null) {
337                         String msg = new String(tr("Unable to connect to the database.\n\nThe most probable reason is that some other process\n" +
338                                 "is accessing the database or NeverNote is already running.\n\n" +
339                                 "Please end any other process or shutdown the other NeverNote before starting.\n\nExiting program."));
340                         
341             QMessageBox.critical(null, tr("Database Connection Error") ,msg);
342                         System.exit(16);
343                 }
344
345                 thread().setPriority(Thread.MAX_PRIORITY);
346                 
347                 logger = new ApplicationLogger("nevernote.log");
348                 logger.log(logger.HIGH, "Starting Application");
349                 
350                 decryptOnShutdown = false;
351                 encryptOnShutdown = false;
352                 conn.checkDatabaseVersion();
353                 
354                 
355                 
356                 // Start building the invalid XML tables
357                 Global.invalidElements = conn.getInvalidXMLTable().getInvalidElements();
358                 List<String> elements = conn.getInvalidXMLTable().getInvalidAttributeElements();
359                 
360                 for (int i=0; i<elements.size(); i++) {
361                         Global.invalidAttributes.put(elements.get(i), conn.getInvalidXMLTable().getInvalidAttributes(elements.get(i)));
362                 }
363                 
364                 logger.log(logger.EXTREME, "Starting GUI build");
365
366                 QTranslator nevernoteTranslator = new QTranslator();
367                 nevernoteTranslator.load(Global.getFileManager().getTranslateFilePath("nevernote_" + QLocale.system().name() + ".qm"));
368                 QApplication.instance().installTranslator(nevernoteTranslator);
369
370                 Global.originalPalette = QApplication.palette();
371                 QApplication.setStyle(Global.getStyle());
372                 if (Global.useStandardPalette())
373                         QApplication.setPalette(QApplication.style().standardPalette());
374         setWindowTitle("NeverNote");
375
376         mainLeftRightSplitter = new QSplitter();
377         setCentralWidget(mainLeftRightSplitter);
378         leftSplitter1 = new QSplitter();
379         leftSplitter1.setOrientation(Qt.Orientation.Vertical);
380                 
381         browserIndexSplitter = new QSplitter();
382         browserIndexSplitter.setOrientation(Qt.Orientation.Vertical);
383         
384         //* Setup threads & thread timers
385         int indexRunnerCount = Global.getIndexThreads();
386         indexRunnerCount = 1;
387         QThreadPool.globalInstance().setMaxThreadCount(indexRunnerCount+5);     // increase max thread count
388
389                 logger.log(logger.EXTREME, "Building list manager");
390         listManager = new ListManager(conn, logger);
391         
392                 logger.log(logger.EXTREME, "Building index runners & timers");
393         indexRunner = new IndexRunner("indexRunner.log", Global.getDatabaseUrl(), Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword);
394                 indexThread = new QThread(indexRunner, "Index Thread");
395         indexRunner.indexAttachmentsLocally = Global.indexAttachmentsLocally();
396                 indexThread.start();
397                 
398         synchronizeAnimationTimer = new QTimer();
399         synchronizeAnimationTimer.timeout.connect(this, "updateSyncButton()");
400         
401                 indexTimer = new QTimer();
402                 indexTime = 1000*Global.getIndexThreadSleepInterval();  
403                 indexTimer.start(indexTime);  // Start indexing timer
404                 indexTimer.timeout.connect(this, "indexTimer()");
405                 indexDisabled = false;
406                 indexRunning = false;
407                                 
408                 logger.log(logger.EXTREME, "Setting sync thread & timers");
409                 syncThreadsReady=1;
410                 syncRunner = new SyncRunner("syncRunner.log", Global.getDatabaseUrl(), Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword);
411                 syncTime = new SyncTimes().timeValue(Global.getSyncInterval());
412                 syncTimer = new QTimer();
413                 syncTimer.timeout.connect(this, "syncTimer()");
414         syncRunner.status.message.connect(this, "setMessage(String)");
415         syncRunner.syncSignal.finished.connect(this, "syncThreadComplete(Boolean)");
416         syncRunner.syncSignal.errorDisconnect.connect(this, "remoteErrorDisconnect()");
417         syncRunning = false;    
418                 if (syncTime > 0) {
419                         automaticSync = true;
420                         syncTimer.start(syncTime*60*1000);
421                 } else {
422                         automaticSync = false;
423                         syncTimer.stop();
424                 }
425                 syncRunner.setEvernoteUpdateCount(Global.getEvernoteUpdateCount());
426                 syncThread = new QThread(syncRunner, "Synchronization Thread");
427                 syncThread.start();
428                 
429                 
430                 logger.log(logger.EXTREME, "Starting thumnail thread");
431                 pdfReadyQueue = new ArrayList<String>();
432                 thumbnailRunner = new ThumbnailRunner("thumbnailRunner.log", Global.getDatabaseUrl(), Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword);
433                 thumbnailThread = new QThread(thumbnailRunner, "Thumbnail Thread");
434                 thumbnailRunner.noteSignal.thumbnailPageReady.connect(this, "thumbnailHTMLReady(String,QByteArray,Integer)");
435                 thumbnailThread.start();
436                 thumbGenerators = new ArrayList<Thumbnailer>();
437                 thumbnailTimer = new QTimer();
438                 thumbnailTimer.timeout.connect(this, "thumbnailTimer()");
439                 thumbnailTimer();
440                 thumbnailTimer.setInterval(60*1000);  // Thumbnail every minute
441                 thumbnailTimer.start();
442                 
443                 logger.log(logger.EXTREME, "Starting authentication timer");
444                 authTimer = new QTimer();
445                 authTimer.timeout.connect(this, "authTimer()");
446                 authTimer.start(1000*60*15);
447                 syncRunner.syncSignal.authRefreshComplete.connect(this, "authRefreshComplete(boolean)");
448                 
449                 logger.log(logger.EXTREME, "Setting save note timer");
450                 saveTimer = new QTimer();
451                 saveTimer.timeout.connect(this, "saveNote()");
452                 if (Global.getAutoSaveInterval() > 0) {
453                         saveTimer.setInterval(1000*60*Global.getAutoSaveInterval()); 
454                         saveTimer.start();
455                 }
456                 listManager.saveRunner.noteSignals.noteSaveRunnerError.connect(this, "saveRunnerError(String, String)");
457                 
458                 logger.log(logger.EXTREME, "Starting external file monitor timer");
459                 externalFileSaveTimer = new QTimer();
460                 externalFileSaveTimer.timeout.connect(this, "externalFileEditedSaver()");
461                 externalFileSaveTimer.setInterval(1000*5);   // save every 5 seconds;
462                 externalFiles = new ArrayList<String>();
463                 importFilesDelete = new ArrayList<String>();
464                 importFilesKeep = new ArrayList<String>();
465                 externalFileSaveTimer.start();
466                 
467         notebookTree = new NotebookTreeWidget(conn);
468         attributeTree = new AttributeTreeWidget();
469         tagTree = new TagTreeWidget(conn);
470         savedSearchTree = new SavedSearchTreeWidget();
471         trashTree = new TrashTreeWidget();
472         noteTableView = new TableView(logger, listManager);
473         
474         QGridLayout leftGrid = new QGridLayout();
475         leftSplitter1.setLayout(leftGrid);
476         leftGrid.addWidget(notebookTree, 1, 1);
477         leftGrid.addWidget(tagTree,2,1);
478         leftGrid.addWidget(attributeTree,3,1);
479         leftGrid.addWidget(savedSearchTree,4,1);
480         leftGrid.addWidget(trashTree, 5, 1);
481         
482         // Setup the browser window
483         noteCache = new HashMap<String,String>();
484         readOnlyCache = new HashMap<String, Boolean>();
485         inkNoteCache = new HashMap<String, Boolean>();
486         browserWindow = new BrowserWindow(conn);
487
488         mainLeftRightSplitter.addWidget(leftSplitter1);
489         mainLeftRightSplitter.addWidget(browserIndexSplitter);
490         
491         if (Global.getListView() == Global.View_List_Wide) {
492                 browserIndexSplitter.addWidget(noteTableView);
493                 browserIndexSplitter.addWidget(browserWindow); 
494         } else {
495                 mainLeftRightSplitter.addWidget(noteTableView);
496                 mainLeftRightSplitter.addWidget(browserWindow); 
497         }
498         
499         searchField = new QComboBox();
500         searchField.setEditable(true);
501         searchField.activatedIndex.connect(this, "searchFieldChanged()");
502         searchField.setDuplicatesEnabled(false);
503         searchField.editTextChanged.connect(this,"searchFieldTextChanged(String)");
504         
505         quotaBar = new QuotaProgressBar();
506         
507         // Setup the thumbnail viewer
508         thumbnailViewer = new ThumbnailViewer();
509         thumbnailViewer.upArrow.connect(this, "upAction()");
510         thumbnailViewer.downArrow.connect(this, "downAction()");
511         thumbnailViewer.leftArrow.connect(this, "nextViewedAction()");
512         thumbnailViewer.rightArrow.connect(this, "previousViewedAction()");
513         
514         //Setup external browser manager
515         externalWindows = new HashMap<String, ExternalBrowse>();
516
517         listManager.loadNotesIndex();
518         initializeNotebookTree();
519         initializeTagTree();
520         initializeSavedSearchTree();
521         attributeTree.itemClicked.connect(this, "attributeTreeClicked(QTreeWidgetItem, Integer)");
522         attributeTreeSelected = null;
523         initializeNoteTable();    
524
525                 selectedNoteGUIDs = new ArrayList<String>();
526                 statusBar = new QStatusBar();
527                 setStatusBar(statusBar);
528                 menuBar = new MainMenuBar(this);
529                 emitLog = new ArrayList<String>();
530                 
531                 tagTree.setDeleteAction(menuBar.tagDeleteAction);
532                 tagTree.setEditAction(menuBar.tagEditAction);
533                 tagTree.setAddAction(menuBar.tagAddAction);
534                 tagTree.setIconAction(menuBar.tagIconAction);
535                 tagTree.setVisible(Global.isWindowVisible("tagTree"));
536                 tagTree.noteSignal.tagsAdded.connect(this, "tagsAdded(String, String)");
537                 menuBar.hideTags.setChecked(Global.isWindowVisible("tagTree"));
538                 listManager.tagSignal.listChanged.connect(this, "reloadTagTree()");
539         
540                 notebookTree.setDeleteAction(menuBar.notebookDeleteAction);
541                 notebookTree.setEditAction(menuBar.notebookEditAction);
542                 notebookTree.setAddAction(menuBar.notebookAddAction);
543                 notebookTree.setIconAction(menuBar.notebookIconAction);
544                 notebookTree.setStackAction(menuBar.notebookStackAction);
545                 notebookTree.setPublishAction(menuBar.notebookPublishAction);
546                 notebookTree.setShareAction(menuBar.notebookShareAction);
547                 notebookTree.setVisible(Global.isWindowVisible("notebookTree"));
548                 notebookTree.noteSignal.notebookChanged.connect(this, "updateNoteNotebook(String, String)");
549                 notebookTree.noteSignal.tagsChanged.connect(this, "updateNoteTags(String, List)");
550             notebookTree.noteSignal.tagsChanged.connect(this, "updateListTags(String, List)");
551                 menuBar.hideNotebooks.setChecked(Global.isWindowVisible("notebookTree"));
552
553                 savedSearchTree.setAddAction(menuBar.savedSearchAddAction);
554                 savedSearchTree.setEditAction(menuBar.savedSearchEditAction);
555                 savedSearchTree.setDeleteAction(menuBar.savedSearchDeleteAction);
556                 savedSearchTree.setIconAction(menuBar.savedSearchIconAction);
557                 savedSearchTree.itemSelectionChanged.connect(this, "updateSavedSearchSelection()");
558                 savedSearchTree.setVisible(Global.isWindowVisible("savedSearchTree"));
559                 menuBar.hideSavedSearches.setChecked(Global.isWindowVisible("savedSearchTree"));
560                         
561                 noteTableView.setAddAction(menuBar.noteAdd);
562                 noteTableView.setDeleteAction(menuBar.noteDelete);
563                 noteTableView.setRestoreAction(menuBar.noteRestoreAction);
564                 noteTableView.setNoteDuplicateAction(menuBar.noteDuplicateAction);
565                 noteTableView.setNoteHistoryAction(menuBar.noteOnlineHistoryAction);
566                 noteTableView.noteSignal.titleColorChanged.connect(this, "titleColorChanged(Integer)");
567                 noteTableView.setMergeNotesAction(menuBar.noteMergeAction);
568                 noteTableView.rowChanged.connect(this, "scrollToGuid(String)");
569                 noteTableView.resetViewport.connect(this, "scrollToCurrentGuid()");
570                 noteTableView.doubleClicked.connect(this, "listDoubleClick()");
571                 listManager.trashSignal.countChanged.connect(trashTree, "updateCounts(Integer)");
572                 
573                 quotaBar.setMouseClickAction(menuBar.accountAction);
574                 
575                 trashTree.load();
576         trashTree.itemSelectionChanged.connect(this, "trashTreeSelection()");
577                 trashTree.setEmptyAction(menuBar.emptyTrashAction);
578                 trashTree.setVisible(Global.isWindowVisible("trashTree"));
579                 menuBar.hideTrash.setChecked(Global.isWindowVisible("trashTree"));
580                 trashTree.updateCounts(listManager.getTrashCount());
581                 attributeTree.setVisible(Global.isWindowVisible("attributeTree"));
582                 menuBar.hideAttributes.setChecked(Global.isWindowVisible("attributeTree"));
583
584                 noteTableView.setVisible(Global.isWindowVisible("noteList"));
585                 menuBar.hideNoteList.setChecked(Global.isWindowVisible("noteList"));
586                 
587                 if (!Global.isWindowVisible("editorButtonBar"))
588                         toggleEditorButtonBar();
589                 if (!Global.isWindowVisible("leftPanel"))
590                         menuBar.hideLeftSide.setChecked(true);
591                 if (Global.isWindowVisible("noteInformation"))
592                         toggleNoteInformation();
593                 
594                 setMenuBar(menuBar);
595                 setupToolBar();
596                 find = new FindDialog();
597                 find.getOkButton().clicked.connect(this, "doFindText()");
598                 
599                 // Setup the tray icon menu bar
600                 trayShowAction = new QAction("Show/Hide", this);
601                 trayExitAction = new QAction("Exit", this);
602                 trayAddNoteAction = new QAction("Add Note", this);
603                 
604                 trayExitAction.triggered.connect(this, "closeNeverNote()");
605                 trayAddNoteAction.triggered.connect(this, "addNote()");
606                 trayShowAction.triggered.connect(this, "trayToggleVisible()");
607                 
608                 trayMenu = new QMenu(this);
609                 trayMenu.addAction(trayAddNoteAction);
610                 trayMenu.addAction(trayShowAction);
611                 trayMenu.addAction(trayExitAction);
612                 
613                 
614                 trayIcon = new QSystemTrayIcon(this);
615                 trayIcon.setToolTip("NeverNote");
616                 trayIcon.setContextMenu(trayMenu);
617                 trayIcon.activated.connect(this, "trayActivated(com.trolltech.qt.gui.QSystemTrayIcon$ActivationReason)");
618
619                 currentNoteGuid="";
620                 currentNoteGuid = Global.getLastViewedNoteGuid();
621         historyGuids = new ArrayList<String>();
622         historyPosition = 0;
623         fromHistory = false;
624                 noteDirty = false;
625                 if (!currentNoteGuid.trim().equals("")) {
626                         currentNote = conn.getNoteTable().getNote(currentNoteGuid, true,true,false,false,true);
627                 }
628                 
629                 noteIndexUpdated(true);
630                 showColumns();
631                 menuBar.showEditorBar.setChecked(Global.isWindowVisible("editorButtonBar"));
632                 if (menuBar.showEditorBar.isChecked())
633                 showEditorButtons(browserWindow);
634                 tagIndexUpdated(true);
635                 savedSearchIndexUpdated();
636                 notebookIndexUpdated();
637                 updateQuotaBar();
638         setupSyncSignalListeners();        
639         setupBrowserSignalListeners();
640         setupIndexListeners();
641               
642         
643         tagTree.tagSignal.listChanged.connect(this, "tagIndexUpdated()");
644         tagTree.showAllTags(true);
645
646                 QIcon appIcon = new QIcon(iconPath+"nevernote.png");
647         setWindowIcon(appIcon);
648         trayIcon.setIcon(appIcon);
649         if (Global.showTrayIcon())
650                 trayIcon.show();
651         else
652                 trayIcon.hide();
653         
654         scrollToGuid(currentNoteGuid);
655         if (Global.automaticLogin()) {
656                 remoteConnect();
657                 if (Global.isConnected)
658                         syncTimer();
659         }
660         setupFolderImports();
661         
662         loadStyleSheet();
663         restoreWindowState(true);
664         
665         if (Global.mimicEvernoteInterface) {
666                 notebookTree.selectGuid("");
667         }
668         
669         threadMonitorTimer = new QTimer();
670         threadMonitorTimer.timeout.connect(this, "threadMonitorCheck()");
671         threadMonitorTimer.start(1000*10);  // Check for threads every 10 seconds;              
672         
673         historyGuids.add(currentNoteGuid);
674         historyPosition = 1;
675         
676         menuBar.blockSignals(true);
677         menuBar.narrowListView.blockSignals(true);
678         menuBar.wideListView.blockSignals(true);
679         if (Global.getListView() == Global.View_List_Narrow) { 
680                 menuBar.narrowListView.setChecked(true);
681         }
682         else{ 
683                 menuBar.wideListView.setChecked(true);
684         }
685         menuBar.blockSignals(false);
686         menuBar.narrowListView.blockSignals(false);
687         menuBar.wideListView.blockSignals(false);
688
689         if (Global.getListView() == Global.View_List_Wide) {
690                 browserIndexSplitter.addWidget(noteTableView);
691                 browserIndexSplitter.addWidget(browserWindow); 
692         } else {
693                 mainLeftRightSplitter.addWidget(noteTableView);
694                 mainLeftRightSplitter.addWidget(browserWindow); 
695         }
696         
697         int sortCol = Global.getSortColumn();
698                 int sortOrder = Global.getSortOrder();
699                 noteTableView.sortByColumn(sortCol, SortOrder.resolve(sortOrder));
700                 if (Global.checkVersionUpgrade())
701                         checkForUpdates();
702         }
703                 
704         // Main entry point
705         public static void main(String[] args) {
706                 log.setLevel(Level.FATAL);
707                 QApplication.initialize(args);
708                 QPixmap pixmap = new QPixmap("classpath:cx/fbn/nevernote/icons/splash_logo.png");
709                 QSplashScreen splash = new QSplashScreen(pixmap);
710                 boolean showSplash;
711                 
712                 DatabaseConnection dbConn;
713
714         try {
715             initializeGlobalSettings(args);
716
717             showSplash = Global.isWindowVisible("SplashScreen");
718             if (showSplash)
719                 splash.show();
720
721             dbConn = setupDatabaseConnection();
722
723             // Must be last stage of setup - only safe once DB is open hence we know we are the only instance running
724             Global.getFileManager().purgeResDirectory(true);
725
726         } catch (InitializationException e) {
727             // Fatal
728             e.printStackTrace();
729             QMessageBox.critical(null, "Startup error", "Aborting: " + e.getMessage());
730             return;
731         }
732
733         NeverNote application = new NeverNote(dbConn);
734
735                 application.setAttribute(WidgetAttribute.WA_DeleteOnClose, true);
736                 if (Global.startMinimized()) 
737                         application.showMinimized();
738                 else {
739                         if (Global.wasWindowMaximized())
740                                 application.showMaximized();
741                         else
742                                 application.show();
743                 }
744                 
745                 if (showSplash)
746                         splash.finish(application);
747                 QApplication.exec();
748                 System.out.println("Goodbye.");
749                 QApplication.exit();
750         }
751
752     /**
753      * Open the internal database, or create if not present
754      *
755      * @throws InitializationException when opening the database fails, e.g. because another process has it locked
756      */
757     private static DatabaseConnection setupDatabaseConnection() throws InitializationException {
758         ApplicationLogger logger = new ApplicationLogger("nevernote-database.log");
759         
760         File f = Global.getFileManager().getDbDirFile(Global.databaseName + ".h2.db");
761                 boolean dbExists = f.exists(); 
762                 if (!dbExists)
763                         Global.setDatabaseUrl("");
764         
765         if (Global.getDatabaseUrl().toUpperCase().indexOf("CIPHER=") > -1) {
766             boolean goodCheck = false;
767             while (!goodCheck) {
768                 DatabaseLoginDialog dialog = new DatabaseLoginDialog();
769                 dialog.exec();
770                 if (!dialog.okPressed())
771                     System.exit(0);
772                 Global.cipherPassword = dialog.getPassword();
773                 goodCheck = databaseCheck(Global.getDatabaseUrl(), Global.getDatabaseUserid(),
774                         Global.getDatabaseUserPassword(), Global.cipherPassword);
775             }
776         }
777         DatabaseConnection dbConn = new DatabaseConnection(logger,Global.getDatabaseUrl(), Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword);
778        return dbConn;
779     }
780     
781     // Encrypt the database upon shutdown
782     private void encryptOnShutdown() {
783         String dbPath= Global.getFileManager().getDbDirPath("");
784         String dbName = "NeverNote";
785         try {
786                 Statement st = conn.getConnection().createStatement();  
787                 st.execute("shutdown");
788                 if (QMessageBox.question(this, "Are you sure", 
789                                 "Are you sure you wish to encrypt the database?",
790                                 QMessageBox.StandardButton.Yes, 
791                                 QMessageBox.StandardButton.No) == StandardButton.Yes.value()) {
792                         ChangeFileEncryption.execute(dbPath, dbName, encryptCipher, null, Global.cipherPassword.toCharArray(), true);
793                         Global.setDatabaseUrl(Global.getDatabaseUrl() + ";CIPHER="+encryptCipher);
794                         QMessageBox.information(this, "Encryption Complete", "Encryption is complete");
795                 }
796         } catch (SQLException e) {
797                         e.printStackTrace();
798                 }       
799     }
800     
801     // Decrypt the database upon shutdown
802     private void decryptOnShutdown() {
803         String dbPath= Global.getFileManager().getDbDirPath("");
804         String dbName = "NeverNote";
805         try {
806                 Statement st = conn.getConnection().createStatement();  
807                 st.execute("shutdown");
808                 if (Global.getDatabaseUrl().toUpperCase().indexOf(";CIPHER=AES") > -1)
809                         encryptCipher = "AES";
810                 else
811                         encryptCipher = "XTEA";
812                 if (QMessageBox.question(this, tr("Confirmation"), tr("Are you sure", 
813                                 "Are you sure you wish to decrypt the database?"),
814                                 QMessageBox.StandardButton.Yes, 
815                                 QMessageBox.StandardButton.No) == StandardButton.Yes.value()) {
816
817                         ChangeFileEncryption.execute(dbPath, dbName, encryptCipher, Global.cipherPassword.toCharArray(), null, true);
818                         Global.setDatabaseUrl("");
819                         QMessageBox.information(this, tr("Decryption Complete"), tr("Decryption is complete"));
820                 }
821                 } catch (SQLException e) {
822                         e.printStackTrace();
823                 }       
824     }
825     /**
826      * Encrypt/Decrypt the local database
827      **/
828     public void doDatabaseEncrypt() {
829         // The database is not currently encrypted
830         if (Global.getDatabaseUrl().toUpperCase().indexOf("CIPHER=") == -1) {
831                 if (QMessageBox.question(this, tr("Confirmation"), tr("Encrypting the database is used" +
832                                 "to enhance security and is performed\nupon shutdown, but please be aware that if"+
833                                 " you lose the password your\nis lost forever.\n\nIt is highly recommended you " +
834                                 "perform a backup and/or fully synchronize\n prior to executing this funtction.\n\n" +
835                                 "Do you wish to proceed?"),
836                                 QMessageBox.StandardButton.Yes, 
837                                 QMessageBox.StandardButton.No)==StandardButton.No.value()) {
838                                 return;
839                 }
840                 DBEncryptDialog dialog = new DBEncryptDialog();
841                 dialog.exec();
842                 if (dialog.okPressed()) {
843                         Global.cipherPassword = dialog.getPassword();
844                         encryptOnShutdown  = true;
845                         encryptCipher = dialog.getEncryptionMethod();
846                 }
847         } else {
848             DBEncryptDialog dialog = new DBEncryptDialog();
849             dialog.setWindowTitle("Database Decryption");
850             dialog.hideEncryption();
851             dialog.exec();
852             if (dialog.okPressed()) {
853                 if (!dialog.getPassword().equals(Global.cipherPassword)) {
854                         QMessageBox.critical(null, tr("Incorrect Password"), tr("Incorrect Password"));
855                         return;
856                 }
857                 decryptOnShutdown  = true;
858                 encryptCipher = "";
859             }
860         }
861         return;
862     }
863
864         private static void initializeGlobalSettings(String[] args) throws InitializationException {
865                 StartupConfig   startupConfig = new StartupConfig();
866
867         for (String arg : args) {
868             String lower = arg.toLowerCase();
869             if (lower.startsWith("--name="))
870                startupConfig.setName(arg.substring(arg.indexOf('=') + 1));
871             if (lower.startsWith("--home="))
872                startupConfig.setHomeDirPath(arg.substring(arg.indexOf('=') + 1));
873             if (lower.startsWith("--disable-viewing"))
874                startupConfig.setDisableViewing(true);
875         }
876                 Global.setup(startupConfig);
877     }
878
879     // Exit point
880         @Override
881         public void closeEvent(QCloseEvent event) {     
882                 if (Global.minimizeOnClose() && !closeAction && Global.showTrayIcon()) {
883                         event.ignore();
884                         hide();
885                         return;
886                 }
887                 logger.log(logger.HIGH, "Entering NeverNote.closeEvent");
888                 waitCursor(true);
889                 
890                 if (currentNote!= null & browserWindow!=null) {
891                         if (!currentNote.getTitle().equals(browserWindow.getTitle()))
892                                 conn.getNoteTable().updateNoteTitle(currentNote.getGuid(), browserWindow.getTitle());
893                 }
894                 saveNote();
895                 setMessage(tr("Beginning shutdown."));
896                 
897                 // Close down external windows
898                 Collection<ExternalBrowse> windows = externalWindows.values();
899                 Iterator<ExternalBrowse> iterator = windows.iterator();
900                 while (iterator.hasNext()) {
901                         ExternalBrowse browser = iterator.next();
902                         browser.windowClosing.disconnect();
903                         browser.close();
904                 }
905                 
906                 
907                 externalFileEditedSaver();
908                 if (Global.isConnected && Global.synchronizeOnClose()) {
909                         setMessage(tr("Performing synchronization before closing."));
910                         syncRunner.addWork("SYNC");
911                 }
912                 setMessage("Closing Program.");
913                 threadMonitorTimer.stop();
914
915                 syncRunner.addWork("STOP");
916                 syncRunner.keepRunning = false;
917                 thumbnailRunner.addWork("STOP");
918                 syncRunner.keepRunning = false;
919                 indexRunner.addWork("STOP");
920                 syncRunner.keepRunning = false;
921                 saveNote();
922                 listManager.stop();
923                 saveWindowState();
924
925                 if (tempFiles != null)
926                         tempFiles.clear();
927
928                 browserWindow.noteSignal.tagsChanged.disconnect();
929                 browserWindow.noteSignal.titleChanged.disconnect();
930                 browserWindow.noteSignal.noteChanged.disconnect();
931                 browserWindow.noteSignal.notebookChanged.disconnect();
932                 browserWindow.noteSignal.createdDateChanged.disconnect();
933                 browserWindow.noteSignal.alteredDateChanged.disconnect();
934                 syncRunner.searchSignal.listChanged.disconnect();
935                 syncRunner.tagSignal.listChanged.disconnect();
936         syncRunner.notebookSignal.listChanged.disconnect();
937         syncRunner.noteIndexSignal.listChanged.disconnect();
938
939                 if (isVisible())
940                         Global.saveWindowVisible("toolBar", toolBar.isVisible());
941                 saveNoteColumnPositions();
942                 saveNoteIndexWidth();
943                 
944                 int width = notebookTree.columnWidth(0);
945                 Global.setColumnWidth("notebookTreeName", width);
946                 width = tagTree.columnWidth(0);
947                 Global.setColumnWidth("tagTreeName", width);
948                 
949                 Global.saveWindowMaximized(isMaximized());
950                 Global.saveCurrentNoteGuid(currentNoteGuid);
951                         
952                 int sortCol = noteTableView.proxyModel.sortColumn();
953                 int sortOrder = noteTableView.proxyModel.sortOrder().value();
954                 Global.setSortColumn(sortCol);
955                 Global.setSortOrder(sortOrder);
956                 
957                 hide();
958                 trayIcon.hide();
959                 Global.keepRunning = false;
960                 try {
961                         logger.log(logger.MEDIUM, "Waiting for indexThread to stop");
962                         if (indexRunner.thread().isAlive())
963                                 indexRunner.thread().join(50);
964                         if (!indexRunner.thread().isAlive())
965                                 logger.log(logger.MEDIUM, "Index thread has stopped");
966                         else {
967                                 logger.log(logger.MEDIUM, "Index thread still running - interrupting");
968                                 indexRunner.thread().interrupt();
969                         }
970                 } catch (InterruptedException e1) {
971                         e1.printStackTrace();
972                 }
973                 if (!syncRunner.isIdle()) {
974                         try {
975                                 logger.log(logger.MEDIUM, "Waiting for syncThread to stop");
976                                 syncThread.join();
977                                 logger.log(logger.MEDIUM, "Sync thread has stopped");
978                         } catch (InterruptedException e1) {
979                                 e1.printStackTrace();
980                         }
981                 }
982
983                 if (encryptOnShutdown) {
984                         encryptOnShutdown();
985                 }
986                 if (decryptOnShutdown) {
987                         decryptOnShutdown();
988                 }
989                 try {
990                         Global.getFileManager().purgeResDirectory(false);
991                 } catch (InitializationException e) {
992                         System.out.println(tr("Empty res directory purge failed"));
993                         e.printStackTrace();
994                 }
995                 logger.log(logger.HIGH, "Leaving NeverNote.closeEvent");
996         }
997
998         @SuppressWarnings("unused")
999         private void closeNeverNote() {
1000                 closeAction = true;
1001                 close();
1002         }
1003         public void setMessage(String s) {
1004                 logger.log(logger.HIGH, "Entering NeverNote.setMessage");
1005                 logger.log(logger.HIGH, "Message: " +s);
1006                 statusBar.showMessage(s);
1007                 emitLog.add(s);
1008                 logger.log(logger.HIGH, "Leaving NeverNote.setMessage");
1009         }
1010                 
1011         private void waitCursor(boolean wait) {
1012                 if (wait) {
1013                         if (QApplication.overrideCursor() == null)
1014                                 QApplication.setOverrideCursor(new QCursor(Qt.CursorShape.WaitCursor));
1015                 }
1016                 else {
1017                         while (QApplication.overrideCursor() != null)
1018                                 QApplication.restoreOverrideCursor();
1019                 }
1020         }
1021         
1022         private void setupIndexListeners() {
1023 //              indexRunner.noteSignal.noteIndexed.connect(this, "indexThreadComplete(String)");
1024 //              indexRunner.resourceSignal.resourceIndexed.connect(this, "indexThreadComplete(String)");
1025                 indexRunner.signal.indexStarted.connect(this, "indexStarted()");
1026                 indexRunner.signal.indexFinished.connect(this, "indexComplete()");
1027         }
1028         private void setupSyncSignalListeners() {
1029                 syncRunner.tagSignal.listChanged.connect(this, "tagIndexUpdated()");
1030         syncRunner.searchSignal.listChanged.connect(this, "savedSearchIndexUpdated()");
1031         syncRunner.notebookSignal.listChanged.connect(this, "notebookIndexUpdated()");
1032         syncRunner.noteIndexSignal.listChanged.connect(this, "noteIndexUpdated(boolean)");
1033         syncRunner.noteSignal.quotaChanged.connect(this, "updateQuotaBar()");
1034         
1035                 syncRunner.syncSignal.saveUploadAmount.connect(this,"saveUploadAmount(long)");
1036                 syncRunner.syncSignal.saveUserInformation.connect(this,"saveUserInformation(User)");
1037                 syncRunner.syncSignal.saveEvernoteUpdateCount.connect(this,"saveEvernoteUpdateCount(int)");
1038                 
1039                 syncRunner.noteSignal.guidChanged.connect(this, "noteGuidChanged(String, String)");
1040                 syncRunner.noteSignal.noteChanged.connect(this, "invalidateNoteCache(String, String)");
1041                 syncRunner.resourceSignal.resourceGuidChanged.connect(this, "noteResourceGuidChanged(String,String,String)");
1042                 syncRunner.noteSignal.noteDownloaded.connect(listManager, "noteDownloaded(Note)");
1043                 syncRunner.noteSignal.notebookChanged.connect(this, "updateNoteNotebook(String, String)");
1044                 
1045                 syncRunner.syncSignal.refreshLists.connect(this, "refreshLists()");
1046         }
1047         
1048         private void setupBrowserSignalListeners() {
1049                 setupBrowserWindowListeners(browserWindow, true);
1050         }
1051
1052         private void setupBrowserWindowListeners(BrowserWindow browser, boolean master) {
1053                 browser.fileWatcher.fileChanged.connect(this, "externalFileEdited(String)");
1054                 browser.noteSignal.tagsChanged.connect(this, "updateNoteTags(String, List)");
1055             browser.noteSignal.tagsChanged.connect(this, "updateListTags(String, List)");
1056             if (master) browser.noteSignal.noteChanged.connect(this, "setNoteDirty()");
1057             browser.noteSignal.titleChanged.connect(listManager, "updateNoteTitle(String, String)");
1058             browser.noteSignal.titleChanged.connect(this, "updateNoteTitle(String, String)");
1059             browser.noteSignal.notebookChanged.connect(this, "updateNoteNotebook(String, String)");
1060             browser.noteSignal.createdDateChanged.connect(listManager, "updateNoteCreatedDate(String, QDateTime)");
1061             browser.noteSignal.alteredDateChanged.connect(listManager, "updateNoteAlteredDate(String, QDateTime)");
1062             browser.noteSignal.subjectDateChanged.connect(listManager, "updateNoteSubjectDate(String, QDateTime)");
1063             browser.noteSignal.authorChanged.connect(listManager, "updateNoteAuthor(String, String)");
1064             browser.noteSignal.geoChanged.connect(listManager, "updateNoteGeoTag(String, Double,Double,Double)");
1065             browser.noteSignal.geoChanged.connect(this, "setNoteDirty()");
1066             browser.noteSignal.sourceUrlChanged.connect(listManager, "updateNoteSourceUrl(String, String)");
1067             if (master) browser.focusLost.connect(this, "saveNote()");
1068             browser.resourceSignal.contentChanged.connect(this, "externalFileEdited(String)");
1069         }
1070
1071         //***************************************************************
1072         //***************************************************************
1073         //* Settings and look & feel
1074         //***************************************************************
1075         //***************************************************************
1076         @SuppressWarnings("unused")
1077         private void settings() {
1078                 logger.log(logger.HIGH, "Entering NeverNote.settings");
1079                 saveNoteColumnPositions();
1080                 saveNoteIndexWidth();
1081                 showColumns();
1082         ConfigDialog settings = new ConfigDialog(this);
1083         String dateFormat = Global.getDateFormat();
1084         String timeFormat = Global.getTimeFormat();
1085         
1086                 indexTime = 1000*Global.getIndexThreadSleepInterval();  
1087                 indexTimer.start(indexTime);  // reset indexing timer
1088         
1089         settings.exec();
1090         indexRunner.indexAttachmentsLocally = Global.indexAttachmentsLocally();
1091         if (Global.showTrayIcon())
1092                 trayIcon.show();
1093         else
1094                 trayIcon.hide();
1095         showColumns();
1096         if (menuBar.showEditorBar.isChecked())
1097                 showEditorButtons(browserWindow);
1098         
1099         // Reset the save timer
1100         if (Global.getAutoSaveInterval() > 0)
1101                         saveTimer.setInterval(1000*60*Global.getAutoSaveInterval());
1102         else
1103                 saveTimer.stop();
1104         
1105         // This is a hack to force a reload of the index in case the date or time changed.
1106 //        if (!dateFormat.equals(Global.getDateFormat()) ||
1107 //                      !timeFormat.equals(Global.getTimeFormat())) {
1108                 noteCache.clear();
1109                 readOnlyCache.clear();
1110                 inkNoteCache.clear();
1111                 noteIndexUpdated(true);
1112 //        }
1113         
1114         logger.log(logger.HIGH, "Leaving NeverNote.settings");
1115         }
1116         // Restore things to the way they were
1117         private void restoreWindowState(boolean mainWindow) {
1118                 // We need to name things or this doesn't work.
1119                 setObjectName("NeverNote");
1120                 mainLeftRightSplitter.setObjectName("mainLeftRightSplitter");
1121                 browserIndexSplitter.setObjectName("browserIndexSplitter");
1122                 leftSplitter1.setObjectName("leftSplitter1");   
1123                 
1124                 // Restore the actual positions.
1125                 if (mainWindow)
1126                         restoreGeometry(Global.restoreGeometry(objectName()));
1127         mainLeftRightSplitter.restoreState(Global.restoreState(mainLeftRightSplitter.objectName()));
1128         browserIndexSplitter.restoreState(Global.restoreState(browserIndexSplitter.objectName()));
1129         leftSplitter1.restoreState(Global.restoreState(leftSplitter1.objectName()));
1130        
1131         }
1132         // Save window positions for the next start
1133         private void saveWindowState() {
1134                 Global.saveGeometry(objectName(), saveGeometry());
1135                 Global.saveState(mainLeftRightSplitter.objectName(), mainLeftRightSplitter.saveState());
1136                 Global.saveState(browserIndexSplitter.objectName(), browserIndexSplitter.saveState());
1137                 Global.saveState(leftSplitter1.objectName(), leftSplitter1.saveState());
1138         }    
1139         // Load the style sheet
1140         private void loadStyleSheet() {
1141                 String fileName = Global.getFileManager().getQssDirPathUser("default.qss");
1142                 fileName = Global.getFileManager().getQssDirPath("default.qss");
1143                 QFile file = new QFile(fileName);
1144                 
1145                 // If a user default.qss doesn't exist, we use the one shipped with NeverNote
1146                 if (!file.exists()) {
1147                         fileName = Global.getFileManager().getQssDirPath("default.qss");
1148                         file = new QFile(fileName);
1149                 }
1150                 file.open(OpenModeFlag.ReadOnly);
1151                 String styleSheet = file.readAll().toString();
1152                 file.close();
1153                 setStyleSheet(styleSheet);
1154         }
1155         // Save column positions for the next time
1156         private void saveNoteColumnPositions() {
1157                 int position = noteTableView.header.visualIndex(Global.noteTableCreationPosition);
1158                 Global.setColumnPosition("noteTableCreationPosition", position);
1159                 position = noteTableView.header.visualIndex(Global.noteTableTagPosition);
1160                 Global.setColumnPosition("noteTableTagPosition", position);
1161                 position = noteTableView.header.visualIndex(Global.noteTableNotebookPosition);
1162                 Global.setColumnPosition("noteTableNotebookPosition", position);
1163                 position = noteTableView.header.visualIndex(Global.noteTableChangedPosition);
1164                 Global.setColumnPosition("noteTableChangedPosition", position);
1165                 position = noteTableView.header.visualIndex(Global.noteTableAuthorPosition);
1166                 Global.setColumnPosition("noteTableAuthorPosition", position);
1167                 position = noteTableView.header.visualIndex(Global.noteTableSourceUrlPosition);
1168                 Global.setColumnPosition("noteTableSourceUrlPosition", position);
1169                 position = noteTableView.header.visualIndex(Global.noteTableSubjectDatePosition);
1170                 Global.setColumnPosition("noteTableSubjectDatePosition", position);
1171                 position = noteTableView.header.visualIndex(Global.noteTableTitlePosition);
1172                 Global.setColumnPosition("noteTableTitlePosition", position);
1173                 position = noteTableView.header.visualIndex(Global.noteTableSynchronizedPosition);
1174                 Global.setColumnPosition("noteTableSynchronizedPosition", position);
1175                 position = noteTableView.header.visualIndex(Global.noteTableGuidPosition);
1176                 Global.setColumnPosition("noteTableGuidPosition", position);
1177                 position = noteTableView.header.visualIndex(Global.noteTableThumbnailPosition);
1178                 Global.setColumnPosition("noteTableThumbnailPosition", position);
1179
1180         }
1181         // Save column widths for the next time
1182         private void saveNoteIndexWidth() {
1183                 int width;
1184         width = noteTableView.getColumnWidth(Global.noteTableCreationPosition);
1185         Global.setColumnWidth("noteTableCreationPosition", width);
1186                 width = noteTableView.getColumnWidth(Global.noteTableChangedPosition);
1187                 Global.setColumnWidth("noteTableChangedPosition", width);
1188                 width = noteTableView.getColumnWidth(Global.noteTableGuidPosition);
1189                 Global.setColumnWidth("noteTableGuidPosition", width);
1190                 width = noteTableView.getColumnWidth(Global.noteTableNotebookPosition);
1191                 Global.setColumnWidth("noteTableNotebookPosition", width);
1192                 width = noteTableView.getColumnWidth(Global.noteTableTagPosition);
1193                 Global.setColumnWidth("noteTableTagPosition", width);
1194                 width = noteTableView.getColumnWidth(Global.noteTableTitlePosition);
1195                 Global.setColumnWidth("noteTableTitlePosition", width);
1196                 width = noteTableView.getColumnWidth(Global.noteTableSourceUrlPosition);
1197                 Global.setColumnWidth("noteTableSourceUrlPosition", width);
1198                 width = noteTableView.getColumnWidth(Global.noteTableAuthorPosition);
1199                 Global.setColumnWidth("noteTableAuthorPosition", width);
1200                 width = noteTableView.getColumnWidth(Global.noteTableSubjectDatePosition);
1201                 Global.setColumnWidth("noteTableSubjectDatePosition", width);
1202                 width = noteTableView.getColumnWidth(Global.noteTableSynchronizedPosition);
1203                 Global.setColumnWidth("noteTableSynchronizedPosition", width);
1204                 width = noteTableView.getColumnWidth(Global.noteTableThumbnailPosition);
1205                 Global.setColumnWidth("noteTableThumbnailPosition", width);
1206                 width = noteTableView.getColumnWidth(Global.noteTableGuidPosition);
1207                 Global.setColumnWidth("noteTableGuidPosition", width);
1208         }
1209         
1210         
1211     //***************************************************************
1212     //***************************************************************
1213     //** These functions deal with Notebook menu items
1214     //***************************************************************
1215     //***************************************************************
1216     // Setup the tree containing the user's notebooks.
1217     private void initializeNotebookTree() {       
1218         logger.log(logger.HIGH, "Entering NeverNote.initializeNotebookTree");
1219 //      notebookTree.itemClicked.connect(this, "notebookTreeSelection()");
1220         notebookTree.selectionSignal.connect(this, "notebookTreeSelection()");
1221         listManager.notebookSignal.refreshNotebookTreeCounts.connect(notebookTree, "updateCounts(List, List)");
1222         logger.log(logger.HIGH, "Leaving NeverNote.initializeNotebookTree");
1223     }   
1224     // Listener when a notebook is selected
1225         private void notebookTreeSelection() {
1226                 logger.log(logger.HIGH, "Entering NeverNote.notebookTreeSelection");
1227
1228                 clearTrashFilter();
1229                 clearAttributeFilter();
1230                 clearSavedSearchFilter();
1231                 if (Global.mimicEvernoteInterface) {
1232                         clearTagFilter();
1233                         searchField.clear();
1234                 }
1235                 menuBar.noteRestoreAction.setVisible(false);            
1236         menuBar.notebookEditAction.setEnabled(true);
1237         menuBar.notebookDeleteAction.setEnabled(true);
1238         menuBar.notebookPublishAction.setEnabled(true);
1239         menuBar.notebookShareAction.setEnabled(true);
1240         menuBar.notebookIconAction.setEnabled(true);
1241         menuBar.notebookStackAction.setEnabled(true);
1242         List<QTreeWidgetItem> selections = notebookTree.selectedItems();
1243         selectedNotebookGUIDs.clear();
1244                 String guid = "";
1245                 String stackName = "";
1246                 if (selections.size() > 0) {
1247                 guid = (selections.get(0).text(2));
1248                 stackName = selections.get(0).text(0);
1249         }
1250                 if (!Global.mimicEvernoteInterface) {
1251                         // If no notebooks are selected, we make it look like the "all notebooks" one was selected
1252                         if (selections.size()==0) {
1253                                 selectedNotebookGUIDs.clear();
1254                                 for (int i=0; i < listManager.getNotebookIndex().size(); i++) {
1255                                         selectedNotebookGUIDs.add(listManager.getNotebookIndex().get(i).getGuid());
1256                                 }
1257                                 menuBar.notebookEditAction.setEnabled(false);
1258                                 menuBar.notebookDeleteAction.setEnabled(false);
1259                                 menuBar.notebookStackAction.setEnabled(false);
1260                                 menuBar.notebookIconAction.setEnabled(false);
1261                         }
1262                 }
1263         if (!guid.equals("") && !guid.equals("STACK")) {
1264                 selectedNotebookGUIDs.add(guid);
1265                 menuBar.notebookIconAction.setEnabled(true);
1266         } else {
1267                 menuBar.notebookIconAction.setEnabled(true);
1268                         for (int j=0; j<listManager.getNotebookIndex().size(); j++) {
1269                                 Notebook book = listManager.getNotebookIndex().get(j);
1270                                 if (book.getStack() != null && book.getStack().equalsIgnoreCase(stackName))
1271                                         selectedNotebookGUIDs.add(book.getGuid());
1272                         }
1273         }
1274         listManager.setSelectedNotebooks(selectedNotebookGUIDs);
1275         listManager.loadNotesIndex();
1276         noteIndexUpdated(false);
1277                 logger.log(logger.HIGH, "Leaving NeverNote.notebookTreeSelection");
1278
1279     }
1280     private void clearNotebookFilter() {
1281         notebookTree.blockSignals(true);
1282         notebookTree.clearSelection();
1283                 menuBar.noteRestoreAction.setVisible(false);
1284         menuBar.notebookEditAction.setEnabled(false);
1285         menuBar.notebookDeleteAction.setEnabled(false);
1286         selectedNotebookGUIDs.clear();
1287         listManager.setSelectedNotebooks(selectedNotebookGUIDs);
1288         notebookTree.blockSignals(false);
1289     }
1290         // Triggered when the notebook DB has been updated
1291         private void notebookIndexUpdated() {
1292                 logger.log(logger.HIGH, "Entering NeverNote.notebookIndexUpdated");
1293         
1294                 // Get the possible icons
1295                 HashMap<String, QIcon> icons = conn.getNotebookTable().getAllIcons();
1296         notebookTree.setIcons(icons);
1297         
1298         if (selectedNotebookGUIDs == null)
1299                         selectedNotebookGUIDs = new ArrayList<String>();
1300                 List<Notebook> books = conn.getNotebookTable().getAll();
1301                 for (int i=books.size()-1; i>=0; i--) {
1302                         for (int j=0; j<listManager.getArchiveNotebookIndex().size(); j++) {
1303                                 if (listManager.getArchiveNotebookIndex().get(j).getGuid().equals(books.get(i).getGuid())) {
1304                                         books.remove(i);
1305                                         j=listManager.getArchiveNotebookIndex().size();
1306                                 }
1307                         }
1308                 }
1309                 
1310                 
1311                 listManager.countNotebookResults(listManager.getNoteIndex());
1312                 notebookTree.blockSignals(true);
1313         notebookTree.load(books, listManager.getLocalNotebooks());
1314         for (int i=selectedNotebookGUIDs.size()-1; i>=0; i--) {
1315                 boolean found = notebookTree.selectGuid(selectedNotebookGUIDs.get(i));
1316                 if (!found)
1317                         selectedNotebookGUIDs.remove(i);
1318         }
1319         notebookTree.blockSignals(false);
1320         
1321                 logger.log(logger.HIGH, "Leaving NeverNote.notebookIndexUpdated");
1322     }
1323     // Show/Hide note information
1324         private void toggleNotebookWindow() {
1325                 logger.log(logger.HIGH, "Entering NeverNote.toggleNotebookWindow");
1326         if (notebookTree.isVisible())
1327                 notebookTree.hide();
1328         else
1329                 notebookTree.show();
1330         menuBar.hideNotebooks.setChecked(notebookTree.isVisible());
1331         Global.saveWindowVisible("notebookTree", notebookTree.isVisible());
1332         logger.log(logger.HIGH, "Leaving NeverNote.toggleNotebookWindow");
1333     }   
1334         // Add a new notebook
1335         @SuppressWarnings("unused")
1336         private void addNotebook() {
1337                 logger.log(logger.HIGH, "Inside NeverNote.addNotebook");
1338                 NotebookEdit edit = new NotebookEdit();
1339                 edit.setNotebooks(listManager.getNotebookIndex());
1340                 edit.exec();
1341         
1342                 if (!edit.okPressed())
1343                         return;
1344         
1345                 Calendar currentTime = new GregorianCalendar();
1346                 Long l = new Long(currentTime.getTimeInMillis());
1347                 String randint = new String(Long.toString(l));
1348         
1349                 Notebook newBook = new Notebook();
1350                 newBook.setUpdateSequenceNum(0);
1351                 newBook.setGuid(randint);
1352                 newBook.setName(edit.getNotebook());
1353                 newBook.setServiceCreated(new Date().getTime());
1354                 newBook.setServiceUpdated(new Date().getTime());
1355                 newBook.setDefaultNotebook(false);
1356                 newBook.setPublished(false);
1357                 
1358                 listManager.getNotebookIndex().add(newBook);
1359                 if (edit.isLocal())
1360                         listManager.getLocalNotebooks().add(newBook.getGuid());
1361                 conn.getNotebookTable().addNotebook(newBook, true, edit.isLocal());
1362                 notebookIndexUpdated();
1363                 listManager.countNotebookResults(listManager.getNoteIndex());
1364 //              notebookTree.updateCounts(listManager.getNotebookIndex(), listManager.getNotebookCounter());
1365                 logger.log(logger.HIGH, "Leaving NeverNote.addNotebook");
1366         }
1367         // Edit an existing notebook
1368         @SuppressWarnings("unused")
1369         private void stackNotebook() {
1370                 logger.log(logger.HIGH, "Entering NeverNote.stackNotebook");
1371                 StackNotebook edit = new StackNotebook();
1372                 
1373                 List<QTreeWidgetItem> selections = notebookTree.selectedItems();
1374                 QTreeWidgetItem currentSelection;
1375                 for (int i=0; i<selections.size(); i++) {
1376                         currentSelection = selections.get(0);
1377                         String guid = currentSelection.text(2);
1378                         if (guid.equalsIgnoreCase("")) {
1379                                  QMessageBox.critical(this, tr("Unable To Stack") ,tr("You can't stack the \"All Notebooks\" item."));
1380                                  return;
1381                         }
1382                         if (guid.equalsIgnoreCase("STACK")) {
1383                                  QMessageBox.critical(this, tr("Unable To Stack") ,tr("You can't stack a stack."));
1384                                  return;
1385                         }
1386                 }
1387
1388                 edit.setStackNames(conn.getNotebookTable().getAllStackNames());
1389
1390                 
1391                 edit.exec();
1392         
1393                 if (!edit.okPressed())
1394                         return;
1395         
1396                 String stack = edit.getStackName();
1397                 
1398                 for (int i=0; i<selections.size(); i++) {
1399                         currentSelection = selections.get(i);
1400                         String guid = currentSelection.text(2);
1401                         listManager.updateNotebookStack(guid, stack);
1402                 }
1403                 notebookIndexUpdated();
1404                 logger.log(logger.HIGH, "Leaving NeverNote.stackNotebook");
1405         }
1406         // Edit an existing notebook
1407         @SuppressWarnings("unused")
1408         private void editNotebook() {
1409                 logger.log(logger.HIGH, "Entering NeverNote.editNotebook");
1410                 NotebookEdit edit = new NotebookEdit();
1411                 
1412                 List<QTreeWidgetItem> selections = notebookTree.selectedItems();
1413                 QTreeWidgetItem currentSelection;
1414                 currentSelection = selections.get(0);
1415                 edit.setNotebook(currentSelection.text(0));
1416                 
1417                 String guid = currentSelection.text(2);
1418                 if (!guid.equalsIgnoreCase("STACK")) {
1419                         edit.setTitle(tr("Edit Notebook"));
1420                         edit.setNotebooks(listManager.getNotebookIndex());
1421                         edit.setLocalCheckboxEnabled(false);
1422                         for (int i=0; i<listManager.getNotebookIndex().size(); i++) {
1423                                 if (listManager.getNotebookIndex().get(i).getGuid().equals(guid)) {
1424                                         edit.setDefaultNotebook(listManager.getNotebookIndex().get(i).isDefaultNotebook());
1425                                         i=listManager.getNotebookIndex().size();
1426                                 }
1427                         }
1428                 } else {
1429                         edit.setTitle(tr("Edit Stack"));
1430                         edit.setStacks(conn.getNotebookTable().getAllStackNames());
1431                         edit.hideLocalCheckbox();
1432                         edit.hideDefaultCheckbox();
1433                 }
1434                 
1435                 edit.exec();
1436         
1437                 if (!edit.okPressed())
1438                         return;
1439         
1440                 
1441                 if (guid.equalsIgnoreCase("STACK")) {
1442                         conn.getNotebookTable().renameStacks(currentSelection.text(0), edit.getNotebook());
1443                         for (int j=0; j<listManager.getNotebookIndex().size(); j++) {
1444                                 if (listManager.getNotebookIndex().get(j).getStack().equalsIgnoreCase(currentSelection.text(0)))
1445                                                 listManager.getNotebookIndex().get(j).setStack(edit.getNotebook());
1446                         }
1447                         conn.getNotebookTable().renameStacks(currentSelection.text(0), edit.getNotebook());
1448                         currentSelection.setText(0, edit.getNotebook());
1449                         return;
1450                 }
1451                 
1452                 updateListNotebookName(currentSelection.text(0), edit.getNotebook());
1453                 currentSelection.setText(0, edit.getNotebook());
1454                 
1455                 for (int i=0; i<listManager.getNotebookIndex().size(); i++) {
1456                         if (listManager.getNotebookIndex().get(i).getGuid().equals(guid)) {
1457                                 listManager.getNotebookIndex().get(i).setName(edit.getNotebook());
1458                                 if (!listManager.getNotebookIndex().get(i).isDefaultNotebook() && edit.isDefaultNotebook()) {
1459                                         for (int j=0; j<listManager.getNotebookIndex().size(); j++)
1460                                                 listManager.getNotebookIndex().get(j).setDefaultNotebook(false);
1461                                         listManager.getNotebookIndex().get(i).setDefaultNotebook(true);
1462                                         conn.getNotebookTable().setDefaultNotebook(listManager.getNotebookIndex().get(i).getGuid());
1463                                 }
1464                                 conn.getNotebookTable().updateNotebook(listManager.getNotebookIndex().get(i), true);
1465                                 if (conn.getNotebookTable().isLinked(listManager.getNotebookIndex().get(i).getGuid())) {
1466                                         LinkedNotebook linkedNotebook = conn.getLinkedNotebookTable().getByNotebookGuid(listManager.getNotebookIndex().get(i).getGuid());
1467                                         linkedNotebook.setShareName(edit.getNotebook());
1468                                         conn.getLinkedNotebookTable().updateNotebook(linkedNotebook, true);
1469                                 }
1470                                 i=listManager.getNotebookIndex().size();
1471                         }
1472                 }
1473                 
1474                 // Build a list of non-closed notebooks
1475                 List<Notebook> nbooks = new ArrayList<Notebook>();
1476                 for (int i=0; i<listManager.getNotebookIndex().size(); i++) {
1477                         boolean found=false;
1478                         for (int j=0; j<listManager.getArchiveNotebookIndex().size(); j++) {
1479                                 if (listManager.getArchiveNotebookIndex().get(j).getGuid().equals(listManager.getNotebookIndex().get(i).getGuid()))
1480                                         found = true;
1481                         }
1482                         if (!found)
1483                                 nbooks.add(listManager.getNotebookIndex().get(i));
1484                 }
1485                 
1486                 
1487                 FilterEditorNotebooks notebookFilter = new FilterEditorNotebooks(conn, logger);
1488                 List<Notebook> filteredBooks = notebookFilter.getValidNotebooks(currentNote, listManager.getNotebookIndex());
1489                 browserWindow.setNotebookList(filteredBooks);
1490                 Iterator<String> set = externalWindows.keySet().iterator();
1491                 while(set.hasNext())
1492                         externalWindows.get(set.next()).getBrowserWindow().setNotebookList(filteredBooks);
1493                 logger.log(logger.HIGH, "Leaving NeverNote.editNotebook");
1494         }
1495         // Publish a notebook
1496         @SuppressWarnings("unused")
1497         private void publishNotebook() {
1498                 List<QTreeWidgetItem> selections = notebookTree.selectedItems();
1499                 QTreeWidgetItem currentSelection;
1500                 currentSelection = selections.get(0);
1501                 String guid = currentSelection.text(2);
1502
1503                 if (guid.equalsIgnoreCase("STACK") || guid.equalsIgnoreCase(""))
1504                         return;
1505                 
1506                 Notebook n = null;
1507                 int position = 0;
1508                 for (int i=0; i<listManager.getNotebookIndex().size(); i++) {
1509                         if (guid.equals(listManager.getNotebookIndex().get(i).getGuid())) {
1510                                 n = listManager.getNotebookIndex().get(i);
1511                                 position = i;
1512                                 i = listManager.getNotebookIndex().size();
1513                         }
1514                 }
1515                 if (n == null)
1516                         return;
1517                 
1518                 PublishNotebook publish = new PublishNotebook(Global.username, Global.getServer(), n);
1519                 publish.exec();
1520                 
1521                 if (!publish.okClicked()) 
1522                         return;
1523                 
1524                 Publishing p = publish.getPublishing();
1525                 boolean isPublished = !publish.isStopPressed();
1526                 conn.getNotebookTable().setPublishing(n.getGuid(), isPublished, p);
1527                 n.setPublished(isPublished);
1528                 n.setPublishing(p);
1529                 listManager.getNotebookIndex().set(position, n);
1530                 notebookIndexUpdated();
1531         }
1532         // Publish a notebook
1533         @SuppressWarnings("unused")
1534         private void shareNotebook() {
1535                 List<QTreeWidgetItem> selections = notebookTree.selectedItems();
1536                 QTreeWidgetItem currentSelection;
1537                 currentSelection = selections.get(0);
1538                 String guid = currentSelection.text(2);
1539
1540                 if (guid.equalsIgnoreCase("STACK") || guid.equalsIgnoreCase(""))
1541                         return;
1542                 
1543                 Notebook n = null;;
1544                 for (int i=0; i<listManager.getNotebookIndex().size(); i++) {
1545                         if (guid.equals(listManager.getNotebookIndex().get(i).getGuid())) {
1546                                 n = listManager.getNotebookIndex().get(i);
1547                                 i = listManager.getNotebookIndex().size();
1548                         }
1549                 }
1550                                 
1551                 String authToken = null;
1552                 if (syncRunner.isConnected)
1553                         authToken = syncRunner.authToken;
1554                 ShareNotebook share = new ShareNotebook(n.getName(), conn, n, syncRunner);
1555                 share.exec();
1556                 
1557         }
1558
1559         // Delete an existing notebook
1560         @SuppressWarnings("unused")
1561         private void deleteNotebook() {
1562                 logger.log(logger.HIGH, "Entering NeverNote.deleteNotebook");
1563                 boolean stacksFound = false;
1564                 boolean notebooksFound = false;
1565                 boolean assigned = false;
1566                 // Check if any notes have this notebook
1567                 List<QTreeWidgetItem> selections = notebookTree.selectedItems();
1568         for (int i=0; i<selections.size(); i++) {
1569                 QTreeWidgetItem currentSelection;
1570                 currentSelection = selections.get(i);
1571                 String guid = currentSelection.text(2);
1572                 if (!guid.equalsIgnoreCase("STACK")) {
1573                         notebooksFound = true;
1574                         for (int j=0; j<listManager.getNoteIndex().size(); j++) {
1575                                 String noteGuid = listManager.getNoteIndex().get(j).getNotebookGuid();
1576                                 if (noteGuid.equals(guid)) {
1577                                         assigned = true;
1578                                         j=listManager.getNoteIndex().size();
1579                                         i=selections.size();
1580                                 }
1581                         }
1582                 } else {
1583                         stacksFound = true;
1584                 }
1585         }
1586                 if (assigned) {
1587                         QMessageBox.information(this, tr("Unable to Delete"), tr("Some of the selected notebook(s) contain notes.\n"+
1588                                         "Please delete the notes or move them to another notebook before deleting any notebooks."));
1589                         return;
1590                 }
1591                 
1592                 if (conn.getNotebookTable().getAll().size() == 1) {
1593                         QMessageBox.information(this, tr("Unable to Delete"), tr("You must have at least one notebook."));
1594                         return;
1595                 }
1596         
1597         // If all notebooks are clear, verify the delete
1598                 String msg1 = new String(tr("Delete selected notebooks?"));
1599                 String msg2 = new String(tr("Remove selected stacks (notebooks will not be deleted)?"));
1600                 String msg3 = new String(tr("Delete selected notebooks & remove stacks? Notebooks under the stacks are" +
1601                                 " not deleted unless selected?"));
1602                 String msg = "";
1603                 if (stacksFound && notebooksFound)
1604                         msg = msg3;
1605                 if (!stacksFound && notebooksFound)
1606                         msg = msg1;
1607                 if (stacksFound && !notebooksFound)
1608                         msg = msg2;
1609                 if (QMessageBox.question(this, tr("Confirmation"), msg,
1610                         QMessageBox.StandardButton.Yes, 
1611                         QMessageBox.StandardButton.No)==StandardButton.No.value()) {
1612                         return;
1613                 }
1614                 
1615                 // If confirmed, delete the notebook
1616         for (int i=selections.size()-1; i>=0; i--) {
1617                 QTreeWidgetItem currentSelection;
1618                 currentSelection = selections.get(i);
1619                 String guid = currentSelection.text(2);
1620                 if (currentSelection.text(2).equalsIgnoreCase("STACK")) {
1621                         conn.getNotebookTable().renameStacks(currentSelection.text(0), "");
1622                         listManager.renameStack(currentSelection.text(0), "");
1623                 } else {
1624                         conn.getNotebookTable().expungeNotebook(guid, true);
1625                         listManager.deleteNotebook(guid);
1626                 }
1627         }
1628
1629                 notebookIndexUpdated();
1630 //        notebookTreeSelection();
1631 //        notebookTree.load(listManager.getNotebookIndex(), listManager.getLocalNotebooks());
1632 //        listManager.countNotebookResults(listManager.getNoteIndex());
1633         logger.log(logger.HIGH, "Entering NeverNote.deleteNotebook");
1634         }
1635         // A note's notebook has been updated
1636         @SuppressWarnings("unused")
1637         private void updateNoteNotebook(String guid, String notebookGuid) {
1638                 
1639                 // Update the list manager
1640                 listManager.updateNoteNotebook(guid, notebookGuid);
1641                 listManager.countNotebookResults(listManager.getNoteIndex());
1642 //              notebookTree.updateCounts(listManager.getNotebookIndex(), listManager.getNotebookCounter());    
1643                 
1644                 // Find the name of the notebook
1645                 String notebookName = null;
1646                 for (int i=0; i<listManager.getNotebookIndex().size(); i++) {
1647                         if (listManager.getNotebookIndex().get(i).getGuid().equals(notebookGuid)) {
1648                                 notebookName = listManager.getNotebookIndex().get(i).getName();
1649                                 break;
1650                         }
1651                 }
1652                 
1653                 // If we found the name, update the browser window
1654                 if (notebookName != null) {
1655                         updateListNoteNotebook(guid, notebookName);
1656                         if (guid.equals(currentNoteGuid)) {
1657                                 int pos =  browserWindow.notebookBox.findText(notebookName);
1658                                 if (pos >=0)
1659                                         browserWindow.notebookBox.setCurrentIndex(pos);
1660                         }
1661                 }
1662                 
1663                 // If we're dealing with the current note, then we need to be sure and update the notebook there
1664                 if (guid.equals(currentNoteGuid)) {
1665                         if (currentNote != null) {
1666                                 currentNote.setNotebookGuid(notebookGuid);
1667                         }
1668                 }
1669         }
1670         // Open/close notebooks
1671         @SuppressWarnings("unused")
1672         private void closeNotebooks() {
1673                 NotebookArchive na = new NotebookArchive(listManager.getNotebookIndex(), listManager.getArchiveNotebookIndex());
1674                 na.exec();
1675                 if (!na.okClicked())
1676                         return;
1677                 
1678                 waitCursor(true);
1679                 listManager.getArchiveNotebookIndex().clear();
1680                 
1681                 for (int i=na.getClosedBookList().count()-1; i>=0; i--) {
1682                         String text = na.getClosedBookList().takeItem(i).text();
1683                         for (int j=0; j<listManager.getNotebookIndex().size(); j++) {
1684                                 if (listManager.getNotebookIndex().get(j).getName().equalsIgnoreCase(text)) {
1685                                         Notebook n = listManager.getNotebookIndex().get(j);
1686                                         conn.getNotebookTable().setArchived(n.getGuid(),true);
1687                                         listManager.getArchiveNotebookIndex().add(n);
1688                                         j=listManager.getNotebookIndex().size();
1689                                 }
1690                         }
1691                 }
1692                 
1693                 for (int i=na.getOpenBookList().count()-1; i>=0; i--) {
1694                         String text = na.getOpenBookList().takeItem(i).text();
1695                         for (int j=0; j<listManager.getNotebookIndex().size(); j++) {
1696                                 if (listManager.getNotebookIndex().get(j).getName().equalsIgnoreCase(text)) {
1697                                         Notebook n = listManager.getNotebookIndex().get(j);
1698                                         conn.getNotebookTable().setArchived(n.getGuid(),false);
1699                                         j=listManager.getNotebookIndex().size();
1700                                 }
1701                         }
1702                 }
1703                 notebookTreeSelection();
1704                 listManager.loadNotesIndex();
1705                 notebookIndexUpdated();
1706                 noteIndexUpdated(false);
1707                 reloadTagTree(true);
1708 //              noteIndexUpdated(false);
1709                 
1710                 // Build a list of non-closed notebooks
1711                 List<Notebook> nbooks = new ArrayList<Notebook>();
1712                 for (int i=0; i<listManager.getNotebookIndex().size(); i++) {
1713                         boolean found=false;
1714                         for (int j=0; j<listManager.getArchiveNotebookIndex().size(); j++) {
1715                                 if (listManager.getArchiveNotebookIndex().get(j).getGuid().equals(listManager.getNotebookIndex().get(i).getGuid()))
1716                                         found = true;
1717                         }
1718                         if (!found)
1719                                 nbooks.add(listManager.getNotebookIndex().get(i));
1720                 }
1721                 
1722                 FilterEditorNotebooks notebookFilter = new FilterEditorNotebooks(conn, logger);
1723                 List<Notebook> filteredBooks = notebookFilter.getValidNotebooks(currentNote, listManager.getNotebookIndex());
1724                 browserWindow.setNotebookList(filteredBooks);
1725                 
1726                 // Update any external windows
1727                 Iterator<String> set = externalWindows.keySet().iterator();
1728                 while(set.hasNext())
1729                         externalWindows.get(set.next()).getBrowserWindow().setNotebookList(filteredBooks);
1730                 
1731                 waitCursor(false);
1732         }
1733         // Change the notebook's icon
1734         @SuppressWarnings("unused")
1735         private void setNotebookIcon() {
1736                 boolean stackSelected = false;
1737                 boolean allNotebookSelected = false;
1738                 
1739                 QTreeWidgetItem currentSelection;
1740                 List<QTreeWidgetItem> selections = notebookTree.selectedItems();
1741                 if (selections.size() == 0)
1742                         return;
1743                 
1744                 currentSelection = selections.get(0);   
1745                 String guid = currentSelection.text(2);
1746                 if (guid.equalsIgnoreCase(""))
1747                         allNotebookSelected = true;
1748                 if (guid.equalsIgnoreCase("STACK"))
1749                         stackSelected = true;
1750
1751                 QIcon currentIcon = currentSelection.icon(0);
1752                 QIcon icon;
1753                 SetIcon dialog;
1754                 
1755                 if (!stackSelected && !allNotebookSelected) {
1756                         icon = conn.getNotebookTable().getIcon(guid);
1757                         if (icon == null) {
1758                                 dialog = new SetIcon(currentIcon, saveLastPath);
1759                                 dialog.setUseDefaultIcon(true);
1760                         } else {
1761                                 dialog = new SetIcon(icon, saveLastPath);
1762                                 dialog.setUseDefaultIcon(false);
1763                         }
1764                 } else {
1765                         if (stackSelected) {
1766                                 icon = conn.getSystemIconTable().getIcon(currentSelection.text(0), "STACK");
1767                         } else {
1768                                 icon = conn.getSystemIconTable().getIcon(currentSelection.text(0), "ALLNOTEBOOK");                              
1769                         }
1770                         if (icon == null) {
1771                                 dialog = new SetIcon(currentIcon, saveLastPath);
1772                                 dialog.setUseDefaultIcon(true);
1773                         } else {
1774                                 dialog = new SetIcon(icon, saveLastPath);
1775                                 dialog.setUseDefaultIcon(false);
1776                         }
1777                 }
1778                 dialog.exec();
1779                 if (dialog.okPressed()) {
1780                 saveLastPath = dialog.getPath();
1781
1782                         QIcon newIcon = dialog.getIcon();
1783                         if (stackSelected) {
1784                                 conn.getSystemIconTable().setIcon(currentSelection.text(0), "STACK", newIcon, dialog.getFileType());
1785                                 if (newIcon == null) {
1786                                         newIcon = new QIcon(iconPath+"books2.png");
1787                                 }
1788                                 currentSelection.setIcon(0,newIcon);
1789                                 return;
1790                         }
1791                         if (allNotebookSelected) {
1792                                 conn.getSystemIconTable().setIcon(currentSelection.text(0), "ALLNOTEBOOK", newIcon, dialog.getFileType());
1793                                 if (newIcon == null) {
1794                                         newIcon = new QIcon(iconPath+"notebook-green.png");
1795                                 }
1796                                 currentSelection.setIcon(0,newIcon);
1797                                 return;
1798                         }
1799                         conn.getNotebookTable().setIcon(guid, newIcon, dialog.getFileType());
1800                         if (newIcon == null) {
1801                                 boolean isPublished = false;;
1802                                 boolean found = false;
1803                                 for (int i=0; i<listManager.getNotebookIndex().size() && !found; i++) {
1804                                         if (listManager.getNotebookIndex().get(i).getGuid().equals(guid)) {
1805                                                 isPublished = listManager.getNotebookIndex().get(i).isPublished();
1806                                                 found = true;
1807                                         }
1808                                 }
1809                                 newIcon = notebookTree.findDefaultIcon(guid, currentSelection.text(1), listManager.getLocalNotebooks(), isPublished);
1810                         }
1811                         currentSelection.setIcon(0, newIcon);
1812                 }
1813         
1814         }
1815         
1816         
1817     //***************************************************************
1818     //***************************************************************
1819     //** These functions deal with Tag menu items
1820     //***************************************************************
1821     //***************************************************************
1822         // Add a new notebook
1823         @SuppressWarnings("unused")
1824         private void addTag() {
1825                 logger.log(logger.HIGH, "Inside NeverNote.addTag");
1826                 TagEdit edit = new TagEdit();
1827                 edit.setTagList(listManager.getTagIndex());
1828                 edit.exec();
1829         
1830                 if (!edit.okPressed())
1831                         return;
1832         
1833                 Calendar currentTime = new GregorianCalendar();
1834                 Long l = new Long(currentTime.getTimeInMillis());
1835                 String randint = new String(Long.toString(l));
1836         
1837                 Tag newTag = new Tag();
1838                 newTag.setUpdateSequenceNum(0);
1839                 newTag.setGuid(randint);
1840                 newTag.setName(edit.getTag());
1841                 conn.getTagTable().addTag(newTag, true);
1842                 listManager.getTagIndex().add(newTag);
1843                 reloadTagTree(true);
1844                 
1845                 logger.log(logger.HIGH, "Leaving NeverNote.addTag");
1846         }
1847         @SuppressWarnings("unused")
1848         private void reloadTagTree() {
1849                 reloadTagTree(false);
1850         }
1851         private void reloadTagTree(boolean reload) {
1852                 logger.log(logger.HIGH, "Entering NeverNote.reloadTagTree");
1853                 tagIndexUpdated(reload);
1854                 boolean filter = false;
1855                 listManager.countTagResults(listManager.getNoteIndex());
1856                 if (notebookTree.selectedItems().size() > 0 
1857                                                   && !notebookTree.selectedItems().get(0).text(0).equalsIgnoreCase("All Notebooks"))
1858                                                   filter = true;
1859                 if (tagTree.selectedItems().size() > 0)
1860                         filter = true;
1861                 tagTree.showAllTags(!filter);
1862                 logger.log(logger.HIGH, "Leaving NeverNote.reloadTagTree");
1863         }
1864         // Edit an existing tag
1865         @SuppressWarnings("unused")
1866         private void editTag() {
1867                 logger.log(logger.HIGH, "Entering NeverNote.editTag");
1868                 TagEdit edit = new TagEdit();
1869                 edit.setTitle("Edit Tag");
1870                 List<QTreeWidgetItem> selections = tagTree.selectedItems();
1871                 QTreeWidgetItem currentSelection;
1872                 currentSelection = selections.get(0);
1873                 edit.setTag(currentSelection.text(0));
1874                 edit.setTagList(listManager.getTagIndex());
1875                 edit.exec();
1876         
1877                 if (!edit.okPressed())
1878                         return;
1879         
1880                 String guid = currentSelection.text(2);
1881                 currentSelection.setText(0,edit.getTag());
1882                 
1883                 for (int i=0; i<listManager.getTagIndex().size(); i++) {
1884                         if (listManager.getTagIndex().get(i).getGuid().equals(guid)) {
1885                                 listManager.getTagIndex().get(i).setName(edit.getTag());
1886                                 conn.getTagTable().updateTag(listManager.getTagIndex().get(i), true);
1887                                 updateListTagName(guid);
1888                                 if (currentNote != null && currentNote.getTagGuids().contains(guid))
1889                                         browserWindow.setTag(getTagNamesForNote(currentNote));
1890                                 logger.log(logger.HIGH, "Leaving NeverNote.editTag");
1891                                 return;
1892                         }
1893                 }
1894                 browserWindow.setTag(getTagNamesForNote(currentNote));
1895                 logger.log(logger.HIGH, "Leaving NeverNote.editTag...");
1896         }
1897         // Delete an existing tag
1898         @SuppressWarnings("unused")
1899         private void deleteTag() {
1900                 logger.log(logger.HIGH, "Entering NeverNote.deleteTag");
1901                 
1902                 if (QMessageBox.question(this, tr("Confirmation"), tr("Delete the selected tags?"),
1903                         QMessageBox.StandardButton.Yes, 
1904                         QMessageBox.StandardButton.No)==StandardButton.No.value()) {
1905                                                         return;
1906                 }
1907                 
1908                 List<QTreeWidgetItem> selections = tagTree.selectedItems();
1909         for (int i=selections.size()-1; i>=0; i--) {
1910                 QTreeWidgetItem currentSelection;
1911                 currentSelection = selections.get(i);                   
1912                 removeTagItem(currentSelection.text(2));
1913         }
1914         tagIndexUpdated(true);
1915         tagTreeSelection();
1916         listManager.countTagResults(listManager.getNoteIndex());
1917 //              tagTree.updateCounts(listManager.getTagCounter());
1918         logger.log(logger.HIGH, "Leaving NeverNote.deleteTag");
1919         }
1920         // Remove a tag tree item.  Go recursively down & remove the children too
1921         private void removeTagItem(String guid) {
1922         for (int j=listManager.getTagIndex().size()-1; j>=0; j--) {             
1923                 String parent = listManager.getTagIndex().get(j).getParentGuid();
1924                 if (parent != null && parent.equals(guid)) {            
1925                         //Remove this tag's children
1926                         removeTagItem(listManager.getTagIndex().get(j).getGuid());
1927                 }
1928         }
1929         //Now, remove this tag
1930         removeListTagName(guid);
1931         conn.getTagTable().expungeTag(guid, true);                      
1932         for (int a=0; a<listManager.getTagIndex().size(); a++) {
1933                 if (listManager.getTagIndex().get(a).getGuid().equals(guid)) {
1934                         listManager.getTagIndex().remove(a);
1935                         return;
1936                 }
1937         }
1938         }
1939         // Setup the tree containing the user's tags
1940     private void initializeTagTree() {
1941         logger.log(logger.HIGH, "Entering NeverNote.initializeTagTree");
1942 //      tagTree.itemSelectionChanged.connect(this, "tagTreeSelection()");
1943 //      tagTree.itemClicked.connect(this, "tagTreeSelection()");
1944         tagTree.selectionSignal.connect(this, "tagTreeSelection()");
1945         listManager.tagSignal.refreshTagTreeCounts.connect(tagTree, "updateCounts(List)");
1946         logger.log(logger.HIGH, "Leaving NeverNote.initializeTagTree");
1947     }
1948     // Listener when a tag is selected
1949         private void tagTreeSelection() {
1950         logger.log(logger.HIGH, "Entering NeverNote.tagTreeSelection");
1951                 
1952         clearTrashFilter();
1953         clearAttributeFilter();
1954         clearSavedSearchFilter();
1955         
1956                 menuBar.noteRestoreAction.setVisible(false);
1957                 
1958         List<QTreeWidgetItem> selections = tagTree.selectedItems();
1959         QTreeWidgetItem currentSelection;
1960         selectedTagGUIDs.clear();
1961         for (int i=0; i<selections.size(); i++) {
1962                 currentSelection = selections.get(i);
1963                 selectedTagGUIDs.add(currentSelection.text(2));
1964         }
1965         if (selections.size() > 0) {
1966                 menuBar.tagEditAction.setEnabled(true);
1967                 menuBar.tagDeleteAction.setEnabled(true);
1968                 menuBar.tagIconAction.setEnabled(true);
1969         }
1970         else {
1971                 menuBar.tagEditAction.setEnabled(false);
1972                 menuBar.tagDeleteAction.setEnabled(false);
1973                 menuBar.tagIconAction.setEnabled(true);
1974         }
1975         listManager.setSelectedTags(selectedTagGUIDs);
1976         listManager.loadNotesIndex();
1977         noteIndexUpdated(false);
1978         logger.log(logger.HIGH, "Leaving NeverNote.tagTreeSelection");
1979     }
1980     // trigger the tag index to be refreshed
1981     @SuppressWarnings("unused")
1982         private void tagIndexUpdated() {
1983         tagIndexUpdated(true);
1984     }
1985     private void tagIndexUpdated(boolean reload) {
1986         logger.log(logger.HIGH, "Entering NeverNote.tagIndexUpdated");
1987                 if (selectedTagGUIDs == null)
1988                         selectedTagGUIDs = new ArrayList<String>();
1989                 if (reload)
1990                         listManager.reloadTagIndex();
1991
1992                 tagTree.blockSignals(true);
1993                 if (reload) {
1994                         tagTree.setIcons(conn.getTagTable().getAllIcons());
1995                         tagTree.load(listManager.getTagIndex());
1996                 }
1997         for (int i=selectedTagGUIDs.size()-1; i>=0; i--) {
1998                 boolean found = tagTree.selectGuid(selectedTagGUIDs.get(i));
1999                 if (!found)
2000                         selectedTagGUIDs.remove(i);
2001         }
2002         tagTree.blockSignals(false);
2003         
2004                 browserWindow.setTag(getTagNamesForNote(currentNote));
2005         logger.log(logger.HIGH, "Leaving NeverNote.tagIndexUpdated");
2006     }   
2007     // Show/Hide note information
2008         private void toggleTagWindow() {
2009                 logger.log(logger.HIGH, "Entering NeverNote.toggleTagWindow");
2010         if (tagTree.isVisible())
2011                 tagTree.hide();
2012         else
2013                 tagTree.show();
2014         menuBar.hideTags.setChecked(tagTree.isVisible());
2015         Global.saveWindowVisible("tagTree", tagTree.isVisible());
2016         logger.log(logger.HIGH, "Leaving NeverNote.toggleTagWindow");
2017     }   
2018         // A note's tags have been updated
2019         @SuppressWarnings("unused")
2020         private void updateNoteTags(String guid, List<String> tags) {
2021                 // Save any new tags.  We'll need them later.
2022                 List<String> newTags = new ArrayList<String>();
2023                 for (int i=0; i<tags.size(); i++) {
2024                         if (conn.getTagTable().findTagByName(tags.get(i))==null) 
2025                                 newTags.add(tags.get(i));
2026                 }
2027                 
2028                 listManager.saveNoteTags(guid, tags);
2029                 listManager.countTagResults(listManager.getNoteIndex());
2030                 StringBuffer names = new StringBuffer("");
2031                 for (int i=0; i<tags.size(); i++) {
2032                         names = names.append(tags.get(i));
2033                         if (i<tags.size()-1) {
2034                                 names.append(Global.tagDelimeter + " ");
2035                         }
2036                 }
2037                 browserWindow.setTag(names.toString());
2038                 noteDirty = true;
2039                 
2040                 // Now, we need to add any new tags to the tag tree
2041                 for (int i=0; i<newTags.size(); i++) 
2042                         tagTree.insertTag(newTags.get(i), conn.getTagTable().findTagByName(newTags.get(i)));
2043         }
2044         // Get a string containing all tag names for a note
2045         private String getTagNamesForNote(Note n) {
2046                 logger.log(logger.HIGH, "Entering NeverNote.getTagNamesForNote");
2047                 if (n==null || n.getGuid() == null || n.getGuid().equals(""))
2048                         return "";
2049                 StringBuffer buffer = new StringBuffer(100);
2050                 Vector<String> v = new Vector<String>();
2051                 List<String> guids = n.getTagGuids();
2052                 
2053                 if (guids == null) 
2054                         return "";
2055                 
2056                 for (int i=0; i<guids.size(); i++) {
2057                         v.add(listManager.getTagNameByGuid(guids.get(i)));
2058                 }
2059                 Comparator<String> comparator = Collections.reverseOrder();
2060                 Collections.sort(v,comparator);
2061                 Collections.reverse(v);
2062                 
2063                 for (int i = 0; i<v.size(); i++) {
2064                         if (i>0) 
2065                                 buffer.append(", ");
2066                         buffer.append(v.get(i));
2067                 }
2068                 
2069                 logger.log(logger.HIGH, "Leaving NeverNote.getTagNamesForNote");
2070                 return buffer.toString();
2071         }       
2072         // Tags were added via dropping notes from the note list
2073         @SuppressWarnings("unused")
2074         private void tagsAdded(String noteGuid, String tagGuid) {
2075                 String tagName = null;
2076                 for (int i=0; i<listManager.getTagIndex().size(); i++) {
2077                         if (listManager.getTagIndex().get(i).getGuid().equals(tagGuid)) {
2078                                 tagName = listManager.getTagIndex().get(i).getName();
2079                                 i=listManager.getTagIndex().size();
2080                         }
2081                 }
2082                 if (tagName == null)
2083                         return;
2084                 
2085                 for (int i=0; i<listManager.getMasterNoteIndex().size(); i++) {
2086                         if (listManager.getMasterNoteIndex().get(i).getGuid().equals(noteGuid)) {
2087                                 List<String> tagNames = new ArrayList<String>();
2088                                 tagNames.add(new String(tagName));
2089                                 Note n = listManager.getMasterNoteIndex().get(i);
2090                                 for (int j=0; j<n.getTagNames().size(); j++) {
2091                                         tagNames.add(new String(n.getTagNames().get(j)));
2092                                 }
2093                                 listManager.getNoteTableModel().updateNoteTags(noteGuid, n.getTagGuids(), tagNames);
2094                                 if (n.getGuid().equals(currentNoteGuid)) {
2095                                         Collections.sort(tagNames);
2096                                         String display = "";
2097                                         for (int j=0; j<tagNames.size(); j++) {
2098                                                 display = display+tagNames.get(j);
2099                                                 if (j+2<tagNames.size()) 
2100                                                         display = display+Global.tagDelimeter+" ";
2101                                         }
2102                                         browserWindow.setTag(display);
2103                                 }
2104                                 i=listManager.getMasterNoteIndex().size();
2105                         }
2106                 }
2107                 
2108                 
2109                 listManager.getNoteTableModel().updateNoteSyncStatus(noteGuid, false);
2110         }
2111         private void clearTagFilter() {
2112                 tagTree.blockSignals(true);
2113                 tagTree.clearSelection();
2114                 menuBar.noteRestoreAction.setVisible(false);
2115                 menuBar.tagEditAction.setEnabled(false);
2116                 menuBar.tagDeleteAction.setEnabled(false);
2117                 menuBar.tagIconAction.setEnabled(false);
2118                 selectedTagGUIDs.clear();
2119         listManager.setSelectedTags(selectedTagGUIDs);
2120         tagTree.blockSignals(false);
2121         }
2122         // Change the icon for a tag
2123         @SuppressWarnings("unused")
2124         private void setTagIcon() {
2125                 QTreeWidgetItem currentSelection;
2126                 List<QTreeWidgetItem> selections = tagTree.selectedItems();
2127                 if (selections.size() == 0)
2128                         return;
2129                 
2130                 currentSelection = selections.get(0);   
2131                 String guid = currentSelection.text(2);
2132
2133                 QIcon currentIcon = currentSelection.icon(0);
2134                 QIcon icon = conn.getTagTable().getIcon(guid);
2135                 SetIcon dialog;
2136                 if (icon == null) {
2137                         dialog = new SetIcon(currentIcon, saveLastPath);
2138                         dialog.setUseDefaultIcon(true);
2139                 } else {
2140                         dialog = new SetIcon(icon, saveLastPath);
2141                         dialog.setUseDefaultIcon(false);
2142                 }
2143                 dialog.exec();
2144                 if (dialog.okPressed()) {
2145                 saveLastPath = dialog.getPath();
2146                         QIcon newIcon = dialog.getIcon();
2147                         conn.getTagTable().setIcon(guid, newIcon, dialog.getFileType());
2148                         if (newIcon == null) 
2149                                 newIcon = new QIcon(iconPath+"tag.png");
2150                         currentSelection.setIcon(0, newIcon);
2151                 }
2152         
2153         }
2154
2155         
2156     //***************************************************************
2157     //***************************************************************
2158     //** These functions deal with Saved Search menu items
2159     //***************************************************************
2160     //***************************************************************
2161         // Add a new notebook
2162         @SuppressWarnings("unused")
2163         private void addSavedSearch() {
2164                 logger.log(logger.HIGH, "Inside NeverNote.addSavedSearch");
2165                 SavedSearchEdit edit = new SavedSearchEdit();
2166                 edit.setSearchList(listManager.getSavedSearchIndex());
2167                 edit.exec();
2168         
2169                 if (!edit.okPressed())
2170                         return;
2171         
2172                 Calendar currentTime = new GregorianCalendar();         
2173                 Long l = new Long(currentTime.getTimeInMillis());
2174                 String randint = new String(Long.toString(l));
2175         
2176                 SavedSearch search = new SavedSearch();
2177                 search.setUpdateSequenceNum(0);
2178                 search.setGuid(randint);
2179                 search.setName(edit.getName());
2180                 search.setQuery(edit.getQuery());
2181                 search.setFormat(QueryFormat.USER);
2182                 listManager.getSavedSearchIndex().add(search);
2183                 conn.getSavedSearchTable().addSavedSearch(search, true);
2184                 savedSearchIndexUpdated();
2185                 logger.log(logger.HIGH, "Leaving NeverNote.addSavedSearch");
2186         }
2187         // Edit an existing tag
2188         @SuppressWarnings("unused")
2189         private void editSavedSearch() {
2190                 logger.log(logger.HIGH, "Entering NeverNote.editSavedSearch");
2191                 SavedSearchEdit edit = new SavedSearchEdit();
2192                 edit.setTitle(tr("Edit Search"));
2193                 List<QTreeWidgetItem> selections = savedSearchTree.selectedItems();
2194                 QTreeWidgetItem currentSelection;
2195                 currentSelection = selections.get(0);
2196                 String guid = currentSelection.text(1);
2197                 SavedSearch s = conn.getSavedSearchTable().getSavedSearch(guid);
2198                 edit.setName(currentSelection.text(0));
2199                 edit.setQuery(s.getQuery());
2200                 edit.setSearchList(listManager.getSavedSearchIndex());
2201                 edit.exec();
2202         
2203                 if (!edit.okPressed())
2204                         return;
2205         
2206                 List<SavedSearch> list = listManager.getSavedSearchIndex();
2207                 SavedSearch search = null;
2208                 boolean found = false;
2209                 for (int i=0; i<list.size(); i++) {
2210                         search = list.get(i);
2211                         if (search.getGuid().equals(guid)) {
2212                                 i=list.size();
2213                                 found = true;
2214                         }
2215                 }
2216                 if (!found)
2217                         return;
2218                 search.setName(edit.getName());
2219                 search.setQuery(edit.getQuery());
2220                 conn.getSavedSearchTable().updateSavedSearch(search, true);
2221                 savedSearchIndexUpdated();
2222                 logger.log(logger.HIGH, "Leaving NeverNote.editSavedSearch");
2223         }
2224         // Delete an existing tag
2225         @SuppressWarnings("unused")
2226         private void deleteSavedSearch() {
2227                 logger.log(logger.HIGH, "Entering NeverNote.deleteSavedSearch");
2228                 
2229                 if (QMessageBox.question(this, "Confirmation", "Delete the selected search?",
2230                         QMessageBox.StandardButton.Yes, 
2231                         QMessageBox.StandardButton.No)==StandardButton.No.value()) {
2232                                                         return;
2233                 }
2234                 
2235                 List<QTreeWidgetItem> selections = savedSearchTree.selectedItems();
2236         for (int i=selections.size()-1; i>=0; i--) {
2237                 QTreeWidgetItem currentSelection;
2238                 currentSelection = selections.get(i);
2239                 for (int j=0; j<listManager.getSavedSearchIndex().size(); j++) {
2240                         if (listManager.getSavedSearchIndex().get(j).getGuid().equals(currentSelection.text(1))) {
2241                                 conn.getSavedSearchTable().expungeSavedSearch(listManager.getSavedSearchIndex().get(j).getGuid(), true);
2242                                 listManager.getSavedSearchIndex().remove(j);
2243                                 j=listManager.getSavedSearchIndex().size()+1;
2244                         }
2245                 }
2246                 selections.remove(i);
2247         }
2248         savedSearchIndexUpdated();
2249         logger.log(logger.HIGH, "Leaving NeverNote.deleteSavedSearch");
2250         }
2251     // Setup the tree containing the user's tags
2252     private void initializeSavedSearchTree() {
2253         logger.log(logger.HIGH, "Entering NeverNote.initializeSavedSearchTree");
2254         savedSearchTree.itemSelectionChanged.connect(this, "savedSearchTreeSelection()");
2255         logger.log(logger.HIGH, "Leaving NeverNote.initializeSavedSearchTree");
2256     }
2257     // Listener when a tag is selected
2258     @SuppressWarnings("unused")
2259         private void savedSearchTreeSelection() {
2260         logger.log(logger.HIGH, "Entering NeverNote.savedSearchTreeSelection");
2261
2262         clearNotebookFilter();
2263         clearTagFilter();
2264         clearTrashFilter();
2265         clearAttributeFilter();
2266         
2267         String currentGuid = selectedSavedSearchGUID;
2268         menuBar.savedSearchEditAction.setEnabled(true);
2269         menuBar.savedSearchDeleteAction.setEnabled(true);
2270         menuBar.savedSearchIconAction.setEnabled(true);
2271         List<QTreeWidgetItem> selections = savedSearchTree.selectedItems();
2272         QTreeWidgetItem currentSelection;
2273         selectedSavedSearchGUID = "";
2274         for (int i=0; i<selections.size(); i++) {
2275                 currentSelection = selections.get(i);
2276                 if (currentSelection.text(1).equals(currentGuid)) {
2277                         currentSelection.setSelected(false);
2278                 } else {
2279                         selectedSavedSearchGUID = currentSelection.text(1);
2280                 }
2281 //              i = selections.size() +1;
2282         }
2283         
2284         // There is the potential for no notebooks to be selected if this 
2285         // happens then we make it look like all notebooks were selecetd.
2286         // If that happens, just select the "all notebooks"
2287         if (selections.size()==0) {
2288                 clearSavedSearchFilter();
2289         }
2290         listManager.setSelectedSavedSearch(selectedSavedSearchGUID);
2291         
2292         logger.log(logger.HIGH, "Leaving NeverNote.savedSearchTreeSelection");
2293     }
2294     private void clearSavedSearchFilter() {
2295         menuBar.savedSearchEditAction.setEnabled(false);
2296         menuBar.savedSearchDeleteAction.setEnabled(false);
2297         menuBar.savedSearchIconAction.setEnabled(false);
2298         savedSearchTree.blockSignals(true);
2299         savedSearchTree.clearSelection();
2300         savedSearchTree.blockSignals(false);
2301         selectedSavedSearchGUID = "";
2302         searchField.setEditText("");
2303         searchPerformed = false;
2304         listManager.setSelectedSavedSearch(selectedSavedSearchGUID);
2305     }
2306     // trigger the tag index to be refreshed
2307         private void savedSearchIndexUpdated() { 
2308                 if (selectedSavedSearchGUID == null)
2309                         selectedSavedSearchGUID = new String();
2310                 savedSearchTree.blockSignals(true);
2311                 savedSearchTree.setIcons(conn.getSavedSearchTable().getAllIcons());
2312         savedSearchTree.load(listManager.getSavedSearchIndex());
2313         savedSearchTree.selectGuid(selectedSavedSearchGUID);
2314         savedSearchTree.blockSignals(false);
2315     }
2316     // trigger when the saved search selection changes
2317     @SuppressWarnings("unused")
2318         private void updateSavedSearchSelection() {
2319                 logger.log(logger.HIGH, "Entering NeverNote.updateSavedSearchSelection()");
2320                 
2321         menuBar.savedSearchEditAction.setEnabled(true);
2322         menuBar.savedSearchDeleteAction.setEnabled(true);
2323         menuBar.savedSearchIconAction.setEnabled(true);
2324         List<QTreeWidgetItem> selections = savedSearchTree.selectedItems();
2325
2326         if (selections.size() > 0) {
2327                 menuBar.savedSearchEditAction.setEnabled(true);
2328                 menuBar.savedSearchDeleteAction.setEnabled(true);
2329                 menuBar.savedSearchIconAction.setEnabled(true);
2330                 selectedSavedSearchGUID = selections.get(0).text(1);
2331                 SavedSearch s = conn.getSavedSearchTable().getSavedSearch(selectedSavedSearchGUID);
2332                 searchField.setEditText(s.getQuery());
2333         } else { 
2334                 menuBar.savedSearchEditAction.setEnabled(false);
2335                 menuBar.savedSearchDeleteAction.setEnabled(false);
2336                 menuBar.savedSearchIconAction.setEnabled(false);
2337                 selectedSavedSearchGUID = "";
2338                 searchField.setEditText("");
2339         }
2340         searchFieldChanged();
2341         
2342                 logger.log(logger.HIGH, "Leaving NeverNote.updateSavedSearchSelection()");
2343
2344         
2345     }
2346     // Show/Hide note information
2347         private void toggleSavedSearchWindow() {
2348                 logger.log(logger.HIGH, "Entering NeverNote.toggleSavedSearchWindow");
2349         if (savedSearchTree.isVisible())
2350                 savedSearchTree.hide();
2351         else
2352                 savedSearchTree.show();
2353         menuBar.hideSavedSearches.setChecked(savedSearchTree.isVisible());
2354                                 
2355                 Global.saveWindowVisible("savedSearchTree", savedSearchTree.isVisible());
2356         logger.log(logger.HIGH, "Leaving NeverNote.toggleSavedSearchWindow");
2357     }
2358         // Change the icon for a saved search
2359         @SuppressWarnings("unused")
2360         private void setSavedSearchIcon() {
2361                 QTreeWidgetItem currentSelection;
2362                 List<QTreeWidgetItem> selections = savedSearchTree.selectedItems();
2363                 if (selections.size() == 0)
2364                         return;
2365                 
2366                 currentSelection = selections.get(0);   
2367                 String guid = currentSelection.text(1);
2368
2369                 QIcon currentIcon = currentSelection.icon(0);
2370                 QIcon icon = conn.getSavedSearchTable().getIcon(guid);
2371                 SetIcon dialog;
2372                 if (icon == null) {
2373                         dialog = new SetIcon(currentIcon, saveLastPath);
2374                         dialog.setUseDefaultIcon(true);
2375                 } else {
2376                         dialog = new SetIcon(icon, saveLastPath);
2377                         dialog.setUseDefaultIcon(false);
2378                 }
2379                 dialog.exec();
2380                 if (dialog.okPressed()) {
2381                 saveLastPath = dialog.getPath();
2382                         QIcon newIcon = dialog.getIcon();
2383                         conn.getSavedSearchTable().setIcon(guid, newIcon, dialog.getFileType());
2384                         if (newIcon == null) 
2385                                 newIcon = new QIcon(iconPath+"search.png");
2386                         currentSelection.setIcon(0, newIcon);
2387                 }
2388         
2389         }
2390         
2391         
2392         
2393         
2394     //***************************************************************
2395     //***************************************************************
2396     //** These functions deal with Help menu & tool menu items
2397     //***************************************************************
2398     //***************************************************************
2399         // Show database status
2400         @SuppressWarnings("unused")
2401         private void databaseStatus() {
2402                 waitCursor(true);
2403                 int dirty = conn.getNoteTable().getDirtyCount();
2404                 int unindexed = conn.getNoteTable().getUnindexedCount();
2405                 DatabaseStatus status = new DatabaseStatus();
2406                 status.setUnsynchronized(dirty);
2407                 status.setUnindexed(unindexed);
2408                 status.setNoteCount(conn.getNoteTable().getNoteCount());
2409                 status.setNotebookCount(listManager.getNotebookIndex().size());
2410                 status.setUnindexedResourceCount(conn.getNoteTable().noteResourceTable.getUnindexedCount());
2411                 status.setSavedSearchCount(listManager.getSavedSearchIndex().size());
2412                 status.setTagCount(listManager.getTagIndex().size());
2413                 status.setResourceCount(conn.getNoteTable().noteResourceTable.getResourceCount());
2414                 status.setWordCount(conn.getWordsTable().getWordCount());
2415                 waitCursor(false);
2416                 status.exec();
2417         }
2418         // Compact the database
2419         @SuppressWarnings("unused")
2420         private void compactDatabase() {
2421         logger.log(logger.HIGH, "Entering NeverNote.compactDatabase");
2422                 if (QMessageBox.question(this, tr("Confirmation"), tr("This will free unused space in the database, "+
2423                                 "but please be aware that depending upon the size of your database this can be time consuming " +
2424                                 "and NeverNote will be unresponsive until it is complete.  Do you wish to continue?"),
2425                                 QMessageBox.StandardButton.Yes, 
2426                                 QMessageBox.StandardButton.No)==StandardButton.No.value() && Global.verifyDelete() == true) {
2427                                                         return;
2428                 }
2429                 setMessage("Compacting database.");
2430                 waitCursor(true);
2431                 listManager.compactDatabase();
2432                 waitCursor(false);
2433                 setMessage("Database compact is complete.");            
2434         logger.log(logger.HIGH, "Leaving NeverNote.compactDatabase");
2435     }
2436         @SuppressWarnings("unused")
2437         private void accountInformation() {
2438                 logger.log(logger.HIGH, "Entering NeverNote.accountInformation");
2439                 AccountDialog dialog = new AccountDialog();
2440                 dialog.show();
2441                 logger.log(logger.HIGH, "Leaving NeverNote.accountInformation");
2442         }
2443         @SuppressWarnings("unused")
2444         private void releaseNotes() {
2445                 logger.log(logger.HIGH, "Entering NeverNote.releaseNotes");
2446                 QDialog dialog = new QDialog(this);
2447                 QHBoxLayout layout = new QHBoxLayout();
2448                 QTextEdit textBox = new QTextEdit();
2449                 layout.addWidget(textBox);
2450                 textBox.setReadOnly(true);
2451                 QFile file = new QFile(Global.getFileManager().getHomeDirPath("release.txt"));
2452                 if (!file.open(new QIODevice.OpenMode(QIODevice.OpenModeFlag.ReadOnly,
2453                 QIODevice.OpenModeFlag.Text)))
2454                         return;
2455                 textBox.setText(file.readAll().toString());
2456                 file.close();
2457                 dialog.setWindowTitle(tr("Release Notes"));
2458                 dialog.setLayout(layout);
2459                 dialog.show();
2460                 logger.log(logger.HIGH, "Leaving NeverNote.releaseNotes");
2461         }
2462         // Called when user picks Log from the help menu
2463         @SuppressWarnings("unused")
2464         private void logger() {
2465                 logger.log(logger.HIGH, "Entering NeverNote.logger");
2466                 QDialog dialog = new QDialog(this);
2467                 QHBoxLayout layout = new QHBoxLayout();
2468                 QListWidget textBox = new QListWidget();
2469                 layout.addWidget(textBox);
2470                 textBox.addItems(emitLog);
2471                 
2472                 dialog.setLayout(layout);
2473                 dialog.setWindowTitle(tr("Mesasge Log"));
2474                 dialog.show();
2475                 logger.log(logger.HIGH, "Leaving NeverNote.logger");
2476         }
2477         // Menu option "help/about" was selected
2478         @SuppressWarnings("unused")
2479         private void about() {
2480                 logger.log(logger.HIGH, "Entering NeverNote.about");
2481                 QMessageBox.about(this, 
2482                                                 tr("About NeverNote"),
2483                                                 tr("<h4><center><b>NeverNote</b></center></h4><hr><center>Version ")
2484                                                 +Global.version
2485                                                 +tr("<hr></center>Evernote"
2486                                                                 +"An Open Source Evernote Client.<br><br>" 
2487                                                                 +"Licensed under GPL v2.  <br><hr><br>"
2488                                                                 +"Evernote is copyright 2001-2010 by Evernote Corporation<br>"
2489                                                                 +"Jambi and QT are the licensed trademark of Nokia Corporation<br>"
2490                                                                 +"PDFRenderer is licened under the LGPL<br>"
2491                                                                 +"JTidy is copyrighted under the World Wide Web Consortium<br>"
2492                                                                 +"Apache Common Utilities licensed under the Apache License Version 2.0<br>"
2493                                                                 +"Jazzy is licened under the LGPL<br>"
2494                                                                 +"Java is a registered trademark of Oracle Corporation.<br><hr>"));     
2495                 logger.log(logger.HIGH, "Leaving NeverNote.about");
2496         }
2497         // Hide the entire left hand side
2498         @SuppressWarnings("unused")
2499         private void toggleLeftSide() {
2500                 boolean hidden;
2501                 
2502                 hidden = !menuBar.hideLeftSide.isChecked();
2503                 menuBar.hideLeftSide.setChecked(!hidden);
2504                 
2505                 if (notebookTree.isVisible() != hidden)
2506                         toggleNotebookWindow();
2507                 if (savedSearchTree.isVisible() != hidden)
2508                         toggleSavedSearchWindow();
2509                 if (tagTree.isVisible() != hidden)
2510                         toggleTagWindow();
2511                 if (attributeTree.isVisible() != hidden)
2512                         toggleAttributesWindow();
2513                 if (trashTree.isVisible() != hidden)
2514                         toggleTrashWindow();
2515                 
2516                 Global.saveWindowVisible("leftPanel", hidden);
2517                 
2518         }
2519         public void checkForUpdates() {
2520                 // Send off thread to check for a new version
2521                 versionChecker = new QNetworkAccessManager(this);
2522                 versionChecker.finished.connect(this, "upgradeFileRead(QNetworkReply)");
2523                 QNetworkRequest request = new QNetworkRequest();
2524                 request.setUrl(new QUrl(Global.getUpdatesAvailableUrl()));
2525                 versionChecker.get(request);
2526         }
2527         @SuppressWarnings("unused")
2528         private void upgradeFileRead(QNetworkReply reply) {
2529                 if (!reply.isReadable())
2530                         return;
2531                 
2532                 String winVersion = Global.version;
2533                 String osxVersion = Global.version;
2534                 String linuxVersion = Global.version;
2535                 String linux64Version = Global.version;
2536                 String version = Global.version;
2537                 
2538                 // Determine the versions available
2539                 QByteArray data = reply.readLine();
2540                 while (data != null && !reply.atEnd()) {
2541                         String line = data.toString();
2542                         String lineVersion;
2543                         if (line.contains(":")) 
2544                                 lineVersion = line.substring(line.indexOf(":")+1).replace(" ", "").replace("\n", "");
2545                         else
2546                                 lineVersion = "";
2547                         if (line.toLowerCase().contains("windows")) 
2548                                 winVersion = lineVersion;
2549                         else if (line.toLowerCase().contains("os-x")) 
2550                                 osxVersion = lineVersion;
2551                         else if (line.toLowerCase().contains("linux amd64")) 
2552                                 linux64Version = lineVersion;
2553                         else if (line.toLowerCase().contains("linux i386")) 
2554                                 linuxVersion = lineVersion;
2555                         else if (line.toLowerCase().contains("default")) 
2556                                 version = lineVersion;
2557                         
2558                         // Read the next line
2559                         data = reply.readLine();
2560                 }
2561                 
2562                 // Now we need to determine what system we are on.
2563                 if (System.getProperty("os.name").toLowerCase().contains("windows"))
2564                         version = winVersion;
2565                 if (System.getProperty("os.name").toLowerCase().contains("mac os"))
2566                         version = osxVersion;
2567                 if (System.getProperty("os.name").toLowerCase().contains("Linux")) {
2568                         if (System.getProperty("os.arch").contains("amd64") ||
2569                                 System.getProperty("os.arch").contains("x86_64"))
2570                                         version = linux64Version;
2571                         else
2572                                 version = linuxVersion;
2573                 }
2574                 
2575                 
2576                 if (Global.version.equals(version))
2577                         return;
2578                 
2579                 UpgradeAvailableDialog dialog = new UpgradeAvailableDialog();
2580                 dialog.exec();
2581                 if (dialog.remindMe())
2582                         Global.setCheckVersionUpgrade(true);
2583                 else
2584                         Global.setCheckVersionUpgrade(false);
2585         }
2586                 
2587         
2588     //***************************************************************
2589     //***************************************************************
2590     //** These functions deal with the Toolbar
2591     //***************************************************************
2592     //***************************************************************  
2593         // Text in the search bar has been cleared
2594         private void searchFieldCleared() {
2595                 saveNote();
2596                 
2597                 // This is done because we want to force a reload of
2598                 // images.  Some images we may want to highlight the text.
2599                 readOnlyCache.clear();
2600                 inkNoteCache.clear();
2601                 noteCache.clear();
2602                 QWebSettings.setMaximumPagesInCache(0);
2603                 QWebSettings.setObjectCacheCapacities(0, 0, 0);
2604         
2605                 searchField.setEditText("");
2606                 saveNoteColumnPositions();
2607                 saveNoteIndexWidth();
2608                 noteIndexUpdated(true);
2609                 if (currentNote == null && listManager.getNoteIndex().size() > 0) {
2610                         currentNote = listManager.getNoteIndex().get(0);
2611                         currentNoteGuid = currentNote.getGuid();
2612                 }
2613                 if (currentNote != null)
2614                         loadNoteBrowserInformation(browserWindow);
2615         }
2616         // text in the search bar changed.  We only use this to tell if it was cleared, 
2617         // otherwise we trigger off searchFieldChanged.
2618         @SuppressWarnings("unused")
2619         private void searchFieldTextChanged(String text) {
2620                 QWebSettings.setMaximumPagesInCache(0);
2621                 QWebSettings.setObjectCacheCapacities(0, 0, 0);
2622
2623                 if (text.trim().equals("")) {
2624                         searchFieldCleared();
2625                         if (searchPerformed) {
2626
2627                                 // This is done because we want to force a reload of
2628                                 // images.  Some images we may want to highlight the text.
2629                                 noteCache.clear();
2630                                 readOnlyCache.clear();
2631                                 inkNoteCache.clear();
2632                                 
2633                                 listManager.setEnSearch("");
2634                                 listManager.loadNotesIndex();
2635                                 refreshEvernoteNote(true);
2636                                 noteIndexUpdated(false);
2637                         }
2638                         searchPerformed = false;
2639                 }
2640         }
2641     // Text in the toolbar has changed
2642     private void searchFieldChanged() {
2643         logger.log(logger.HIGH, "Entering NeverNote.searchFieldChanged");
2644         noteCache.clear();
2645         readOnlyCache.clear();
2646         inkNoteCache.clear();
2647         saveNoteColumnPositions();
2648         saveNoteIndexWidth();
2649         String text = searchField.currentText();
2650         listManager.setEnSearch(text.trim());
2651         listManager.loadNotesIndex();
2652 //--->>>        noteIndexUpdated(true);
2653         noteIndexUpdated(false);
2654         refreshEvernoteNote(true);
2655         searchPerformed = true;
2656         logger.log(logger.HIGH, "Leaving NeverNote.searchFieldChanged");
2657     }
2658
2659     // Build the window tool bar
2660     private void setupToolBar() {
2661         logger.log(logger.HIGH, "Entering NeverNote.setupToolBar");
2662         toolBar = addToolBar(tr("Tool Bar"));   
2663         menuBar.setupToolBarVisible();
2664         if (!Global.isWindowVisible("toolBar"))
2665                 toolBar.setVisible(false);
2666         else
2667                 toolBar.setVisible(true);
2668
2669         prevButton = toolBar.addAction("Previous");
2670         QIcon prevIcon = new QIcon(iconPath+"back.png");
2671         prevButton.setIcon(prevIcon);
2672         prevButton.triggered.connect(this, "previousViewedAction()");   
2673         togglePrevArrowButton(Global.isToolbarButtonVisible("prevArrow"));
2674         
2675         nextButton = toolBar.addAction("Next");
2676         QIcon nextIcon = new QIcon(iconPath+"forward.png");
2677         nextButton.setIcon(nextIcon);
2678         nextButton.triggered.connect(this, "nextViewedAction()");       
2679         toggleNextArrowButton(Global.isToolbarButtonVisible("nextArrow"));
2680         
2681         upButton = toolBar.addAction("Up");
2682         QIcon upIcon = new QIcon(iconPath+"up.png");
2683         upButton.setIcon(upIcon);
2684         upButton.triggered.connect(this, "upAction()");         
2685         toggleUpArrowButton(Global.isToolbarButtonVisible("upArrow"));
2686
2687         
2688         downButton = toolBar.addAction("Down");
2689         QIcon downIcon = new QIcon(iconPath+"down.png");
2690         downButton.setIcon(downIcon);
2691         downButton.triggered.connect(this, "downAction()");
2692         toggleDownArrowButton(Global.isToolbarButtonVisible("downArrow"));
2693         
2694         synchronizeButton = toolBar.addAction("Synchronize");
2695         synchronizeButton.setIcon(new QIcon(iconPath+"synchronize.png"));
2696         synchronizeIconAngle = 0;
2697         synchronizeButton.triggered.connect(this, "evernoteSync()");
2698         toggleSynchronizeButton(Global.isToolbarButtonVisible("synchronize"));
2699         
2700         printButton = toolBar.addAction("Print");
2701         QIcon printIcon = new QIcon(iconPath+"print.png");
2702         printButton.setIcon(printIcon);
2703         printButton.triggered.connect(this, "printNote()");
2704         togglePrintButton(Global.isToolbarButtonVisible("print"));
2705
2706         tagButton = toolBar.addAction("Tag"); 
2707         QIcon tagIcon = new QIcon(iconPath+"tag.png");
2708         tagButton.setIcon(tagIcon);
2709         tagButton.triggered.connect(browserWindow, "modifyTags()");
2710         toggleTagButton(Global.isToolbarButtonVisible("tag"));
2711
2712         attributeButton = toolBar.addAction("Attributes"); 
2713         QIcon attributeIcon = new QIcon(iconPath+"attribute.png");
2714         attributeButton.setIcon(attributeIcon);
2715         attributeButton.triggered.connect(this, "toggleNoteInformation()");
2716         toggleAttributeButton(Global.isToolbarButtonVisible("attribute"));
2717                 
2718         emailButton = toolBar.addAction("Email");
2719         QIcon emailIcon = new QIcon(iconPath+"email.png");
2720         emailButton.setIcon(emailIcon);
2721         emailButton.triggered.connect(this, "emailNote()");
2722         toggleEmailButton(Global.isToolbarButtonVisible("email"));
2723
2724         deleteButton = toolBar.addAction("Delete");     
2725         QIcon deleteIcon = new QIcon(iconPath+"delete.png");
2726         deleteButton.setIcon(deleteIcon);
2727         deleteButton.triggered.connect(this, "deleteNote()");
2728         toggleDeleteButton(Global.isToolbarButtonVisible("delete"));
2729
2730         newButton = toolBar.addAction("New");
2731         QIcon newIcon = new QIcon(iconPath+"new.png");
2732         newButton.triggered.connect(this, "addNote()");
2733         newButton.setIcon(newIcon);
2734         toggleNewButton(Global.isToolbarButtonVisible("new"));
2735         
2736         allNotesButton = toolBar.addAction("All Notes");
2737         QIcon allIcon = new QIcon(iconPath+"books.png");
2738         allNotesButton.triggered.connect(this, "allNotes()");
2739         allNotesButton.setIcon(allIcon);
2740         toggleAllNotesButton(Global.isToolbarButtonVisible("allNotes"));
2741         
2742         toolBar.addSeparator();
2743         toolBar.addWidget(new QLabel(tr("Quota:")));
2744         toolBar.addWidget(quotaBar);
2745         //quotaBar.setSizePolicy(Policy.Minimum, Policy.Minimum);
2746         updateQuotaBar();
2747         toolBar.addSeparator();
2748         
2749         // Setup the zoom
2750         zoomSpinner = new QSpinBox();
2751         zoomSpinner.setMinimum(10);
2752         zoomSpinner.setMaximum(1000);
2753         zoomSpinner.setAccelerated(true);
2754         zoomSpinner.setSingleStep(10);
2755         zoomSpinner.setValue(100);
2756         zoomSpinner.valueChanged.connect(this, "zoomChanged()");
2757         toolBar.addWidget(new QLabel(tr("Zoom")));
2758         toolBar.addWidget(zoomSpinner);
2759         
2760         //toolBar.addWidget(new QLabel("                    "));
2761         toolBar.addSeparator();
2762         toolBar.addWidget(new QLabel(tr("  Search:")));
2763         toolBar.addWidget(searchField);
2764         QSizePolicy sizePolicy = new QSizePolicy();
2765         sizePolicy.setHorizontalPolicy(Policy.MinimumExpanding);
2766         searchField.setSizePolicy(sizePolicy);
2767         searchField.setInsertPolicy(InsertPolicy.InsertAtTop);
2768
2769         searchClearButton = toolBar.addAction("Search Clear");
2770         QIcon searchClearIcon = new QIcon(iconPath+"searchclear.png");
2771         searchClearButton.setIcon(searchClearIcon);
2772         searchClearButton.triggered.connect(this, "searchFieldCleared()");
2773         toggleSearchClearButton(Global.isToolbarButtonVisible("searchClear"));
2774
2775         logger.log(logger.HIGH, "Leaving NeverNote.setupToolBar");
2776     }
2777     // Update the sychronize button picture
2778     @Override
2779         public QMenu createPopupMenu() {
2780         QMenu contextMenu = super.createPopupMenu();
2781         
2782         contextMenu.addSeparator();
2783         QAction prevAction = addContextAction("prevArrow", tr("Previous Arrow"));
2784         contextMenu.addAction(prevAction);
2785         prevAction.triggered.connect(this, "togglePrevArrowButton(Boolean)");
2786
2787         QAction nextAction = addContextAction("nextArrow", tr("Next Arrow"));
2788         contextMenu.addAction(nextAction);
2789         nextAction.triggered.connect(this, "toggleNextArrowButton(Boolean)");
2790
2791         QAction upAction = addContextAction("upArrow", tr("Up Arrow"));
2792         contextMenu.addAction(upAction);
2793         upAction.triggered.connect(this, "toggleUpArrowButton(Boolean)");
2794
2795         QAction downAction = addContextAction("downArrow", tr("Down Arrow"));
2796         contextMenu.addAction(downAction);
2797         downAction.triggered.connect(this, "toggleDownArrowButton(Boolean)");
2798
2799         QAction synchronizeAction = addContextAction("synchronize", tr("Synchronize"));
2800         contextMenu.addAction(synchronizeAction);
2801         synchronizeAction.triggered.connect(this, "toggleSynchronizeButton(Boolean)");
2802
2803         QAction printAction = addContextAction("print", tr("Print"));
2804         contextMenu.addAction(printAction);
2805         printAction.triggered.connect(this, "togglePrintButton(Boolean)");
2806
2807         QAction tagAction = addContextAction("tag", tr("Tag"));
2808         contextMenu.addAction(tagAction);
2809         tagAction.triggered.connect(this, "toggleTagButton(Boolean)");
2810         
2811         QAction attributeAction = addContextAction("attribute", tr("Attribute"));
2812         contextMenu.addAction(attributeAction);
2813         attributeAction.triggered.connect(this, "toggleAttributeButton(Boolean)");
2814         
2815         QAction emailAction = addContextAction("email", tr("Email"));
2816         contextMenu.addAction(emailAction);
2817         emailAction.triggered.connect(this, "toggleEmailButton(Boolean)");
2818
2819         QAction deleteAction = addContextAction("delete", tr("Delete"));
2820         contextMenu.addAction(deleteAction);
2821         deleteAction.triggered.connect(this, "toggleDeleteButton(Boolean)");
2822
2823         QAction newAction = addContextAction("new", tr("Add"));
2824         contextMenu.addAction(newAction);
2825         newAction.triggered.connect(this, "toggleNewButton(Boolean)");
2826
2827         QAction allNotesAction = addContextAction("allNotes", tr("All Notes"));
2828         contextMenu.addAction(allNotesAction);
2829         allNotesAction.triggered.connect(this, "toggleAllNotesButton(Boolean)");
2830         
2831         QAction searchClearAction = addContextAction("searchClear", tr("Search Clear"));
2832         contextMenu.addAction(searchClearAction);
2833         searchClearAction.triggered.connect(this, "toggleSearchClearButton(Boolean)");
2834         
2835         return contextMenu;
2836         
2837     }
2838     private QAction addContextAction(String config, String name) {
2839         QAction newAction = new QAction(this);
2840                 newAction.setText(name);
2841                 newAction.setCheckable(true);
2842                 newAction.setChecked(Global.isToolbarButtonVisible(config));
2843                 return newAction;
2844     }
2845     private void togglePrevArrowButton(Boolean toggle) {
2846                 prevButton.setVisible(toggle);
2847                 Global.saveToolbarButtonsVisible("prevArrow", toggle);
2848     }
2849     private void toggleNextArrowButton(Boolean toggle) {
2850                 nextButton.setVisible(toggle);
2851                 Global.saveToolbarButtonsVisible("nextArrow", toggle);
2852     }
2853     private void toggleUpArrowButton(Boolean toggle) {
2854                 upButton.setVisible(toggle);
2855                 Global.saveToolbarButtonsVisible("upArrow", toggle);
2856     }
2857     private void toggleDownArrowButton(Boolean toggle) {
2858                 downButton.setVisible(toggle);
2859                 Global.saveToolbarButtonsVisible("downArrow", toggle);
2860     }
2861     private void toggleSynchronizeButton(Boolean toggle) {
2862                 synchronizeButton.setVisible(toggle);
2863                 Global.saveToolbarButtonsVisible("synchronize", toggle);
2864     }
2865     private void togglePrintButton(Boolean toggle) {
2866                 printButton.setVisible(toggle);
2867                 Global.saveToolbarButtonsVisible("print", toggle);
2868     }
2869     private void toggleTagButton(Boolean toggle) {
2870                 tagButton.setVisible(toggle);
2871                 Global.saveToolbarButtonsVisible("tag", toggle);
2872     }
2873     private void toggleAttributeButton(Boolean toggle) {
2874                 attributeButton.setVisible(toggle);
2875                 Global.saveToolbarButtonsVisible("attribute", toggle);
2876     }
2877     private void toggleEmailButton(Boolean toggle) {
2878                 emailButton.setVisible(toggle);
2879                 Global.saveToolbarButtonsVisible("email", toggle);
2880     }
2881     private void toggleDeleteButton(Boolean toggle) {
2882                 deleteButton.setVisible(toggle);
2883                 Global.saveToolbarButtonsVisible("delete", toggle);
2884     }
2885     private void toggleNewButton(Boolean toggle) {
2886                 newButton.setVisible(toggle);
2887                 Global.saveToolbarButtonsVisible("new", toggle);
2888     }
2889     private void toggleAllNotesButton(Boolean toggle) {
2890                 allNotesButton.setVisible(toggle);
2891                 Global.saveToolbarButtonsVisible("allNotes", toggle);
2892     }
2893     private void toggleSearchClearButton(Boolean toggle) {
2894                 searchClearButton.setVisible(toggle);
2895                 Global.saveToolbarButtonsVisible("searchClear", toggle);
2896     }
2897
2898
2899
2900
2901
2902     @SuppressWarnings("unused")
2903         private void updateSyncButton() {
2904                 
2905         if (syncIcons == null) {
2906                 syncIcons = new ArrayList<QPixmap>();
2907                 double angle = 0.0;
2908                 synchronizeIconAngle = 0;
2909                 QPixmap pix = new QPixmap(iconPath+"synchronize.png");
2910                 syncIcons.add(pix);
2911                 for (int i=0; i<=360; i++) {
2912                         QPixmap rotatedPix = new QPixmap(pix.size());
2913                         QPainter p = new QPainter(rotatedPix);
2914                 rotatedPix.fill(toolBar.palette().color(ColorRole.Button));
2915                 QSize size = pix.size();
2916                 p.translate(size.width()/2, size.height()/2);
2917                 angle = angle+1.0;
2918                 p.rotate(angle);
2919                 p.setBackgroundMode(BGMode.OpaqueMode);
2920                 p.translate(-size.width()/2, -size.height()/2);
2921                 p.drawPixmap(0,0, pix);
2922                 p.end();
2923                 syncIcons.add(rotatedPix);
2924                 }
2925         }
2926
2927         synchronizeIconAngle++;
2928         if (synchronizeIconAngle > 359)
2929                 synchronizeIconAngle=0;
2930         synchronizeButton.setIcon(syncIcons.get(synchronizeIconAngle));
2931         
2932     }
2933     // Synchronize with Evernote
2934         @SuppressWarnings("unused")
2935         private void evernoteSync() {
2936         logger.log(logger.HIGH, "Entering NeverNote.evernoteSync");
2937         if (!Global.isConnected)
2938                 remoteConnect();
2939         if (Global.isConnected)
2940                 synchronizeAnimationTimer.start(5);
2941 //                      synchronizeAnimationTimer.start(200);
2942         syncTimer();
2943         logger.log(logger.HIGH, "Leaving NeverNote.evernoteSync");
2944     }
2945     private void updateQuotaBar() {
2946         long limit = Global.getUploadLimit();
2947         long amount = Global.getUploadAmount();
2948         if (amount>0 && limit>0) {
2949                 int percent =(int)(amount*100/limit);
2950                 quotaBar.setValue(percent);
2951         } else 
2952                 quotaBar.setValue(0);
2953     }
2954         // Zoom changed
2955     @SuppressWarnings("unused")
2956         private void zoomChanged() {
2957         browserWindow.getBrowser().setZoomFactor(new Double(zoomSpinner.value())/100);
2958     }
2959
2960     //****************************************************************
2961     //****************************************************************
2962     //* System Tray functions
2963     //****************************************************************
2964     //****************************************************************
2965         private void trayToggleVisible() {
2966         if (isVisible()) {
2967                 hide();
2968         } else {
2969                 show();
2970                 if (windowMaximized)
2971                         showMaximized();
2972                 else
2973                         showNormal();
2974                 raise();
2975         }
2976     }
2977     @SuppressWarnings("unused")
2978         private void trayActivated(QSystemTrayIcon.ActivationReason reason) {
2979         if (reason == QSystemTrayIcon.ActivationReason.DoubleClick) {
2980                 String name = QSystemTrayIcon.MessageIcon.resolve(reason.value()).name();
2981                 trayToggleVisible();
2982         }
2983     }
2984     
2985     
2986     //***************************************************************
2987     //***************************************************************
2988     //** These functions deal with the trash tree
2989     //***************************************************************
2990     //***************************************************************    
2991     // Setup the tree containing the trash.
2992     @SuppressWarnings("unused")
2993         private void trashTreeSelection() {     
2994         logger.log(logger.HIGH, "Entering NeverNote.trashTreeSelection");
2995         
2996         clearNotebookFilter();
2997         clearTagFilter();
2998         clearAttributeFilter();
2999         clearSavedSearchFilter();
3000         
3001         String tempGuid = currentNoteGuid;
3002         
3003 //      currentNoteGuid = "";
3004         currentNote = new Note();
3005         selectedNoteGUIDs.clear();
3006         listManager.getSelectedNotebooks().clear();
3007         listManager.getSelectedTags().clear();
3008         listManager.setSelectedSavedSearch("");
3009         browserWindow.clear();
3010     
3011         // toggle the add buttons
3012         newButton.setEnabled(!newButton.isEnabled());
3013         menuBar.noteAdd.setEnabled(newButton.isEnabled());
3014         menuBar.noteAdd.setVisible(true);
3015         
3016         List<QTreeWidgetItem> selections = trashTree.selectedItems();
3017         if (selections.size() == 0) {
3018                 currentNoteGuid = trashNoteGuid;
3019                         trashNoteGuid = tempGuid;
3020                 Global.showDeleted = false;
3021                 menuBar.noteRestoreAction.setEnabled(false);
3022                 menuBar.noteRestoreAction.setVisible(false);
3023         }
3024         else {
3025                 currentNoteGuid = trashNoteGuid;
3026                         trashNoteGuid = tempGuid;
3027                 menuBar.noteRestoreAction.setEnabled(true);
3028                 menuBar.noteRestoreAction.setVisible(true);
3029                 Global.showDeleted = true;
3030         }
3031         listManager.loadNotesIndex();
3032         noteIndexUpdated(false);
3033 ////            browserWindow.setEnabled(newButton.isEnabled());
3034         browserWindow.setReadOnly(!newButton.isEnabled());
3035         logger.log(logger.HIGH, "Leaving NeverNote.trashTreeSelection");
3036     }
3037     // Empty the trash file
3038     @SuppressWarnings("unused")
3039         private void emptyTrash() {
3040 //      browserWindow.clear();
3041         listManager.emptyTrash();
3042         if (trashTree.selectedItems().size() > 0) {
3043                 listManager.getSelectedNotebooks().clear();
3044                 listManager.getSelectedTags().clear();
3045                 listManager.setSelectedSavedSearch("");
3046                 newButton.setEnabled(!newButton.isEnabled());
3047                 menuBar.noteAdd.setEnabled(newButton.isEnabled());
3048                 menuBar.noteAdd.setVisible(true);
3049                 browserWindow.clear();
3050                 
3051                 clearTagFilter();
3052                 clearNotebookFilter();
3053                 clearSavedSearchFilter();
3054                 clearAttributeFilter();
3055                         
3056                 Global.showDeleted = false;
3057                 menuBar.noteRestoreAction.setEnabled(false);
3058                 menuBar.noteRestoreAction.setVisible(false);
3059                 
3060                 listManager.loadNotesIndex();
3061 //--->>>                noteIndexUpdated(true);
3062                 noteIndexUpdated(false);
3063         }       
3064    }
3065     // Show/Hide trash window
3066         private void toggleTrashWindow() {
3067                 logger.log(logger.HIGH, "Entering NeverNote.toggleTrashWindow");
3068         if (trashTree.isVisible())
3069                 trashTree.hide();
3070         else
3071                 trashTree.show();
3072         menuBar.hideTrash.setChecked(trashTree.isVisible());
3073         
3074                 Global.saveWindowVisible("trashTree", trashTree.isVisible());
3075         logger.log(logger.HIGH, "Leaving NeverNote.trashWindow");
3076     }    
3077         private void clearTrashFilter() {
3078                 Global.showDeleted = false;
3079         newButton.setEnabled(true);
3080         menuBar.noteAdd.setEnabled(true);
3081         menuBar.noteAdd.setVisible(true);
3082                 trashTree.blockSignals(true);
3083                 trashTree.clearSelection();
3084                 trashTree.blockSignals(false);
3085                 
3086         }
3087     
3088    
3089     //***************************************************************
3090     //***************************************************************
3091     //** These functions deal with connection settings
3092     //***************************************************************
3093     //***************************************************************
3094         // SyncRunner had a problem and things are disconnected
3095         @SuppressWarnings("unused")
3096         private void remoteErrorDisconnect() {
3097                 menuBar.connectAction.setText(tr("Connect"));
3098                 menuBar.connectAction.setToolTip(tr("Connect to Evernote"));
3099                 menuBar.synchronizeAction.setEnabled(false);
3100                 Global.isConnected = false;
3101                 synchronizeAnimationTimer.stop();
3102                 return;
3103         }
3104         // Do a manual connect/disconnect
3105     private void remoteConnect() {
3106         logger.log(logger.HIGH, "Entering NeverNote.remoteConnect");
3107
3108         if (Global.isConnected) {
3109                 Global.isConnected = false;
3110                 syncRunner.enDisconnect();
3111                 setupConnectMenuOptions();
3112                 setupOnlineMenu();
3113                 return;
3114         }
3115         
3116         AESEncrypter aes = new AESEncrypter();
3117         try {
3118                         aes.decrypt(new FileInputStream(Global.getFileManager().getHomeDirFile("secure.txt")));
3119                 } catch (FileNotFoundException e) {
3120                         // File not found, so we'll just get empty strings anyway. 
3121                 }
3122                 String userid = aes.getUserid();
3123                 String password = aes.getPassword();
3124                 if (!userid.equals("") && !password.equals("")) {
3125                 Global.username = userid;
3126                 Global.password = password;
3127                 }               
3128
3129         // Show the login dialog box
3130                 if (!Global.automaticLogin() || userid.equals("")|| password.equals("")) {
3131                         LoginDialog login = new LoginDialog();
3132                         login.exec();
3133                 
3134                         if (!login.okPressed()) {
3135                                 return;
3136                         }
3137         
3138                         Global.username = login.getUserid();
3139                         Global.password = login.getPassword();
3140                 }
3141                 syncRunner.username = Global.username;
3142                 syncRunner.password = Global.password;
3143                 syncRunner.userStoreUrl = Global.userStoreUrl;
3144                 syncRunner.noteStoreUrl = Global.noteStoreUrl;
3145                 syncRunner.noteStoreUrlBase = Global.noteStoreUrlBase;
3146                 
3147             if (Global.getProxyValue("url").equals("")) {
3148                 System.setProperty("http.proxyHost","") ;
3149                 System.setProperty("http.proxyPort", "") ;
3150                 System.setProperty("https.proxyHost","") ;
3151                 System.setProperty("https.proxyPort", "") ;         
3152             } else {
3153                         // PROXY
3154                 System.setProperty("http.proxyHost",Global.getProxyValue("url")) ;
3155                 System.setProperty("http.proxyPort", Global.getProxyValue("port")) ;
3156                 System.setProperty("https.proxyHost",Global.getProxyValue("url")) ;
3157                 System.setProperty("https.proxyPort", Global.getProxyValue("port")) ;
3158          
3159                 if (Global.getProxyValue("userid").equals("")) {
3160                         Authenticator.setDefault(new Authenticator() {
3161                                 @Override
3162                                 protected PasswordAuthentication getPasswordAuthentication() {
3163                                         return new
3164                                         PasswordAuthentication(Global.getProxyValue("userid"),Global.getProxyValue("password").toCharArray());
3165                                         }});
3166                         }
3167                 }
3168                 
3169                 
3170                 syncRunner.enConnect();
3171                 Global.isConnected = syncRunner.isConnected;
3172                 setupOnlineMenu();
3173                 setupConnectMenuOptions();
3174                 logger.log(logger.HIGH, "Leaving NeverNote.remoteConnect");
3175     }
3176     private void setupConnectMenuOptions() {
3177         logger.log(logger.HIGH, "entering NeverNote.setupConnectMenuOptions");
3178                 if (!Global.isConnected) {
3179                         menuBar.connectAction.setText(tr("Connect"));
3180                         menuBar.connectAction.setToolTip(tr("Connect to Evernote"));
3181                         menuBar.synchronizeAction.setEnabled(false);
3182                 } else {
3183                         menuBar.connectAction.setText(tr("Disconnect"));
3184                         menuBar.connectAction.setToolTip(tr("Disconnect from Evernote"));
3185                         menuBar.synchronizeAction.setEnabled(true);
3186                 }
3187                 logger.log(logger.HIGH, "Leaving NeverNote.setupConnectionMenuOptions");
3188     }
3189     
3190     
3191     
3192     //***************************************************************
3193     //***************************************************************
3194     //** These functions deal with the GUI Attribute tree
3195     //***************************************************************
3196     //***************************************************************    
3197     @SuppressWarnings("unused")
3198         private void attributeTreeClicked(QTreeWidgetItem item, Integer integer) {
3199         
3200 //      clearTagFilter();
3201 //      clearNotebookFilter();
3202         clearTrashFilter();
3203 //      clearSavedSearchFilter();
3204
3205         if (attributeTreeSelected == null || item.nativeId() != attributeTreeSelected.nativeId()) {
3206                 if (item.childCount() > 0) {
3207                         item.setSelected(false);
3208                 } else {
3209                 Global.createdBeforeFilter.reset();
3210                 Global.createdSinceFilter.reset();
3211                 Global.changedBeforeFilter.reset();
3212                 Global.changedSinceFilter.reset();
3213                 Global.containsFilter.reset();
3214                         attributeTreeSelected = item;
3215                         DateAttributeFilterTable f = null;
3216                         f = findDateAttributeFilterTable(item.parent());
3217                         if (f!=null)
3218                                 f.select(item.parent().indexOfChild(item));
3219                         else {
3220                                 Global.containsFilter.select(item.parent().indexOfChild(item));
3221                         }
3222                 }
3223                 listManager.loadNotesIndex();
3224                 noteIndexUpdated(false);
3225                 return;
3226         }
3227                 attributeTreeSelected = null;
3228                 item.setSelected(false);
3229         Global.createdBeforeFilter.reset();
3230         Global.createdSinceFilter.reset();
3231         Global.changedBeforeFilter.reset();
3232         Global.changedSinceFilter.reset();
3233         Global.containsFilter.reset();
3234         listManager.loadNotesIndex();
3235                 noteIndexUpdated(false); 
3236     }
3237     // This determines what attribute filter we need, depending upon the selection
3238     private DateAttributeFilterTable findDateAttributeFilterTable(QTreeWidgetItem w) {
3239                 if (w.parent() != null && w.childCount() > 0) {
3240                         QTreeWidgetItem parent = w.parent();
3241                         if (parent.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Created && 
3242                                 w.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Since)
3243                                         return Global.createdSinceFilter;
3244                         if (parent.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Created && 
3245                         w.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Before)
3246                                         return Global.createdBeforeFilter;
3247                         if (parent.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.LastModified && 
3248                         w.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Since)
3249                                         return Global.changedSinceFilter;
3250                 if (parent.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.LastModified && 
3251                         w.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Before)
3252                                                 return Global.changedBeforeFilter;
3253                 }
3254                 return null;
3255     }
3256
3257     // Show/Hide attribute search window
3258         private void toggleAttributesWindow() {
3259                 logger.log(logger.HIGH, "Entering NeverNote.toggleAttributesWindow");
3260         if (attributeTree.isVisible())
3261                 attributeTree.hide();
3262         else
3263                 attributeTree.show();
3264         menuBar.hideAttributes.setChecked(attributeTree.isVisible());
3265         
3266                 Global.saveWindowVisible("attributeTree", attributeTree.isVisible());
3267         logger.log(logger.HIGH, "Leaving NeverNote.toggleAttributeWindow");
3268     }    
3269         private void clearAttributeFilter() {
3270         Global.createdBeforeFilter.reset();
3271         Global.createdSinceFilter.reset();
3272         Global.changedBeforeFilter.reset();
3273         Global.changedSinceFilter.reset();
3274         Global.containsFilter.reset();
3275         attributeTreeSelected = null;
3276                 attributeTree.blockSignals(true);
3277                 attributeTree.clearSelection();
3278                 attributeTree.blockSignals(false);
3279         }
3280     
3281         
3282     //***************************************************************
3283     //***************************************************************
3284     //** These functions deal with the GUI Note index table
3285     //***************************************************************
3286     //***************************************************************    
3287     // Initialize the note list table
3288         private void initializeNoteTable() {
3289                 logger.log(logger.HIGH, "Entering NeverNote.initializeNoteTable");
3290                 noteTableView.setSelectionMode(QAbstractItemView.SelectionMode.ExtendedSelection);
3291                 noteTableView.selectionModel().selectionChanged.connect(this, "noteTableSelection()");
3292                 logger.log(logger.HIGH, "Leaving NeverNote.initializeNoteTable");
3293         }       
3294     // Show/Hide trash window
3295         @SuppressWarnings("unused")
3296         private void toggleNoteListWindow() {
3297                 logger.log(logger.HIGH, "Entering NeverNote.toggleNoteListWindow");
3298         if (noteTableView.isVisible())
3299                 noteTableView.hide();
3300         else
3301                 noteTableView.show();
3302         menuBar.hideNoteList.setChecked(noteTableView.isVisible());
3303         
3304                 Global.saveWindowVisible("noteList", noteTableView.isVisible());
3305         logger.log(logger.HIGH, "Leaving NeverNote.toggleNoteListWindow");
3306     }   
3307         // Handle the event that a user selects a note from the table
3308     @SuppressWarnings("unused")
3309         private void noteTableSelection() {
3310                 logger.log(logger.HIGH, "Entering NeverNote.noteTableSelection");
3311                 saveNote();
3312                 if (historyGuids.size() == 0) {
3313                         historyGuids.add(currentNoteGuid);
3314                         historyPosition = 1;
3315                 }
3316         noteTableView.showColumn(Global.noteTableGuidPosition);
3317         
3318         List<QModelIndex> selections = noteTableView.selectionModel().selectedRows();
3319         if (!Global.isColumnVisible("guid"))
3320                 noteTableView.hideColumn(Global.noteTableGuidPosition);
3321         
3322         if (selections.size() > 0) {
3323                 QModelIndex index;
3324                 menuBar.noteDuplicateAction.setEnabled(true);
3325                 menuBar.noteOnlineHistoryAction.setEnabled(true);
3326                 menuBar.noteMergeAction.setEnabled(true);
3327                 selectedNoteGUIDs.clear();
3328                 if (selections.size() != 1 || Global.showDeleted) {
3329                         menuBar.noteDuplicateAction.setEnabled(false);
3330                 }
3331                 if (selections.size() != 1 || !Global.isConnected) {
3332                         menuBar.noteOnlineHistoryAction.setEnabled(false);
3333                 }
3334                 if (selections.size() == 1) {
3335                         menuBar.noteMergeAction.setEnabled(false);
3336                 }
3337                 for (int i=0; i<selections.size(); i++) {
3338                         int row = selections.get(i).row();
3339                         if (row == 0) 
3340                                 upButton.setEnabled(false);
3341                         else
3342                                 upButton.setEnabled(true);
3343                         if (row < listManager.getNoteTableModel().rowCount()-1)
3344                                 downButton.setEnabled(true);
3345                         else
3346                                 downButton.setEnabled(false);
3347                         index = noteTableView.proxyModel.index(row, Global.noteTableGuidPosition);
3348                         SortedMap<Integer, Object> ix = noteTableView.proxyModel.itemData(index);
3349                         currentNoteGuid = (String)ix.values().toArray()[0];
3350                         selectedNoteGUIDs.add(currentNoteGuid);
3351                 }
3352         }
3353         
3354         nextButton.setEnabled(true);
3355                 prevButton.setEnabled(true);
3356         if (!fromHistory) {
3357                 int endPosition = historyGuids.size()-1;
3358                 for (int j=historyPosition; j<=endPosition; j++) {
3359                         historyGuids.remove(historyGuids.size()-1);
3360                 }
3361                 historyGuids.add(currentNoteGuid);
3362                 historyPosition = historyGuids.size();
3363         } 
3364         if (historyPosition <= 1)
3365                 prevButton.setEnabled(false);
3366         if (historyPosition == historyGuids.size())
3367                 nextButton.setEnabled(false);
3368                 
3369         fromHistory = false;
3370         scrollToGuid(currentNoteGuid);
3371         refreshEvernoteNote(true);
3372                 logger.log(logger.HIGH, "Leaving NeverNote.noteTableSelection");
3373     }    
3374         // Trigger a refresh when the note db has been updated
3375         private void noteIndexUpdated(boolean reload) {
3376                 logger.log(logger.HIGH, "Entering NeverNote.noteIndexUpdated");
3377                 saveNote();
3378         refreshEvernoteNoteList();
3379         logger.log(logger.HIGH, "Calling note table reload in NeverNote.noteIndexUpdated() - "+reload);
3380         noteTableView.load(reload);
3381         if (currentNoteGuid == null || currentNoteGuid.equals("")) {
3382                 int pos;
3383                 if (noteTableView.proxyModel.sortOrder() == SortOrder.AscendingOrder)
3384                         pos = noteTableView.proxyModel.rowCount();
3385                 else 
3386                         pos = 1;
3387                 if (noteTableView.proxyModel.rowCount() == 0)
3388                         pos = 0;
3389                 if (pos>0)      {
3390                         QModelIndex i = noteTableView.proxyModel.index(pos-1, Global.noteTableGuidPosition);
3391                         if (i!=null) {
3392                                 currentNoteGuid = (String)i.data();
3393                                 noteTableView.selectRow(pos-1);
3394                         }
3395                 }
3396         }               
3397         scrollToGuid(currentNoteGuid);
3398                 logger.log(logger.HIGH, "Leaving NeverNote.noteIndexUpdated");
3399     }
3400         // Called when the list of notes is updated
3401     private void refreshEvernoteNoteList() {
3402         logger.log(logger.HIGH, "Entering NeverNote.refreshEvernoteNoteList");
3403         browserWindow.setDisabled(false);
3404                 if (selectedNoteGUIDs == null)
3405                         selectedNoteGUIDs = new ArrayList<String>();
3406                 selectedNoteGUIDs.clear();  // clear out old entries
3407                 
3408                 String saveCurrentNoteGuid = new String();
3409                 String tempNoteGuid = new String();
3410                                 
3411                 historyGuids.clear();
3412                 historyPosition = 0;
3413                 prevButton.setEnabled(false);
3414                 nextButton.setEnabled(false);
3415                 
3416                 if (currentNoteGuid == null) 
3417                         currentNoteGuid = new String();
3418                 
3419                 //determine current note guid
3420                 for (Note note : listManager.getNoteIndex()) {
3421                         tempNoteGuid = note.getGuid();
3422                         if (currentNoteGuid.equals(tempNoteGuid)) {
3423                                 saveCurrentNoteGuid = tempNoteGuid;
3424                         }
3425                 }
3426                 
3427                 if (listManager.getNoteIndex().size() == 0) {
3428                         currentNoteGuid = "";
3429                         currentNote = null;
3430                         browserWindow.clear();
3431                         browserWindow.setDisabled(true);
3432                 } 
3433                 
3434                 if (!saveCurrentNoteGuid.equals("")) {
3435                         refreshEvernoteNote(false);
3436                 } else {
3437                         currentNoteGuid = "";
3438                 }
3439                 reloadTagTree(false);
3440
3441                 logger.log(logger.HIGH, "Leaving NeverNote.refreshEvernoteNoteList");
3442         } 
3443     // Called when the previous arrow button is clicked 
3444     @SuppressWarnings("unused")
3445         private void previousViewedAction() {
3446         if (!prevButton.isEnabled())
3447                 return;
3448         if (historyPosition == 0)
3449                 return;
3450                 historyPosition--;
3451         if (historyPosition <= 0)
3452                 return;
3453         String historyGuid = historyGuids.get(historyPosition-1);
3454         fromHistory = true;
3455         for (int i=0; i<noteTableView.model().rowCount(); i++) {
3456                 QModelIndex modelIndex =  noteTableView.model().index(i, Global.noteTableGuidPosition);
3457                 if (modelIndex != null) {
3458                         SortedMap<Integer, Object> ix = noteTableView.model().itemData(modelIndex);
3459                         String tableGuid =  (String)ix.values().toArray()[0];
3460                         if (tableGuid.equals(historyGuid)) {
3461                                 noteTableView.selectRow(i);
3462                                 return;
3463                         }       
3464                 }
3465         }
3466     }
3467     @SuppressWarnings("unused")
3468         private void nextViewedAction() {
3469         if (!nextButton.isEnabled())
3470                 return;
3471         String historyGuid = historyGuids.get(historyPosition);
3472         historyPosition++;
3473         fromHistory = true;
3474         for (int i=0; i<noteTableView.model().rowCount(); i++) {
3475                 QModelIndex modelIndex =  noteTableView.model().index(i, Global.noteTableGuidPosition);
3476                 if (modelIndex != null) {
3477                         SortedMap<Integer, Object> ix = noteTableView.model().itemData(modelIndex);
3478                         String tableGuid =  (String)ix.values().toArray()[0];
3479                         if (tableGuid.equals(historyGuid)) {
3480                                 noteTableView.selectRow(i);
3481                                 return;
3482                         }       
3483                 }
3484         }       
3485     }
3486     // Called when the up arrow is clicked 
3487     @SuppressWarnings("unused")
3488         private void upAction() {
3489         List<QModelIndex> selections = noteTableView.selectionModel().selectedRows();
3490         int row = selections.get(0).row();
3491         if (row > 0) {
3492                 noteTableView.selectRow(row-1);
3493         }
3494     }
3495     // Called when the down arrow is clicked 
3496     @SuppressWarnings("unused")
3497         private void downAction() {
3498         List<QModelIndex> selections = noteTableView.selectionModel().selectedRows();
3499         int row = selections.get(0).row();
3500         int max = listManager.getNoteTableModel().rowCount();
3501         if (row < max-1) {
3502                 noteTableView.selectRow(row+1);
3503         }
3504     }
3505     // Update a tag string for a specific note in the list
3506     @SuppressWarnings("unused")
3507         private void updateListTags(String guid, List<String> tags) {
3508         logger.log(logger.HIGH, "Entering NeverNote.updateListTags");
3509         StringBuffer tagBuffer = new StringBuffer();
3510         for (int i=0; i<tags.size(); i++) {
3511                 tagBuffer.append(tags.get(i));
3512                 if (i<tags.size()-1)
3513                         tagBuffer.append(", ");
3514         }
3515         
3516         for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3517                 QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3518                 if (modelIndex != null) {
3519                         SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3520                         String tableGuid =  (String)ix.values().toArray()[0];
3521                         if (tableGuid.equals(guid)) {
3522                                 listManager.getNoteTableModel().setData(i, Global.noteTableTagPosition,tagBuffer.toString());
3523                                 listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false");
3524                                 noteTableView.proxyModel.invalidate();
3525                                 return;
3526                         }
3527                 }
3528         }
3529         logger.log(logger.HIGH, "Leaving NeverNote.updateListTags");
3530     }
3531     // Update a title for a specific note in the list
3532     @SuppressWarnings("unused")
3533         private void updateListAuthor(String guid, String author) {
3534         logger.log(logger.HIGH, "Entering NeverNote.updateListAuthor");
3535
3536         for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3537                 //QModelIndex modelIndex =  noteTableView.proxyModel.index(i, Global.noteTableGuidPosition);
3538                 QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3539                 if (modelIndex != null) {
3540                         SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3541                         String tableGuid =  (String)ix.values().toArray()[0];
3542                         if (tableGuid.equals(guid)) {
3543                                 listManager.getNoteTableModel().setData(i, Global.noteTableAuthorPosition,author);
3544                                 listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false");
3545                                 noteTableView.proxyModel.invalidate();
3546                                 return;
3547                         }       
3548                 }
3549         }
3550         
3551         logger.log(logger.HIGH, "Leaving NeverNote.updateListAuthor");
3552     }
3553         private void updateListNoteNotebook(String guid, String notebook) {
3554         logger.log(logger.HIGH, "Entering NeverNote.updateListNoteNotebook");
3555         listManager.getNoteTableModel().updateNoteSyncStatus(guid, false);
3556         logger.log(logger.HIGH, "Leaving NeverNote.updateListNoteNotebook");
3557     }
3558     // Update a title for a specific note in the list
3559     @SuppressWarnings("unused")
3560         private void updateListSourceUrl(String guid, String url) {
3561         logger.log(logger.HIGH, "Entering NeverNote.updateListAuthor");
3562
3563         for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3564                 //QModelIndex modelIndex =  noteTableView.proxyModel.index(i, Global.noteTableGuidPosition);
3565                 QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3566                 if (modelIndex != null) {
3567 //                      SortedMap<Integer, Object> ix = noteTableView.proxyModel.itemData(modelIndex);
3568                         SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3569                         String tableGuid =  (String)ix.values().toArray()[0];
3570                         if (tableGuid.equals(guid)) {
3571                                 listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false");
3572                                 listManager.getNoteTableModel().setData(i, Global.noteTableSourceUrlPosition,url);
3573                                 noteTableView.proxyModel.invalidate();
3574                                 return;
3575                         }       
3576                 }
3577         }
3578         logger.log(logger.HIGH, "Leaving NeverNote.updateListAuthor");
3579     }
3580         @SuppressWarnings("unused")
3581         private void updateListGuid(String oldGuid, String newGuid) {
3582         logger.log(logger.HIGH, "Entering NeverNote.updateListTitle");
3583
3584         for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3585                 QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3586                 if (modelIndex != null) {
3587                         SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3588                         String tableGuid =  (String)ix.values().toArray()[0];
3589                         if (tableGuid.equals(oldGuid)) {
3590                                 listManager.getNoteTableModel().setData(i, Global.noteTableGuidPosition,newGuid);
3591                                 //listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false");
3592                                 return;
3593                         }       
3594                 }
3595         }
3596         logger.log(logger.HIGH, "Leaving NeverNote.updateListTitle");
3597     }
3598         private void updateListTagName(String guid) {
3599         logger.log(logger.HIGH, "Entering NeverNote.updateTagName");
3600                 
3601                 for (int j=0; j<listManager.getNoteIndex().size(); j++) {
3602                         if (listManager.getNoteIndex().get(j).getTagGuids().contains(guid)) {
3603                                 String newName = listManager.getTagNamesForNote(listManager.getNoteIndex().get(j));
3604
3605                                 for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3606                                         QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3607                                         if (modelIndex != null) {
3608                                                 SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3609                                                 String noteGuid = (String)ix.values().toArray()[0];
3610                                                 if (noteGuid.equalsIgnoreCase(listManager.getNoteIndex().get(j).getGuid())) {
3611                                                         listManager.getNoteTableModel().setData(i, Global.noteTableTagPosition, newName);
3612                                                         i=listManager.getNoteTableModel().rowCount();
3613                                                 }
3614                                         }
3615                                 }
3616                         }
3617                 }       
3618         logger.log(logger.HIGH, "Leaving NeverNote.updateListNotebook");
3619     }
3620         private void removeListTagName(String guid) {
3621         logger.log(logger.HIGH, "Entering NeverNote.updateTagName");
3622                 
3623                 for (int j=0; j<listManager.getNoteIndex().size(); j++) {
3624                         if (listManager.getNoteIndex().get(j).getTagGuids().contains(guid)) {
3625                                 for (int i=listManager.getNoteIndex().get(j).getTagGuids().size()-1; i>=0; i--) {
3626                                         if (listManager.getNoteIndex().get(j).getTagGuids().get(i).equals(guid))
3627                                                 listManager.getNoteIndex().get(j).getTagGuids().remove(i);
3628                                 }
3629                                 
3630                                 String newName = listManager.getTagNamesForNote(listManager.getNoteIndex().get(j));
3631                                 for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3632                                         QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3633                                         if (modelIndex != null) {
3634                                                 SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3635                                                 String noteGuid = (String)ix.values().toArray()[0];
3636                                                 if (noteGuid.equalsIgnoreCase(listManager.getNoteIndex().get(j).getGuid())) {
3637                                                         listManager.getNoteTableModel().setData(i, Global.noteTableTagPosition, newName);
3638                                                         i=listManager.getNoteTableModel().rowCount();
3639                                                 }
3640                                         }
3641                                 }
3642                         }
3643                 }       
3644         logger.log(logger.HIGH, "Leaving NeverNote.updateListNotebook");
3645     }
3646     private void updateListNotebookName(String oldName, String newName) {
3647         logger.log(logger.HIGH, "Entering NeverNote.updateListNotebookName");
3648
3649         for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3650                 QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableNotebookPosition); 
3651                 if (modelIndex != null) {
3652                         SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3653                         String tableName =  (String)ix.values().toArray()[0];
3654                         if (tableName.equalsIgnoreCase(oldName)) {
3655                                 listManager.getNoteTableModel().setData(i, Global.noteTableNotebookPosition, newName);
3656                         }
3657                 }
3658         }
3659         logger.log(logger.HIGH, "Leaving NeverNote.updateListNotebookName");
3660     }
3661     @SuppressWarnings("unused")
3662         private void updateListDateCreated(String guid, QDateTime date) {
3663         logger.log(logger.HIGH, "Entering NeverNote.updateListDateCreated");
3664
3665         for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3666                 QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3667                 if (modelIndex != null) {
3668                         SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3669                         String tableGuid =  (String)ix.values().toArray()[0];
3670                         if (tableGuid.equals(guid)) {
3671                                 listManager.getNoteTableModel().setData(i, Global.noteTableCreationPosition, date.toString(Global.getDateFormat()+" " +Global.getTimeFormat()));
3672                                 noteTableView.proxyModel.invalidate();
3673                                 return;
3674                         }
3675                 }
3676         }
3677         logger.log(logger.HIGH, "Leaving NeverNote.updateListDateCreated");
3678     }
3679     @SuppressWarnings("unused")
3680         private void updateListDateSubject(String guid, QDateTime date) {
3681         logger.log(logger.HIGH, "Entering NeverNote.updateListDateSubject");
3682
3683         for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3684                 QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3685                 if (modelIndex != null) {
3686                         SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3687                         String tableGuid =  (String)ix.values().toArray()[0];
3688                         if (tableGuid.equals(guid)) {
3689                                 listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false");
3690                                 listManager.getNoteTableModel().setData(i, Global.noteTableSubjectDatePosition, date.toString(Global.getDateFormat()+" " +Global.getTimeFormat()));
3691                                 noteTableView.proxyModel.invalidate();
3692                                 return;
3693                         }
3694                 }
3695         }
3696         logger.log(logger.HIGH, "Leaving NeverNote.updateListDateCreated");
3697     }
3698         private void updateListDateChanged(String guid, QDateTime date) {
3699         logger.log(logger.HIGH, "Entering NeverNote.updateListDateChanged");
3700
3701         for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3702                 QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3703                 if (modelIndex != null) {
3704                         SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3705                         String tableGuid =  (String)ix.values().toArray()[0];
3706                         if (tableGuid.equals(guid)) {
3707                                 listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false");
3708                                 listManager.getNoteTableModel().setData(i, Global.noteTableChangedPosition, date.toString(Global.getDateFormat()+" " +Global.getTimeFormat()));
3709                                 return;
3710                         }
3711                 }
3712         }
3713         logger.log(logger.HIGH, "Leaving NeverNote.updateListDateChanged");
3714     }
3715     private void updateListDateChanged() {
3716         logger.log(logger.HIGH, "Entering NeverNote.updateListDateChanged");
3717         QDateTime date = new QDateTime(QDateTime.currentDateTime());
3718         updateListDateChanged(currentNoteGuid, date);
3719         logger.log(logger.HIGH, "Leaving NeverNote.updateListDateChanged");
3720     }  
3721     // Redo scroll
3722         private void scrollToCurrentGuid() {
3723         //scrollToGuid(currentNoteGuid);
3724         List<QModelIndex> selections = noteTableView.selectionModel().selectedRows();
3725         if (selections.size() == 0)
3726                 return;
3727         QModelIndex index = selections.get(0);
3728         int row = selections.get(0).row();
3729         String guid = (String)index.model().index(row, Global.noteTableGuidPosition).data();
3730         scrollToGuid(guid);
3731     }
3732     // Scroll to a particular index item
3733     private void scrollToGuid(String guid) {
3734         if (currentNote == null || guid == null) 
3735                 return;
3736         if (currentNote.isActive() && Global.showDeleted) {
3737                 for (int i=0; i<listManager.getNoteIndex().size(); i++) {
3738                         if (!listManager.getNoteIndex().get(i).isActive()) {
3739                                 currentNote = listManager.getNoteIndex().get(i);
3740                                 currentNoteGuid =  currentNote.getGuid();
3741                                 i = listManager.getNoteIndex().size();
3742                         }
3743                 }
3744         }
3745         
3746         if (!currentNote.isActive() && !Global.showDeleted) {
3747                 for (int i=0; i<listManager.getNoteIndex().size(); i++) {
3748                         if (listManager.getNoteIndex().get(i).isActive()) {
3749                                 currentNote = listManager.getNoteIndex().get(i);
3750                                 currentNoteGuid =  currentNote.getGuid();
3751                                 i = listManager.getNoteIndex().size();
3752                         }
3753                 }
3754         }
3755         
3756         QModelIndex index; 
3757         for (int i=0; i<noteTableView.model().rowCount(); i++) {
3758                 index = noteTableView.model().index(i, Global.noteTableGuidPosition);
3759                 if (currentNoteGuid.equals(index.data())) {
3760 //                      noteTableView.setCurrentIndex(index);
3761                         noteTableView.selectRow(i);
3762                         noteTableView.scrollTo(index, ScrollHint.EnsureVisible);  // This should work, but it doesn't
3763                                 i=listManager.getNoteTableModel().rowCount();
3764                 }
3765         }
3766         noteTableView.repaint();
3767     }
3768     // Show/Hide columns
3769     private void showColumns() {
3770                 noteTableView.setColumnHidden(Global.noteTableCreationPosition, !Global.isColumnVisible("dateCreated"));
3771                 noteTableView.setColumnHidden(Global.noteTableChangedPosition, !Global.isColumnVisible("dateChanged"));
3772                 noteTableView.setColumnHidden(Global.noteTableSubjectDatePosition, !Global.isColumnVisible("dateSubject"));
3773                 noteTableView.setColumnHidden(Global.noteTableAuthorPosition, !Global.isColumnVisible("author"));
3774                 noteTableView.setColumnHidden(Global.noteTableSourceUrlPosition, !Global.isColumnVisible("sourceUrl"));
3775                 noteTableView.setColumnHidden(Global.noteTableTagPosition, !Global.isColumnVisible("tags"));
3776                 noteTableView.setColumnHidden(Global.noteTableNotebookPosition, !Global.isColumnVisible("notebook"));
3777                 noteTableView.setColumnHidden(Global.noteTableSynchronizedPosition, !Global.isColumnVisible("synchronized"));
3778                 noteTableView.setColumnHidden(Global.noteTableGuidPosition, !Global.isColumnVisible("guid"));
3779                 noteTableView.setColumnHidden(Global.noteTableThumbnailPosition, !Global.isColumnVisible("thumbnail"));
3780                 noteTableView.setColumnHidden(Global.noteTableTitlePosition, !Global.isColumnVisible("title"));                 
3781     }
3782     // Title color has changed
3783     @SuppressWarnings("unused")
3784         private void titleColorChanged(Integer color) {
3785         logger.log(logger.HIGH, "Entering NeverNote.updateListAuthor");
3786
3787         QColor backgroundColor = new QColor();
3788                 QColor foregroundColor = new QColor(QColor.black);
3789                 backgroundColor.setRgb(color);
3790                 
3791                 if (backgroundColor.rgb() == QColor.black.rgb() || backgroundColor.rgb() == QColor.blue.rgb())
3792                         foregroundColor.setRgb(QColor.white.rgb());
3793         
3794                 if (selectedNoteGUIDs.size() == 0)
3795                         selectedNoteGUIDs.add(currentNoteGuid);
3796                 
3797         for (int j=0; j<selectedNoteGUIDs.size(); j++) {
3798                 for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3799                         QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3800                         if (modelIndex != null) {
3801                                 SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3802                                 String tableGuid =  (String)ix.values().toArray()[0];
3803                                 if (tableGuid.equals(selectedNoteGUIDs.get(j))) {
3804                                         for (int k=0; k<Global.noteTableColumnCount; k++) {
3805                                                 listManager.getNoteTableModel().setData(i, k, backgroundColor, Qt.ItemDataRole.BackgroundRole);
3806                                                 listManager.getNoteTableModel().setData(i, k, foregroundColor, Qt.ItemDataRole.ForegroundRole);
3807                                                 listManager.updateNoteTitleColor(selectedNoteGUIDs.get(j), backgroundColor.rgb());
3808                                         }
3809                                         i=listManager.getNoteTableModel().rowCount();
3810                                 }
3811                         }
3812                 }
3813         }
3814         logger.log(logger.HIGH, "Leaving NeverNote.updateListAuthor");
3815     }
3816     // Wide list was chosen
3817     public void narrowListView() {
3818         saveNoteColumnPositions();
3819         saveNoteIndexWidth();
3820         saveWindowState();
3821                 int sortCol = noteTableView.proxyModel.sortColumn();
3822                 int sortOrder = noteTableView.proxyModel.sortOrder().value();
3823                 Global.setSortColumn(sortCol);
3824                 Global.setSortOrder(sortOrder);
3825
3826                 Global.setListView(Global.View_List_Narrow);
3827         
3828         menuBar.wideListView.blockSignals(true);
3829         menuBar.narrowListView.blockSignals(true);
3830         
3831         menuBar.wideListView.setChecked(false);
3832         menuBar.narrowListView.setChecked(true);
3833         
3834         menuBar.wideListView.blockSignals(false);
3835         menuBar.narrowListView.blockSignals(false);
3836         
3837         mainLeftRightSplitter.addWidget(noteTableView);
3838         mainLeftRightSplitter.addWidget(browserWindow);
3839         restoreWindowState(false);
3840         noteTableView.repositionColumns();
3841         noteTableView.resizeColumnWidths();
3842         noteTableView.resizeRowHeights();
3843         
3844         sortCol = Global.getSortColumn();
3845                 sortOrder = Global.getSortOrder();
3846                 noteTableView.sortByColumn(sortCol, SortOrder.resolve(sortOrder));
3847                 
3848         showColumns();
3849         noteTableView.load(false);
3850         scrollToCurrentGuid();
3851     }
3852     public void wideListView() {
3853                 int sortCol = noteTableView.proxyModel.sortColumn();
3854                 int sortOrder = noteTableView.proxyModel.sortOrder().value();
3855                 Global.setSortColumn(sortCol);
3856                 Global.setSortOrder(sortOrder);
3857
3858                 saveWindowState();
3859         saveNoteColumnPositions();
3860         saveNoteIndexWidth();
3861         Global.setListView(Global.View_List_Wide);
3862
3863         menuBar.wideListView.blockSignals(true);
3864         menuBar.narrowListView.blockSignals(true);
3865         
3866         menuBar.wideListView.setChecked(true);
3867         menuBar.narrowListView.setChecked(false);
3868
3869         menuBar.wideListView.blockSignals(false);
3870         menuBar.narrowListView.blockSignals(false);
3871         browserIndexSplitter.setVisible(true);
3872         browserIndexSplitter.addWidget(noteTableView);
3873         browserIndexSplitter.addWidget(browserWindow);
3874         restoreWindowState(false);
3875         noteTableView.repositionColumns();
3876         noteTableView.resizeColumnWidths();
3877         noteTableView.resizeRowHeights();
3878         
3879         sortCol = Global.getSortColumn();
3880                 sortOrder = Global.getSortOrder();
3881                 noteTableView.sortByColumn(sortCol, SortOrder.resolve(sortOrder));
3882         
3883         showColumns();
3884         noteTableView.load(false);
3885         scrollToCurrentGuid();
3886     }
3887     
3888     
3889     //***************************************************************
3890     //***************************************************************
3891     //** External editor window functions                    
3892     //***************************************************************
3893     //***************************************************************
3894         private void listDoubleClick() {
3895         saveNote();
3896         if (externalWindows.containsKey(currentNoteGuid)) {
3897                 externalWindows.get(currentNoteGuid).raise();
3898                 return;
3899         }
3900         // We have a new external editor to create
3901         QIcon appIcon = new QIcon(iconPath+"nevernote.png");
3902         ExternalBrowse newBrowser = new ExternalBrowse(conn);
3903         newBrowser.setWindowIcon(appIcon);
3904         externalWindows.put(currentNoteGuid, newBrowser);
3905         showEditorButtons(newBrowser.getBrowserWindow());
3906         loadNoteBrowserInformation(newBrowser.getBrowserWindow());
3907         setupBrowserWindowListeners(newBrowser.getBrowserWindow(), false);
3908         newBrowser.windowClosing.connect(this, "externalWindowClosing(String)");
3909         newBrowser.getBrowserWindow().noteSignal.titleChanged.connect(this, "externalWindowTitleEdited(String, String)");
3910         newBrowser.getBrowserWindow().noteSignal.tagsChanged.connect(this, "externalWindowTagsEdited(String, List)");
3911         newBrowser.contentsChanged.connect(this, "saveNoteExternalBrowser(String, String, Boolean, BrowserWindow)");
3912
3913         browserWindow.noteSignal.tagsChanged.connect(newBrowser, "updateTags(String, List)");
3914         browserWindow.noteSignal.titleChanged.connect(newBrowser, "updateTitle(String, String)");
3915         browserWindow.noteSignal.notebookChanged.connect(newBrowser, "updateNotebook(String, String)");
3916         
3917         newBrowser.show();
3918     }
3919     @SuppressWarnings("unused")
3920         private void externalWindowTitleEdited(String guid, String text) {
3921         if (guid.equals(currentNoteGuid)) {
3922                 browserWindow.setTitle(text);
3923         }
3924     }
3925     @SuppressWarnings({ "rawtypes", "unused" })
3926         private void externalWindowTagsEdited(String guid, List values) {
3927         StringBuffer line = new StringBuffer(100);
3928         for (int i=0; i<values.size(); i++) {
3929                 if (i>0) 
3930                         line.append(Global.tagDelimeter+" ");
3931                 line.append(values.get(i));
3932         }
3933         if (guid.equals(currentNoteGuid)) {
3934                 browserWindow.setTag(line.toString());
3935         }
3936     }
3937     @SuppressWarnings("unused")
3938         private void externalWindowClosing(String guid) {
3939                 externalWindows.remove(guid);
3940     }
3941     
3942     
3943     
3944     //***************************************************************
3945     //***************************************************************
3946     //** These functions deal with Note specific things
3947     //***************************************************************
3948     //***************************************************************    
3949     @SuppressWarnings("unused")
3950         private void setNoteDirty() {
3951                 logger.log(logger.EXTREME, "Entering NeverNote.setNoteDirty()");
3952                 // Find if the note is being edited externally.  If it is, update it.
3953                 if (externalWindows.containsKey(currentNoteGuid)) {
3954                         QTextCodec codec = QTextCodec.codecForName("UTF-8");
3955                 QByteArray unicode =  codec.fromUnicode(browserWindow.getContent());
3956                         ExternalBrowse window = externalWindows.get(currentNoteGuid);
3957                 window.getBrowserWindow().getBrowser().setContent(unicode);
3958                 }
3959                 
3960                 // If the note is dirty, then it is unsynchronized by default.
3961                 if (noteDirty) 
3962                         return;
3963                 
3964                 // Set the note as dirty and check if its status is synchronized in the display table
3965                 noteDirty = true;
3966                 for (int i=0; i<listManager.getUnsynchronizedNotes().size(); i++) {
3967                         if (listManager.getUnsynchronizedNotes().get(i).equals(currentNoteGuid))
3968                                 return;
3969                 }
3970                 
3971                 // If this wasn't already marked as unsynchronized, then we need to update the table
3972                 listManager.getNoteTableModel().updateNoteSyncStatus(currentNoteGuid, false);
3973 /*      listManager.getUnsynchronizedNotes().add(currentNoteGuid);
3974         for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3975                 QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3976                 if (modelIndex != null) {
3977                         SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3978                         String tableGuid =  (String)ix.values().toArray()[0];
3979                         if (tableGuid.equals(currentNoteGuid)) {
3980                                 listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false");
3981                                 return;
3982                         }
3983                 }
3984         }
3985  */     
3986                 logger.log(logger.EXTREME, "Leaving NeverNote.setNoteDirty()");
3987     }
3988     @SuppressWarnings("unused")
3989         private void saveNoteExternalBrowser(String guid, String content, Boolean save, BrowserWindow browser) {
3990                 QTextCodec codec = QTextCodec.codecForName("UTF-8");
3991         QByteArray unicode =  codec.fromUnicode(content);
3992         noteCache.remove(guid);
3993                 noteCache.put(guid, unicode.toString());
3994         if (guid.equals(currentNoteGuid)) {
3995                 noteDirty = true;
3996                 browserWindow.getBrowser().setContent(unicode);
3997         } 
3998         if (save) {
3999                 thumbnailRunner.addWork("GENERATE "+ guid);
4000                 saveNote(guid, browser);
4001         }
4002         
4003     }
4004     private void saveNote() {
4005         if (noteDirty) {
4006                 saveNote(currentNoteGuid, browserWindow);
4007                 thumbnailRunner.addWork("GENERATE "+ currentNoteGuid);
4008                 noteDirty = false;
4009         }
4010     }
4011     private void saveNote(String guid, BrowserWindow window) {
4012                 logger.log(logger.EXTREME, "Inside NeverNote.saveNote()");
4013                 logger.log(logger.EXTREME, "Note is dirty.");
4014                 waitCursor(true);
4015                 
4016                 logger.log(logger.EXTREME, "Saving to cache");
4017                 QTextCodec codec = QTextCodec.codecForLocale();
4018 //              QTextDecoder decoder = codec.makeDecoder();
4019                 codec = QTextCodec.codecForName("UTF-8");
4020         QByteArray unicode =  codec.fromUnicode(window.getContent());
4021                 noteCache.put(guid, unicode.toString());
4022                         
4023                 logger.log(logger.EXTREME, "updating list manager");
4024                 listManager.updateNoteContent(guid, window.getContent());
4025                 logger.log(logger.EXTREME, "Updating title");
4026                 listManager.updateNoteTitle(guid, window.getTitle());
4027                 updateListDateChanged();
4028
4029                 logger.log(logger.EXTREME, "Looking through note index for refreshed note");
4030                 for (int i=0; i<listManager.getNoteIndex().size(); i++) {
4031                 if (listManager.getNoteIndex().get(i).getGuid().equals(guid)) {
4032                         currentNote = listManager.getNoteIndex().get(i);
4033                         i = listManager.getNoteIndex().size();
4034                 }
4035         }
4036         waitCursor(false);
4037     }
4038     // Get a note from Evernote (and put it in the browser)
4039         private void refreshEvernoteNote(boolean reload) {
4040                 logger.log(logger.HIGH, "Entering NeverNote.refreshEvernoteNote");
4041                 
4042                 if (Global.disableViewing) {
4043                         browserWindow.setEnabled(false);
4044                         return;
4045                 }
4046                 inkNote = false;
4047                 readOnly = false;
4048                 if (Global.showDeleted)
4049                         readOnly = true;
4050                 Global.cryptCounter =0;
4051                 if (currentNoteGuid.equals("")) {
4052                         browserWindow.setReadOnly(true);
4053                         return;
4054                 }
4055                 
4056                 if (!reload)
4057                         return;
4058                 
4059                 waitCursor(true);
4060                 browserWindow.loadingData(true);
4061
4062                 currentNote = conn.getNoteTable().getNote(currentNoteGuid, true,true,false,false,true);
4063                 if (currentNote == null) 
4064                         return;
4065                 
4066                 loadNoteBrowserInformation(browserWindow);
4067         }
4068
4069         private void loadNoteBrowserInformation(BrowserWindow browser) {
4070                 NoteFormatter   formatter = new NoteFormatter(logger, conn, tempFiles);
4071                 formatter.setNote(currentNote, Global.pdfPreview());
4072                 formatter.setHighlight(listManager.getEnSearch());
4073                 QByteArray js;
4074                 if (!noteCache.containsKey(currentNoteGuid) || conn.getNoteTable().isThumbnailNeeded(currentNoteGuid)) {
4075                         js = new QByteArray();
4076                         // We need to prepend the note with <HEAD></HEAD> or encoded characters are ugly 
4077                         js.append("<html><head><meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">");               
4078                         js.append("<style type=\"text/css\">.en-crypt-temp { border-collapse:collapse; border-style:solid; border-color:blue; padding:0.0mm 0.0mm 0.0mm 0.0mm; }</style>");
4079                         js.append("<style type=\"text/css\">en-hilight { background-color: rgb(255,255,0) }</style>");
4080                         js.append("<style> img { max-width:100%; }</style>");
4081                         js.append("<style type=\"text/css\">en-spell { text-decoration: none; border-bottom: dotted 1px #cc0000; }</style>");
4082                         js.append("</head>");
4083                         formatter.setNote(currentNote, Global.pdfPreview());
4084                         js.append(formatter.rebuildNoteHTML());
4085                         js.append("</HTML>");
4086                         js.replace("<!DOCTYPE en-note SYSTEM 'http://xml.evernote.com/pub/enml.dtd'>", "");
4087                         js.replace("<!DOCTYPE en-note SYSTEM 'http://xml.evernote.com/pub/enml2.dtd'>", "");
4088                         js.replace("<?xml version='1.0' encoding='UTF-8'?>", "");
4089                         browser.getBrowser().setContent(js);
4090                         noteCache.put(currentNoteGuid, js.toString());
4091
4092                         if (formatter.resourceError)
4093                                 resourceErrorMessage();
4094                         readOnly = formatter.readOnly;
4095                         inkNote = formatter.inkNote;
4096                         if (readOnly)
4097                                 readOnlyCache.put(currentNoteGuid, true);
4098                         if (inkNote)
4099                                 inkNoteCache.put(currentNoteGuid, true);
4100                 } else {
4101                         logger.log(logger.HIGH, "Note content is being pulled from the cache");
4102                         String cachedContent = formatter.modifyCachedTodoTags(noteCache.get(currentNoteGuid));
4103                         js = new QByteArray(cachedContent);
4104                         browser.getBrowser().setContent(js);
4105                         if (readOnlyCache.containsKey(currentNoteGuid))
4106                                         readOnly = true;
4107                         if (inkNoteCache.containsKey(currentNoteGuid))
4108                                         inkNote = true;
4109                 }
4110                 if (conn.getNoteTable().isThumbnailNeeded(currentNoteGuid)) {
4111                         thumbnailHTMLReady(currentNoteGuid, js, Global.calculateThumbnailZoom(js.toString()));
4112                 }
4113
4114                 if (readOnly || inkNote)
4115                         browser.getBrowser().page().setContentEditable(false);  // We don't allow editing of ink notes
4116                 else
4117                         browser.getBrowser().page().setContentEditable(true);
4118                 browser.setReadOnly(readOnly);
4119                 deleteButton.setEnabled(!readOnly);
4120                 tagButton.setEnabled(!readOnly);
4121                 menuBar.noteDelete.setEnabled(!readOnly);
4122                 menuBar.noteTags.setEnabled(!readOnly);
4123                 browser.setNote(currentNote);
4124                 
4125                 if (conn.getNotebookTable().isLinked(currentNote.getNotebookGuid())) {
4126                         deleteButton.setEnabled(false);
4127                         menuBar.notebookDeleteAction.setEnabled(false);
4128                 } else {
4129                         deleteButton.setEnabled(true);
4130                         menuBar.notebookDeleteAction.setEnabled(true);
4131                 }
4132                 
4133                 // Build a list of non-closed notebooks
4134                 List<Notebook> nbooks = new ArrayList<Notebook>();
4135                 for (int i=0; i<listManager.getNotebookIndex().size(); i++) {
4136                         boolean found=false;
4137                         for (int j=0; j<listManager.getArchiveNotebookIndex().size(); j++) {
4138                                 if (listManager.getArchiveNotebookIndex().get(j).getGuid().equals(listManager.getNotebookIndex().get(i).getGuid())) 
4139                                         found = true;
4140                         }
4141                         if (!found)
4142                                 nbooks.add(listManager.getNotebookIndex().get(i));
4143                 }
4144                 
4145                 browser.setTitle(currentNote.getTitle());
4146                 browser.setTag(getTagNamesForNote(currentNote));
4147                 browser.setAuthor(currentNote.getAttributes().getAuthor());
4148                 
4149                 browser.setAltered(currentNote.getUpdated());
4150                 browser.setCreation(currentNote.getCreated());
4151                 if (currentNote.getAttributes().getSubjectDate() > 0)
4152                         browser.setSubjectDate(currentNote.getAttributes().getSubjectDate());
4153                 else
4154                         browser.setSubjectDate(currentNote.getCreated());
4155                 browser.setUrl(currentNote.getAttributes().getSourceURL());
4156                 
4157                 FilterEditorTags tagFilter = new FilterEditorTags(conn, logger);
4158                 List<Tag> tagList = tagFilter.getValidTags(currentNote);
4159                 browser.setAllTags(tagList);
4160                 
4161                 browser.setCurrentTags(currentNote.getTagNames());
4162                 noteDirty = false;
4163                 scrollToGuid(currentNoteGuid);
4164                 
4165                 browser.loadingData(false);
4166                 if (thumbnailViewer.isActiveWindow())
4167                         thumbnailView();
4168                 
4169                 FilterEditorNotebooks notebookFilter = new FilterEditorNotebooks(conn, logger);
4170                 browser.setNotebookList(notebookFilter.getValidNotebooks(currentNote, listManager.getNotebookIndex()));
4171
4172                 waitCursor(false);
4173                 logger.log(logger.HIGH, "Leaving NeverNote.refreshEvernoteNote");
4174         }
4175         // Save a generated thumbnail
4176         private void toggleNoteInformation() {
4177                 logger.log(logger.HIGH, "Entering NeverNote.toggleNoteInformation");
4178         browserWindow.toggleInformation();
4179         menuBar.noteAttributes.setChecked(browserWindow.isExtended());
4180         Global.saveWindowVisible("noteInformation", browserWindow.isExtended());
4181         logger.log(logger.HIGH, "Leaving NeverNote.toggleNoteInformation");
4182     }
4183         // Listener triggered when a print button is pressed
4184     @SuppressWarnings("unused")
4185         private void printNote() {
4186                 logger.log(logger.HIGH, "Entering NeverNote.printNote");
4187
4188         QPrintDialog dialog = new QPrintDialog();
4189         if (dialog.exec() == QDialog.DialogCode.Accepted.value()) {
4190                 QPrinter printer = dialog.printer();
4191                 browserWindow.getBrowser().print(printer);
4192         }
4193                 logger.log(logger.HIGH, "Leaving NeverNote.printNote");
4194
4195     }
4196     // Listener triggered when the email button is pressed
4197     @SuppressWarnings("unused")
4198         private void emailNote() {
4199         logger.log(logger.HIGH, "Entering NeverNote.emailNote");
4200         
4201         if (Desktop.isDesktopSupported()) {
4202             Desktop desktop = Desktop.getDesktop();
4203             
4204             String text2 = browserWindow.getContentsToEmail();
4205             QUrl url = new QUrl("mailto:");
4206             url.addQueryItem("subject", currentNote.getTitle());
4207 //            url.addQueryItem("body", QUrl.toPercentEncoding(text2).toString());
4208             url.addQueryItem("body", text2);
4209             QDesktopServices.openUrl(url);
4210         }
4211 /*            
4212             
4213             if (desktop.isSupported(Desktop.Action.MAIL)) {
4214                 URI uriMailTo = null;
4215                 try {
4216                         //String text = browserWindow.getBrowser().page().currentFrame().toPlainText();
4217                         String text = browserWindow.getContentsToEmail();
4218                         //text = "<b>" +text +"</b>";
4219                                         uriMailTo = new URI("mailto", "&SUBJECT="+currentNote.getTitle()
4220                                                         +"&BODY=" +text, null);
4221                                         uriMailTo = new URI("mailto", "&SUBJECT="+currentNote.getTitle()
4222                                                         +"&ATTACHMENT=d:/test.pdf", null);
4223                                         desktop.mail(uriMailTo);
4224                                 } catch (URISyntaxException e) {
4225                                         e.printStackTrace();
4226                                 } catch (IOException e) {
4227                                         e.printStackTrace();
4228                                 }
4229
4230             }
4231
4232         }     
4233  */     
4234         logger.log(logger.HIGH, "Leaving NeverNote.emailNote");
4235     }
4236         // Reindex all notes
4237     @SuppressWarnings("unused")
4238         private void fullReindex() {
4239         logger.log(logger.HIGH, "Entering NeverNote.fullReindex");
4240         indexRunner.addWork("REINDEXALL");
4241         setMessage(tr("Database will be reindexed."));
4242         logger.log(logger.HIGH, "Leaving NeverNote.fullReindex");
4243     }
4244     // Listener when a user wants to reindex a specific note
4245     @SuppressWarnings("unused")
4246         private void reindexNote() {
4247         logger.log(logger.HIGH, "Entering NeverNote.reindexNote");
4248                 for (int i=0; i<selectedNoteGUIDs.size(); i++) {
4249                         indexRunner.addWork("REINDEXNOTE "+selectedNoteGUIDs.get(i));
4250                 }
4251                 if (selectedNotebookGUIDs.size() > 1)
4252                         setMessage(tr("Notes will be reindexed."));
4253                 else
4254                         setMessage(tr("Note will be reindexed."));
4255         logger.log(logger.HIGH, "Leaving NeverNote.reindexNote");
4256     }
4257     // Delete the note
4258     @SuppressWarnings("unused")
4259         private void deleteNote() {
4260         logger.log(logger.HIGH, "Entering NeverNote.deleteNote");
4261         if (currentNote == null) 
4262                 return;
4263         if (currentNoteGuid.equals(""))
4264                 return;
4265         
4266         // If we are deleting non-trash notes
4267         if (currentNote.isActive()) { 
4268                 if (Global.verifyDelete()) {
4269                         if (QMessageBox.question(this, tr("Confirmation"), tr("Delete selected note(s)?"),
4270                                         QMessageBox.StandardButton.Yes, 
4271                                         QMessageBox.StandardButton.No)==StandardButton.No.value() && Global.verifyDelete() == true) {
4272                                         return;
4273                         }
4274                 }
4275                 if (selectedNoteGUIDs.size() == 0 && !currentNoteGuid.equals("")) 
4276                         selectedNoteGUIDs.add(currentNoteGuid);
4277                 for (int i=0; i<selectedNoteGUIDs.size(); i++) {
4278                         listManager.deleteNote(selectedNoteGUIDs.get(i));
4279                 }
4280         } else { 
4281                 // If we are deleting from the trash.
4282                 if (Global.verifyDelete()) {
4283                         if (QMessageBox.question(this, "Confirmation", "Permanently delete selected note(s)?",
4284                                 QMessageBox.StandardButton.Yes, 
4285                                         QMessageBox.StandardButton.No)==StandardButton.No.value()) {
4286                                         return;
4287                         }
4288                 }
4289                 if (selectedNoteGUIDs.size() == 0 && !currentNoteGuid.equals("")) 
4290                         selectedNoteGUIDs.add(currentNoteGuid);
4291                 for (int i=selectedNoteGUIDs.size()-1; i>=0; i--) {
4292                         for (int j=listManager.getNoteTableModel().rowCount()-1; j>=0; j--) {
4293                         QModelIndex modelIndex =  listManager.getNoteTableModel().index(j, Global.noteTableGuidPosition);
4294                         if (modelIndex != null) {
4295                                 SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
4296                                 String tableGuid =  (String)ix.values().toArray()[0];
4297                                 if (tableGuid.equals(selectedNoteGUIDs.get(i))) {
4298                                         listManager.getNoteTableModel().removeRow(j);
4299                                         j=-1;
4300                                 }
4301                         }
4302                 }
4303                         listManager.expungeNote(selectedNoteGUIDs.get(i));
4304                 }
4305         }
4306         currentNoteGuid = "";
4307         listManager.loadNotesIndex();
4308         noteIndexUpdated(false);
4309         refreshEvernoteNote(true);
4310         scrollToGuid(currentNoteGuid);
4311         logger.log(logger.HIGH, "Leaving NeverNote.deleteNote");
4312     }
4313     // Add a new note
4314     @SuppressWarnings("unused")
4315         private void addNote() {
4316         logger.log(logger.HIGH, "Inside NeverNote.addNote");
4317 //      browserWindow.setEnabled(true);
4318         browserWindow.setReadOnly(false);
4319         saveNote();
4320         Calendar currentTime = new GregorianCalendar();
4321         StringBuffer noteString = new StringBuffer(100);
4322         noteString.append("<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n" +
4323                 "<!DOCTYPE en-note SYSTEM \"http://xml.evernote.com/pub/enml2.dtd\">\n" +
4324                 "<en-note>\n");
4325         
4326         if (Global.overrideDefaultFont()) {
4327                 noteString.append("<font face=\"" +Global.getDefaultFont() +"\" >");
4328                 noteString.append("<span style=\"font-size:" +Global.getDefaultFontSize() +"pt;\">");
4329                 noteString.append("<br clear=\"none\" />\n");
4330                 noteString.append("</span>\n</font>\n");
4331         } else
4332                 noteString.append("<br clear=\"none\" />\n");
4333         noteString.append("</en-note>");
4334         
4335         Long l = new Long(currentTime.getTimeInMillis());
4336         String randint = new String(Long.toString(l));          
4337         
4338         // Find a notebook.  We first look for a selected notebook (the "All Notebooks" one doesn't count).  
4339         // Then we look
4340         // for the first non-archived notebook.  Finally, if nothing else we 
4341         // pick the first notebook in the list.
4342         String notebook = null;
4343         listManager.getNotebookIndex().get(0).getGuid();
4344         List<QTreeWidgetItem> selectedNotebook = notebookTree.selectedItems();
4345         if (selectedNotebook.size() > 0 && !selectedNotebook.get(0).text(0).equalsIgnoreCase("All Notebooks")) {
4346                 QTreeWidgetItem currentSelectedNotebook = selectedNotebook.get(0);
4347                 notebook = currentSelectedNotebook.text(2);
4348         } else {
4349                 boolean found = false;
4350                 List<Notebook> goodNotebooks = new ArrayList<Notebook>();
4351                 for (int i=0; i<listManager.getNotebookIndex().size(); i++) {
4352                         boolean match = false;
4353                         for (int j=0; j<listManager.getArchiveNotebookIndex().size(); j++) {
4354                                 if (listManager.getArchiveNotebookIndex().get(j).getGuid().equals(listManager.getNotebookIndex().get(i).getGuid())) {
4355                                         match = true;
4356                                         j = listManager.getArchiveNotebookIndex().size();
4357                                 }
4358                         }
4359                         if (!match)
4360                                 goodNotebooks.add(listManager.getNotebookIndex().get(i).deepCopy());
4361                 }
4362                 // Now we have a list of good notebooks, so we can look for the default
4363                 found = false;
4364                 for (int i=0; i<goodNotebooks.size(); i++) {
4365                         if (goodNotebooks.get(i).isDefaultNotebook()) {
4366                                 notebook = goodNotebooks.get(i).getGuid();
4367                                 found = true;
4368                                 i = goodNotebooks.size();
4369                         }
4370                 }
4371                 
4372                 if (goodNotebooks.size() > 0 && !found)
4373                         notebook = goodNotebooks.get(0).getGuid();
4374      
4375                 if (notebook==null)
4376                         notebook = listManager.getNotebookIndex().get(0).getGuid();             
4377         }
4378         
4379         Note newNote = new Note();
4380         newNote.setUpdateSequenceNum(0);
4381         newNote.setGuid(randint);
4382         newNote.setNotebookGuid(notebook);
4383         newNote.setTitle("");
4384         newNote.setContent(noteString.toString());
4385         newNote.setDeleted(0);
4386         newNote.setCreated(System.currentTimeMillis());
4387         newNote.setUpdated(System.currentTimeMillis());
4388         newNote.setActive(true);
4389         NoteAttributes na = new NoteAttributes();
4390         na.setLatitude(0.0);
4391         na.setLongitude(0.0);
4392         na.setAltitude(0.0);
4393         newNote.setAttributes(new NoteAttributes());
4394                 newNote.setTagGuids(new ArrayList<String>());
4395                 newNote.setTagNames(new ArrayList<String>());
4396         
4397         // If new notes are to be created based upon the selected tags, then we need to assign the tags
4398         if (Global.newNoteWithSelectedTags()) { 
4399                 List<QTreeWidgetItem> selections = tagTree.selectedItems();
4400                 QTreeWidgetItem currentSelection;
4401                 for (int i=0; i<selections.size(); i++) {
4402                         currentSelection = selections.get(i);
4403                         newNote.getTagGuids().add(currentSelection.text(2));
4404                         newNote.getTagNames().add(currentSelection.text(0));
4405                 }
4406         }
4407         
4408         conn.getNoteTable().addNote(newNote, true);
4409         listManager.getUnsynchronizedNotes().add(newNote.getGuid());
4410         listManager.addNote(newNote);
4411 //      noteTableView.insertRow(newNote, true, -1);
4412         
4413         currentNote = newNote;
4414         currentNoteGuid = currentNote.getGuid();
4415         refreshEvernoteNote(true);
4416         listManager.countNotebookResults(listManager.getNoteIndex());
4417         browserWindow.titleLabel.setFocus();
4418         browserWindow.titleLabel.selectAll();
4419 //      notebookTree.updateCounts(listManager.getNotebookIndex(), listManager.getNotebookCounter());
4420         
4421         // If the window is hidden, then we want to popup this in an external window & 
4422         if (!isVisible())
4423                 listDoubleClick();
4424         logger.log(logger.HIGH, "Leaving NeverNote.addNote");
4425     }
4426     // Restore a note from the trash;
4427     @SuppressWarnings("unused")
4428         private void restoreNote() {
4429         waitCursor(true);
4430                 if (selectedNoteGUIDs.size() == 0 && !currentNoteGuid.equals("")) 
4431                         selectedNoteGUIDs.add(currentNoteGuid);
4432                 for (int i=0; i<selectedNoteGUIDs.size(); i++) {
4433                         listManager.restoreNote(selectedNoteGUIDs.get(i));
4434                 }
4435         currentNoteGuid = "";
4436         listManager.loadNotesIndex();
4437         noteIndexUpdated(false);
4438         waitCursor(false);
4439     }
4440     // Search a note for specific txt
4441     @SuppressWarnings("unused")
4442         private void findText() {
4443         find.show();
4444         find.setFocusOnTextField();
4445     }
4446     @SuppressWarnings("unused")
4447         private void doFindText() {
4448         browserWindow.getBrowser().page().findText(find.getText(), find.getFlags());
4449         find.setFocus();
4450     }
4451     @SuppressWarnings("unused")
4452         private void updateNoteTitle(String guid, String title) {
4453         listManager.setNoteSynchronized(guid, false);
4454     }
4455     // Signal received that note content has changed.  Normally we just need the guid to remove
4456     // it from the cache.
4457     @SuppressWarnings("unused")
4458         private void invalidateNoteCache(String guid, String content) {
4459         String v = noteCache.remove(guid);
4460 //              if (guid.equals(currentNoteGuid) && !noteDirty)
4461                         refreshEvernoteNote(true);
4462     }
4463     // Signal received that a note guid has changed
4464     @SuppressWarnings("unused")
4465         private void noteGuidChanged(String oldGuid, String newGuid) {
4466         if (noteCache.containsKey(oldGuid)) {
4467                 if (!oldGuid.equals(currentNoteGuid)) {
4468                         String cache = noteCache.get(oldGuid);
4469                         noteCache.put(newGuid, cache);
4470                         noteCache.remove(oldGuid);
4471                 } else {
4472                         noteCache.remove(oldGuid);
4473                         noteCache.put(newGuid, browserWindow.getContent());
4474                 }
4475         }
4476   
4477         listManager.updateNoteGuid(oldGuid, newGuid, false);
4478         if (currentNoteGuid.equals(oldGuid)) {
4479                 if (currentNote != null)
4480                         currentNote.setGuid(newGuid);
4481                 currentNoteGuid = newGuid;
4482         }
4483                 
4484         if (externalWindows.containsKey(oldGuid)) {
4485                         ExternalBrowse b = externalWindows.get(oldGuid);
4486                         externalWindows.remove(oldGuid);
4487                         b.getBrowserWindow().getNote().setGuid(newGuid);
4488                         externalWindows.put(newGuid, b);
4489                 }
4490
4491         for (int i=0; i<listManager.getNoteIndex().size(); i++) {
4492                 if (listManager.getNoteIndex().get(i).getGuid().equals(newGuid)) {
4493                         noteTableView.proxyModel.addGuid(newGuid);
4494                         i=listManager.getNoteIndex().size();
4495                 }
4496         }
4497         
4498         if (listManager.getNoteTableModel().titleColors.containsKey(oldGuid)) {
4499                 int color = listManager.getNoteTableModel().titleColors.get(oldGuid);
4500                 listManager.getNoteTableModel().titleColors.put(newGuid, color);
4501                 listManager.getNoteTableModel().titleColors.remove(oldGuid);
4502         }
4503         
4504     }
4505     // Toggle the note editor button bar
4506     private void toggleEditorButtonBar() {
4507         if (browserWindow.buttonsVisible) {
4508                 browserWindow.hideButtons();
4509                 menuBar.showEditorBar.setChecked(browserWindow.buttonsVisible);
4510 //              Global.saveWindowVisible("editorButtonBar", browserWindow.buttonsVisible);
4511         } else {
4512                 browserWindow.buttonsVisible = true;
4513                 showEditorButtons(browserWindow);
4514         }
4515         Global.saveWindowVisible("editorButtonBar", browserWindow.buttonsVisible);
4516     }
4517     // Show editor buttons
4518     private void showEditorButtons(BrowserWindow browser) {
4519                 browser.buttonLayout.setVisible(true);
4520                 browser.undoAction.setVisible(false);
4521                 
4522                 browser.undoButton.setVisible(false);
4523
4524                 browser.undoAction.setVisible(Global.isEditorButtonVisible("undo"));
4525                 browser.redoAction.setVisible(Global.isEditorButtonVisible("redo"));
4526                 browser.cutAction.setVisible(Global.isEditorButtonVisible("cut"));
4527                 browser.copyAction.setVisible(Global.isEditorButtonVisible("copy"));
4528                 browser.pasteAction.setVisible(Global.isEditorButtonVisible("paste"));
4529                 browser.strikethroughAction.setVisible(Global.isEditorButtonVisible("strikethrough"));
4530                 browser.underlineAction.setVisible(Global.isEditorButtonVisible("underline"));
4531                 browser.boldAction.setVisible(Global.isEditorButtonVisible("bold"));
4532                 browser.italicAction.setVisible(Global.isEditorButtonVisible("italic"));
4533                 browser.hlineAction.setVisible(Global.isEditorButtonVisible("hline"));
4534                 browser.indentAction.setVisible(Global.isEditorButtonVisible("indent"));
4535                 browser.outdentAction.setVisible(Global.isEditorButtonVisible("outdent"));
4536                 browser.bulletListAction.setVisible(Global.isEditorButtonVisible("bulletList"));
4537                 browser.numberListAction.setVisible(Global.isEditorButtonVisible("numberList"));
4538                 browser.fontListAction.setVisible(Global.isEditorButtonVisible("font"));
4539                 browser.fontSizeAction.setVisible(Global.isEditorButtonVisible("fontSize"));
4540                 browser.fontColorAction.setVisible(Global.isEditorButtonVisible("fontColor"));
4541                 browser.fontHilightAction.setVisible(Global.isEditorButtonVisible("fontHilight"));
4542                 browser.leftAlignAction.setVisible(Global.isEditorButtonVisible("alignLeft"));
4543                 browser.centerAlignAction.setVisible(Global.isEditorButtonVisible("alignCenter"));
4544                 browser.rightAlignAction.setVisible(Global.isEditorButtonVisible("alignRight"));
4545                 browser.spellCheckAction.setVisible(Global.isEditorButtonVisible("spellCheck"));
4546                 browser.todoAction.setVisible(Global.isEditorButtonVisible("todo"));
4547     }
4548     private void duplicateNote(String guid) {
4549                 
4550                 Note oldNote = conn.getNoteTable().getNote(guid, true, true, false, false, false);
4551                 List<Resource> resList = conn.getNoteTable().noteResourceTable.getNoteResources(guid, true);
4552                 oldNote.setContent(conn.getNoteTable().getNoteContentBinary(guid));
4553                 oldNote.setResources(resList);
4554                 duplicateNote(oldNote);
4555         }
4556         private void duplicateNote(Note oldNote) {
4557                 waitCursor(true);
4558                 // Now that we have a good notebook guid, we need to move the conflicting note
4559                 // to the local notebook
4560                 Calendar currentTime = new GregorianCalendar();
4561                 Long l = new Long(currentTime.getTimeInMillis());
4562                 String newGuid = new String(Long.toString(l));
4563                                         
4564                 Note newNote = oldNote.deepCopy();
4565                 newNote.setUpdateSequenceNum(0);
4566                 newNote.setGuid(newGuid);
4567                 newNote.setDeleted(0);
4568                 newNote.setActive(true);
4569                 List<Resource> resList = oldNote.getResources();
4570                 if (resList == null)
4571                         resList = new ArrayList<Resource>();
4572                 long prevGuid = 0;
4573                 for (int i=0; i<resList.size(); i++) {
4574                         l = prevGuid;
4575                         while (l == prevGuid) {
4576                                 currentTime = new GregorianCalendar();
4577                                 l = new Long(currentTime.getTimeInMillis());
4578                         }
4579                         prevGuid = l;
4580                         String newResGuid = new String(Long.toString(l));
4581                         resList.get(i).setNoteGuid(newGuid);
4582                         resList.get(i).setGuid(newResGuid);
4583                         resList.get(i).setUpdateSequenceNum(0);
4584                         resList.get(i).setActive(true);
4585                         conn.getNoteTable().noteResourceTable.saveNoteResource(new Resource(resList.get(i).deepCopy()), true);
4586                 }
4587                 newNote.setResources(resList);
4588                 listManager.addNote(newNote);
4589                 conn.getNoteTable().addNote(newNote, true);
4590                 listManager.getUnsynchronizedNotes().add(newNote.getGuid());
4591                 noteTableView.insertRow(newNote, true, -1);
4592                 listManager.countNotebookResults(listManager.getNoteIndex());
4593                 waitCursor(false);
4594         }
4595         // View all notes
4596         @SuppressWarnings("unused")
4597         private void allNotes() {
4598                 clearAttributeFilter();
4599                 clearNotebookFilter();
4600                 clearSavedSearchFilter();
4601                 clearTrashFilter();
4602                 clearTagFilter();
4603                 searchField.clear();
4604                 if (Global.mimicEvernoteInterface) {
4605                         notebookTree.selectGuid("");
4606                 }
4607                 notebookTreeSelection();
4608         }
4609         // Merge notes
4610         @SuppressWarnings("unused")
4611         private void mergeNotes() {
4612                 logger.log(logger.HIGH, "Merging notes");
4613                 waitCursor(true);
4614                 saveNote();
4615                 String masterGuid = null;
4616                 List<String> sources = new ArrayList<String>();
4617                 QModelIndex index;
4618                 for (int i=0; i<noteTableView.selectionModel().selectedRows().size(); i++) {
4619                         int r = noteTableView.selectionModel().selectedRows().get(i).row();
4620                         index = noteTableView.proxyModel.index(r, Global.noteTableGuidPosition);
4621                         SortedMap<Integer, Object> ix = noteTableView.proxyModel.itemData(index);
4622                 if (i == 0) 
4623                         masterGuid = (String)ix.values().toArray()[0];
4624                 else 
4625                         sources.add((String)ix.values().toArray()[0]);  
4626                 }
4627                 
4628                 logger.log(logger.EXTREME, "Master guid=" +masterGuid);
4629                 logger.log(logger.EXTREME, "Children count: "+sources.size());
4630                 mergeNoteContents(masterGuid, sources);
4631                 currentNoteGuid = masterGuid;
4632                 noteIndexUpdated(false);
4633                 refreshEvernoteNote(true);
4634                 waitCursor(false);
4635         }
4636         private void mergeNoteContents(String targetGuid, List<String> sources) {
4637                 Note target = conn.getNoteTable().getNote(targetGuid, true, false, false, false, false);
4638                 String newContent = target.getContent();
4639                 newContent = newContent.replace("</en-note>", "<br></br>");
4640                 
4641                 for (int i=0; i<sources.size(); i++) {
4642                         Note source = conn.getNoteTable().getNote(sources.get(i), true, true, false, false, false);
4643                         if (source.isSetTitle()) {
4644                                 newContent = newContent +("<table bgcolor=\"lightgrey\"><tr><td><font size=\"6\"><b>" +source.getTitle() +"</b></font></td></tr></table>");
4645                         }
4646                         String sourceContent = source.getContent();
4647                         logger.log(logger.EXTREME, "Merging contents into note");
4648                         logger.log(logger.EXTREME, sourceContent);
4649                         logger.log(logger.EXTREME, "End of content");
4650                         int startOfNote = sourceContent.indexOf("<en-note>");
4651                         sourceContent = sourceContent.substring(startOfNote+9);
4652                         int endOfNote = sourceContent.indexOf("</en-note>");
4653                         sourceContent = sourceContent.substring(0,endOfNote);
4654                         newContent = newContent + sourceContent;
4655                         logger.log(logger.EXTREME, "New note content");
4656                         logger.log(logger.EXTREME, newContent);
4657                         logger.log(logger.EXTREME, "End of content");
4658                         for (int j=0; j<source.getResourcesSize(); j++) {
4659                                 logger.log(logger.EXTREME, "Reassigning resource: "+source.getResources().get(j).getGuid());
4660                                 Resource r = source.getResources().get(j);
4661                                 Resource newRes = conn.getNoteTable().noteResourceTable.getNoteResource(r.getGuid(), true);
4662                                 
4663                                 Calendar currentTime = new GregorianCalendar();
4664                                 Long l = new Long(currentTime.getTimeInMillis());
4665                                                         
4666                                 long prevGuid = 0;
4667                                 l = prevGuid;
4668                                 while (l == prevGuid) {
4669                                         currentTime = new GregorianCalendar();
4670                                         l = new Long(currentTime.getTimeInMillis());
4671                                 }
4672                                 String newResGuid = new String(Long.toString(l));
4673                                 newRes.setNoteGuid(targetGuid);
4674                                 newRes.setGuid(newResGuid);
4675                                 newRes.setUpdateSequenceNum(0);
4676                                 newRes.setActive(true);
4677                                 conn.getNoteTable().noteResourceTable.saveNoteResource(newRes, true);
4678                         }
4679                 }
4680                 logger.log(logger.EXTREME, "Updating note");
4681                 conn.getNoteTable().updateNoteContent(targetGuid, newContent +"</en-note>");
4682                 for (int i=0; i<sources.size(); i++) {
4683                         logger.log(logger.EXTREME, "Deleting note " +sources.get(i));
4684                         listManager.deleteNote(sources.get(i));
4685                 }
4686                 logger.log(logger.EXTREME, "Exiting merge note");
4687         }
4688         // A resource within a note has had a guid change 
4689         @SuppressWarnings("unused")
4690         private void noteResourceGuidChanged(String noteGuid, String oldGuid, String newGuid) {
4691                 if (!oldGuid.equals(newGuid))
4692                         Global.resourceMap.put(oldGuid, newGuid);
4693         }
4694         // View a thumbnail of the note
4695         public void thumbnailView() {
4696                 
4697                 String thumbnailName = Global.getFileManager().getResDirPath("thumbnail-" + currentNoteGuid + ".png");
4698                 QFile thumbnail = new QFile(thumbnailName);
4699                 if (!thumbnail.exists()) {
4700                         
4701                         QImage img = new QImage();
4702                         img.loadFromData(conn.getNoteTable().getThumbnail(currentNoteGuid));
4703                         thumbnailViewer.setThumbnail(img);
4704                 } else
4705                         thumbnailViewer.setThumbnail(thumbnailName);
4706                 if (!thumbnailViewer.isVisible()) 
4707                         thumbnailViewer.showFullScreen();
4708         }
4709         // An error happened while saving a note.  Inform the user
4710         @SuppressWarnings("unused")
4711         private void saveRunnerError(String guid, String msg) {
4712                 if (msg == null) {
4713                         String title = "*Unknown*";
4714                         for (int i=0; i<listManager.getMasterNoteIndex().size(); i++) {
4715                                 if (listManager.getMasterNoteIndex().get(i).getGuid().equals(guid)) {
4716                                         title = listManager.getMasterNoteIndex().get(i).getTitle();
4717                                         i=listManager.getMasterNoteIndex().size();
4718                                 }
4719                         }
4720                         msg = "An error has happened while saving the note \"" +title+
4721                         "\".\n\nThis is probably due to a document that is too complex for Nevernote to process.  "+
4722                         "As a result, changes to the note may not be saved properly in the database."+
4723                         "\n\nA cached copy is being preserved so you can recover any data, but data may" +
4724                         "\nbe lost.  Please review the note to recover any critical data before restarting.";
4725                         
4726                         QMessageBox.information(this, tr("Error Saving Note"), tr(msg));
4727                 }
4728         }
4729         private void thumbnailHTMLReady(String guid, QByteArray html, Integer zoom) {
4730                 logger.log(logger.HIGH, "Entering thumnailHTMLReady()");
4731                 logger.log(logger.HIGH, "Thumbnail ready for " +guid);
4732                 // Find an idle preview object
4733                 for (int i=0; i<thumbGenerators.size(); i++) {
4734                         if (thumbGenerators.get(i).mutex.tryLock()) {
4735                                 logger.log(logger.EXTREME, "Idle generator found - loading thumbnail for " +guid);
4736                                 thumbGenerators.get(i).loadContent(guid, html, zoom);
4737                                 return;
4738                         }
4739                 } 
4740                 if (thumbGenerators.size() >= 1) {
4741                         logger.log(logger.EXTREME, "No available thumbnail generators.  Aborting " +guid);
4742                         return;
4743                 }
4744                 
4745                 logger.log(logger.EXTREME, "Creating new thumbnail generator " +guid);
4746                 Thumbnailer preview = new Thumbnailer(logger, conn, listManager, thumbnailRunner);
4747                 thumbGenerators.add(preview);
4748
4749                 if (preview.mutex.tryLock()) {
4750                         logger.log(logger.EXTREME, "Loading thumbnail for  " +guid);
4751                         preview.loadContent(guid, html, zoom);
4752                 }
4753                 logger.log(logger.HIGH, "Exiting thumnailHTMLReady()");
4754         }
4755         
4756         
4757         
4758         //**********************************************************
4759     //**********************************************************
4760     //* Online user actions
4761     //**********************************************************
4762     //**********************************************************
4763     private void setupOnlineMenu() {
4764         if (!Global.isConnected) {
4765                 menuBar.noteOnlineHistoryAction.setEnabled(false);
4766                 menuBar.selectiveSyncAction.setEnabled(false);
4767                 return;
4768         } else {
4769                 menuBar.noteOnlineHistoryAction.setEnabled(true);
4770                 menuBar.selectiveSyncAction.setEnabled(true);
4771         }
4772     }
4773     @SuppressWarnings("unused")
4774         private void viewNoteHistory() {
4775         if (currentNoteGuid == null || currentNoteGuid.equals("")) 
4776                 return;
4777         if (currentNote.getUpdateSequenceNum() == 0) {
4778                 setMessage(tr("Note has never been synchronized."));
4779                         QMessageBox.information(this, tr("Error"), tr("This note has never been sent to Evernote, so there is no history."));
4780                         return;
4781         }
4782         
4783         setMessage(tr("Getting Note History"));
4784         waitCursor(true);
4785         Note currentOnlineNote = null;
4786         versions = null;
4787         try {
4788                 if (Global.isPremium())
4789                         versions = syncRunner.noteStore.listNoteVersions(syncRunner.authToken, currentNoteGuid);
4790                 else
4791                         versions = new ArrayList<NoteVersionId>();
4792                 currentOnlineNote = syncRunner.noteStore.getNote(syncRunner.authToken, currentNoteGuid, true, true, false, false);
4793                 } catch (EDAMUserException e) {
4794                         setMessage("EDAMUserException: " +e.getMessage());
4795                         return;
4796                 } catch (EDAMSystemException e) {
4797                         setMessage("EDAMSystemException: " +e.getMessage());
4798                         return;
4799                 } catch (EDAMNotFoundException e) {
4800                         setMessage(tr("Note not found on server."));
4801                         QMessageBox.information(this, "Error", "This note could not be found on Evernote's servers.");
4802                         return;
4803                 } catch (TException e) {
4804                         setMessage("EDAMTransactionException: " +e.getMessage());
4805                         return;
4806                 }
4807                 
4808                 // If we've gotten this far, we have a good note.
4809                 if (historyWindow == null) {
4810                         historyWindow = new OnlineNoteHistory(logger, conn);
4811                         historyWindow.historyCombo.activated.connect(this, "reloadHistoryWindow(String)");
4812                         historyWindow.restoreAsNew.clicked.connect(this, "restoreHistoryNoteAsNew()");
4813                         historyWindow.restore.clicked.connect(this, "restoreHistoryNote()");
4814                 } else {
4815                         historyWindow.historyCombo.clear();
4816                 }
4817                 boolean isDirty = conn.getNoteTable().isNoteDirty(currentNoteGuid);
4818                 if (currentNote.getUpdateSequenceNum() != currentOnlineNote.getUpdateSequenceNum())
4819                         isDirty = true;
4820                 historyWindow.setCurrent(isDirty);
4821                 
4822                 loadHistoryWindowContent(currentOnlineNote);
4823                 historyWindow.load(versions);
4824                 setMessage(tr("History retrieved"));
4825                 waitCursor(false);
4826                 historyWindow.exec();
4827     }
4828     private Note reloadHistoryWindow(String selection) {
4829         waitCursor(true);
4830                 String fmt = Global.getDateFormat() + " " + Global.getTimeFormat();
4831                 String dateTimeFormat = new String(fmt);
4832                 SimpleDateFormat simple = new SimpleDateFormat(dateTimeFormat);
4833                 int index = -1;
4834                 int usn = 0;
4835                 
4836                 for (int i=0; i<versions.size(); i++) {
4837                         StringBuilder versionDate = new StringBuilder(simple.format(versions.get(i).getSaved()));
4838                         if (versionDate.toString().equals(selection))
4839                                 index = i;
4840                 }
4841                 
4842                 if (index > -1 || selection.indexOf("Current") > -1) {
4843                         Note historyNote = null;
4844                         try {
4845                                 if (index > -1) {
4846                                         usn = versions.get(index).getUpdateSequenceNum();
4847                                         historyNote = syncRunner.noteStore.getNoteVersion(syncRunner.authToken, currentNoteGuid, usn, true, true, true);
4848                                 } else
4849                                         historyNote = syncRunner.noteStore.getNote(syncRunner.authToken, currentNoteGuid, true,true,true,true);
4850                         } catch (EDAMUserException e) {
4851                                 setMessage("EDAMUserException: " +e.getMessage());
4852                                 waitCursor(false);
4853                                 return null;
4854                         } catch (EDAMSystemException e) {
4855                                 setMessage("EDAMSystemException: " +e.getMessage());
4856                                 waitCursor(false);
4857                                 return null;
4858                         } catch (EDAMNotFoundException e) {
4859                                 setMessage("EDAMNotFoundException: " +e.getMessage());
4860                                 waitCursor(false);
4861                                 return null;
4862                         } catch (TException e) {
4863                                 setMessage("EDAMTransactionException: " +e.getMessage());
4864                                 waitCursor(false);
4865                                 return null;
4866                         }
4867                         
4868                         waitCursor(false);
4869                         if (historyNote != null) 
4870                                 historyWindow.setContent(historyNote);
4871                         return historyNote;
4872                 }
4873                 waitCursor(false);
4874                 return null;
4875     }
4876     private void loadHistoryWindowContent(Note note) {
4877         note.setUpdateSequenceNum(0);
4878                 historyWindow.setContent(note); 
4879     }
4880     @SuppressWarnings("unused")
4881         private void restoreHistoryNoteAsNew() {
4882         setMessage(tr("Restoring as new note."));
4883         duplicateNote(reloadHistoryWindow(historyWindow.historyCombo.currentText()));
4884         setMessage(tr("Note has been restored as a new note."));
4885     }
4886     @SuppressWarnings("unused")
4887         private void restoreHistoryNote() {
4888         setMessage(tr("Restoring note."));
4889         Note n = reloadHistoryWindow(historyWindow.historyCombo.currentText());
4890         conn.getNoteTable().expungeNote(n.getGuid(), true, false);
4891         n.setActive(true);
4892         n.setDeleted(0);
4893                 for (int i=0; i<n.getResourcesSize(); i++) {
4894                         n.getResources().get(i).setActive(true);
4895                         conn.getNoteTable().noteResourceTable.saveNoteResource(n.getResources().get(i), true);
4896                 }
4897         listManager.addNote(n);
4898         conn.getNoteTable().addNote(n, true);
4899         refreshEvernoteNote(true);
4900         setMessage(tr("Note has been restored."));
4901     }
4902     @SuppressWarnings("unused")
4903         private void setupSelectiveSync() {
4904         
4905         // Get a list of valid notebooks
4906         List<Notebook> notebooks = null; 
4907         List<Tag> tags = null;
4908         List<LinkedNotebook> linkedNotebooks = null;
4909         try {
4910                         notebooks = syncRunner.noteStore.listNotebooks(syncRunner.authToken);
4911                         tags = syncRunner.noteStore.listTags(syncRunner.authToken);
4912                         linkedNotebooks = syncRunner.noteStore.listLinkedNotebooks(syncRunner.authToken);
4913                 } catch (EDAMUserException e) {
4914                         setMessage("EDAMUserException: " +e.getMessage());
4915                         return;
4916                 } catch (EDAMSystemException e) {
4917                         setMessage("EDAMSystemException: " +e.getMessage());
4918                         return;
4919                 } catch (TException e) {
4920                         setMessage("EDAMTransactionException: " +e.getMessage());
4921                         return;
4922                 } catch (EDAMNotFoundException e) {
4923                         setMessage("EDAMNotFoundException: " +e.getMessage());
4924                         return;
4925                 }
4926         
4927                 // Split up notebooks into synchronized & non-synchronized
4928         List<Notebook> ignoredBooks = new ArrayList<Notebook>();
4929         List<String> dbIgnoredNotebooks = conn.getSyncTable().getIgnoreRecords("NOTEBOOK");
4930         
4931         for (int i=notebooks.size()-1; i>=0; i--) {
4932                 for (int j=0; j<dbIgnoredNotebooks.size(); j++) {
4933                         if (notebooks.get(i).getGuid().equalsIgnoreCase(dbIgnoredNotebooks.get(j))) {
4934                                 ignoredBooks.add(notebooks.get(i));
4935                                 j=dbIgnoredNotebooks.size();
4936                         }
4937                 }
4938         }
4939         
4940         // split up tags into synchronized & non-synchronized
4941         List<Tag> ignoredTags = new ArrayList<Tag>();
4942         List<String> dbIgnoredTags = conn.getSyncTable().getIgnoreRecords("TAG");
4943         
4944         for (int i=tags.size()-1; i>=0; i--) {
4945                 for (int j=0; j<dbIgnoredTags.size(); j++) {
4946                         if (tags.get(i).getGuid().equalsIgnoreCase(dbIgnoredTags.get(j))) {
4947                                 ignoredTags.add(tags.get(i));
4948                                 j=dbIgnoredTags.size();
4949                         }
4950                 }
4951         }
4952         
4953         // split up linked notebooks into synchronized & non-synchronized
4954         List<LinkedNotebook> ignoredLinkedNotebooks = new ArrayList<LinkedNotebook>();
4955         List<String> dbIgnoredLinkedNotebooks = conn.getSyncTable().getIgnoreRecords("LINKEDNOTEBOOK");
4956         for (int i=linkedNotebooks.size()-1; i>=0; i--) {
4957                 String notebookGuid = linkedNotebooks.get(i).getGuid();
4958                 for (int j=0; j<dbIgnoredLinkedNotebooks.size(); j++) {
4959                         if (notebookGuid.equalsIgnoreCase(dbIgnoredLinkedNotebooks.get(j))) {
4960                                 ignoredLinkedNotebooks.add(linkedNotebooks.get(i));
4961                                 j=dbIgnoredLinkedNotebooks.size();
4962                         }
4963                 }
4964         }
4965         
4966                 IgnoreSync ignore = new IgnoreSync(notebooks, ignoredBooks, tags, ignoredTags, linkedNotebooks, ignoredLinkedNotebooks);
4967                 ignore.exec();
4968                 if (!ignore.okClicked())
4969                         return;
4970                 
4971                 waitCursor(true);
4972                 
4973                 // Clear out old notebooks & add  the new ones
4974                 List<String> oldIgnoreNotebooks = conn.getSyncTable().getIgnoreRecords("NOTEBOOK");
4975                 for (int i=0; i<oldIgnoreNotebooks.size(); i++) {
4976                         conn.getSyncTable().deleteRecord("IGNORENOTEBOOK-"+oldIgnoreNotebooks.get(i));
4977                 }
4978                 
4979                 List<String> newNotebooks = new ArrayList<String>();
4980                 for (int i=ignore.getIgnoredBookList().count()-1; i>=0; i--) {
4981                         String text = ignore.getIgnoredBookList().takeItem(i).text();
4982                         for (int j=0; j<notebooks.size(); j++) {
4983                                 if (notebooks.get(j).getName().equalsIgnoreCase(text)) {
4984                                         Notebook n = notebooks.get(j);
4985                                         conn.getSyncTable().addRecord("IGNORENOTEBOOK-"+n.getGuid(), n.getGuid());
4986                                         j=notebooks.size();
4987                                         newNotebooks.add(n.getGuid());
4988                                 }
4989                         }
4990                 }
4991                 
4992                 // Clear out old tags & add new ones
4993                 List<String> oldIgnoreTags = conn.getSyncTable().getIgnoreRecords("TAG");
4994                 for (int i=0; i<oldIgnoreTags.size(); i++) {
4995                         conn.getSyncTable().deleteRecord("IGNORETAG-"+oldIgnoreTags.get(i));
4996                 }
4997                 
4998                 List<String> newTags = new ArrayList<String>();
4999                 for (int i=ignore.getIgnoredTagList().count()-1; i>=0; i--) {
5000                         String text = ignore.getIgnoredTagList().takeItem(i).text();
5001                         for (int j=0; j<tags.size(); j++) {
5002                                 if (tags.get(j).getName().equalsIgnoreCase(text)) {
5003                                         Tag t = tags.get(j);
5004                                         conn.getSyncTable().addRecord("IGNORETAG-"+t.getGuid(), t.getGuid());
5005                                         newTags.add(t.getGuid());
5006                                         j=tags.size();
5007                                 }
5008                         }
5009                 }
5010                 
5011                 // Clear out old tags & add new ones
5012                 List<String> oldIgnoreLinkedNotebooks = conn.getSyncTable().getIgnoreRecords("LINKEDNOTEBOOK");
5013                 for (int i=0; i<oldIgnoreLinkedNotebooks.size(); i++) {
5014                         conn.getSyncTable().deleteRecord("IGNORELINKEDNOTEBOOK-"+oldIgnoreLinkedNotebooks.get(i));
5015                 }
5016                 
5017                 List<String> newLinked = new ArrayList<String>();
5018                 for (int i=ignore.getIgnoredLinkedNotebookList().count()-1; i>=0; i--) {
5019                         String text = ignore.getIgnoredLinkedNotebookList().takeItem(i).text();
5020                         for (int j=0; j<linkedNotebooks.size(); j++) {
5021                                 if (linkedNotebooks.get(j).getShareName().equalsIgnoreCase(text)) {
5022                                         LinkedNotebook t = linkedNotebooks.get(j);
5023                                         conn.getSyncTable().addRecord("IGNORELINKEDNOTEBOOK-"+t.getGuid(), t.getGuid());
5024                                         newLinked.add(t.getGuid());
5025                                         j=linkedNotebooks.size();
5026                                 }
5027                         }
5028                 }
5029                 
5030                 conn.getNoteTable().expungeIgnoreSynchronizedNotes(newNotebooks, newTags, newLinked);
5031                 waitCursor(false);
5032                 refreshLists();
5033     }
5034     
5035     
5036         //**********************************************************
5037         //**********************************************************
5038         //* XML Modifying methods
5039         //**********************************************************
5040         //**********************************************************
5041         // An error has happended fetching a resource.  let the user know
5042         private void resourceErrorMessage() {
5043                 if (inkNote)
5044                         return;
5045                 QMessageBox.information(this, tr("DOUGH!!!"), tr("Well, this is embarrassing."+
5046                 "\n\nSome attachments or images for this note appear to be missing from my database.\n"+
5047                 "In a perfect world this wouldn't happen, but it has.\n" +
5048                 "It is embarasing when a program like me, designed to save all your\n"+
5049                 "precious data, has a problem finding data.\n\n" +
5050                 "I guess life isn't fair, but I'll survive.  Somehow...\n\n" +
5051                 "In the mean time, I'm not going to let you make changes to this note.\n" +
5052                 "Don't get angry.  I'm doing it to prevent you from messing up\n"+
5053                 "this note on the Evernote servers.  Sorry."+
5054                 "\n\nP.S. You might want to re-synchronize to see if it corrects this problem.\nWho knows, you might get lucky."));
5055                 inkNote = true;
5056                 browserWindow.setReadOnly(true);
5057         }
5058
5059         
5060         
5061         
5062         //**********************************************************
5063         //**********************************************************
5064         //* Timer functions
5065         //**********************************************************
5066         //**********************************************************
5067         // We should now do a sync with Evernote
5068         private void syncTimer() {
5069                 logger.log(logger.EXTREME, "Entering NeverNote.syncTimer()");
5070                 syncRunner.syncNeeded = true;
5071                 syncRunner.disableUploads = Global.disableUploads;
5072                 syncStart();
5073                 logger.log(logger.EXTREME, "Leaving NeverNote.syncTimer()");
5074         }
5075         private void syncStart() {
5076                 logger.log(logger.EXTREME, "Entering NeverNote.syncStart()");
5077                 saveNote();
5078                 if (!syncRunning && Global.isConnected) {
5079                         syncRunner.setConnected(true);
5080                         syncRunner.setKeepRunning(Global.keepRunning);
5081                         syncRunner.syncDeletedContent = Global.synchronizeDeletedContent();
5082                         
5083                         if (syncThreadsReady > 0) {
5084                                 indexRunner.interrupt = true;
5085                                 saveNoteIndexWidth();
5086                                 saveNoteColumnPositions();
5087                                 if (syncRunner.addWork("SYNC")) {
5088                                         syncRunning = true;
5089                                         syncRunner.syncNeeded = true;
5090                                         syncThreadsReady--;
5091                                 }                               
5092                         }
5093                 }
5094                 logger.log(logger.EXTREME, "Leaving NeverNote.syncStart");
5095         }
5096         @SuppressWarnings("unused")
5097         private void syncThreadComplete(Boolean refreshNeeded) {
5098                 setMessage(tr("Finalizing Synchronization"));
5099                 syncThreadsReady++;
5100                 syncRunning = false;
5101                 syncRunner.syncNeeded = false;
5102                 synchronizeAnimationTimer.stop();
5103                 synchronizeButton.setIcon(new QIcon(iconPath+"synchronize.png"));
5104                 saveNote();
5105                 if (currentNote == null) {
5106                         currentNote = conn.getNoteTable().getNote(currentNoteGuid, false, false, false, false, true);
5107                 }
5108                 listManager.setUnsynchronizedNotes(conn.getNoteTable().getUnsynchronizedGUIDs());
5109                 noteIndexUpdated(false);
5110                 noteTableView.selectionModel().blockSignals(true);
5111                 scrollToGuid(currentNoteGuid);
5112                 noteTableView.selectionModel().blockSignals(false);
5113                 refreshEvernoteNote(false);
5114                 scrollToGuid(currentNoteGuid);
5115                 waitCursor(false);
5116                 if (!syncRunner.error)
5117                         setMessage(tr("Synchronization Complete"));
5118                 else
5119                         setMessage(tr("Synchronization completed with errors.  Please check the log for details."));
5120                 logger.log(logger.MEDIUM, "Sync complete.");
5121         }   
5122         public void saveUploadAmount(long t) {
5123                 Global.saveUploadAmount(t);
5124         }
5125         public void saveUserInformation(User user) {
5126                 Global.saveUserInformation(user);
5127         }
5128         public void saveEvernoteUpdateCount(int i) {
5129                 Global.saveEvernoteUpdateCount(i);
5130         }
5131         public void refreshLists() {
5132                 logger.log(logger.EXTREME, "Entering NeverNote.refreshLists");
5133                 updateQuotaBar();
5134                 listManager.refreshLists(currentNote, noteDirty, browserWindow.getContent());
5135                 tagIndexUpdated(true);
5136                 notebookIndexUpdated();
5137                 savedSearchIndexUpdated();
5138                 listManager.loadNotesIndex();
5139
5140                 noteTableView.selectionModel().blockSignals(true);
5141         noteIndexUpdated(true);
5142                 noteTableView.selectionModel().blockSignals(false);
5143                 logger.log(logger.EXTREME, "Leaving NeverNote.refreshLists");
5144         }
5145
5146         
5147         @SuppressWarnings("unused")
5148         private void authTimer() {
5149         Calendar cal = Calendar.getInstance();
5150                 
5151         // If we are not connected let's get out of here
5152         if (!Global.isConnected)
5153                 return;
5154                 
5155                 // If this is the first time through, then we need to set this
5156  //             if (syncRunner.authRefreshTime == 0 || cal.getTimeInMillis() > syncRunner.authRefreshTime) 
5157 //                      syncRunner.authRefreshTime = cal.getTimeInMillis();
5158                 
5159 //              long now = new Date().getTime();
5160 //              if (now > Global.authRefreshTime && Global.isConnected) {
5161                         syncRunner.authRefreshNeeded = true;
5162                         syncStart();
5163 //              }
5164         }
5165         @SuppressWarnings("unused")
5166         private void authRefreshComplete(boolean goodSync) {
5167                 logger.log(logger.EXTREME, "Entering NeverNote.authRefreshComplete");
5168                 Global.isConnected = syncRunner.isConnected;
5169                 if (goodSync) {
5170 //                      authTimer.start((int)syncRunner.authTimeRemaining/4);
5171                         authTimer.start(1000*60*15);
5172                         logger.log(logger.LOW, "Authentication token has been renewed");
5173 //                      setMessage("Authentication token has been renewed.");
5174                 } else {
5175                         authTimer.start(1000*60*5);
5176                         logger.log(logger.LOW, "Authentication token renew has failed - retry in 5 minutes.");
5177 //                      setMessage("Authentication token renew has failed - retry in 5 minutes.");
5178                 }
5179                 logger.log(logger.EXTREME, "Leaving NeverNote.authRefreshComplete");
5180         }
5181         
5182         
5183         @SuppressWarnings("unused")
5184         private synchronized void indexTimer() {
5185                 logger.log(logger.EXTREME, "Index timer activated.  Sync running="+syncRunning);
5186                 if (syncRunning) 
5187                         return;
5188                 if (!indexDisabled && indexRunner.idle) { 
5189                         indexRunner.addWork("SCAN");
5190                 }
5191                 logger.log(logger.EXTREME, "Leaving neverNote index timer");
5192         }
5193
5194         @SuppressWarnings("unused")
5195         private void indexStarted() {
5196                 setMessage(tr("Indexing notes"));
5197         }
5198         @SuppressWarnings("unused")
5199         private void indexComplete() {
5200                 setMessage(tr("Index complete"));
5201         }
5202         @SuppressWarnings("unused")
5203         private synchronized void toggleNoteIndexing() {
5204                 logger.log(logger.HIGH, "Entering NeverNote.toggleIndexing");
5205                 indexDisabled = !indexDisabled;
5206                 if (!indexDisabled)
5207                         setMessage(tr("Indexing is now enabled."));
5208                 else
5209                         setMessage(tr("Indexing is now disabled."));
5210                 menuBar.disableIndexing.setChecked(indexDisabled);
5211         logger.log(logger.HIGH, "Leaving NeverNote.toggleIndexing");
5212     }  
5213         
5214         @SuppressWarnings("unused")
5215         private void threadMonitorCheck() {
5216                 int MAX=3;
5217                 
5218                 
5219                 boolean alive;
5220                 alive = listManager.threadCheck(Global.tagCounterThreadId);
5221                 if (!alive) {
5222                         tagDeadCount++;
5223                         if (tagDeadCount > MAX)
5224                                 QMessageBox.information(this, tr("A thread his died."), tr("It appears as the tag counter thread has died.  I recommend "+
5225                                 "checking stopping NeverNote, saving the logs for later viewing, and restarting.  Sorry."));
5226                 } else
5227                         tagDeadCount=0;
5228                 
5229                 alive = listManager.threadCheck(Global.notebookCounterThreadId);
5230                 if (!alive) {
5231                         notebookThreadDeadCount++;
5232                         QMessageBox.information(this, tr("A thread his died."), tr("It appears as the notebook counter thread has died.  I recommend "+
5233                         "checking stopping NeverNote, saving the logs for later viewing, and restarting.  Sorry."));
5234                 } else
5235                         notebookThreadDeadCount=0;
5236                 
5237                 alive = listManager.threadCheck(Global.trashCounterThreadId);
5238                 if (!alive) {
5239                         trashDeadCount++;
5240                         QMessageBox.information(this, tr("A thread his died."), ("It appears as the trash counter thread has died.  I recommend "+
5241                         "checking stopping NeverNote, saving the logs for later viewing, and restarting.  Sorry."));
5242                 } else
5243                         trashDeadCount = 0;
5244
5245                 alive = listManager.threadCheck(Global.saveThreadId);
5246                 if (!alive) {
5247                         saveThreadDeadCount++;
5248                         QMessageBox.information(this, tr("A thread his died."), tr("It appears as the note saver thread has died.  I recommend "+
5249                         "checking stopping NeverNote, saving the logs for later viewing, and restarting.  Sorry."));
5250                 } else
5251                         saveThreadDeadCount=0;
5252
5253                 if (!syncThread.isAlive()) {
5254                         syncThreadDeadCount++;
5255                         QMessageBox.information(this, tr("A thread his died."), tr("It appears as the synchronization thread has died.  I recommend "+
5256                         "checking stopping NeverNote, saving the logs for later viewing, and restarting.  Sorry."));
5257                 } else
5258                         syncThreadDeadCount=0;
5259
5260                 if (!indexThread.isAlive()) {
5261                         indexThreadDeadCount++;
5262                         QMessageBox.information(this, tr("A thread his died."), tr("It appears as the index thread has died.  I recommend "+
5263                         "checking stopping NeverNote, saving the logs for later viewing, and restarting.  Sorry."));
5264                 } else
5265                         indexThreadDeadCount=0;
5266
5267                 
5268         }
5269
5270         private void thumbnailTimer() {
5271                 if (Global.enableThumbnails() && conn.getNoteTable().getThumbnailNeededCount() > 1) {
5272                         thumbnailTimer.setInterval(10*1000);
5273                         thumbnailRunner.addWork("SCAN");
5274                 } else {
5275                         thumbnailTimer.setInterval(60*1000);
5276                 }
5277         }
5278         
5279         //**************************************************
5280         //* Backup & Restore
5281         //**************************************************
5282         @SuppressWarnings("unused")
5283         private void databaseBackup() {
5284                 QFileDialog fd = new QFileDialog(this);
5285                 fd.setFileMode(FileMode.AnyFile);
5286                 fd.setConfirmOverwrite(true);
5287                 fd.setWindowTitle(tr("Backup Database"));
5288                 fd.setFilter(tr("NeverNote Export (*.nnex);;All Files (*.*)"));
5289                 fd.setAcceptMode(AcceptMode.AcceptSave);
5290                 if (saveLastPath == null || saveLastPath.equals(""))
5291                         fd.setDirectory(System.getProperty("user.home"));
5292                 else
5293                         fd.setDirectory(saveLastPath);
5294                 if (fd.exec() == 0 || fd.selectedFiles().size() == 0) {
5295                         return;
5296                 }
5297                 
5298                 
5299         waitCursor(true);
5300         saveLastPath = fd.selectedFiles().get(0);
5301         saveLastPath = saveLastPath.substring(0,saveLastPath.lastIndexOf("/"));
5302         setMessage(tr("Backing up database"));
5303         saveNote();
5304 //      conn.backupDatabase(Global.getUpdateSequenceNumber(), Global.getSequenceDate());
5305         
5306         ExportData noteWriter = new ExportData(conn, true);
5307         String fileName = fd.selectedFiles().get(0);
5308
5309         if (!fileName.endsWith(".nnex"))
5310                 fileName = fileName +".nnex";
5311         noteWriter.exportData(fileName);
5312         setMessage(tr("Database backup completed."));
5313  
5314
5315         waitCursor(false);
5316         }
5317         @SuppressWarnings("unused")
5318         private void databaseRestore() {
5319                 if (QMessageBox.question(this, tr("Confirmation"),
5320                                 tr("This is used to restore a database from backups.\n" +
5321                                 "It is HIGHLY recommened that this only be used to populate\n" +
5322                                 "an empty database.  Restoring into a database that\n already has data" +
5323                                 " can cause problems.\n\nAre you sure you want to continue?"),
5324                                 QMessageBox.StandardButton.Yes, 
5325                                 QMessageBox.StandardButton.No)==StandardButton.No.value()) {
5326                                         return;
5327                                 }
5328                 
5329                 
5330                 QFileDialog fd = new QFileDialog(this);
5331                 fd.setFileMode(FileMode.ExistingFile);
5332                 fd.setConfirmOverwrite(true);
5333                 fd.setWindowTitle(tr("Restore Database"));
5334                 fd.setFilter(tr("NeverNote Export (*.nnex);;All Files (*.*)"));
5335                 fd.setAcceptMode(AcceptMode.AcceptOpen);
5336                 if (saveLastPath == null || saveLastPath.equals(""))
5337                         fd.setDirectory(System.getProperty("user.home"));
5338                 else
5339                         fd.setDirectory(saveLastPath);
5340                 if (fd.exec() == 0 || fd.selectedFiles().size() == 0) {
5341                         return;
5342                 }
5343                 
5344                 
5345                 waitCursor(true);
5346         saveLastPath = fd.selectedFiles().get(0);
5347         saveLastPath = saveLastPath.substring(0,saveLastPath.lastIndexOf("/"));
5348
5349                 setMessage(tr("Restoring database"));
5350         ImportData noteReader = new ImportData(conn, true);
5351         noteReader.importData(fd.selectedFiles().get(0));
5352         
5353         if (noteReader.lastError != 0) {
5354                 setMessage(noteReader.getErrorMessage());
5355                 logger.log(logger.LOW, "Restore problem: " +noteReader.lastError);
5356                 waitCursor(false);
5357                 return;
5358         }
5359         
5360         listManager.loadNoteTitleColors();
5361         refreshLists();
5362         refreshEvernoteNote(true);
5363         setMessage(tr("Database has been restored."));
5364         waitCursor(false);
5365         }
5366         @SuppressWarnings("unused")
5367         private void exportNotes() {
5368                 QFileDialog fd = new QFileDialog(this);
5369                 fd.setFileMode(FileMode.AnyFile);
5370                 fd.setConfirmOverwrite(true);
5371                 fd.setWindowTitle(tr("Backup Database"));
5372                 fd.setFilter(tr("NeverNote Export (*.nnex);;All Files (*.*)"));
5373                 fd.setAcceptMode(AcceptMode.AcceptSave);
5374                 fd.setDirectory(System.getProperty("user.home"));
5375                 if (fd.exec() == 0 || fd.selectedFiles().size() == 0) {
5376                         return;
5377                 }
5378                 
5379                 
5380         waitCursor(true);
5381         setMessage(tr("Exporting Notes"));
5382         saveNote();
5383         
5384                 if (selectedNoteGUIDs.size() == 0 && !currentNoteGuid.equals("")) 
5385                         selectedNoteGUIDs.add(currentNoteGuid);
5386                 
5387         ExportData noteWriter = new ExportData(conn, false, selectedNoteGUIDs);
5388         String fileName = fd.selectedFiles().get(0);
5389
5390         if (!fileName.endsWith(".nnex"))
5391                 fileName = fileName +".nnex";
5392         noteWriter.exportData(fileName);
5393         setMessage(tr("Export completed."));
5394  
5395
5396         waitCursor(false);
5397                 
5398         }
5399         @SuppressWarnings("unused")
5400         private void importNotes() {
5401                 QFileDialog fd = new QFileDialog(this);
5402                 fd.setFileMode(FileMode.ExistingFile);
5403                 fd.setConfirmOverwrite(true);
5404                 fd.setWindowTitle(tr("Import Notes"));
5405                 fd.setFilter(tr("NeverNote Export (*.nnex);;All Files (*.*)"));
5406                 fd.setAcceptMode(AcceptMode.AcceptOpen);
5407                 if (saveLastPath == null || saveLastPath.equals(""))
5408                         fd.setDirectory(System.getProperty("user.home"));
5409                 else
5410                         fd.setDirectory(saveLastPath);
5411                 if (fd.exec() == 0 || fd.selectedFiles().size() == 0) {
5412                         return;
5413                 }
5414                 
5415                 
5416         waitCursor(true);
5417         setMessage("Importing Notes");
5418         saveNote();
5419         
5420                 if (selectedNoteGUIDs.size() == 0 && !currentNoteGuid.equals("")) 
5421                         selectedNoteGUIDs.add(currentNoteGuid);
5422                 
5423         ImportData noteReader = new ImportData(conn, false);
5424         String fileName = fd.selectedFiles().get(0);
5425 //      saveLastPath.substring(0,fileName.lastIndexOf("/"));
5426
5427         if (!fileName.endsWith(".nnex"))
5428                 fileName = fileName +".nnex";
5429         if (selectedNotebookGUIDs != null && selectedNotebookGUIDs.size() > 0) 
5430                 noteReader.setNotebookGuid(selectedNotebookGUIDs.get(0));
5431         else
5432                 noteReader.setNotebookGuid(listManager.getNotebookIndex().get(0).getGuid());
5433   
5434         noteReader.importData(fileName);
5435         
5436         if (noteReader.lastError != 0) {
5437                 setMessage(noteReader.getErrorMessage());
5438                 logger.log(logger.LOW, "Import problem: " +noteReader.lastError);
5439                 waitCursor(false);
5440                 return;
5441         }
5442         
5443         listManager.loadNoteTitleColors();
5444         refreshLists();
5445         refreshEvernoteNote(false);
5446         setMessage(tr("Notes have been imported."));
5447         waitCursor(false);
5448         
5449         setMessage("Import completed.");
5450  
5451
5452         waitCursor(false);
5453                 
5454         }
5455         
5456         //**************************************************
5457         //* Duplicate a note 
5458         //**************************************************
5459         @SuppressWarnings("unused")
5460         private void duplicateNote() {
5461                 saveNote();
5462                 duplicateNote(currentNoteGuid);
5463         }
5464
5465         
5466         
5467         //**************************************************
5468         //* Folder Imports
5469         //**************************************************
5470         public void setupFolderImports() {
5471                 List<WatchFolderRecord> records = conn.getWatchFolderTable().getAll();
5472                 
5473                 if (importKeepWatcher == null)
5474                         importKeepWatcher = new QFileSystemWatcher();
5475                 if (importDeleteWatcher == null) {
5476                         importDeleteWatcher = new QFileSystemWatcher();
5477                         for (int i=0; i<records.size(); i++) {
5478                                 if (!records.get(i).keep)
5479                                         folderImportDelete(records.get(i).folder); 
5480                         }
5481                 }
5482
5483                                 
5484                 
5485 //              importKeepWatcher.addPath(records.get(i).folder.replace('\\', '/'));
5486                 for (int i=0; i<records.size(); i++) {
5487                         if (records.get(i).keep) 
5488                                 importKeepWatcher.addPath(records.get(i).folder);
5489                         else
5490                                 importDeleteWatcher.addPath(records.get(i).folder);
5491                 }
5492                 
5493                 importKeepWatcher.directoryChanged.connect(this, "folderImportKeep(String)");
5494                 importDeleteWatcher.directoryChanged.connect(this, "folderImportDelete(String)");
5495                 
5496                 // Look at the files already there so we don't import them again if a new file is created
5497                 if (importedFiles == null) {
5498                         importedFiles = new ArrayList<String>();
5499                         for (int j=0; j<records.size(); j++) {
5500                                 QDir dir = new QDir(records.get(j).folder);
5501                                 List<QFileInfo> list = dir.entryInfoList();
5502                                 for (int k=0; k<list.size(); k++) {
5503                                         if (list.get(k).isFile())
5504                                                 importedFiles.add(list.get(k).absoluteFilePath());
5505                                 }
5506                         }
5507                 }
5508         }
5509         public void folderImport() {
5510                 List<WatchFolderRecord> recs = conn.getWatchFolderTable().getAll();
5511                 WatchFolder dialog = new WatchFolder(recs, listManager.getNotebookIndex());
5512                 dialog.exec();
5513                 if (!dialog.okClicked())
5514                         return;
5515                 
5516                 // We have some sort of update.
5517                 if (importKeepWatcher.directories().size() > 0)
5518                         importKeepWatcher.removePaths(importKeepWatcher.directories());
5519                 if (importDeleteWatcher.directories().size() > 0)
5520                         importDeleteWatcher.removePaths(importDeleteWatcher.directories());
5521                 
5522                 conn.getWatchFolderTable().expungeAll();
5523                 // Start building from the table
5524                 for (int i=0; i<dialog.table.rowCount(); i++) {
5525                         QTableWidgetItem item = dialog.table.item(i, 0);
5526                         String dir = item.text();
5527                         item = dialog.table.item(i, 1);
5528                         String notebook = item.text();
5529                         item = dialog.table.item(i, 2);
5530                         boolean keep;
5531                         if (item.text().equalsIgnoreCase("Keep"))
5532                                 keep = true;
5533                         else
5534                                 keep = false;
5535                         
5536                         String guid = conn.getNotebookTable().findNotebookByName(notebook);
5537                         conn.getWatchFolderTable().addWatchFolder(dir, guid, keep, 0);
5538                 }
5539                 setupFolderImports();
5540         }
5541         
5542         public void folderImportKeep(String dirName) throws NoSuchAlgorithmException {
5543                 
5544                 String whichOS = System.getProperty("os.name");
5545                 if (whichOS.contains("Windows")) 
5546                         dirName = dirName.replace('/','\\');
5547                 
5548                 FileImporter importer = new FileImporter(logger, conn);
5549                 
5550                 QDir dir = new QDir(dirName);
5551                 List<QFileInfo> list = dir.entryInfoList();
5552                 String notebook = conn.getWatchFolderTable().getNotebook(dirName);
5553
5554                 for (int i=0; i<list.size(); i++){
5555                         
5556                         boolean redundant = false;
5557                         // Check if we've already imported this one or if it existed before
5558                         for (int j=0; j<importedFiles.size(); j++) {
5559                                 if (importedFiles.get(j).equals(list.get(i).absoluteFilePath()))
5560                                         redundant = true;
5561                         }
5562                         
5563                         if (!redundant) {
5564                                 importer.setFileInfo(list.get(i));
5565                                 importer.setFileName(list.get(i).absoluteFilePath());
5566                         
5567                         
5568                                 if (list.get(i).isFile() && importer.isValidType()) {
5569                         
5570                                         if (!importer.importFile()) {
5571                                                 // If we can't get to the file, it is probably locked.  We'll try again later.
5572                                                 logger.log(logger.LOW, "Unable to save externally edited file.  Saving for later.");
5573                                                 importFilesKeep.add(list.get(i).absoluteFilePath());
5574                                                 return;
5575                                         }
5576
5577                                         Note newNote = importer.getNote();
5578                                         newNote.setNotebookGuid(notebook);
5579                                         newNote.setTitle(dir.at(i));
5580                                         listManager.addNote(newNote);
5581                                         conn.getNoteTable().addNote(newNote, true);
5582                                         listManager.getUnsynchronizedNotes().add(newNote.getGuid());
5583                                         noteTableView.insertRow(newNote, true, -1);
5584                                         listManager.updateNoteContent(newNote.getGuid(), importer.getNoteContent());
5585                                         listManager.countNotebookResults(listManager.getNoteIndex());
5586                                         importedFiles.add(list.get(i).absoluteFilePath());
5587                                 }
5588                         }
5589                 }
5590         
5591         
5592         }
5593         
5594         public void folderImportDelete(String dirName) {
5595                 
5596                 String whichOS = System.getProperty("os.name");
5597                 if (whichOS.contains("Windows")) 
5598                         dirName = dirName.replace('/','\\');
5599                 
5600                 FileImporter importer = new FileImporter(logger, conn);
5601                 QDir dir = new QDir(dirName);
5602                 List<QFileInfo> list = dir.entryInfoList();
5603                 String notebook = conn.getWatchFolderTable().getNotebook(dirName);
5604                 
5605                 for (int i=0; i<list.size(); i++){
5606                         importer.setFileInfo(list.get(i));
5607                         importer.setFileName(list.get(i).absoluteFilePath());
5608                         
5609                         if (list.get(i).isFile() && importer.isValidType()) {
5610                 
5611                                 if (!importer.importFile()) {
5612                                         // If we can't get to the file, it is probably locked.  We'll try again later.
5613                                         logger.log(logger.LOW, "Unable to save externally edited file.  Saving for later.");
5614                                         importFilesKeep.add(list.get(i).absoluteFilePath());
5615                                         return;
5616                                 }
5617                 
5618                                 Note newNote = importer.getNote();
5619                                 newNote.setNotebookGuid(notebook);
5620                                 newNote.setTitle(dir.at(i));
5621                                 listManager.addNote(newNote);
5622                                 conn.getNoteTable().addNote(newNote, true);
5623                                 listManager.getUnsynchronizedNotes().add(newNote.getGuid());
5624                                 noteTableView.insertRow(newNote, true, -1);
5625                                 listManager.updateNoteContent(newNote.getGuid(), importer.getNoteContent());
5626                                 listManager.countNotebookResults(listManager.getNoteIndex());
5627                                 dir.remove(dir.at(i));
5628                         }
5629                 }
5630         }
5631         
5632         
5633         //**************************************************
5634         //* External events
5635         //**************************************************
5636         private void externalFileEdited(String fileName) throws NoSuchAlgorithmException {
5637                 logger.log(logger.HIGH, "Entering exernalFileEdited");
5638
5639                 // Strip URL prefix and base dir path
5640                 String dPath = FileUtils.toForwardSlashedPath(Global.getFileManager().getResDirPath());
5641                 String name = fileName.replace(dPath, "");
5642                 int pos = name.lastIndexOf('.');
5643                 String guid = name;
5644                 if (pos > -1) {
5645                         guid = guid.substring(0,pos);
5646                 }
5647                 pos = name.lastIndexOf(Global.attachmentNameDelimeter);
5648                 if (pos > -1) {
5649                         guid = name.substring(0, pos);
5650                 }
5651                 
5652                 QFile file = new QFile(fileName);
5653         if (!file.open(new QIODevice.OpenMode(QIODevice.OpenModeFlag.ReadOnly))) {
5654                 // If we can't get to the file, it is probably locked.  We'll try again later.
5655                 logger.log(logger.LOW, "Unable to save externally edited file.  Saving for later.");
5656                 externalFiles.add(fileName);
5657                 return;
5658                 }
5659                 QByteArray binData = file.readAll();
5660         file.close();
5661         if (binData.size() == 0) {
5662                 // If we can't get to the file, it is probably locked.  We'll try again later.
5663                 logger.log(logger.LOW, "Unable to save externally edited file.  Saving for later.");
5664                 externalFiles.add(fileName);
5665                 return;
5666         }
5667         
5668         Resource r = conn.getNoteTable().noteResourceTable.getNoteResource(guid, true);
5669         if (r==null)
5670                 r = conn.getNoteTable().noteResourceTable.getNoteResource(Global.resourceMap.get(guid), true);
5671         if (r == null || r.getData() == null || r.getData().getBody() == null)
5672                 return;
5673         String oldHash = Global.byteArrayToHexString(r.getData().getBodyHash());
5674         MessageDigest md = MessageDigest.getInstance("MD5");
5675                 md.update(binData.toByteArray());
5676                 byte[] hash = md.digest();
5677         String newHash = Global.byteArrayToHexString(hash);
5678         if (r.getNoteGuid().equalsIgnoreCase(currentNoteGuid)) {
5679                 updateResourceContentHash(browserWindow, r.getGuid(), oldHash, newHash);
5680         }
5681         if (externalWindows.containsKey(r.getNoteGuid())) {
5682                 updateResourceContentHash(externalWindows.get(r.getNoteGuid()).getBrowserWindow(), 
5683                                 r.getGuid(), oldHash, newHash);
5684         }
5685         conn.getNoteTable().updateResourceContentHash(r.getNoteGuid(), oldHash, newHash);
5686         Data data = r.getData();
5687         data.setBody(binData.toByteArray());
5688         data.setBodyHash(hash);
5689         logger.log(logger.LOW, "externalFileEdited: " +data.getSize() +" bytes");
5690         r.setData(data);
5691         conn.getNoteTable().noteResourceTable.updateNoteResource(r,true);
5692         
5693         if (r.getNoteGuid().equals(currentNoteGuid)) {
5694                         QWebSettings.setMaximumPagesInCache(0);
5695                         QWebSettings.setObjectCacheCapacities(0, 0, 0);
5696                         refreshEvernoteNote(true);
5697                         browserWindow.getBrowser().triggerPageAction(WebAction.Reload);
5698         }
5699         
5700         if (externalWindows.containsKey(r.getNoteGuid())) {
5701                 QWebSettings.setMaximumPagesInCache(0);
5702                         QWebSettings.setObjectCacheCapacities(0, 0, 0);
5703                         externalWindows.get(r.getNoteGuid()).getBrowserWindow().getBrowser().triggerPageAction(WebAction.Reload);
5704                         
5705         }
5706         
5707                 logger.log(logger.HIGH, "Exiting externalFielEdited");
5708         }
5709         // This is a timer event that tries to save any external files that were edited.  This
5710         // is only needed if we couldn't save a file earlier.
5711         public void externalFileEditedSaver() {
5712                 for (int i=externalFiles.size()-1; i>=0; i--) {
5713                         try {
5714                                 logger.log(logger.MEDIUM, "Trying to save " +externalFiles.get(i));
5715                                 externalFileEdited(externalFiles.get(i));
5716                                 externalFiles.remove(i);
5717                         } catch (NoSuchAlgorithmException e) {e.printStackTrace();}
5718                 }
5719                 for (int i=0; i<importFilesKeep.size(); i++) {
5720                         try {
5721                                 logger.log(logger.MEDIUM, "Trying to save " +importFilesKeep.get(i));
5722                                 folderImportKeep(importFilesKeep.get(i));
5723                                 importFilesKeep.remove(i);
5724                         } catch (NoSuchAlgorithmException e) {e.printStackTrace();}
5725                 }
5726                 for (int i=0; i<importFilesDelete.size(); i++) {
5727                         logger.log(logger.MEDIUM, "Trying to save " +importFilesDelete.get(i));
5728                         folderImportDelete(importFilesDelete.get(i));
5729                         importFilesDelete.remove(i);
5730                 }
5731         }
5732         
5733         
5734         
5735         
5736         // If an attachment on the current note was edited, we need to update the current notes's hash
5737         // Update a note content's hash.  This happens if a resource is edited outside of NN
5738         public void updateResourceContentHash(BrowserWindow browser, String guid, String oldHash, String newHash) {
5739                 int position = browserWindow.getContent().indexOf("en-tag=\"en-media\" guid=\""+guid+"\" type=");
5740                 int endPos;
5741                 for (;position>-1;) {
5742                         endPos = browser.getContent().indexOf(">", position+1);
5743                         String oldSegment = browser.getContent().substring(position,endPos);
5744                         int hashPos = oldSegment.indexOf("hash=\"");
5745                         int hashEnd = oldSegment.indexOf("\"", hashPos+7);
5746                         String hash = oldSegment.substring(hashPos+6, hashEnd);
5747                         if (hash.equalsIgnoreCase(oldHash)) {
5748                                 String newSegment = oldSegment.replace(oldHash, newHash);
5749                                 String content = browser.getContent().substring(0,position) +
5750                                                  newSegment +
5751                                                  browser.getContent().substring(endPos);
5752                                 browser.getBrowser().setContent(new QByteArray(content));;
5753                         }
5754                         
5755                         position = browser.getContent().indexOf("en-tag=\"en-media\" guid=\""+guid+"\" type=", position+1);
5756                 }
5757         }
5758
5759
5760         //*************************************************
5761         //* Minimize to tray
5762         //*************************************************
5763         @Override
5764         public void changeEvent(QEvent e) {
5765                 if (e.type() == QEvent.Type.WindowStateChange) {
5766                         if (isMinimized() && Global.showTrayIcon()) {
5767                                 e.accept();
5768                                 QTimer.singleShot(10, this, "hide()");
5769                                 return;
5770                         }
5771                         if (isMaximized())
5772                                 windowMaximized = true;
5773                         else 
5774                                 windowMaximized = false;
5775                 }
5776         }
5777         
5778         //*************************************************
5779         //* Check database userid & passwords
5780         //*************************************************
5781         private static boolean databaseCheck(String url,String userid, String userPassword, String cypherPassword) {
5782                         Connection connection;
5783                         
5784                         try {
5785                                 Class.forName("org.h2.Driver");
5786                         } catch (ClassNotFoundException e1) {
5787                                 e1.printStackTrace();
5788                                 System.exit(16);
5789                         }
5790
5791                         try {
5792                                 String passwordString = null;
5793                                 if (cypherPassword==null || cypherPassword.trim().equals(""))
5794                                         passwordString = userPassword;
5795                                 else
5796                                         passwordString = cypherPassword+" "+userPassword;
5797                                 connection = DriverManager.getConnection(url,userid,passwordString);
5798                         } catch (SQLException e) {
5799                                 return false;
5800                         }
5801                         try {
5802                                 connection.close();
5803                         } catch (SQLException e) {
5804                                 e.printStackTrace();
5805                         }
5806                         return true;
5807         }
5808
5809 }