OSDN Git Service

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