OSDN Git Service

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