OSDN Git Service

a1df0c8beca041ce4e42428404e187b48c4beaf6
[neighbornote/NeighborNote.git] / src / cx / fbn / nevernote / NeverNote.java
1 /*
2  * This file is part of NeverNote 
3  * Copyright 2009 Randy Baumgarte
4  * 
5  * This file may be licensed under the terms of of the
6  * GNU General Public License Version 2 (the ``GPL'').
7  *
8  * Software distributed under the License is distributed
9  * on an ``AS IS'' basis, WITHOUT WARRANTY OF ANY KIND, either
10  * express or implied. See the GPL for the specific language
11  * governing rights and limitations.
12  *
13  * You should have received a copy of the GPL along with this
14  * program. If not, go to http://www.gnu.org/licenses/gpl.html
15  * or write to the Free Software Foundation, Inc.,
16  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17  *
18 */
19 package cx.fbn.nevernote;
20 import java.awt.Desktop;
21 import java.io.File;
22 import java.io.FileInputStream;
23 import java.io.FileNotFoundException;
24 import java.net.Authenticator;
25 import java.net.PasswordAuthentication;
26 import java.security.MessageDigest;
27 import java.security.NoSuchAlgorithmException;
28 import java.sql.Connection;
29 import java.sql.DriverManager;
30 import java.sql.SQLException;
31 import java.sql.Statement;
32 import java.text.SimpleDateFormat;
33 import java.util.ArrayList;
34 import java.util.Calendar;
35 import java.util.Collection;
36 import java.util.Collections;
37 import java.util.Comparator;
38 import java.util.Date;
39 import java.util.GregorianCalendar;
40 import java.util.HashMap;
41 import java.util.Iterator;
42 import java.util.List;
43 import java.util.SortedMap;
44 import java.util.Vector;
45
46 import org.apache.thrift.TException;
47 import org.h2.tools.ChangeFileEncryption;
48
49 import com.evernote.edam.error.EDAMNotFoundException;
50 import com.evernote.edam.error.EDAMSystemException;
51 import com.evernote.edam.error.EDAMUserException;
52 import com.evernote.edam.notestore.NoteFilter;
53 import com.evernote.edam.notestore.NoteVersionId;
54 import com.evernote.edam.type.Data;
55 import com.evernote.edam.type.Note;
56 import com.evernote.edam.type.NoteAttributes;
57 import com.evernote.edam.type.Notebook;
58 import com.evernote.edam.type.QueryFormat;
59 import com.evernote.edam.type.Resource;
60 import com.evernote.edam.type.SavedSearch;
61 import com.evernote.edam.type.Tag;
62 import com.evernote.edam.type.User;
63 import com.trolltech.qt.QThread;
64 import com.trolltech.qt.core.QByteArray;
65 import com.trolltech.qt.core.QDateTime;
66 import com.trolltech.qt.core.QDir;
67 import com.trolltech.qt.core.QEvent;
68 import com.trolltech.qt.core.QFile;
69 import com.trolltech.qt.core.QFileInfo;
70 import com.trolltech.qt.core.QFileSystemWatcher;
71 import com.trolltech.qt.core.QIODevice;
72 import com.trolltech.qt.core.QIODevice.OpenModeFlag;
73 import com.trolltech.qt.core.QLocale;
74 import com.trolltech.qt.core.QModelIndex;
75 import com.trolltech.qt.core.QSize;
76 import com.trolltech.qt.core.QTemporaryFile;
77 import com.trolltech.qt.core.QTextCodec;
78 import com.trolltech.qt.core.QThreadPool;
79 import com.trolltech.qt.core.QTimer;
80 import com.trolltech.qt.core.QTranslator;
81 import com.trolltech.qt.core.QUrl;
82 import com.trolltech.qt.core.Qt;
83 import com.trolltech.qt.core.Qt.BGMode;
84 import com.trolltech.qt.core.Qt.ItemDataRole;
85 import com.trolltech.qt.core.Qt.SortOrder;
86 import com.trolltech.qt.core.Qt.WidgetAttribute;
87 import com.trolltech.qt.gui.QAbstractItemView;
88 import com.trolltech.qt.gui.QAbstractItemView.ScrollHint;
89 import com.trolltech.qt.gui.QAction;
90 import com.trolltech.qt.gui.QApplication;
91 import com.trolltech.qt.gui.QCloseEvent;
92 import com.trolltech.qt.gui.QColor;
93 import com.trolltech.qt.gui.QComboBox;
94 import com.trolltech.qt.gui.QComboBox.InsertPolicy;
95 import com.trolltech.qt.gui.QDesktopServices;
96 import com.trolltech.qt.gui.QDialog;
97 import com.trolltech.qt.gui.QFileDialog;
98 import com.trolltech.qt.gui.QFileDialog.AcceptMode;
99 import com.trolltech.qt.gui.QFileDialog.FileMode;
100 import com.trolltech.qt.gui.QGridLayout;
101 import com.trolltech.qt.gui.QHBoxLayout;
102 import com.trolltech.qt.gui.QIcon;
103 import com.trolltech.qt.gui.QImage;
104 import com.trolltech.qt.gui.QLabel;
105 import com.trolltech.qt.gui.QListWidget;
106 import com.trolltech.qt.gui.QMainWindow;
107 import com.trolltech.qt.gui.QMenu;
108 import com.trolltech.qt.gui.QMessageBox;
109 import com.trolltech.qt.gui.QMessageBox.StandardButton;
110 import com.trolltech.qt.gui.QPainter;
111 import com.trolltech.qt.gui.QPalette.ColorRole;
112 import com.trolltech.qt.gui.QPixmap;
113 import com.trolltech.qt.gui.QPrintDialog;
114 import com.trolltech.qt.gui.QPrinter;
115 import com.trolltech.qt.gui.QProgressBar;
116 import com.trolltech.qt.gui.QSizePolicy;
117 import com.trolltech.qt.gui.QSizePolicy.Policy;
118 import com.trolltech.qt.gui.QSpinBox;
119 import com.trolltech.qt.gui.QSplashScreen;
120 import com.trolltech.qt.gui.QSplitter;
121 import com.trolltech.qt.gui.QStatusBar;
122 import com.trolltech.qt.gui.QSystemTrayIcon;
123 import com.trolltech.qt.gui.QTableWidgetItem;
124 import com.trolltech.qt.gui.QTextEdit;
125 import com.trolltech.qt.gui.QToolBar;
126 import com.trolltech.qt.gui.QTreeWidgetItem;
127 import com.trolltech.qt.webkit.QWebPage.WebAction;
128 import com.trolltech.qt.webkit.QWebSettings;
129
130 import cx.fbn.nevernote.config.InitializationException;
131 import cx.fbn.nevernote.config.StartupConfig;
132 import cx.fbn.nevernote.dialog.AccountDialog;
133 import cx.fbn.nevernote.dialog.ConfigDialog;
134 import cx.fbn.nevernote.dialog.DBEncryptDialog;
135 import cx.fbn.nevernote.dialog.DatabaseLoginDialog;
136 import cx.fbn.nevernote.dialog.DatabaseStatus;
137 import cx.fbn.nevernote.dialog.FindDialog;
138 import cx.fbn.nevernote.dialog.LoginDialog;
139 import cx.fbn.nevernote.dialog.NotebookArchive;
140 import cx.fbn.nevernote.dialog.NotebookEdit;
141 import cx.fbn.nevernote.dialog.OnlineNoteHistory;
142 import cx.fbn.nevernote.dialog.SavedSearchEdit;
143 import cx.fbn.nevernote.dialog.TagEdit;
144 import cx.fbn.nevernote.dialog.ThumbnailViewer;
145 import cx.fbn.nevernote.dialog.WatchFolder;
146 import cx.fbn.nevernote.gui.AttributeTreeWidget;
147 import cx.fbn.nevernote.gui.BrowserWindow;
148 import cx.fbn.nevernote.gui.DateAttributeFilterTable;
149 import cx.fbn.nevernote.gui.ExternalBrowse;
150 import cx.fbn.nevernote.gui.MainMenuBar;
151 import cx.fbn.nevernote.gui.NotebookTreeWidget;
152 import cx.fbn.nevernote.gui.SavedSearchTreeWidget;
153 import cx.fbn.nevernote.gui.TableView;
154 import cx.fbn.nevernote.gui.TagTreeWidget;
155 import cx.fbn.nevernote.gui.Thumbnailer;
156 import cx.fbn.nevernote.gui.TrashTreeWidget;
157 import cx.fbn.nevernote.sql.DatabaseConnection;
158 import cx.fbn.nevernote.sql.WatchFolderRecord;
159 import cx.fbn.nevernote.threads.IndexRunner;
160 import cx.fbn.nevernote.threads.SyncRunner;
161 import cx.fbn.nevernote.threads.ThumbnailRunner;
162 import cx.fbn.nevernote.utilities.AESEncrypter;
163 import cx.fbn.nevernote.utilities.ApplicationLogger;
164 import cx.fbn.nevernote.utilities.FileImporter;
165 import cx.fbn.nevernote.utilities.FileUtils;
166 import cx.fbn.nevernote.utilities.ListManager;
167 import cx.fbn.nevernote.utilities.SyncTimes;
168 import cx.fbn.nevernote.xml.ExportData;
169 import cx.fbn.nevernote.xml.ImportData;
170 import cx.fbn.nevernote.xml.NoteFormatter;
171
172
173 public class NeverNote extends QMainWindow{
174         
175         QStatusBar                              statusBar;                                      // Application status bar
176         
177         DatabaseConnection              conn;
178         
179         MainMenuBar                             menuBar;                                        // Main menu bar
180         FindDialog                              find;                                           // Text search in note dialog
181         List<String>                    emitLog;                                        // Messages displayed in the status bar;
182         QSystemTrayIcon                 trayIcon;                                       // little tray icon
183         QMenu                                   trayMenu;                                       // System tray menu
184         QAction                                 trayExitAction;                         // Exit the application
185         QAction                                 trayShowAction;                         // toggle the show/hide action          
186         QAction                                 trayAddNoteAction;                      // Add a note from the system tray
187         
188     NotebookTreeWidget          notebookTree;                           // List of notebooks
189     AttributeTreeWidget         attributeTree;                          // List of note attributes
190     TagTreeWidget                       tagTree;                                        // list of user created tags
191     SavedSearchTreeWidget       savedSearchTree;                        // list of saved searches
192     TrashTreeWidget                     trashTree;                                      // Trashcan
193     TableView                           noteTableView;                          //      List of notes (the widget).
194
195     public BrowserWindow        browserWindow;                          // Window containing browser & labels
196     public QToolBar             toolBar;                                        // The tool bar under the menu
197     QComboBox                           searchField;                            // search filter bar on the toolbar;
198     boolean                                     searchPerformed = false;        // Search was done?
199     QProgressBar                        quotaBar;                                       // The current quota usage
200     
201     ApplicationLogger           logger;
202     List<String>                        selectedNotebookGUIDs;          // List of notebook GUIDs
203     List<String>                        selectedTagGUIDs;                       // List of selected tag GUIDs
204     List<String>                        selectedNoteGUIDs;                      // List of selected notes
205     String                                      selectedSavedSearchGUID;        // Currently selected saved searches
206     private final HashMap<String, ExternalBrowse>       externalWindows;        // Notes being edited by an external window;
207     
208     NoteFilter                          filter;                                         // Note filter
209     String                                      currentNoteGuid;                        // GUID of the current note 
210     Note                                        currentNote;                            // The currently viewed note
211     boolean                                     noteDirty;                                      // Has the note been changed?
212     boolean                             inkNote;                    // if this is an ink note, it is read only
213   
214     ListManager                         listManager;                                    // DB runnable task
215     
216     List<QTemporaryFile>        tempFiles;                                      // Array of temporary files;
217     
218     QTimer                                      indexTimer;                                     // timer to start the index thread
219     IndexRunner                         indexRunner;                            // thread to index notes
220     QThread                                     indexThread;
221     
222     QTimer                                      syncTimer;                                      // Sync on an interval
223     QTimer                                      syncDelayTimer;                         // Sync delay to free up database
224     SyncRunner                          syncRunner;                                     // thread to do a sync.
225     QThread                                     syncThread;                                     // Thread which talks to evernote
226     ThumbnailRunner                     thumbnailRunner;                        // Runner for thumbnail thread
227     QThread                                     thumbnailThread;                        // Thread that generates pretty pictures
228     QTimer                                      saveTimer;                                      // Timer to save note contents
229     
230     QTimer                                      authTimer;                                      // Refresh authentication
231     QTimer                                      externalFileSaveTimer;          // Save files altered externally
232     QTimer                                      thumbnailTimer;                         // Wakeup & scan for thumbnails
233     List<String>                        externalFiles;                          // External files to save later
234     List<String>                        importFilesKeep;                        // Auto-import files to save later
235     List<String>                        importFilesDelete;                      // Auto-import files to save later
236     
237     int                                         indexTime;                                      // how often to try and index
238     boolean                                     indexRunning;                           // Is indexing running?
239     boolean                                     indexDisabled;                          // Is indexing disabled?
240     
241     int                                         syncThreadsReady;                       // number of sync threads that are free
242     int                                         syncTime;                                       // Sync interval
243     boolean                                     syncRunning;                            // Is sync running?
244     boolean                                     automaticSync;                          // do sync automatically?
245     QTreeWidgetItem                     attributeTreeSelected;
246
247     QAction                             prevButton;                                     // Go to the previous item viewed
248     QAction                             nextButton;                                     // Go to the next item in the history
249     QAction                             downButton;                                     // Go to the next item in the list
250     QAction                             upButton;                                       // Go to the prev. item in the list;
251     QAction                             synchronizeButton;                      // Synchronize with Evernote
252     QAction                             allNotesButton;                         // Reset & view all notes
253     QTimer                              synchronizeAnimationTimer;      // Timer to change animation button
254     double                              synchronizeIconAngle;           // Used to rotate sync icon
255     QAction                     printButton;                            // Print Button
256     QAction                             tagButton;                                      // Tag edit button
257     QAction                             attributeButton;                        // Attribute information button
258     QAction                     emailButton;                            // Email button
259     QAction                     deleteButton;                           // Delete button
260     QAction                             newButton;                                      // new Note Button;
261     QSpinBox                    zoomSpinner;                            // Zoom zoom
262     QAction                             searchClearButton;                      // Clear the search field
263     
264     QSplitter                   mainLeftRightSplitter;          // main splitter for left/right side
265     QSplitter                   leftSplitter1;                          // first left hand splitter
266     QSplitter                   browserIndexSplitter;           // splitter between note index & note text
267     
268     QFileSystemWatcher  importKeepWatcher;                      // Watch & keep auto-import
269     QFileSystemWatcher  importDeleteWatcher;            // Watch & Delete auto-import
270     List<String>                importedFiles;                          // History of imported files (so we don't import twice)
271     
272     OnlineNoteHistory   historyWindow;                          // online history window 
273     List<NoteVersionId> versions;                                       // history versions
274     
275     QTimer                              threadMonitorTimer;                     // Timer to watch threads.
276     int                                 dbThreadDeadCount=0;            // number of consecutive dead times for the db thread
277     int                                 syncThreadDeadCount=0;          // number of consecutive dead times for the sync thread
278     int                                 indexThreadDeadCount=0;         // number of consecutive dead times for the index thread
279     int                                 notebookThreadDeadCount=0;      // number of consecutive dead times for the notebook thread
280     int                                 tagDeadCount=0;                         // number of consecutive dead times for the tag thread
281     int                                 trashDeadCount=0;                       // number of consecutive dead times for the trash thread
282     int                                 saveThreadDeadCount=0;          // number of consecutive dead times for the save thread
283     
284     HashMap<String, String>             noteCache;                      // Cash of note content 
285     List<String>                historyGuids;                           // GUIDs of previously viewed items
286     int                                 historyPosition;                        // Position within the viewed items
287     boolean                             fromHistory;                            // Is this from the history queue?
288     String                              trashNoteGuid;                          // Guid to restore / set into or out of trash to save position
289     List<Thumbnailer>   thumbGenerators;                                // generate preview image
290     ThumbnailViewer             thumbnailViewer;                        // View preview thumbnail; 
291     boolean                             encryptOnShutdown;                      // should I encrypt when I close?
292     boolean                             decryptOnShutdown;                      // should I decrypt on shutdown;
293     String                              encryptCipher;                          // What cipher should I use?
294     Signal0                     minimizeToTray;
295     boolean                             windowMaximized = false;        // Keep track of the window state for restores
296     List<String>                pdfReadyQueue;                          // Queue of PDFs that are ready to be rendered.
297     
298     
299     String iconPath = new String("classpath:cx/fbn/nevernote/icons/");
300         
301         
302     //***************************************************************
303     //***************************************************************
304     //** Constructor & main entry point
305     //***************************************************************
306     //***************************************************************
307     // Application Constructor  
308         public NeverNote(DatabaseConnection dbConn)  {
309                 conn = dbConn;          
310                 if (conn.getConnection() == null) {
311                         String msg = "Unable to connect to the database.\n\nThe most probable reason is that some other process\n" +
312                                 "is accessing the database or NeverNote is already running.\n\n" +
313                                 "Please end any other process or shutdown the other NeverNote before starting.\n\nExiting program.";
314                         
315             QMessageBox.critical(null, "Database Connection Error",msg);
316                         System.exit(16);
317                 }
318
319                 thread().setPriority(Thread.MAX_PRIORITY);
320                 
321                 logger = new ApplicationLogger("nevernote.log");
322                 logger.log(logger.HIGH, "Starting Application");
323                 
324                 decryptOnShutdown = false;
325                 encryptOnShutdown = false;
326                 conn.checkDatabaseVersion();
327                 
328                 
329                 
330                 // Start building the invalid XML tables
331                 Global.invalidElements = conn.getInvalidXMLTable().getInvalidElements();
332                 List<String> elements = conn.getInvalidXMLTable().getInvalidAttributeElements();
333                 
334                 for (int i=0; i<elements.size(); i++) {
335                         Global.invalidAttributes.put(elements.get(i), conn.getInvalidXMLTable().getInvalidAttributes(elements.get(i)));
336                 }
337                 
338                 logger.log(logger.EXTREME, "Starting GUI build");
339
340                 QTranslator nevernoteTranslator = new QTranslator();
341                 nevernoteTranslator.load(Global.getFileManager().getTranslateFilePath("nevernote_" + QLocale.system().name() + ".qm"));
342                 QApplication.instance().installTranslator(nevernoteTranslator);
343
344                 Global.originalPalette = QApplication.palette();
345                 QApplication.setStyle(Global.getStyle());
346                 if (Global.useStandardPalette())
347                         QApplication.setPalette(QApplication.style().standardPalette());
348         setWindowTitle("NeverNote");
349
350         mainLeftRightSplitter = new QSplitter();
351         setCentralWidget(mainLeftRightSplitter);
352         leftSplitter1 = new QSplitter();
353         leftSplitter1.setOrientation(Qt.Orientation.Vertical);
354                 
355         browserIndexSplitter = new QSplitter();
356         browserIndexSplitter.setOrientation(Qt.Orientation.Vertical);
357         
358         //* Setup threads & thread timers
359         int indexRunnerCount = Global.getIndexThreads();
360         indexRunnerCount = 1;
361         QThreadPool.globalInstance().setMaxThreadCount(indexRunnerCount+5);     // increase max thread count
362
363                 logger.log(logger.EXTREME, "Building list manager");
364         listManager = new ListManager(conn, logger);
365         
366                 logger.log(logger.EXTREME, "Building index runners & timers");
367         indexRunner = new IndexRunner("indexRunner.log", Global.getDatabaseUrl(), Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword);
368                 indexThread = new QThread(indexRunner, "Index Thread");
369                 indexThread.start();
370                 
371         synchronizeAnimationTimer = new QTimer();
372         synchronizeAnimationTimer.timeout.connect(this, "updateSyncButton()");
373         
374                 indexTimer = new QTimer();
375                 indexTime = 1000*Global.getIndexThreadSleepInterval();  
376                 indexTimer.start(indexTime);  // Start indexing timer
377                 indexTimer.timeout.connect(this, "indexTimer()");
378                 indexDisabled = false;
379                 indexRunning = false;
380                                 
381                 logger.log(logger.EXTREME, "Setting sync thread & timers");
382                 syncThreadsReady=1;
383                 syncRunner = new SyncRunner("syncRunner.log", Global.getDatabaseUrl(), Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword);
384                 syncTime = new SyncTimes().timeValue(Global.getSyncInterval());
385                 syncTimer = new QTimer();
386                 syncTimer.timeout.connect(this, "syncTimer()");
387         syncRunner.status.message.connect(this, "setMessage(String)");
388         syncRunner.syncSignal.finished.connect(this, "syncThreadComplete(Boolean)");
389         syncRunner.syncSignal.errorDisconnect.connect(this, "remoteErrorDisconnect()");
390         syncRunning = false;    
391                 if (syncTime > 0) {
392                         automaticSync = true;
393                         syncTimer.start(syncTime*60*1000);
394                 } else {
395                         automaticSync = false;
396                         syncTimer.stop();
397                 }
398                 syncRunner.setEvernoteUpdateCount(Global.getEvernoteUpdateCount());
399                 syncThread = new QThread(syncRunner, "Synchronization Thread");
400                 syncThread.start();
401                 
402                 
403                 logger.log(logger.EXTREME, "Starting thumnail thread");
404                 pdfReadyQueue = new ArrayList<String>();
405                 thumbnailRunner = new ThumbnailRunner("thumbnailRunner.log", Global.getDatabaseUrl(), Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword);
406                 thumbnailThread = new QThread(thumbnailRunner, "Thumbnail Thread");
407                 thumbnailRunner.noteSignal.thumbnailPageReady.connect(this, "thumbnailHTMLReady(String,QByteArray,Integer)");
408                 thumbnailThread.start();
409                 thumbGenerators = new ArrayList<Thumbnailer>();
410                 thumbnailTimer = new QTimer();
411                 thumbnailTimer.timeout.connect(this, "thumbnailTimer()");
412                 thumbnailTimer();
413                 thumbnailTimer.setInterval(5*1000);  // Thumbnail every 2 min
414                 thumbnailTimer.start();
415                 
416                 logger.log(logger.EXTREME, "Starting authentication timer");
417                 authTimer = new QTimer();
418                 authTimer.timeout.connect(this, "authTimer()");
419                 authTimer.start(1000*60*15);
420                 syncRunner.syncSignal.authRefreshComplete.connect(this, "authRefreshComplete(boolean)");
421                 
422                 logger.log(logger.EXTREME, "Setting save note timer");
423                 saveTimer = new QTimer();
424                 saveTimer.timeout.connect(this, "saveNote()");
425                 if (Global.getAutoSaveInterval() > 0) {
426                         saveTimer.setInterval(1000*60*Global.getAutoSaveInterval()); 
427                         saveTimer.start();
428                 }
429                 listManager.saveRunner.noteSignals.noteSaveRunnerError.connect(this, "saveRunnerError(String, String)");
430                 
431                 logger.log(logger.EXTREME, "Starting external file monitor timer");
432                 externalFileSaveTimer = new QTimer();
433                 externalFileSaveTimer.timeout.connect(this, "externalFileEditedSaver()");
434                 externalFileSaveTimer.setInterval(1000*5);   // save every 5 seconds;
435                 externalFiles = new ArrayList<String>();
436                 importFilesDelete = new ArrayList<String>();
437                 importFilesKeep = new ArrayList<String>();
438                 externalFileSaveTimer.start();
439                 
440         notebookTree = new NotebookTreeWidget();
441         attributeTree = new AttributeTreeWidget();
442         tagTree = new TagTreeWidget(conn);
443         savedSearchTree = new SavedSearchTreeWidget();
444         trashTree = new TrashTreeWidget();
445         noteTableView = new TableView(logger, listManager);
446         
447         QGridLayout leftGrid = new QGridLayout();
448         leftSplitter1.setLayout(leftGrid);
449         leftGrid.addWidget(notebookTree, 1, 1);
450         leftGrid.addWidget(tagTree,2,1);
451         leftGrid.addWidget(attributeTree,3,1);
452         leftGrid.addWidget(savedSearchTree,4,1);
453         leftGrid.addWidget(trashTree, 5, 1);
454         
455         // Setup the browser window
456         noteCache = new HashMap<String,String>();
457         browserWindow = new BrowserWindow(conn);
458
459         mainLeftRightSplitter.addWidget(leftSplitter1);
460         mainLeftRightSplitter.addWidget(browserIndexSplitter);
461         
462         if (Global.getListView() == Global.View_List_Wide) {
463                 browserIndexSplitter.addWidget(noteTableView);
464                 browserIndexSplitter.addWidget(browserWindow); 
465         } else {
466                 mainLeftRightSplitter.addWidget(noteTableView);
467                 mainLeftRightSplitter.addWidget(browserWindow); 
468         }
469         
470         searchField = new QComboBox();
471         searchField.setEditable(true);
472         searchField.activatedIndex.connect(this, "searchFieldChanged()");
473         searchField.setDuplicatesEnabled(false);
474         searchField.editTextChanged.connect(this,"searchFieldTextChanged(String)");
475         
476         quotaBar = new QProgressBar();
477         
478         // Setup the thumbnail viewer
479         thumbnailViewer = new ThumbnailViewer();
480         thumbnailViewer.upArrow.connect(this, "upAction()");
481         thumbnailViewer.downArrow.connect(this, "downAction()");
482         thumbnailViewer.leftArrow.connect(this, "nextViewedAction()");
483         thumbnailViewer.rightArrow.connect(this, "previousViewedAction()");
484         
485         //Setup external browser manager
486         externalWindows = new HashMap<String, ExternalBrowse>();
487
488         listManager.loadNotesIndex();
489         initializeNotebookTree();
490         initializeTagTree();
491         initializeSavedSearchTree();
492         attributeTree.itemClicked.connect(this, "attributeTreeClicked(QTreeWidgetItem, Integer)");
493         attributeTreeSelected = null;
494         initializeNoteTable();    
495
496                 selectedNoteGUIDs = new ArrayList<String>();
497                 statusBar = new QStatusBar();
498                 setStatusBar(statusBar);
499                 menuBar = new MainMenuBar(this);
500                 emitLog = new ArrayList<String>();
501                 
502                 tagTree.setDeleteAction(menuBar.tagDeleteAction);
503                 tagTree.setEditAction(menuBar.tagEditAction);
504                 tagTree.setAddAction(menuBar.tagAddAction);
505                 tagTree.setVisible(Global.isWindowVisible("tagTree"));
506                 tagTree.noteSignal.tagsAdded.connect(this, "tagsAdded(String, String)");
507                 menuBar.hideTags.setChecked(Global.isWindowVisible("tagTree"));
508                 listManager.tagSignal.listChanged.connect(this, "reloadTagTree()");
509         
510                 notebookTree.setDeleteAction(menuBar.notebookDeleteAction);
511                 notebookTree.setEditAction(menuBar.notebookEditAction);
512                 notebookTree.setAddAction(menuBar.notebookAddAction);
513                 notebookTree.setVisible(Global.isWindowVisible("notebookTree"));
514                 notebookTree.noteSignal.notebookChanged.connect(this, "updateNoteNotebook(String, String)");
515                 menuBar.hideNotebooks.setChecked(Global.isWindowVisible("notebookTree"));
516
517                 savedSearchTree.setAddAction(menuBar.savedSearchAddAction);
518                 savedSearchTree.setEditAction(menuBar.savedSearchEditAction);
519                 savedSearchTree.setDeleteAction(menuBar.savedSearchDeleteAction);
520                 savedSearchTree.itemSelectionChanged.connect(this, "updateSavedSearchSelection()");
521                 savedSearchTree.setVisible(Global.isWindowVisible("savedSearchTree"));
522                 menuBar.hideSavedSearches.setChecked(Global.isWindowVisible("savedSearchTree"));
523                         
524                 noteTableView.setAddAction(menuBar.noteAdd);
525                 noteTableView.setDeleteAction(menuBar.noteDelete);
526                 noteTableView.setRestoreAction(menuBar.noteRestoreAction);
527                 noteTableView.setNoteDuplicateAction(menuBar.noteDuplicateAction);
528                 noteTableView.setNoteHistoryAction(menuBar.noteOnlineHistoryAction);
529                 noteTableView.noteSignal.titleColorChanged.connect(this, "titleColorChanged(Integer)");
530                 noteTableView.setMergeNotesAction(menuBar.noteMergeAction);
531                 noteTableView.rowChanged.connect(this, "scrollToGuid(String)");
532                 noteTableView.resetViewport.connect(this, "scrollToCurrentGuid()");
533                 noteTableView.doubleClicked.connect(this, "listDoubleClick()");
534                 listManager.trashSignal.countChanged.connect(trashTree, "updateCounts(Integer)");
535                 trashTree.load();
536         trashTree.itemSelectionChanged.connect(this, "trashTreeSelection()");
537                 trashTree.setEmptyAction(menuBar.emptyTrashAction);
538                 trashTree.setVisible(Global.isWindowVisible("trashTree"));
539                 menuBar.hideTrash.setChecked(Global.isWindowVisible("trashTree"));
540                 trashTree.updateCounts(listManager.getTrashCount());
541                 attributeTree.setVisible(Global.isWindowVisible("attributeTree"));
542                 menuBar.hideAttributes.setChecked(Global.isWindowVisible("attributeTree"));
543
544                 noteTableView.setVisible(Global.isWindowVisible("noteList"));
545                 menuBar.hideNoteList.setChecked(Global.isWindowVisible("noteList"));
546                 
547                 if (!Global.isWindowVisible("editorButtonBar"))
548                         toggleEditorButtonBar();
549                 if (!Global.isWindowVisible("leftPanel"))
550                         menuBar.hideLeftSide.setChecked(true);
551                 if (Global.isWindowVisible("noteInformation"))
552                         toggleNoteInformation();
553                 
554                 setMenuBar(menuBar);
555                 setupToolBar();
556                 find = new FindDialog();
557                 find.getOkButton().clicked.connect(this, "doFindText()");
558                 
559                 // Setup the tray icon menu bar
560                 trayShowAction = new QAction("Show/Hide", this);
561                 trayExitAction = new QAction("Exit", this);
562                 trayAddNoteAction = new QAction("Add Note", this);
563                 
564                 trayExitAction.triggered.connect(this, "close()");
565                 trayAddNoteAction.triggered.connect(this, "addNote()");
566                 trayShowAction.triggered.connect(this, "trayToggleVisible()");
567                 
568                 trayMenu = new QMenu(this);
569                 trayMenu.addAction(trayAddNoteAction);
570                 trayMenu.addAction(trayShowAction);
571                 trayMenu.addAction(trayExitAction);
572                 
573                 
574                 trayIcon = new QSystemTrayIcon(this);
575                 trayIcon.setToolTip("NeverNote");
576                 trayIcon.setContextMenu(trayMenu);
577                 trayIcon.activated.connect(this, "trayActivated(com.trolltech.qt.gui.QSystemTrayIcon$ActivationReason)");
578
579                 currentNoteGuid="";
580                 currentNoteGuid = Global.getLastViewedNoteGuid();
581         historyGuids = new ArrayList<String>();
582         historyPosition = 0;
583         fromHistory = false;
584                 noteDirty = false;
585                 if (!currentNoteGuid.trim().equals("")) {
586                         currentNote = conn.getNoteTable().getNote(currentNoteGuid, true,true,false,false,true);
587                 }
588                 
589                 noteIndexUpdated(true);
590                 showColumns();
591                 menuBar.showEditorBar.setChecked(Global.isWindowVisible("editorButtonBar"));
592                 if (menuBar.showEditorBar.isChecked())
593                 showEditorButtons(browserWindow);
594                 tagIndexUpdated(true);
595                 savedSearchIndexUpdated();
596                 notebookIndexUpdated();
597                 updateQuotaBar();
598         setupSyncSignalListeners();        
599         setupBrowserSignalListeners();
600         setupIndexListeners();
601               
602         
603         tagTree.tagSignal.listChanged.connect(this, "tagIndexUpdated()");
604         tagTree.showAllTags(true);
605
606                 QIcon appIcon = new QIcon(iconPath+"nevernote.png");
607         setWindowIcon(appIcon);
608         trayIcon.setIcon(appIcon);
609         if (Global.showTrayIcon())
610                 trayIcon.show();
611         else
612                 trayIcon.hide();
613         
614         scrollToGuid(currentNoteGuid);
615         if (Global.automaticLogin()) {
616                 remoteConnect();
617                 if (Global.isConnected)
618                         syncTimer();
619         }
620         setupFolderImports();
621         
622         loadStyleSheet();
623         restoreWindowState(true);
624         
625         if (Global.mimicEvernoteInterface) {
626                 notebookTree.selectGuid("");
627         }
628         
629         threadMonitorTimer = new QTimer();
630         threadMonitorTimer.timeout.connect(this, "threadMonitorCheck()");
631         threadMonitorTimer.start(1000*10);  // Check for threads every 10 seconds;              
632         
633         historyGuids.add(currentNoteGuid);
634         historyPosition = 1;
635         
636         if (Global.getListView() == Global.View_List_Narrow) { 
637                 menuBar.narrowListView.setChecked(true);
638 //              narrowListView();
639         }
640         else{ 
641                 menuBar.wideListView.setChecked(true);
642 //              wideListView();
643         }
644
645         if (Global.getListView() == Global.View_List_Wide) {
646                 browserIndexSplitter.addWidget(noteTableView);
647                 browserIndexSplitter.addWidget(browserWindow); 
648         } else {
649                 mainLeftRightSplitter.addWidget(noteTableView);
650                 mainLeftRightSplitter.addWidget(browserWindow); 
651         }
652         
653         int sortCol = Global.getSortColumn();
654                 int sortOrder = Global.getSortOrder();
655                 noteTableView.sortByColumn(sortCol, SortOrder.resolve(sortOrder));
656
657         }
658
659         
660         // Main entry point
661         public static void main(String[] args) {
662                 QApplication.initialize(args);
663                 QPixmap pixmap = new QPixmap("classpath:cx/fbn/nevernote/icons/splash_logo.png");
664                 QSplashScreen splash = new QSplashScreen(pixmap);
665                 boolean showSplash;
666                 
667                 DatabaseConnection dbConn;
668
669         try {
670             initializeGlobalSettings(args);
671
672             showSplash = Global.isWindowVisible("SplashScreen");
673             if (showSplash)
674                 splash.show();
675
676             dbConn = setupDatabaseConnection();
677
678             // Must be last stage of setup - only safe once DB is open hence we know we are the only instance running
679             Global.getFileManager().purgeResDirectory();
680
681         } catch (InitializationException e) {
682             // Fatal
683             e.printStackTrace();
684             QMessageBox.critical(null, "Startup error", "Aborting: " + e.getMessage());
685             return;
686         }
687
688         NeverNote application = new NeverNote(dbConn);
689
690                 application.setAttribute(WidgetAttribute.WA_DeleteOnClose, true);
691                 if (Global.startMinimized()) 
692                         application.showMinimized();
693                 else {
694                         if (Global.wasWindowMaximized())
695                                 application.showMaximized();
696                         else
697                                 application.show();
698                 }
699                 
700                 if (showSplash)
701                         splash.finish(application);
702                 QApplication.exec();
703                 System.out.println("Goodbye.");
704                 QApplication.exit();
705         }
706
707     /**
708      * Open the internal database, or create if not present
709      *
710      * @throws InitializationException when opening the database fails, e.g. because another process has it locked
711      */
712     private static DatabaseConnection setupDatabaseConnection() throws InitializationException {
713         ApplicationLogger logger = new ApplicationLogger("nevernote-database.log");
714         
715         File f = Global.getFileManager().getDbDirFile(Global.databaseName + ".h2.db");
716                 boolean dbExists = f.exists(); 
717                 if (!dbExists)
718                         Global.setDatabaseUrl("");
719         
720         if (Global.getDatabaseUrl().toUpperCase().indexOf("CIPHER=") > -1) {
721             boolean goodCheck = false;
722             while (!goodCheck) {
723                 DatabaseLoginDialog dialog = new DatabaseLoginDialog();
724                 dialog.exec();
725                 if (!dialog.okPressed())
726                     System.exit(0);
727                 Global.cipherPassword = dialog.getPassword();
728                 goodCheck = databaseCheck(Global.getDatabaseUrl(), Global.getDatabaseUserid(),
729                         Global.getDatabaseUserPassword(), Global.cipherPassword);
730             }
731         }
732         DatabaseConnection dbConn = new DatabaseConnection(logger,Global.getDatabaseUrl(), Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword);
733        return dbConn;
734     }
735     
736     // Encrypt the database upon shutdown
737     private void encryptOnShutdown() {
738         String dbPath= Global.getFileManager().getDbDirPath("");
739         String dbName = "NeverNote";
740         try {
741                 Statement st = conn.getConnection().createStatement();  
742                 st.execute("shutdown");
743                 if (QMessageBox.question(this, "Are you sure", 
744                                 "Are you sure you wish to encrypt the database?",
745                                 QMessageBox.StandardButton.Yes, 
746                                 QMessageBox.StandardButton.No) == StandardButton.Yes.value()) {
747                         ChangeFileEncryption.execute(dbPath, dbName, encryptCipher, null, Global.cipherPassword.toCharArray(), true);
748                         Global.setDatabaseUrl(Global.getDatabaseUrl() + ";CIPHER="+encryptCipher);
749                         QMessageBox.information(this, "Encryption Complete", "Encryption is complete");
750                 }
751         } catch (SQLException e) {
752                         e.printStackTrace();
753                 }       
754     }
755     
756     // Decrypt the database upon shutdown
757     private void decryptOnShutdown() {
758         String dbPath= Global.getFileManager().getDbDirPath("");
759         String dbName = "NeverNote";
760         try {
761                 Statement st = conn.getConnection().createStatement();  
762                 st.execute("shutdown");
763                 if (Global.getDatabaseUrl().toUpperCase().indexOf(";CIPHER=AES") > -1)
764                         encryptCipher = "AES";
765                 else
766                         encryptCipher = "XTEA";
767                 if (QMessageBox.question(this, tr("Confirmation"), tr("Are you sure", 
768                                 "Are you sure you wish to decrypt the database?"),
769                                 QMessageBox.StandardButton.Yes, 
770                                 QMessageBox.StandardButton.No) == StandardButton.Yes.value()) {
771
772                         ChangeFileEncryption.execute(dbPath, dbName, encryptCipher, Global.cipherPassword.toCharArray(), null, true);
773                         Global.setDatabaseUrl("");
774                         QMessageBox.information(this, tr("Decryption Complete"), tr("Decryption is complete"));
775                 }
776                 } catch (SQLException e) {
777                         e.printStackTrace();
778                 }       
779     }
780     /**
781      * Encrypt/Decrypt the local database
782      **/
783     public void doDatabaseEncrypt() {
784         // The database is not currently encrypted
785         if (Global.getDatabaseUrl().toUpperCase().indexOf("CIPHER=") == -1) {
786                 if (QMessageBox.question(this, tr("Confirmation"), tr("Encrypting the database is used" +
787                                 "to enhance security and is performed\nupon shutdown, but please be aware that if"+
788                                 " you lose the password your\nis lost forever.\n\nIt is highly recommended you " +
789                                 "perform a backup and/or fully synchronize\n prior to executing this funtction.\n\n" +
790                                 "Do you wish to proceed?"),
791                                 QMessageBox.StandardButton.Yes, 
792                                 QMessageBox.StandardButton.No)==StandardButton.No.value()) {
793                                 return;
794                 }
795                 DBEncryptDialog dialog = new DBEncryptDialog();
796                 dialog.exec();
797                 if (dialog.okPressed()) {
798                         Global.cipherPassword = dialog.getPassword();
799                         encryptOnShutdown  = true;
800                         encryptCipher = dialog.getEncryptionMethod();
801                 }
802         } else {
803             DBEncryptDialog dialog = new DBEncryptDialog();
804             dialog.setWindowTitle("Database Decryption");
805             dialog.hideEncryption();
806             dialog.exec();
807             if (dialog.okPressed()) {
808                 if (!dialog.getPassword().equals(Global.cipherPassword)) {
809                         QMessageBox.critical(null, tr("Incorrect Password"), tr("Incorrect Password"));
810                         return;
811                 }
812                 decryptOnShutdown  = true;
813                 encryptCipher = "";
814             }
815         }
816         return;
817     }
818
819         private static void initializeGlobalSettings(String[] args) throws InitializationException {
820                 StartupConfig   startupConfig = new StartupConfig();
821
822         for (String arg : args) {
823             String lower = arg.toLowerCase();
824             if (lower.startsWith("--name="))
825                startupConfig.setName(arg.substring(arg.indexOf('=') + 1));
826             if (lower.startsWith("--home="))
827                startupConfig.setHomeDirPath(arg.substring(arg.indexOf('=') + 1));
828             if (lower.startsWith("--disable-viewing"))
829                startupConfig.setDisableViewing(true);
830         }
831                 Global.setup(startupConfig);
832     }
833
834     // Exit point
835         @Override
836         public void closeEvent(QCloseEvent event) {     
837                 logger.log(logger.HIGH, "Entering NeverNote.closeEvent");
838                 waitCursor(true);
839                 
840                 if (currentNote!= null & browserWindow!=null) {
841                         if (!currentNote.getTitle().equals(browserWindow.getTitle()))
842                                 conn.getNoteTable().updateNoteTitle(currentNote.getGuid(), browserWindow.getTitle());
843                 }
844                 saveNote();
845                 setMessage(tr("Beginning shutdown."));
846                 
847                 // Close down external windows
848                 Collection<ExternalBrowse> windows = externalWindows.values();
849                 Iterator<ExternalBrowse> iterator = windows.iterator();
850                 while (iterator.hasNext()) {
851                         ExternalBrowse browser = iterator.next();
852                         browser.windowClosing.disconnect();
853                         browser.close();
854                 }
855                 
856                 
857                 externalFileEditedSaver();
858                 if (Global.isConnected && Global.synchronizeOnClose()) {
859                         setMessage(tr("Performing synchronization before closing."));
860                         syncRunner.addWork("SYNC");
861                 }
862                 setMessage("Closing Program.");
863                 threadMonitorTimer.stop();
864
865                 syncRunner.addWork("STOP");
866                 syncRunner.keepRunning = false;
867                 thumbnailRunner.addWork("STOP");
868                 syncRunner.keepRunning = false;
869                 indexRunner.addWork("STOP");
870                 syncRunner.keepRunning = false;
871                 saveNote();
872                 listManager.stop();
873                 saveWindowState();
874
875                 if (tempFiles != null)
876                         tempFiles.clear();
877
878                 browserWindow.noteSignal.tagsChanged.disconnect();
879                 browserWindow.noteSignal.titleChanged.disconnect();
880                 browserWindow.noteSignal.noteChanged.disconnect();
881                 browserWindow.noteSignal.notebookChanged.disconnect();
882                 browserWindow.noteSignal.createdDateChanged.disconnect();
883                 browserWindow.noteSignal.alteredDateChanged.disconnect();
884                 syncRunner.searchSignal.listChanged.disconnect();
885                 syncRunner.tagSignal.listChanged.disconnect();
886         syncRunner.notebookSignal.listChanged.disconnect();
887         syncRunner.noteIndexSignal.listChanged.disconnect();
888
889                 if (isVisible())
890                         Global.saveWindowVisible("toolBar", toolBar.isVisible());
891                 saveNoteColumnPositions();
892                 saveNoteIndexWidth();
893                 
894                 int width = notebookTree.columnWidth(0);
895                 Global.setColumnWidth("notebookTreeName", width);
896                 width = tagTree.columnWidth(0);
897                 Global.setColumnWidth("tagTreeName", width);
898                 
899                 Global.saveWindowMaximized(isMaximized());
900                 Global.saveCurrentNoteGuid(currentNoteGuid);
901                         
902                 int sortCol = noteTableView.proxyModel.sortColumn();
903                 int sortOrder = noteTableView.proxyModel.sortOrder().value();
904                 Global.setSortColumn(sortCol);
905                 Global.setSortOrder(sortOrder);
906                 
907                 hide();
908                 trayIcon.hide();
909                 Global.keepRunning = false;
910                 try {
911                         logger.log(logger.MEDIUM, "Waiting for indexThread to stop");
912                         indexRunner.thread().join(50);
913                         logger.log(logger.MEDIUM, "Index thread has stopped");
914                 } catch (InterruptedException e1) {
915                         e1.printStackTrace();
916                 }
917                 if (!syncRunner.isIdle()) {
918                         try {
919                                 logger.log(logger.MEDIUM, "Waiting for syncThread to stop");
920                                 syncThread.join();
921                                 logger.log(logger.MEDIUM, "Sync thread has stopped");
922                         } catch (InterruptedException e1) {
923                                 e1.printStackTrace();
924                         }
925                 }
926
927                 if (encryptOnShutdown) {
928                         encryptOnShutdown();
929                 }
930                 if (decryptOnShutdown) {
931                         decryptOnShutdown();
932                 }
933                 logger.log(logger.HIGH, "Leaving NeverNote.closeEvent");
934         }
935
936         public void setMessage(String s) {
937                 logger.log(logger.HIGH, "Entering NeverNote.setMessage");
938                 logger.log(logger.HIGH, "Message: " +s);
939                 statusBar.showMessage(s);
940                 emitLog.add(s);
941                 logger.log(logger.HIGH, "Leaving NeverNote.setMessage");
942         }
943                 
944         private void waitCursor(boolean wait) {
945 //              if (wait)
946 //                      QApplication.setOverrideCursor(new QCursor(Qt.CursorShape.WaitCursor));
947 //              else
948 //                      QApplication.restoreOverrideCursor();
949         }
950         
951         private void setupIndexListeners() {
952                 indexRunner.noteSignal.noteIndexed.connect(this, "indexThreadComplete(String)");
953                 indexRunner.resourceSignal.resourceIndexed.connect(this, "indexThreadComplete(String)");
954 //                      indexRunner.threadSignal.indexNeeded.connect(listManager, "setIndexNeeded(String, String, Boolean)");
955         }
956         private void setupSyncSignalListeners() {
957                 syncRunner.tagSignal.listChanged.connect(this, "tagIndexUpdated()");
958         syncRunner.searchSignal.listChanged.connect(this, "savedSearchIndexUpdated()");
959         syncRunner.notebookSignal.listChanged.connect(this, "notebookIndexUpdated()");
960         syncRunner.noteIndexSignal.listChanged.connect(this, "noteIndexUpdated(boolean)");
961         syncRunner.noteSignal.quotaChanged.connect(this, "updateQuotaBar()");
962         
963                 syncRunner.syncSignal.saveUploadAmount.connect(this,"saveUploadAmount(long)");
964                 syncRunner.syncSignal.saveUserInformation.connect(this,"saveUserInformation(User)");
965                 syncRunner.syncSignal.saveEvernoteUpdateCount.connect(this,"saveEvernoteUpdateCount(int)");
966                 
967                 syncRunner.noteSignal.guidChanged.connect(this, "noteGuidChanged(String, String)");
968                 syncRunner.noteSignal.noteChanged.connect(this, "invalidateNoteCache(String, String)");
969                 syncRunner.resourceSignal.resourceGuidChanged.connect(this, "noteResourceGuidChanged(String,String,String)");
970                 syncRunner.noteSignal.noteDownloaded.connect(listManager, "noteDownloaded(Note)");
971                 
972                 syncRunner.syncSignal.refreshLists.connect(this, "refreshLists()");
973         }
974         
975         private void setupBrowserSignalListeners() {
976                 setupBrowserWindowListeners(browserWindow, true);
977         }
978
979         private void setupBrowserWindowListeners(BrowserWindow browser, boolean master) {
980                 browser.fileWatcher.fileChanged.connect(this, "externalFileEdited(String)");
981                 browser.noteSignal.tagsChanged.connect(this, "updateNoteTags(String, List)");
982             browser.noteSignal.tagsChanged.connect(this, "updateListTags(String, List)");
983             if (master) browser.noteSignal.noteChanged.connect(this, "setNoteDirty()");
984             browser.noteSignal.titleChanged.connect(listManager, "updateNoteTitle(String, String)");
985             browser.noteSignal.titleChanged.connect(this, "updateNoteTitle(String, String)");
986             browser.noteSignal.notebookChanged.connect(this, "updateNoteNotebook(String, String)");
987             browser.noteSignal.createdDateChanged.connect(listManager, "updateNoteCreatedDate(String, QDateTime)");
988             browser.noteSignal.alteredDateChanged.connect(listManager, "updateNoteAlteredDate(String, QDateTime)");
989             browser.noteSignal.subjectDateChanged.connect(listManager, "updateNoteSubjectDate(String, QDateTime)");
990             browser.noteSignal.authorChanged.connect(listManager, "updateNoteAuthor(String, String)");
991             browser.noteSignal.geoChanged.connect(listManager, "updateNoteGeoTag(String, Double,Double,Double)");
992             browser.noteSignal.geoChanged.connect(this, "setNoteDirty()");
993             browser.noteSignal.sourceUrlChanged.connect(listManager, "updateNoteSourceUrl(String, String)");
994             if (master) browser.focusLost.connect(this, "saveNote()");
995             browser.resourceSignal.contentChanged.connect(this, "externalFileEdited(String)");
996         }
997
998         //***************************************************************
999         //***************************************************************
1000         //* Settings and look & feel
1001         //***************************************************************
1002         //***************************************************************
1003         @SuppressWarnings("unused")
1004         private void settings() {
1005                 logger.log(logger.HIGH, "Entering NeverNote.settings");
1006                 saveNoteColumnPositions();
1007                 saveNoteIndexWidth();
1008                 showColumns();
1009         ConfigDialog settings = new ConfigDialog(this);
1010         String dateFormat = Global.getDateFormat();
1011         String timeFormat = Global.getTimeFormat();
1012         
1013                 indexTime = 1000*Global.getIndexThreadSleepInterval();  
1014                 indexTimer.start(indexTime);  // reset indexing timer
1015         
1016         settings.exec();
1017         if (Global.showTrayIcon())
1018                 trayIcon.show();
1019         else
1020                 trayIcon.hide();
1021         showColumns();
1022         if (menuBar.showEditorBar.isChecked())
1023                 showEditorButtons(browserWindow);
1024         
1025         // Reset the save timer
1026         if (Global.getAutoSaveInterval() > 0)
1027                         saveTimer.setInterval(1000*60*Global.getAutoSaveInterval());
1028         else
1029                 saveTimer.stop();
1030         
1031         // This is a hack to force a reload of the index in case the date or time changed.
1032 //        if (!dateFormat.equals(Global.getDateFormat()) ||
1033 //                      !timeFormat.equals(Global.getTimeFormat())) {
1034                 noteCache.clear();
1035                 noteIndexUpdated(true);
1036 //        }
1037         
1038         logger.log(logger.HIGH, "Leaving NeverNote.settings");
1039         }
1040         // Restore things to the way they were
1041         private void restoreWindowState(boolean mainWindow) {
1042                 // We need to name things or this doesn't work.
1043                 setObjectName("NeverNote");
1044                 mainLeftRightSplitter.setObjectName("mainLeftRightSplitter");
1045                 browserIndexSplitter.setObjectName("browserIndexSplitter");
1046                 leftSplitter1.setObjectName("leftSplitter1");   
1047                 
1048                 // Restore the actual positions.
1049                 if (mainWindow)
1050                         restoreGeometry(Global.restoreGeometry(objectName()));
1051         mainLeftRightSplitter.restoreState(Global.restoreState(mainLeftRightSplitter.objectName()));
1052         browserIndexSplitter.restoreState(Global.restoreState(browserIndexSplitter.objectName()));
1053         leftSplitter1.restoreState(Global.restoreState(leftSplitter1.objectName()));
1054        
1055         }
1056         // Save window positions for the next start
1057         private void saveWindowState() {
1058                 Global.saveGeometry(objectName(), saveGeometry());
1059                 Global.saveState(mainLeftRightSplitter.objectName(), mainLeftRightSplitter.saveState());
1060                 Global.saveState(browserIndexSplitter.objectName(), browserIndexSplitter.saveState());
1061                 Global.saveState(leftSplitter1.objectName(), leftSplitter1.saveState());
1062         }    
1063         // Load the style sheet
1064         private void loadStyleSheet() {
1065                 String fileName = Global.getFileManager().getQssDirPath("default.qss");
1066                 QFile file = new QFile(fileName);
1067                 file.open(OpenModeFlag.ReadOnly);
1068                 String styleSheet = file.readAll().toString();
1069                 file.close();
1070                 setStyleSheet(styleSheet);
1071         }
1072         // Save column positions for the next time
1073         private void saveNoteColumnPositions() {
1074                 int position = noteTableView.header.visualIndex(Global.noteTableCreationPosition);
1075                 Global.setColumnPosition("noteTableCreationPosition", position);
1076                 position = noteTableView.header.visualIndex(Global.noteTableTagPosition);
1077                 Global.setColumnPosition("noteTableTagPosition", position);
1078                 position = noteTableView.header.visualIndex(Global.noteTableNotebookPosition);
1079                 Global.setColumnPosition("noteTableNotebookPosition", position);
1080                 position = noteTableView.header.visualIndex(Global.noteTableChangedPosition);
1081                 Global.setColumnPosition("noteTableChangedPosition", position);
1082                 position = noteTableView.header.visualIndex(Global.noteTableAuthorPosition);
1083                 Global.setColumnPosition("noteTableAuthorPosition", position);
1084                 position = noteTableView.header.visualIndex(Global.noteTableSourceUrlPosition);
1085                 Global.setColumnPosition("noteTableSourceUrlPosition", position);
1086                 position = noteTableView.header.visualIndex(Global.noteTableSubjectDatePosition);
1087                 Global.setColumnPosition("noteTableSubjectDatePosition", position);
1088                 position = noteTableView.header.visualIndex(Global.noteTableTitlePosition);
1089                 Global.setColumnPosition("noteTableTitlePosition", position);
1090                 position = noteTableView.header.visualIndex(Global.noteTableSynchronizedPosition);
1091                 Global.setColumnPosition("noteTableSynchronizedPosition", position);
1092                 position = noteTableView.header.visualIndex(Global.noteTableGuidPosition);
1093                 Global.setColumnPosition("noteTableGuidPosition", position);
1094                 position = noteTableView.header.visualIndex(Global.noteTableThumbnailPosition);
1095                 Global.setColumnPosition("noteTableThumbnailPosition", position);
1096
1097         }
1098         // Save column widths for the next time
1099         private void saveNoteIndexWidth() {
1100                 int width;
1101         width = noteTableView.getColumnWidth(Global.noteTableCreationPosition);
1102         Global.setColumnWidth("noteTableCreationPosition", width);
1103                 width = noteTableView.getColumnWidth(Global.noteTableChangedPosition);
1104                 Global.setColumnWidth("noteTableChangedPosition", width);
1105                 width = noteTableView.getColumnWidth(Global.noteTableGuidPosition);
1106                 Global.setColumnWidth("noteTableGuidPosition", width);
1107                 width = noteTableView.getColumnWidth(Global.noteTableNotebookPosition);
1108                 Global.setColumnWidth("noteTableNotebookPosition", width);
1109                 width = noteTableView.getColumnWidth(Global.noteTableTagPosition);
1110                 Global.setColumnWidth("noteTableTagPosition", width);
1111                 width = noteTableView.getColumnWidth(Global.noteTableTitlePosition);
1112                 Global.setColumnWidth("noteTableTitlePosition", width);
1113                 width = noteTableView.getColumnWidth(Global.noteTableSourceUrlPosition);
1114                 Global.setColumnWidth("noteTableSourceUrlPosition", width);
1115                 width = noteTableView.getColumnWidth(Global.noteTableAuthorPosition);
1116                 Global.setColumnWidth("noteTableAuthorPosition", width);
1117                 width = noteTableView.getColumnWidth(Global.noteTableSubjectDatePosition);
1118                 Global.setColumnWidth("noteTableSubjectDatePosition", width);
1119                 width = noteTableView.getColumnWidth(Global.noteTableSynchronizedPosition);
1120                 Global.setColumnWidth("noteTableSynchronizedPosition", width);
1121                 width = noteTableView.getColumnWidth(Global.noteTableThumbnailPosition);
1122                 Global.setColumnWidth("noteTableThumbnailPosition", width);
1123                 width = noteTableView.getColumnWidth(Global.noteTableGuidPosition);
1124                 Global.setColumnWidth("noteTableGuidPosition", width);
1125         }
1126         
1127         
1128     //***************************************************************
1129     //***************************************************************
1130     //** These functions deal with Notebook menu items
1131     //***************************************************************
1132     //***************************************************************
1133     // Setup the tree containing the user's notebooks.
1134     private void initializeNotebookTree() {       
1135         logger.log(logger.HIGH, "Entering NeverNote.initializeNotebookTree");
1136         notebookTree.itemSelectionChanged.connect(this, "notebookTreeSelection()");
1137         listManager.notebookSignal.refreshNotebookTreeCounts.connect(notebookTree, "updateCounts(List, List)");
1138  //     notebookTree.resize(Global.getSize("notebookTree"));
1139         logger.log(logger.HIGH, "Leaving NeverNote.initializeNotebookTree");
1140     }   
1141     // Listener when a notebook is selected
1142         private void notebookTreeSelection() {
1143                 logger.log(logger.HIGH, "Entering NeverNote.notebookTreeSelection");
1144
1145                 clearTrashFilter();
1146                 clearAttributeFilter();
1147                 clearSavedSearchFilter();
1148                 if (Global.mimicEvernoteInterface) {
1149                         clearTagFilter();
1150                         searchField.clear();
1151                 }
1152                 menuBar.noteRestoreAction.setVisible(false);            
1153         menuBar.notebookEditAction.setEnabled(true);
1154         menuBar.notebookDeleteAction.setEnabled(true);
1155         List<QTreeWidgetItem> selections = notebookTree.selectedItems();
1156         QTreeWidgetItem currentSelection;
1157         selectedNotebookGUIDs.clear();
1158         if (!Global.mimicEvernoteInterface) {
1159                 for (int i=0; i<selections.size(); i++) {
1160                         currentSelection = selections.get(i);
1161                         selectedNotebookGUIDs.add(currentSelection.text(2));
1162                 }
1163         
1164                 
1165                 // There is the potential for no notebooks to be selected if this 
1166                 // happens then we make it look like all notebooks were selecetd.
1167                 // If that happens, just select the "all notebooks"
1168                 selections = notebookTree.selectedItems();
1169                 if (selections.size()==0) {
1170                         selectedNotebookGUIDs.clear();
1171                         menuBar.notebookEditAction.setEnabled(false);
1172                         menuBar.notebookDeleteAction.setEnabled(false);
1173                 }
1174         } else {
1175                 String guid = "";
1176                 if (selections.size() > 0)
1177                         guid = (selections.get(0).text(2));
1178                 if (!guid.equals(""))
1179                         selectedNotebookGUIDs.add(guid);
1180         }
1181         listManager.setSelectedNotebooks(selectedNotebookGUIDs);
1182         listManager.loadNotesIndex();
1183         noteIndexUpdated(false);
1184                 logger.log(logger.HIGH, "Leaving NeverNote.notebookTreeSelection");
1185
1186     }
1187     private void clearNotebookFilter() {
1188         notebookTree.blockSignals(true);
1189         notebookTree.clearSelection();
1190                 menuBar.noteRestoreAction.setVisible(false);
1191         menuBar.notebookEditAction.setEnabled(false);
1192         menuBar.notebookDeleteAction.setEnabled(false);
1193         selectedNotebookGUIDs.clear();
1194         listManager.setSelectedNotebooks(selectedNotebookGUIDs);
1195         notebookTree.blockSignals(false);
1196     }
1197         // Triggered when the notebook DB has been updated
1198         private void notebookIndexUpdated() {
1199                 logger.log(logger.HIGH, "Entering NeverNote.notebookIndexUpdated");
1200                 if (selectedNotebookGUIDs == null)
1201                         selectedNotebookGUIDs = new ArrayList<String>();
1202                 List<Notebook> books = conn.getNotebookTable().getAll();
1203                 for (int i=books.size()-1; i>=0; i--) {
1204                         for (int j=0; j<listManager.getArchiveNotebookIndex().size(); j++) {
1205                                 if (listManager.getArchiveNotebookIndex().get(j).getGuid().equals(books.get(i).getGuid())) {
1206                                         books.remove(i);
1207                                         j=listManager.getArchiveNotebookIndex().size();
1208                                 }
1209                         }
1210                 }
1211                 
1212                 
1213                 listManager.countNotebookResults(listManager.getNoteIndex());
1214                 notebookTree.blockSignals(true);
1215         notebookTree.load(books, listManager.getLocalNotebooks());
1216         for (int i=selectedNotebookGUIDs.size()-1; i>=0; i--) {
1217                 boolean found = notebookTree.selectGuid(selectedNotebookGUIDs.get(i));
1218                 if (!found)
1219                         selectedNotebookGUIDs.remove(i);
1220         }
1221         notebookTree.blockSignals(false);
1222         
1223                 logger.log(logger.HIGH, "Leaving NeverNote.notebookIndexUpdated");
1224     }
1225     // Show/Hide note information
1226         private void toggleNotebookWindow() {
1227                 logger.log(logger.HIGH, "Entering NeverNote.toggleNotebookWindow");
1228         if (notebookTree.isVisible())
1229                 notebookTree.hide();
1230         else
1231                 notebookTree.show();
1232         menuBar.hideNotebooks.setChecked(notebookTree.isVisible());
1233         Global.saveWindowVisible("notebookTree", notebookTree.isVisible());
1234         logger.log(logger.HIGH, "Leaving NeverNote.toggleNotebookWindow");
1235     }   
1236         // Add a new notebook
1237         @SuppressWarnings("unused")
1238         private void addNotebook() {
1239                 logger.log(logger.HIGH, "Inside NeverNote.addNotebook");
1240                 NotebookEdit edit = new NotebookEdit();
1241                 edit.setNotebooks(listManager.getNotebookIndex());
1242                 edit.exec();
1243         
1244                 if (!edit.okPressed())
1245                         return;
1246         
1247                 Calendar currentTime = new GregorianCalendar();
1248                 Long l = new Long(currentTime.getTimeInMillis());
1249                 String randint = new String(Long.toString(l));
1250         
1251                 Notebook newBook = new Notebook();
1252                 newBook.setUpdateSequenceNum(0);
1253                 newBook.setGuid(randint);
1254                 newBook.setName(edit.getNotebook());
1255                 newBook.setServiceCreated(new Date().getTime());
1256                 newBook.setServiceUpdated(new Date().getTime());
1257                 newBook.setDefaultNotebook(false);
1258                 newBook.setPublished(false);
1259                 
1260                 listManager.getNotebookIndex().add(newBook);
1261                 if (edit.isLocal())
1262                         listManager.getLocalNotebooks().add(newBook.getGuid());
1263                 conn.getNotebookTable().addNotebook(newBook, true, edit.isLocal());
1264                 notebookIndexUpdated();
1265                 listManager.countNotebookResults(listManager.getNoteIndex());
1266 //              notebookTree.updateCounts(listManager.getNotebookIndex(), listManager.getNotebookCounter());
1267                 logger.log(logger.HIGH, "Leaving NeverNote.addNotebook");
1268         }
1269         // Edit an existing notebook
1270         @SuppressWarnings("unused")
1271         private void editNotebook() {
1272                 logger.log(logger.HIGH, "Entering NeverNote.editNotebook");
1273                 NotebookEdit edit = new NotebookEdit();
1274                 edit.setTitle(tr("Edit Notebook"));
1275                 edit.setLocalCheckboxEnabled(false);
1276                 List<QTreeWidgetItem> selections = notebookTree.selectedItems();
1277                 QTreeWidgetItem currentSelection;
1278                 currentSelection = selections.get(0);
1279                 edit.setNotebook(currentSelection.text(0));
1280                 edit.setNotebooks(listManager.getNotebookIndex());
1281
1282                 String guid = currentSelection.text(2);
1283                 for (int i=0; i<listManager.getNotebookIndex().size(); i++) {
1284                         if (listManager.getNotebookIndex().get(i).getGuid().equals(guid)) {
1285                                 edit.setDefaultNotebook(listManager.getNotebookIndex().get(i).isDefaultNotebook());
1286                                 i=listManager.getNotebookIndex().size();
1287                         }
1288                 }
1289                 edit.exec();
1290         
1291                 if (!edit.okPressed())
1292                         return;
1293         
1294                 updateListNotebookName(currentSelection.text(0), edit.getNotebook());
1295                 currentSelection.setText(0, edit.getNotebook());
1296                 
1297                 for (int i=0; i<listManager.getNotebookIndex().size(); i++) {
1298                         if (listManager.getNotebookIndex().get(i).getGuid().equals(guid)) {
1299                                 listManager.getNotebookIndex().get(i).setName(edit.getNotebook());
1300                                 if (!listManager.getNotebookIndex().get(i).isDefaultNotebook() && edit.isDefaultNotebook()) {
1301                                         for (int j=0; j<listManager.getNotebookIndex().size(); j++)
1302                                                 listManager.getNotebookIndex().get(j).setDefaultNotebook(false);
1303                                         listManager.getNotebookIndex().get(i).setDefaultNotebook(true);
1304                                         conn.getNotebookTable().setDefaultNotebook(listManager.getNotebookIndex().get(i).getGuid());
1305                                 }
1306                                 conn.getNotebookTable().updateNotebook(listManager.getNotebookIndex().get(i), true);
1307                                 i=listManager.getNotebookIndex().size();
1308                         }
1309                 }
1310                 
1311                 // Build a list of non-closed notebooks
1312                 List<Notebook> nbooks = new ArrayList<Notebook>();
1313                 for (int i=0; i<listManager.getNotebookIndex().size(); i++) {
1314                         boolean found=false;
1315                         for (int j=0; j<listManager.getArchiveNotebookIndex().size(); j++) {
1316                                 if (listManager.getArchiveNotebookIndex().get(j).getGuid().equals(listManager.getNotebookIndex().get(i).getGuid()))
1317                                         found = true;
1318                         }
1319                         if (!found)
1320                                 nbooks.add(listManager.getNotebookIndex().get(i));
1321                 }
1322                 
1323                 browserWindow.setNotebookList(nbooks);
1324                 logger.log(logger.HIGH, "Leaving NeverNote.editNotebook");
1325         }
1326         // Delete an existing notebook
1327         @SuppressWarnings("unused")
1328         private void deleteNotebook() {
1329                 logger.log(logger.HIGH, "Entering NeverNote.deleteNotebook");
1330                 boolean assigned = false;
1331                 // Check if any notes have this notebook
1332                 List<QTreeWidgetItem> selections = notebookTree.selectedItems();
1333         for (int i=0; i<selections.size(); i++) {
1334                 QTreeWidgetItem currentSelection;
1335                 currentSelection = selections.get(i);
1336                 String guid = currentSelection.text(2);
1337                 for (int j=0; j<listManager.getNoteIndex().size(); j++) {
1338                         String noteGuid = listManager.getNoteIndex().get(j).getNotebookGuid();
1339                         if (noteGuid.equals(guid)) {
1340                                 assigned = true;
1341                                 j=listManager.getNoteIndex().size();
1342                                 i=selections.size();
1343                         }
1344                 }
1345         }
1346                 if (assigned) {
1347                         QMessageBox.information(this, tr("Unable to Delete"), tr("Some of the selected notebook(s) contain notes.\n"+
1348                                         "Please delete the notes or move them to another notebook before deleting any notebooks."));
1349                         return;
1350                 }
1351                 
1352                 if (conn.getNotebookTable().getAll().size() == 1) {
1353                         QMessageBox.information(this, tr("Unable to Delete"), tr("You must have at least one notebook."));
1354                         return;
1355                 }
1356         
1357         // If all notebooks are clear, verify the delete
1358                 if (QMessageBox.question(this, tr("Confirmation"), tr("Delete the selected notebooks?"),
1359                         QMessageBox.StandardButton.Yes, 
1360                         QMessageBox.StandardButton.No)==StandardButton.No.value()) {
1361                         return;
1362                 }
1363                 
1364                 // If confirmed, delete the notebook
1365         for (int i=selections.size()-1; i>=0; i--) {
1366                 QTreeWidgetItem currentSelection;
1367                 currentSelection = selections.get(i);
1368                 String guid = currentSelection.text(2);
1369                 conn.getNotebookTable().expungeNotebook(guid, true);
1370                 listManager.deleteNotebook(guid);
1371         }
1372 //        for (int i=<dbRunner.getLocalNotebooks().size()-1; i>=0; i--) {
1373  //             if (dbRunner.getLocalNotebooks().get(i).equals(arg0))
1374  //       }
1375         notebookTreeSelection();
1376         notebookTree.load(listManager.getNotebookIndex(), listManager.getLocalNotebooks());
1377         listManager.countNotebookResults(listManager.getNoteIndex());
1378 //              notebookTree.updateCounts(listManager.getNotebookIndex(), listManager.getNotebookCounter());
1379         logger.log(logger.HIGH, "Entering NeverNote.deleteNotebook");
1380         }
1381         // A note's notebook has been updated
1382         @SuppressWarnings("unused")
1383         private void updateNoteNotebook(String guid, String notebookGuid) {
1384                 
1385                 // Update the list manager
1386                 listManager.updateNoteNotebook(guid, notebookGuid);
1387                 listManager.countNotebookResults(listManager.getNoteIndex());
1388 //              notebookTree.updateCounts(listManager.getNotebookIndex(), listManager.getNotebookCounter());    
1389                 
1390                 // Find the name of the notebook
1391                 String notebookName = null;
1392                 for (int i=0; i<listManager.getNotebookIndex().size(); i++) {
1393                         if (listManager.getNotebookIndex().get(i).getGuid().equals(notebookGuid)) {
1394                                 notebookName = listManager.getNotebookIndex().get(i).getName();
1395                                 break;
1396                         }
1397                 }
1398                 
1399                 // If we found the name, update the browser window
1400                 if (notebookName != null) {
1401                         updateListNoteNotebook(guid, notebookName);
1402                         if (guid.equals(currentNoteGuid)) {
1403                                 int pos =  browserWindow.notebookBox.findText(notebookName);
1404                                 if (pos >=0)
1405                                         browserWindow.notebookBox.setCurrentIndex(pos);
1406                         }
1407                 }
1408                 
1409                 // If we're dealing with the current note, then we need to be sure and update the notebook there
1410                 if (guid.equals(currentNoteGuid)) {
1411                         if (currentNote != null) {
1412                                 currentNote.setNotebookGuid(notebookGuid);
1413                         }
1414                 }
1415         }
1416         // Open/close notebooks
1417         @SuppressWarnings("unused")
1418         private void closeNotebooks() {
1419                 NotebookArchive na = new NotebookArchive(listManager.getNotebookIndex(), listManager.getArchiveNotebookIndex());
1420                 na.exec();
1421                 if (!na.okClicked())
1422                         return;
1423                 
1424                 waitCursor(true);
1425                 listManager.getArchiveNotebookIndex().clear();
1426                 
1427                 for (int i=na.getClosedBookList().count()-1; i>=0; i--) {
1428                         String text = na.getClosedBookList().takeItem(i).text();
1429                         for (int j=0; j<listManager.getNotebookIndex().size(); j++) {
1430                                 if (listManager.getNotebookIndex().get(j).getName().equalsIgnoreCase(text)) {
1431                                         Notebook n = listManager.getNotebookIndex().get(j);
1432                                         conn.getNotebookTable().setArchived(n.getGuid(),true);
1433                                         listManager.getArchiveNotebookIndex().add(n);
1434                                         j=listManager.getNotebookIndex().size();
1435                                 }
1436                         }
1437                 }
1438                 
1439                 for (int i=na.getOpenBookList().count()-1; i>=0; i--) {
1440                         String text = na.getOpenBookList().takeItem(i).text();
1441                         for (int j=0; j<listManager.getNotebookIndex().size(); j++) {
1442                                 if (listManager.getNotebookIndex().get(j).getName().equalsIgnoreCase(text)) {
1443                                         Notebook n = listManager.getNotebookIndex().get(j);
1444                                         conn.getNotebookTable().setArchived(n.getGuid(),false);
1445                                         j=listManager.getNotebookIndex().size();
1446                                 }
1447                         }
1448                 }
1449                 notebookTreeSelection();
1450                 listManager.loadNotesIndex();
1451                 notebookIndexUpdated();
1452                 noteIndexUpdated(false);
1453 //              noteIndexUpdated(false);
1454                 
1455                 // Build a list of non-closed notebooks
1456                 List<Notebook> nbooks = new ArrayList<Notebook>();
1457                 for (int i=0; i<listManager.getNotebookIndex().size(); i++) {
1458                         boolean found=false;
1459                         for (int j=0; j<listManager.getArchiveNotebookIndex().size(); j++) {
1460                                 if (listManager.getArchiveNotebookIndex().get(j).getGuid().equals(listManager.getNotebookIndex().get(i).getGuid()))
1461                                         found = true;
1462                         }
1463                         if (!found)
1464                                 nbooks.add(listManager.getNotebookIndex().get(i));
1465                 }
1466                 waitCursor(false);
1467                 browserWindow.setNotebookList(nbooks);
1468         }
1469
1470         
1471         
1472         
1473         
1474     //***************************************************************
1475     //***************************************************************
1476     //** These functions deal with Tag menu items
1477     //***************************************************************
1478     //***************************************************************
1479         // Add a new notebook
1480         @SuppressWarnings("unused")
1481         private void addTag() {
1482                 logger.log(logger.HIGH, "Inside NeverNote.addTag");
1483                 TagEdit edit = new TagEdit();
1484                 edit.setTagList(listManager.getTagIndex());
1485                 edit.exec();
1486         
1487                 if (!edit.okPressed())
1488                         return;
1489         
1490                 Calendar currentTime = new GregorianCalendar();
1491                 Long l = new Long(currentTime.getTimeInMillis());
1492                 String randint = new String(Long.toString(l));
1493         
1494                 Tag newTag = new Tag();
1495                 newTag.setUpdateSequenceNum(0);
1496                 newTag.setGuid(randint);
1497                 newTag.setName(edit.getTag());
1498                 conn.getTagTable().addTag(newTag, true);
1499                 listManager.getTagIndex().add(newTag);
1500                 reloadTagTree(true);
1501                 
1502                 logger.log(logger.HIGH, "Leaving NeverNote.addTag");
1503         }
1504         private void reloadTagTree() {
1505                 reloadTagTree(false);
1506         }
1507         private void reloadTagTree(boolean reload) {
1508                 logger.log(logger.HIGH, "Entering NeverNote.reloadTagTree");
1509                 tagIndexUpdated(reload);
1510                 boolean filter = false;
1511                 listManager.countTagResults(listManager.getNoteIndex());
1512                 if (notebookTree.selectedItems().size() > 0 
1513                                                   && !notebookTree.selectedItems().get(0).text(0).equalsIgnoreCase("All Notebooks"))
1514                                                   filter = true;
1515                 if (tagTree.selectedItems().size() > 0)
1516                         filter = true;
1517                 tagTree.showAllTags(!filter);
1518                 logger.log(logger.HIGH, "Leaving NeverNote.reloadTagTree");
1519         }
1520         // Edit an existing tag
1521         @SuppressWarnings("unused")
1522         private void editTag() {
1523                 logger.log(logger.HIGH, "Entering NeverNote.editTag");
1524                 TagEdit edit = new TagEdit();
1525                 edit.setTitle("Edit Tag");
1526                 List<QTreeWidgetItem> selections = tagTree.selectedItems();
1527                 QTreeWidgetItem currentSelection;
1528                 currentSelection = selections.get(0);
1529                 edit.setTag(currentSelection.text(0));
1530                 edit.setTagList(listManager.getTagIndex());
1531                 edit.exec();
1532         
1533                 if (!edit.okPressed())
1534                         return;
1535         
1536                 String guid = currentSelection.text(2);
1537                 currentSelection.setText(0,edit.getTag());
1538                 
1539                 for (int i=0; i<listManager.getTagIndex().size(); i++) {
1540                         if (listManager.getTagIndex().get(i).getGuid().equals(guid)) {
1541                                 listManager.getTagIndex().get(i).setName(edit.getTag());
1542                                 conn.getTagTable().updateTag(listManager.getTagIndex().get(i), true);
1543                                 updateListTagName(guid);
1544                                 if (currentNote != null && currentNote.getTagGuids().contains(guid))
1545                                         browserWindow.setTag(getTagNamesForNote(currentNote));
1546                                 logger.log(logger.HIGH, "Leaving NeverNote.editTag");
1547                                 return;
1548                         }
1549                 }
1550                 browserWindow.setTag(getTagNamesForNote(currentNote));
1551                 logger.log(logger.HIGH, "Leaving NeverNote.editTag...");
1552         }
1553         // Delete an existing tag
1554         @SuppressWarnings("unused")
1555         private void deleteTag() {
1556                 logger.log(logger.HIGH, "Entering NeverNote.deleteTag");
1557                 
1558                 if (QMessageBox.question(this, tr("Confirmation"), tr("Delete the selected tags?"),
1559                         QMessageBox.StandardButton.Yes, 
1560                         QMessageBox.StandardButton.No)==StandardButton.No.value()) {
1561                                                         return;
1562                 }
1563                 
1564                 List<QTreeWidgetItem> selections = tagTree.selectedItems();
1565         for (int i=selections.size()-1; i>=0; i--) {
1566                 QTreeWidgetItem currentSelection;
1567                 currentSelection = selections.get(i);                   
1568                 removeTagItem(currentSelection.text(2));
1569         }
1570         tagIndexUpdated(true);
1571         tagTreeSelection();
1572         listManager.countTagResults(listManager.getNoteIndex());
1573 //              tagTree.updateCounts(listManager.getTagCounter());
1574         logger.log(logger.HIGH, "Leaving NeverNote.deleteTag");
1575         }
1576         // Remove a tag tree item.  Go recursively down & remove the children too
1577         private void removeTagItem(String guid) {
1578         for (int j=listManager.getTagIndex().size()-1; j>=0; j--) {             
1579                 String parent = listManager.getTagIndex().get(j).getParentGuid();
1580                 if (parent != null && parent.equals(guid)) {            
1581                         //Remove this tag's children
1582                         removeTagItem(listManager.getTagIndex().get(j).getGuid());
1583                 }
1584         }
1585         //Now, remove this tag
1586         removeListTagName(guid);
1587         conn.getTagTable().expungeTag(guid, true);                      
1588         for (int a=0; a<listManager.getTagIndex().size(); a++) {
1589                 if (listManager.getTagIndex().get(a).getGuid().equals(guid)) {
1590                         listManager.getTagIndex().remove(a);
1591                         return;
1592                 }
1593         }
1594         }
1595         // Setup the tree containing the user's tags
1596     private void initializeTagTree() {
1597         logger.log(logger.HIGH, "Entering NeverNote.initializeTagTree");
1598         tagTree.itemSelectionChanged.connect(this, "tagTreeSelection()");
1599         listManager.tagSignal.refreshTagTreeCounts.connect(tagTree, "updateCounts(List)");
1600         logger.log(logger.HIGH, "Leaving NeverNote.initializeTagTree");
1601     }
1602     // Listener when a tag is selected
1603         private void tagTreeSelection() {
1604         logger.log(logger.HIGH, "Entering NeverNote.tagTreeSelection");
1605                 
1606         clearTrashFilter();
1607         clearAttributeFilter();
1608         clearSavedSearchFilter();
1609         
1610                 menuBar.noteRestoreAction.setVisible(false);
1611                 
1612         List<QTreeWidgetItem> selections = tagTree.selectedItems();
1613         QTreeWidgetItem currentSelection;
1614         selectedTagGUIDs.clear();
1615         for (int i=0; i<selections.size(); i++) {
1616                 currentSelection = selections.get(i);
1617                 selectedTagGUIDs.add(currentSelection.text(2));
1618         }
1619         if (selections.size() > 0) {
1620                 menuBar.tagEditAction.setEnabled(true);
1621                 menuBar.tagDeleteAction.setEnabled(true);
1622         }
1623         else {
1624                 menuBar.tagEditAction.setEnabled(false);
1625                 menuBar.tagDeleteAction.setEnabled(false);
1626         }
1627         listManager.setSelectedTags(selectedTagGUIDs);
1628         listManager.loadNotesIndex();
1629         noteIndexUpdated(false);
1630         logger.log(logger.HIGH, "Leaving NeverNote.tagTreeSelection");
1631     }
1632     // trigger the tag index to be refreshed
1633     @SuppressWarnings("unused")
1634         private void tagIndexUpdated() {
1635         tagIndexUpdated(true);
1636     }
1637     private void tagIndexUpdated(boolean reload) {
1638         logger.log(logger.HIGH, "Entering NeverNote.tagIndexUpdated");
1639                 if (selectedTagGUIDs == null)
1640                         selectedTagGUIDs = new ArrayList<String>();
1641 //              selectedTagGUIDs.clear();  // clear out old entries
1642
1643                 tagTree.blockSignals(true);
1644                 if (reload)
1645                         tagTree.load(listManager.getTagIndex());
1646         for (int i=selectedTagGUIDs.size()-1; i>=0; i--) {
1647                 boolean found = tagTree.selectGuid(selectedTagGUIDs.get(i));
1648                 if (!found)
1649                         selectedTagGUIDs.remove(i);
1650         }
1651         tagTree.blockSignals(false);
1652         
1653                 browserWindow.setTag(getTagNamesForNote(currentNote));
1654         logger.log(logger.HIGH, "Leaving NeverNote.tagIndexUpdated");
1655     }   
1656     // Show/Hide note information
1657         private void toggleTagWindow() {
1658                 logger.log(logger.HIGH, "Entering NeverNote.toggleTagWindow");
1659         if (tagTree.isVisible())
1660                 tagTree.hide();
1661         else
1662                 tagTree.show();
1663         menuBar.hideTags.setChecked(tagTree.isVisible());
1664         Global.saveWindowVisible("tagTree", tagTree.isVisible());
1665         logger.log(logger.HIGH, "Leaving NeverNote.toggleTagWindow");
1666     }   
1667         // A note's tags have been updated
1668         @SuppressWarnings("unused")
1669         private void updateNoteTags(String guid, List<String> tags) {
1670                 // Save any new tags.  We'll need them later.
1671                 List<String> newTags = new ArrayList<String>();
1672                 for (int i=0; i<tags.size(); i++) {
1673                         if (conn.getTagTable().findTagByName(tags.get(i))==null) 
1674                                 newTags.add(tags.get(i));
1675                 }
1676                 
1677                 listManager.saveNoteTags(guid, tags);
1678                 listManager.countTagResults(listManager.getNoteIndex());
1679                 StringBuffer names = new StringBuffer("");
1680                 for (int i=0; i<tags.size(); i++) {
1681                         names = names.append(tags.get(i));
1682                         if (i<tags.size()-1) {
1683                                 names.append(Global.tagDelimeter + " ");
1684                         }
1685                 }
1686                 browserWindow.setTag(names.toString());
1687                 noteDirty = true;
1688                 
1689                 // Now, we need to add any new tags to the tag tree
1690                 for (int i=0; i<newTags.size(); i++) 
1691                         tagTree.insertTag(newTags.get(i), conn.getTagTable().findTagByName(newTags.get(i)));
1692         }
1693         // Get a string containing all tag names for a note
1694         private String getTagNamesForNote(Note n) {
1695                 logger.log(logger.HIGH, "Entering NeverNote.getTagNamesForNote");
1696                 if (n==null || n.getGuid() == null || n.getGuid().equals(""))
1697                         return "";
1698                 StringBuffer buffer = new StringBuffer(100);
1699                 Vector<String> v = new Vector<String>();
1700                 List<String> guids = n.getTagGuids();
1701                 
1702                 if (guids == null) 
1703                         return "";
1704                 
1705                 for (int i=0; i<guids.size(); i++) {
1706                         v.add(listManager.getTagNameByGuid(guids.get(i)));
1707                 }
1708                 Comparator<String> comparator = Collections.reverseOrder();
1709                 Collections.sort(v,comparator);
1710                 Collections.reverse(v);
1711                 
1712                 for (int i = 0; i<v.size(); i++) {
1713                         if (i>0) 
1714                                 buffer.append(", ");
1715                         buffer.append(v.get(i));
1716                 }
1717                 
1718                 logger.log(logger.HIGH, "Leaving NeverNote.getTagNamesForNote");
1719                 return buffer.toString();
1720         }       
1721         // Tags were added via dropping notes from the note list
1722         @SuppressWarnings("unused")
1723         private void tagsAdded(String noteGuid, String tagGuid) {
1724                 String tagName = null;
1725                 for (int i=0; i<listManager.getTagIndex().size(); i++) {
1726                         if (listManager.getTagIndex().get(i).getGuid().equals(tagGuid)) {
1727                                 tagName = listManager.getTagIndex().get(i).getName();
1728                                 i=listManager.getTagIndex().size();
1729                         }
1730                 }
1731                 if (tagName == null)
1732                         return;
1733                 
1734                 for (int i=0; i<listManager.getMasterNoteIndex().size(); i++) {
1735                         if (listManager.getMasterNoteIndex().get(i).getGuid().equals(noteGuid)) {
1736                                 List<String> tagNames = new ArrayList<String>();
1737                                 tagNames.add(new String(tagName));
1738                                 Note n = listManager.getMasterNoteIndex().get(i);
1739                                 for (int j=0; j<n.getTagNames().size(); j++) {
1740                                         tagNames.add(new String(n.getTagNames().get(j)));
1741                                 }
1742                                 listManager.getNoteTableModel().updateNoteTags(noteGuid, n.getTagGuids(), tagNames);
1743                                 if (n.getGuid().equals(currentNoteGuid)) {
1744                                         Collections.sort(tagNames);
1745                                         String display = "";
1746                                         for (int j=0; j<tagNames.size(); j++) {
1747                                                 display = display+tagNames.get(j);
1748                                                 if (j+2<tagNames.size()) 
1749                                                         display = display+Global.tagDelimeter+" ";
1750                                         }
1751                                         browserWindow.setTag(display);
1752                                 }
1753                                 i=listManager.getMasterNoteIndex().size();
1754                         }
1755                 }
1756                 
1757                 
1758                 listManager.getNoteTableModel().updateNoteSyncStatus(noteGuid, false);
1759         }
1760         private void clearTagFilter() {
1761                 tagTree.blockSignals(true);
1762                 tagTree.clearSelection();
1763                 menuBar.noteRestoreAction.setVisible(false);
1764                 menuBar.tagEditAction.setEnabled(false);
1765                 menuBar.tagDeleteAction.setEnabled(false);
1766                 selectedTagGUIDs.clear();
1767         listManager.setSelectedTags(selectedTagGUIDs);
1768         tagTree.blockSignals(false);
1769         }
1770         
1771         
1772     //***************************************************************
1773     //***************************************************************
1774     //** These functions deal with Saved Search menu items
1775     //***************************************************************
1776     //***************************************************************
1777         // Add a new notebook
1778         @SuppressWarnings("unused")
1779         private void addSavedSearch() {
1780                 logger.log(logger.HIGH, "Inside NeverNote.addSavedSearch");
1781                 SavedSearchEdit edit = new SavedSearchEdit();
1782                 edit.setSearchList(listManager.getSavedSearchIndex());
1783                 edit.exec();
1784         
1785                 if (!edit.okPressed())
1786                         return;
1787         
1788                 Calendar currentTime = new GregorianCalendar();         
1789                 Long l = new Long(currentTime.getTimeInMillis());
1790                 String randint = new String(Long.toString(l));
1791         
1792                 SavedSearch search = new SavedSearch();
1793                 search.setUpdateSequenceNum(0);
1794                 search.setGuid(randint);
1795                 search.setName(edit.getName());
1796                 search.setQuery(edit.getQuery());
1797                 search.setFormat(QueryFormat.USER);
1798                 listManager.getSavedSearchIndex().add(search);
1799                 conn.getSavedSearchTable().addSavedSearch(search, true);
1800                 savedSearchIndexUpdated();
1801                 logger.log(logger.HIGH, "Leaving NeverNote.addSavedSearch");
1802         }
1803         // Edit an existing tag
1804         @SuppressWarnings("unused")
1805         private void editSavedSearch() {
1806                 logger.log(logger.HIGH, "Entering NeverNote.editSavedSearch");
1807                 SavedSearchEdit edit = new SavedSearchEdit();
1808                 edit.setTitle(tr("Edit Search"));
1809                 List<QTreeWidgetItem> selections = savedSearchTree.selectedItems();
1810                 QTreeWidgetItem currentSelection;
1811                 currentSelection = selections.get(0);
1812                 String guid = currentSelection.text(1);
1813                 SavedSearch s = conn.getSavedSearchTable().getSavedSearch(guid);
1814                 edit.setName(currentSelection.text(0));
1815                 edit.setQuery(s.getQuery());
1816                 edit.setSearchList(listManager.getSavedSearchIndex());
1817                 edit.exec();
1818         
1819                 if (!edit.okPressed())
1820                         return;
1821         
1822                 List<SavedSearch> list = listManager.getSavedSearchIndex();
1823                 SavedSearch search = null;
1824                 boolean found = false;
1825                 for (int i=0; i<list.size(); i++) {
1826                         search = list.get(i);
1827                         if (search.getGuid().equals(guid)) {
1828                                 i=list.size();
1829                                 found = true;
1830                         }
1831                 }
1832                 if (!found)
1833                         return;
1834                 search.setName(edit.getName());
1835                 search.setQuery(edit.getQuery());
1836                 conn.getSavedSearchTable().updateSavedSearch(search, true);
1837                 savedSearchIndexUpdated();
1838                 logger.log(logger.HIGH, "Leaving NeverNote.editSavedSearch");
1839         }
1840         // Delete an existing tag
1841         @SuppressWarnings("unused")
1842         private void deleteSavedSearch() {
1843                 logger.log(logger.HIGH, "Entering NeverNote.deleteSavedSearch");
1844                 
1845                 if (QMessageBox.question(this, "Confirmation", "Delete the selected search?",
1846                         QMessageBox.StandardButton.Yes, 
1847                         QMessageBox.StandardButton.No)==StandardButton.No.value()) {
1848                                                         return;
1849                 }
1850                 
1851                 List<QTreeWidgetItem> selections = savedSearchTree.selectedItems();
1852         for (int i=selections.size()-1; i>=0; i--) {
1853                 QTreeWidgetItem currentSelection;
1854                 currentSelection = selections.get(i);
1855                 for (int j=0; j<listManager.getSavedSearchIndex().size(); j++) {
1856                         if (listManager.getSavedSearchIndex().get(j).getGuid().equals(currentSelection.text(1))) {
1857                                 conn.getSavedSearchTable().expungeSavedSearch(listManager.getSavedSearchIndex().get(j).getGuid(), true);
1858                                 listManager.getSavedSearchIndex().remove(j);
1859                                 j=listManager.getSavedSearchIndex().size()+1;
1860                         }
1861                 }
1862                 selections.remove(i);
1863         }
1864         savedSearchIndexUpdated();
1865         logger.log(logger.HIGH, "Leaving NeverNote.deleteSavedSearch");
1866         }
1867     // Setup the tree containing the user's tags
1868     private void initializeSavedSearchTree() {
1869         logger.log(logger.HIGH, "Entering NeverNote.initializeSavedSearchTree");
1870         savedSearchTree.itemSelectionChanged.connect(this, "savedSearchTreeSelection()");
1871         logger.log(logger.HIGH, "Leaving NeverNote.initializeSavedSearchTree");
1872     }
1873     // Listener when a tag is selected
1874     @SuppressWarnings("unused")
1875         private void savedSearchTreeSelection() {
1876         logger.log(logger.HIGH, "Entering NeverNote.savedSearchTreeSelection");
1877
1878         clearNotebookFilter();
1879         clearTagFilter();
1880         clearTrashFilter();
1881         clearAttributeFilter();
1882         
1883         String currentGuid = selectedSavedSearchGUID;
1884         menuBar.savedSearchEditAction.setEnabled(true);
1885         menuBar.savedSearchDeleteAction.setEnabled(true);
1886         List<QTreeWidgetItem> selections = savedSearchTree.selectedItems();
1887         QTreeWidgetItem currentSelection;
1888         selectedSavedSearchGUID = "";
1889         for (int i=0; i<selections.size(); i++) {
1890                 currentSelection = selections.get(i);
1891                 if (currentSelection.text(1).equals(currentGuid)) {
1892                         currentSelection.setSelected(false);
1893                 } else {
1894                         selectedSavedSearchGUID = currentSelection.text(1);
1895                 }
1896 //              i = selections.size() +1;
1897         }
1898         
1899         // There is the potential for no notebooks to be selected if this 
1900         // happens then we make it look like all notebooks were selecetd.
1901         // If that happens, just select the "all notebooks"
1902         if (selections.size()==0) {
1903                 clearSavedSearchFilter();
1904         }
1905         listManager.setSelectedSavedSearch(selectedSavedSearchGUID);
1906         
1907         logger.log(logger.HIGH, "Leaving NeverNote.savedSearchTreeSelection");
1908     }
1909     private void clearSavedSearchFilter() {
1910         menuBar.savedSearchEditAction.setEnabled(false);
1911         menuBar.savedSearchDeleteAction.setEnabled(false);
1912         savedSearchTree.blockSignals(true);
1913         savedSearchTree.clearSelection();
1914         savedSearchTree.blockSignals(false);
1915         selectedSavedSearchGUID = "";
1916         searchField.setEditText("");
1917         searchPerformed = false;
1918         listManager.setSelectedSavedSearch(selectedSavedSearchGUID);
1919     }
1920     // trigger the tag index to be refreshed
1921         private void savedSearchIndexUpdated() { 
1922                 if (selectedSavedSearchGUID == null)
1923                         selectedSavedSearchGUID = new String();
1924                 savedSearchTree.blockSignals(true);
1925         savedSearchTree.load(listManager.getSavedSearchIndex());
1926         savedSearchTree.selectGuid(selectedSavedSearchGUID);
1927         savedSearchTree.blockSignals(false);
1928     }
1929     // trigger when the saved search selection changes
1930     @SuppressWarnings("unused")
1931         private void updateSavedSearchSelection() {
1932                 logger.log(logger.HIGH, "Entering NeverNote.updateSavedSearchSelection()");
1933                 
1934         menuBar.savedSearchEditAction.setEnabled(true);
1935         menuBar.savedSearchDeleteAction.setEnabled(true);
1936         List<QTreeWidgetItem> selections = savedSearchTree.selectedItems();
1937
1938         if (selections.size() > 0) {
1939                 menuBar.savedSearchEditAction.setEnabled(true);
1940                 menuBar.savedSearchDeleteAction.setEnabled(true);
1941                 selectedSavedSearchGUID = selections.get(0).text(1);
1942                 SavedSearch s = conn.getSavedSearchTable().getSavedSearch(selectedSavedSearchGUID);
1943                 searchField.setEditText(s.getQuery());
1944         } else { 
1945                 menuBar.savedSearchEditAction.setEnabled(false);
1946                 menuBar.savedSearchDeleteAction.setEnabled(false);
1947                 selectedSavedSearchGUID = "";
1948                 searchField.setEditText("");
1949         }
1950         searchFieldChanged();
1951         
1952                 logger.log(logger.HIGH, "Leaving NeverNote.updateSavedSearchSelection()");
1953
1954         
1955     }
1956     // Show/Hide note information
1957         private void toggleSavedSearchWindow() {
1958                 logger.log(logger.HIGH, "Entering NeverNote.toggleSavedSearchWindow");
1959         if (savedSearchTree.isVisible())
1960                 savedSearchTree.hide();
1961         else
1962                 savedSearchTree.show();
1963         menuBar.hideSavedSearches.setChecked(savedSearchTree.isVisible());
1964                                 
1965                 Global.saveWindowVisible("savedSearchTree", savedSearchTree.isVisible());
1966         logger.log(logger.HIGH, "Leaving NeverNote.toggleSavedSearchWindow");
1967     }
1968         
1969         
1970         
1971         
1972     //***************************************************************
1973     //***************************************************************
1974     //** These functions deal with Help menu & tool menu items
1975     //***************************************************************
1976     //***************************************************************
1977         // Show database status
1978         @SuppressWarnings("unused")
1979         private void databaseStatus() {
1980                 waitCursor(true);
1981                 int dirty = conn.getNoteTable().getDirtyCount();
1982                 int unindexed = conn.getNoteTable().getUnindexedCount();
1983                 DatabaseStatus status = new DatabaseStatus();
1984                 status.setUnsynchronized(dirty);
1985                 status.setUnindexed(unindexed);
1986                 status.setNoteCount(conn.getNoteTable().getNoteCount());
1987                 status.setNotebookCount(listManager.getNotebookIndex().size());
1988                 status.setSavedSearchCount(listManager.getSavedSearchIndex().size());
1989                 status.setTagCount(listManager.getTagIndex().size());
1990                 status.setResourceCount(conn.getNoteTable().noteResourceTable.getResourceCount());
1991                 status.setWordCount(conn.getWordsTable().getWordCount());
1992                 waitCursor(false);
1993                 status.exec();
1994         }
1995         // Compact the database
1996         @SuppressWarnings("unused")
1997         private void compactDatabase() {
1998         logger.log(logger.HIGH, "Entering NeverNote.compactDatabase");
1999                 if (QMessageBox.question(this, tr("Confirmation"), tr("This will free unused space in the database, "+
2000                                 "but please be aware that depending upon the size of your database this can be time consuming " +
2001                                 "and NeverNote will be unresponsive until it is complete.  Do you wish to continue?"),
2002                                 QMessageBox.StandardButton.Yes, 
2003                                 QMessageBox.StandardButton.No)==StandardButton.No.value() && Global.verifyDelete() == true) {
2004                                                         return;
2005                 }
2006                 setMessage("Compacting database.");
2007                 waitCursor(true);
2008                 listManager.compactDatabase();
2009                 waitCursor(false);
2010                 setMessage("Database compact is complete.");            
2011         logger.log(logger.HIGH, "Leaving NeverNote.compactDatabase");
2012     }
2013         @SuppressWarnings("unused")
2014         private void accountInformation() {
2015                 logger.log(logger.HIGH, "Entering NeverNote.accountInformation");
2016                 AccountDialog dialog = new AccountDialog();
2017                 dialog.show();
2018                 logger.log(logger.HIGH, "Leaving NeverNote.accountInformation");
2019         }
2020         @SuppressWarnings("unused")
2021         private void releaseNotes() {
2022                 logger.log(logger.HIGH, "Entering NeverNote.releaseNotes");
2023                 QDialog dialog = new QDialog(this);
2024                 QHBoxLayout layout = new QHBoxLayout();
2025                 QTextEdit textBox = new QTextEdit();
2026                 layout.addWidget(textBox);
2027                 textBox.setReadOnly(true);
2028                 QFile file = new QFile(Global.getFileManager().getHomeDirPath("release.txt"));
2029                 if (!file.open(new QIODevice.OpenMode(QIODevice.OpenModeFlag.ReadOnly,
2030                 QIODevice.OpenModeFlag.Text)))
2031                         return;
2032                 textBox.setText(file.readAll().toString());
2033                 file.close();
2034                 dialog.setWindowTitle(tr("Release Notes"));
2035                 dialog.setLayout(layout);
2036                 dialog.show();
2037                 logger.log(logger.HIGH, "Leaving NeverNote.releaseNotes");
2038         }
2039         // Called when user picks Log from the help menu
2040         @SuppressWarnings("unused")
2041         private void logger() {
2042                 logger.log(logger.HIGH, "Entering NeverNote.logger");
2043                 QDialog dialog = new QDialog(this);
2044                 QHBoxLayout layout = new QHBoxLayout();
2045                 QListWidget textBox = new QListWidget();
2046                 layout.addWidget(textBox);
2047                 textBox.addItems(emitLog);
2048                 
2049                 dialog.setLayout(layout);
2050                 dialog.setWindowTitle(tr("Mesasge Log"));
2051                 dialog.show();
2052                 logger.log(logger.HIGH, "Leaving NeverNote.logger");
2053         }
2054         // Menu option "help/about" was selected
2055         @SuppressWarnings("unused")
2056         private void about() {
2057                 logger.log(logger.HIGH, "Entering NeverNote.about");
2058                 QMessageBox.about(this, 
2059                                                 tr("About NeverNote"),
2060                                                 tr("<h4><center><b>NeverNote</b></center></h4><hr><center>Version ")
2061                                                 +Global.version
2062                                                 +tr("<hr></center>Evernote"
2063                                                                 +"An Open Source Evernote Client.<br><br>" 
2064                                                                 +"Licensed under GPL v2.  <br><hr><br>"
2065                                                                 +"Evernote is copyright 2001-2010 by Evernote Corporation<br>"
2066                                                                 +"Jambi and QT are the licensed trademark of Nokia Corporation<br>"
2067                                                                 +"PDFRenderer is licened under the LGPL<br>"
2068                                                                 +"JTidy is copyrighted under the World Wide Web Consortium<br>"
2069                                                                 +"Apache Common Utilities licensed under the Apache License Version 2.0<br>"
2070                                                                 +"Jazzy is licened under the LGPL<br>"
2071                                                                 +"Java is a registered trademark of Oracle Corporation.<br><hr>"));     
2072                 logger.log(logger.HIGH, "Leaving NeverNote.about");
2073         }
2074         // Hide the entire left hand side
2075         @SuppressWarnings("unused")
2076         private void toggleLeftSide() {
2077                 boolean hidden;
2078                 
2079                 hidden = !menuBar.hideLeftSide.isChecked();
2080                 menuBar.hideLeftSide.setChecked(!hidden);
2081                 
2082                 if (notebookTree.isVisible() != hidden)
2083                         toggleNotebookWindow();
2084                 if (savedSearchTree.isVisible() != hidden)
2085                         toggleSavedSearchWindow();
2086                 if (tagTree.isVisible() != hidden)
2087                         toggleTagWindow();
2088                 if (attributeTree.isVisible() != hidden)
2089                         toggleAttributesWindow();
2090                 if (trashTree.isVisible() != hidden)
2091                         toggleTrashWindow();
2092                 
2093                 Global.saveWindowVisible("leftPanel", hidden);
2094                 
2095         }
2096                         
2097         
2098     //***************************************************************
2099     //***************************************************************
2100     //** These functions deal with the Toolbar
2101     //***************************************************************
2102     //***************************************************************  
2103         // Text in the search bar has been cleared
2104         private void searchFieldCleared() {
2105                 searchField.setEditText("");
2106                 saveNoteColumnPositions();
2107                 saveNoteIndexWidth();
2108         }
2109         // text in the search bar changed.  We only use this to tell if it was cleared, 
2110         // otherwise we trigger off searchFieldChanged.
2111         @SuppressWarnings("unused")
2112         private void searchFieldTextChanged(String text) {
2113                 if (text.trim().equals("")) {
2114                         searchFieldCleared();
2115                         if (searchPerformed) {
2116                                 noteCache.clear();
2117                                 listManager.setEnSearch("");
2118 /////                           listManager.clearNoteIndexSearch();
2119                                 //noteIndexUpdated(true);
2120                                 listManager.loadNotesIndex();
2121                                 refreshEvernoteNote(true);
2122                                 noteIndexUpdated(false);
2123                         }
2124                         searchPerformed = false;
2125                 }
2126         }
2127     // Text in the toolbar has changed
2128     private void searchFieldChanged() {
2129         logger.log(logger.HIGH, "Entering NeverNote.searchFieldChanged");
2130         noteCache.clear();
2131         saveNoteColumnPositions();
2132         saveNoteIndexWidth();
2133         String text = searchField.currentText();
2134         listManager.setEnSearch(text.trim());
2135         listManager.loadNotesIndex();
2136 //--->>>        noteIndexUpdated(true);
2137         noteIndexUpdated(false);
2138         refreshEvernoteNote(true);
2139         searchPerformed = true;
2140         logger.log(logger.HIGH, "Leaving NeverNote.searchFieldChanged");
2141     }
2142
2143     // Build the window tool bar
2144     private void setupToolBar() {
2145         logger.log(logger.HIGH, "Entering NeverNote.setupToolBar");
2146         toolBar = addToolBar(tr("Tool Bar"));   
2147         menuBar.setupToolBarVisible();
2148         if (!Global.isWindowVisible("toolBar"))
2149                 toolBar.setVisible(false);
2150         else
2151                 toolBar.setVisible(true);
2152
2153         prevButton = toolBar.addAction("Previous");
2154         QIcon prevIcon = new QIcon(iconPath+"back.png");
2155         prevButton.setIcon(prevIcon);
2156         prevButton.triggered.connect(this, "previousViewedAction()");   
2157         togglePrevArrowButton(Global.isToolbarButtonVisible("prevArrow"));
2158         
2159         nextButton = toolBar.addAction("Next");
2160         QIcon nextIcon = new QIcon(iconPath+"forward.png");
2161         nextButton.setIcon(nextIcon);
2162         nextButton.triggered.connect(this, "nextViewedAction()");       
2163         toggleNextArrowButton(Global.isToolbarButtonVisible("nextArrow"));
2164         
2165         upButton = toolBar.addAction("Up");
2166         QIcon upIcon = new QIcon(iconPath+"up.png");
2167         upButton.setIcon(upIcon);
2168         upButton.triggered.connect(this, "upAction()");         
2169         toggleUpArrowButton(Global.isToolbarButtonVisible("upArrow"));
2170
2171         
2172         downButton = toolBar.addAction("Down");
2173         QIcon downIcon = new QIcon(iconPath+"down.png");
2174         downButton.setIcon(downIcon);
2175         downButton.triggered.connect(this, "downAction()");
2176         toggleDownArrowButton(Global.isToolbarButtonVisible("downArrow"));
2177         
2178         synchronizeButton = toolBar.addAction("Synchronize");
2179         synchronizeButton.setIcon(new QIcon(iconPath+"synchronize.png"));
2180         synchronizeIconAngle = 0;
2181         synchronizeButton.triggered.connect(this, "evernoteSync()");
2182         toggleSynchronizeButton(Global.isToolbarButtonVisible("synchronize"));
2183         
2184         printButton = toolBar.addAction("Print");
2185         QIcon printIcon = new QIcon(iconPath+"print.png");
2186         printButton.setIcon(printIcon);
2187         printButton.triggered.connect(this, "printNote()");
2188         togglePrintButton(Global.isToolbarButtonVisible("print"));
2189
2190         tagButton = toolBar.addAction("Tag"); 
2191         QIcon tagIcon = new QIcon(iconPath+"tag.png");
2192         tagButton.setIcon(tagIcon);
2193         tagButton.triggered.connect(browserWindow, "modifyTags()");
2194         toggleTagButton(Global.isToolbarButtonVisible("tag"));
2195
2196         attributeButton = toolBar.addAction("Attributes"); 
2197         QIcon attributeIcon = new QIcon(iconPath+"attribute.png");
2198         attributeButton.setIcon(attributeIcon);
2199         attributeButton.triggered.connect(this, "toggleNoteInformation()");
2200         toggleAttributeButton(Global.isToolbarButtonVisible("attribute"));
2201                 
2202         emailButton = toolBar.addAction("Email");
2203         QIcon emailIcon = new QIcon(iconPath+"email.png");
2204         emailButton.setIcon(emailIcon);
2205         emailButton.triggered.connect(this, "emailNote()");
2206         toggleEmailButton(Global.isToolbarButtonVisible("email"));
2207
2208         deleteButton = toolBar.addAction("Delete");     
2209         QIcon deleteIcon = new QIcon(iconPath+"delete.png");
2210         deleteButton.setIcon(deleteIcon);
2211         deleteButton.triggered.connect(this, "deleteNote()");
2212         toggleDeleteButton(Global.isToolbarButtonVisible("delete"));
2213
2214         newButton = toolBar.addAction("New");
2215         QIcon newIcon = new QIcon(iconPath+"new.png");
2216         newButton.triggered.connect(this, "addNote()");
2217         newButton.setIcon(newIcon);
2218         toggleNewButton(Global.isToolbarButtonVisible("new"));
2219         
2220         allNotesButton = toolBar.addAction("All Notes");
2221         QIcon allIcon = new QIcon(iconPath+"books.png");
2222         allNotesButton.triggered.connect(this, "allNotes()");
2223         allNotesButton.setIcon(allIcon);
2224         toggleAllNotesButton(Global.isToolbarButtonVisible("allNotes"));
2225         
2226         toolBar.addSeparator();
2227         toolBar.addWidget(new QLabel(tr("Quota:")));
2228         toolBar.addWidget(quotaBar);
2229         //quotaBar.setSizePolicy(Policy.Minimum, Policy.Minimum);
2230         updateQuotaBar();
2231         toolBar.addSeparator();
2232         
2233         // Setup the zoom
2234         zoomSpinner = new QSpinBox();
2235         zoomSpinner.setMinimum(10);
2236         zoomSpinner.setMaximum(1000);
2237         zoomSpinner.setAccelerated(true);
2238         zoomSpinner.setSingleStep(10);
2239         zoomSpinner.setValue(100);
2240         zoomSpinner.valueChanged.connect(this, "zoomChanged()");
2241         toolBar.addWidget(new QLabel(tr("Zoom")));
2242         toolBar.addWidget(zoomSpinner);
2243         
2244         //toolBar.addWidget(new QLabel("                    "));
2245         toolBar.addSeparator();
2246         toolBar.addWidget(new QLabel(tr("  Search:")));
2247         toolBar.addWidget(searchField);
2248         QSizePolicy sizePolicy = new QSizePolicy();
2249         sizePolicy.setHorizontalPolicy(Policy.MinimumExpanding);
2250         searchField.setSizePolicy(sizePolicy);
2251         searchField.setInsertPolicy(InsertPolicy.InsertAtTop);
2252
2253         searchClearButton = toolBar.addAction("Search Clear");
2254         QIcon searchClearIcon = new QIcon(iconPath+"searchclear.png");
2255         searchClearButton.setIcon(searchClearIcon);
2256         searchClearButton.triggered.connect(this, "searchFieldCleared()");
2257         toggleSearchClearButton(Global.isToolbarButtonVisible("searchClear"));
2258
2259         logger.log(logger.HIGH, "Leaving NeverNote.setupToolBar");
2260     }
2261     // Update the sychronize button picture
2262     @Override
2263         public QMenu createPopupMenu() {
2264         QMenu contextMenu = super.createPopupMenu();
2265         
2266         contextMenu.addSeparator();
2267         QAction prevAction = addContextAction("prevArrow", tr("Previous Arrow"));
2268         contextMenu.addAction(prevAction);
2269         prevAction.triggered.connect(this, "togglePrevArrowButton(Boolean)");
2270
2271         QAction nextAction = addContextAction("nextArrow", tr("Next Arrow"));
2272         contextMenu.addAction(nextAction);
2273         nextAction.triggered.connect(this, "toggleNextArrowButton(Boolean)");
2274
2275         QAction upAction = addContextAction("upArrow", tr("Up Arrow"));
2276         contextMenu.addAction(upAction);
2277         upAction.triggered.connect(this, "toggleUpArrowButton(Boolean)");
2278
2279         QAction downAction = addContextAction("downArrow", tr("Down Arrow"));
2280         contextMenu.addAction(downAction);
2281         downAction.triggered.connect(this, "toggleDownArrowButton(Boolean)");
2282
2283         QAction synchronizeAction = addContextAction("synchronize", tr("Synchronize"));
2284         contextMenu.addAction(synchronizeAction);
2285         synchronizeAction.triggered.connect(this, "toggleSynchronizeButton(Boolean)");
2286
2287         QAction printAction = addContextAction("print", tr("Print"));
2288         contextMenu.addAction(printAction);
2289         printAction.triggered.connect(this, "togglePrintButton(Boolean)");
2290
2291         QAction tagAction = addContextAction("tag", tr("Tag"));
2292         contextMenu.addAction(tagAction);
2293         tagAction.triggered.connect(this, "toggleTagButton(Boolean)");
2294         
2295         QAction attributeAction = addContextAction("attribute", tr("Attribute"));
2296         contextMenu.addAction(attributeAction);
2297         attributeAction.triggered.connect(this, "toggleAttributeButton(Boolean)");
2298         
2299         QAction emailAction = addContextAction("email", tr("Email"));
2300         contextMenu.addAction(emailAction);
2301         emailAction.triggered.connect(this, "toggleEmailButton(Boolean)");
2302
2303         QAction deleteAction = addContextAction("delete", tr("Delete"));
2304         contextMenu.addAction(deleteAction);
2305         deleteAction.triggered.connect(this, "toggleDeleteButton(Boolean)");
2306
2307         QAction newAction = addContextAction("new", tr("Add"));
2308         contextMenu.addAction(newAction);
2309         newAction.triggered.connect(this, "toggleNewButton(Boolean)");
2310
2311         QAction allNotesAction = addContextAction("allNotes", tr("All Notes"));
2312         contextMenu.addAction(allNotesAction);
2313         allNotesAction.triggered.connect(this, "toggleAllNotesButton(Boolean)");
2314         
2315         QAction searchClearAction = addContextAction("searchClear", tr("Search Clear"));
2316         contextMenu.addAction(searchClearAction);
2317         searchClearAction.triggered.connect(this, "toggleSearchClearButton(Boolean)");
2318         
2319         return contextMenu;
2320         
2321     }
2322     private QAction addContextAction(String config, String name) {
2323         QAction newAction = new QAction(this);
2324                 newAction.setText(name);
2325                 newAction.setCheckable(true);
2326                 newAction.setChecked(Global.isToolbarButtonVisible(config));
2327                 return newAction;
2328     }
2329     private void togglePrevArrowButton(Boolean toggle) {
2330                 prevButton.setVisible(toggle);
2331                 Global.saveToolbarButtonsVisible("prevArrow", toggle);
2332     }
2333     private void toggleNextArrowButton(Boolean toggle) {
2334                 nextButton.setVisible(toggle);
2335                 Global.saveToolbarButtonsVisible("nextArrow", toggle);
2336     }
2337     private void toggleUpArrowButton(Boolean toggle) {
2338                 upButton.setVisible(toggle);
2339                 Global.saveToolbarButtonsVisible("upArrow", toggle);
2340     }
2341     private void toggleDownArrowButton(Boolean toggle) {
2342                 downButton.setVisible(toggle);
2343                 Global.saveToolbarButtonsVisible("downArrow", toggle);
2344     }
2345     private void toggleSynchronizeButton(Boolean toggle) {
2346                 synchronizeButton.setVisible(toggle);
2347                 Global.saveToolbarButtonsVisible("synchronize", toggle);
2348     }
2349     private void togglePrintButton(Boolean toggle) {
2350                 printButton.setVisible(toggle);
2351                 Global.saveToolbarButtonsVisible("print", toggle);
2352     }
2353     private void toggleTagButton(Boolean toggle) {
2354                 tagButton.setVisible(toggle);
2355                 Global.saveToolbarButtonsVisible("tag", toggle);
2356     }
2357     private void toggleAttributeButton(Boolean toggle) {
2358                 attributeButton.setVisible(toggle);
2359                 Global.saveToolbarButtonsVisible("attribute", toggle);
2360     }
2361     private void toggleEmailButton(Boolean toggle) {
2362                 emailButton.setVisible(toggle);
2363                 Global.saveToolbarButtonsVisible("email", toggle);
2364     }
2365     private void toggleDeleteButton(Boolean toggle) {
2366                 deleteButton.setVisible(toggle);
2367                 Global.saveToolbarButtonsVisible("delete", toggle);
2368     }
2369     private void toggleNewButton(Boolean toggle) {
2370                 newButton.setVisible(toggle);
2371                 Global.saveToolbarButtonsVisible("new", toggle);
2372     }
2373     private void toggleAllNotesButton(Boolean toggle) {
2374                 allNotesButton.setVisible(toggle);
2375                 Global.saveToolbarButtonsVisible("allNotes", toggle);
2376     }
2377     private void toggleSearchClearButton(Boolean toggle) {
2378                 searchClearButton.setVisible(toggle);
2379                 Global.saveToolbarButtonsVisible("searchClear", toggle);
2380     }
2381
2382
2383
2384
2385
2386     @SuppressWarnings("unused")
2387         private void updateSyncButton() {
2388  /*     synchronizeFrame++;
2389         if (synchronizeFrame == 4) 
2390                 synchronizeFrame = 0;
2391         synchronizeButton.setIcon(synchronizeAnimation.get(synchronizeFrame));
2392         */
2393 /*      
2394         QPixmap pix = new QPixmap(iconPath+"synchronize.png");
2395         QMatrix matrix = new QMatrix();
2396         synchronizeIconAngle = synchronizeIconAngle + 1.0;
2397         if (synchronizeIconAngle >= 365.0)
2398                 synchronizeIconAngle = 0.0;
2399         matrix.translate(pix.size().width()/2, pix.size().height()/2);
2400                 matrix.rotate( synchronizeIconAngle );
2401         matrix.translate(-pix.size().width()/2, -pix.size().height()/2);
2402                 pix = pix.transformed(matrix, TransformationMode.SmoothTransformation);
2403         synchronizeButton.setIcon(pix);
2404 */
2405                 
2406         
2407         QPixmap pix = new QPixmap(iconPath+"synchronize.png");
2408         QPixmap rotatedPix = new QPixmap(pix.size());
2409         QPainter p = new QPainter(rotatedPix);
2410
2411         rotatedPix.fill(toolBar.palette().color(ColorRole.Button));
2412         QSize size = pix.size();
2413         p.translate(size.width()/2, size.height()/2);
2414         synchronizeIconAngle = synchronizeIconAngle+1.0;
2415         if (synchronizeIconAngle >= 359.0)
2416                 synchronizeIconAngle = 0.0;
2417         p.rotate(synchronizeIconAngle);
2418         p.setBackgroundMode(BGMode.OpaqueMode);
2419         p.translate(-size.width()/2, -size.height()/2);
2420         p.drawPixmap(0,0, pix);
2421         p.end();
2422         synchronizeButton.setIcon(rotatedPix);
2423         
2424     }
2425     // Synchronize with Evernote
2426         @SuppressWarnings("unused")
2427         private void evernoteSync() {
2428         logger.log(logger.HIGH, "Entering NeverNote.evernoteSync");
2429         if (!Global.isConnected)
2430                 remoteConnect();
2431         if (Global.isConnected)
2432                 synchronizeAnimationTimer.start(10);
2433 //                      synchronizeAnimationTimer.start(200);
2434         syncTimer();
2435         logger.log(logger.HIGH, "Leaving NeverNote.evernoteSync");
2436     }
2437     private void updateQuotaBar() {
2438         long limit = Global.getUploadLimit();
2439         long amount = Global.getUploadAmount();
2440         if (amount>0 && limit>0) {
2441                 int percent =(int)(amount*100/limit);
2442                 quotaBar.setValue(percent);
2443         } else 
2444                 quotaBar.setValue(0);
2445     }
2446         // Zoom changed
2447     @SuppressWarnings("unused")
2448         private void zoomChanged() {
2449         browserWindow.getBrowser().setZoomFactor(new Double(zoomSpinner.value())/100);
2450     }
2451
2452     //****************************************************************
2453     //****************************************************************
2454     //* System Tray functions
2455     //****************************************************************
2456     //****************************************************************
2457         private void trayToggleVisible() {
2458         if (isVisible()) {
2459                 hide();
2460         } else {
2461                 show();
2462                 if (windowMaximized)
2463                         showMaximized();
2464                 else
2465                         showNormal();
2466                 raise();
2467         }
2468     }
2469     @SuppressWarnings("unused")
2470         private void trayActivated(QSystemTrayIcon.ActivationReason reason) {
2471         if (reason == QSystemTrayIcon.ActivationReason.DoubleClick) {
2472                 String name = QSystemTrayIcon.MessageIcon.resolve(reason.value()).name();
2473                 trayToggleVisible();
2474         }
2475     }
2476     
2477     
2478     //***************************************************************
2479     //***************************************************************
2480     //** These functions deal with the trash tree
2481     //***************************************************************
2482     //***************************************************************    
2483     // Setup the tree containing the trash.
2484     @SuppressWarnings("unused")
2485         private void trashTreeSelection() {     
2486         logger.log(logger.HIGH, "Entering NeverNote.trashTreeSelection");
2487         
2488         clearNotebookFilter();
2489         clearTagFilter();
2490         clearAttributeFilter();
2491         clearSavedSearchFilter();
2492         
2493         String tempGuid = currentNoteGuid;
2494         
2495 //      currentNoteGuid = "";
2496         currentNote = new Note();
2497         selectedNoteGUIDs.clear();
2498         listManager.getSelectedNotebooks().clear();
2499         listManager.getSelectedTags().clear();
2500         listManager.setSelectedSavedSearch("");
2501         browserWindow.clear();
2502     
2503         // toggle the add buttons
2504         newButton.setEnabled(!newButton.isEnabled());
2505         menuBar.noteAdd.setEnabled(newButton.isEnabled());
2506         menuBar.noteAdd.setVisible(true);
2507         
2508         List<QTreeWidgetItem> selections = trashTree.selectedItems();
2509         if (selections.size() == 0) {
2510                 currentNoteGuid = trashNoteGuid;
2511                         trashNoteGuid = tempGuid;
2512                 Global.showDeleted = false;
2513                 menuBar.noteRestoreAction.setEnabled(false);
2514                 menuBar.noteRestoreAction.setVisible(false);
2515         }
2516         else {
2517                 currentNoteGuid = trashNoteGuid;
2518                         trashNoteGuid = tempGuid;
2519                 menuBar.noteRestoreAction.setEnabled(true);
2520                 menuBar.noteRestoreAction.setVisible(true);
2521                 Global.showDeleted = true;
2522         }
2523         listManager.loadNotesIndex();
2524         noteIndexUpdated(false);
2525 ////            browserWindow.setEnabled(newButton.isEnabled());
2526         browserWindow.setReadOnly(!newButton.isEnabled());
2527         logger.log(logger.HIGH, "Leaving NeverNote.trashTreeSelection");
2528     }
2529     // Empty the trash file
2530     @SuppressWarnings("unused")
2531         private void emptyTrash() {
2532 //      browserWindow.clear();
2533         listManager.emptyTrash();
2534         if (trashTree.selectedItems().size() > 0) {
2535                 listManager.getSelectedNotebooks().clear();
2536                 listManager.getSelectedTags().clear();
2537                 listManager.setSelectedSavedSearch("");
2538                 newButton.setEnabled(!newButton.isEnabled());
2539                 menuBar.noteAdd.setEnabled(newButton.isEnabled());
2540                 menuBar.noteAdd.setVisible(true);
2541                 browserWindow.clear();
2542                 
2543                 clearTagFilter();
2544                 clearNotebookFilter();
2545                 clearSavedSearchFilter();
2546                 clearAttributeFilter();
2547                         
2548                 Global.showDeleted = false;
2549                 menuBar.noteRestoreAction.setEnabled(false);
2550                 menuBar.noteRestoreAction.setVisible(false);
2551                 
2552                 listManager.loadNotesIndex();
2553 //--->>>                noteIndexUpdated(true);
2554                 noteIndexUpdated(false);
2555         }       
2556    }
2557     // Show/Hide trash window
2558         private void toggleTrashWindow() {
2559                 logger.log(logger.HIGH, "Entering NeverNote.toggleTrashWindow");
2560         if (trashTree.isVisible())
2561                 trashTree.hide();
2562         else
2563                 trashTree.show();
2564         menuBar.hideTrash.setChecked(trashTree.isVisible());
2565         
2566                 Global.saveWindowVisible("trashTree", trashTree.isVisible());
2567         logger.log(logger.HIGH, "Leaving NeverNote.trashWindow");
2568     }    
2569         private void clearTrashFilter() {
2570                 Global.showDeleted = false;
2571         newButton.setEnabled(true);
2572         menuBar.noteAdd.setEnabled(true);
2573         menuBar.noteAdd.setVisible(true);
2574                 trashTree.blockSignals(true);
2575                 trashTree.clearSelection();
2576                 trashTree.blockSignals(false);
2577                 
2578         }
2579     
2580    
2581     //***************************************************************
2582     //***************************************************************
2583     //** These functions deal with connection settings
2584     //***************************************************************
2585     //***************************************************************
2586         // SyncRunner had a problem and things are disconnected
2587         @SuppressWarnings("unused")
2588         private void remoteErrorDisconnect() {
2589                 menuBar.connectAction.setText(tr("Connect"));
2590                 menuBar.connectAction.setToolTip(tr("Connect to Evernote"));
2591                 menuBar.synchronizeAction.setEnabled(false);
2592                 synchronizeAnimationTimer.stop();
2593                 return;
2594         }
2595         // Do a manual connect/disconnect
2596     private void remoteConnect() {
2597         logger.log(logger.HIGH, "Entering NeverNote.remoteConnect");
2598
2599         if (Global.isConnected) {
2600                 Global.isConnected = false;
2601                 syncRunner.enDisconnect();
2602                 setupConnectMenuOptions();
2603                 setupOnlineMenu();
2604                 return;
2605         }
2606         
2607         AESEncrypter aes = new AESEncrypter();
2608         try {
2609                         aes.decrypt(new FileInputStream(Global.getFileManager().getHomeDirFile("secure.txt")));
2610                 } catch (FileNotFoundException e) {
2611                         // File not found, so we'll just get empty strings anyway. 
2612                 }
2613                 String userid = aes.getUserid();
2614                 String password = aes.getPassword();
2615                 if (!userid.equals("") && !password.equals("")) {
2616                 Global.username = userid;
2617                 Global.password = password;
2618                 }               
2619
2620         // Show the login dialog box
2621                 if (!Global.automaticLogin() || userid.equals("")|| password.equals("")) {
2622                         LoginDialog login = new LoginDialog();
2623                         login.exec();
2624                 
2625                         if (!login.okPressed()) {
2626                                 return;
2627                         }
2628         
2629                         Global.username = login.getUserid();
2630                         Global.password = login.getPassword();
2631                 }
2632                 syncRunner.username = Global.username;
2633                 syncRunner.password = Global.password;
2634                 syncRunner.userStoreUrl = Global.userStoreUrl;
2635                 syncRunner.noteStoreUrl = Global.noteStoreUrl;
2636                 syncRunner.noteStoreUrlBase = Global.noteStoreUrlBase;
2637                 
2638             if (Global.getProxyValue("url").equals("")) {
2639                 System.setProperty("http.proxyHost","") ;
2640                 System.setProperty("http.proxyPort", "") ;
2641                 System.setProperty("https.proxyHost","") ;
2642                 System.setProperty("https.proxyPort", "") ;         
2643             } else {
2644                         // PROXY
2645                 System.setProperty("http.proxyHost",Global.getProxyValue("url")) ;
2646                 System.setProperty("http.proxyPort", Global.getProxyValue("port")) ;
2647                 System.setProperty("https.proxyHost",Global.getProxyValue("url")) ;
2648                 System.setProperty("https.proxyPort", Global.getProxyValue("port")) ;
2649          
2650                 if (Global.getProxyValue("userid").equals("")) {
2651                         Authenticator.setDefault(new Authenticator() {
2652                                 @Override
2653                                 protected PasswordAuthentication getPasswordAuthentication() {
2654                                         return new
2655                                         PasswordAuthentication(Global.getProxyValue("userid"),Global.getProxyValue("password").toCharArray());
2656                                         }});
2657                         }
2658                 }
2659                 
2660                 
2661                 syncRunner.enConnect();
2662                 Global.isConnected = syncRunner.isConnected;
2663                 setupOnlineMenu();
2664                 setupConnectMenuOptions();
2665                 logger.log(logger.HIGH, "Leaving NeverNote.remoteConnect");
2666     }
2667     private void setupConnectMenuOptions() {
2668         logger.log(logger.HIGH, "entering NeverNote.setupConnectMenuOptions");
2669                 if (!Global.isConnected) {
2670                         menuBar.connectAction.setText(tr("Connect"));
2671                         menuBar.connectAction.setToolTip(tr("Connect to Evernote"));
2672                         menuBar.synchronizeAction.setEnabled(false);
2673                 } else {
2674                         menuBar.connectAction.setText(tr("Disconnect"));
2675                         menuBar.connectAction.setToolTip(tr("Disconnect from Evernote"));
2676                         menuBar.synchronizeAction.setEnabled(true);
2677                 }
2678                 logger.log(logger.HIGH, "Leaving NeverNote.setupConnectionMenuOptions");
2679     }
2680     
2681     
2682     
2683     //***************************************************************
2684     //***************************************************************
2685     //** These functions deal with the GUI Attribute tree
2686     //***************************************************************
2687     //***************************************************************    
2688     @SuppressWarnings("unused")
2689         private void attributeTreeClicked(QTreeWidgetItem item, Integer integer) {
2690         
2691         clearTagFilter();
2692         clearNotebookFilter();
2693         clearTrashFilter();
2694         clearSavedSearchFilter();
2695
2696         if (attributeTreeSelected == null || item.nativeId() != attributeTreeSelected.nativeId()) {
2697                 if (item.childCount() > 0) {
2698                         item.setSelected(false);
2699                 } else {
2700                 Global.createdBeforeFilter.reset();
2701                 Global.createdSinceFilter.reset();
2702                 Global.changedBeforeFilter.reset();
2703                 Global.changedSinceFilter.reset();
2704                 Global.containsFilter.reset();
2705                         attributeTreeSelected = item;
2706                         DateAttributeFilterTable f = null;
2707                         f = findDateAttributeFilterTable(item.parent());
2708                         if (f!=null)
2709                                 f.select(item.parent().indexOfChild(item));
2710                         else {
2711                                 Global.containsFilter.select(item.parent().indexOfChild(item));
2712                         }
2713                 }
2714                 listManager.loadNotesIndex();
2715                 noteIndexUpdated(false);
2716                 return;
2717         }
2718                 attributeTreeSelected = null;
2719                 item.setSelected(false);
2720         Global.createdBeforeFilter.reset();
2721         Global.createdSinceFilter.reset();
2722         Global.changedBeforeFilter.reset();
2723         Global.changedSinceFilter.reset();
2724         Global.containsFilter.reset();
2725         listManager.loadNotesIndex();
2726                 noteIndexUpdated(false); 
2727     }
2728     // This determines what attribute filter we need, depending upon the selection
2729     private DateAttributeFilterTable findDateAttributeFilterTable(QTreeWidgetItem w) {
2730                 if (w.parent() != null && w.childCount() > 0) {
2731                         QTreeWidgetItem parent = w.parent();
2732                         if (parent.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Created && 
2733                                 w.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Since)
2734                                         return Global.createdSinceFilter;
2735                         if (parent.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Created && 
2736                         w.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Before)
2737                                         return Global.createdBeforeFilter;
2738                         if (parent.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.LastModified && 
2739                         w.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Since)
2740                                         return Global.changedSinceFilter;
2741                 if (parent.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.LastModified && 
2742                         w.data(0,ItemDataRole.UserRole)==AttributeTreeWidget.Attributes.Before)
2743                                                 return Global.changedBeforeFilter;
2744                 }
2745                 return null;
2746     }
2747
2748     // Show/Hide attribute search window
2749         private void toggleAttributesWindow() {
2750                 logger.log(logger.HIGH, "Entering NeverNote.toggleAttributesWindow");
2751         if (attributeTree.isVisible())
2752                 attributeTree.hide();
2753         else
2754                 attributeTree.show();
2755         menuBar.hideAttributes.setChecked(attributeTree.isVisible());
2756         
2757                 Global.saveWindowVisible("attributeTree", attributeTree.isVisible());
2758         logger.log(logger.HIGH, "Leaving NeverNote.toggleAttributeWindow");
2759     }    
2760         private void clearAttributeFilter() {
2761         Global.createdBeforeFilter.reset();
2762         Global.createdSinceFilter.reset();
2763         Global.changedBeforeFilter.reset();
2764         Global.changedSinceFilter.reset();
2765         Global.containsFilter.reset();
2766         attributeTreeSelected = null;
2767                 attributeTree.blockSignals(true);
2768                 attributeTree.clearSelection();
2769                 attributeTree.blockSignals(false);
2770         }
2771     
2772         
2773     //***************************************************************
2774     //***************************************************************
2775     //** These functions deal with the GUI Note index table
2776     //***************************************************************
2777     //***************************************************************    
2778     // Initialize the note list table
2779         private void initializeNoteTable() {
2780                 logger.log(logger.HIGH, "Entering NeverNote.initializeNoteTable");
2781                 noteTableView.setSelectionMode(QAbstractItemView.SelectionMode.ExtendedSelection);
2782                 noteTableView.selectionModel().selectionChanged.connect(this, "noteTableSelection()");
2783                 logger.log(logger.HIGH, "Leaving NeverNote.initializeNoteTable");
2784         }       
2785     // Show/Hide trash window
2786         @SuppressWarnings("unused")
2787         private void toggleNoteListWindow() {
2788                 logger.log(logger.HIGH, "Entering NeverNote.toggleNoteListWindow");
2789         if (noteTableView.isVisible())
2790                 noteTableView.hide();
2791         else
2792                 noteTableView.show();
2793         menuBar.hideNoteList.setChecked(noteTableView.isVisible());
2794         
2795                 Global.saveWindowVisible("noteList", noteTableView.isVisible());
2796         logger.log(logger.HIGH, "Leaving NeverNote.toggleNoteListWindow");
2797     }   
2798         // Handle the event that a user selects a note from the table
2799     @SuppressWarnings("unused")
2800         private void noteTableSelection() {
2801                 logger.log(logger.HIGH, "Entering NeverNote.noteTableSelection");
2802                 saveNote();
2803                 if (historyGuids.size() == 0) {
2804                         historyGuids.add(currentNoteGuid);
2805                         historyPosition = 1;
2806                 }
2807         noteTableView.showColumn(Global.noteTableGuidPosition);
2808         
2809         List<QModelIndex> selections = noteTableView.selectionModel().selectedRows();
2810         if (!Global.isColumnVisible("guid"))
2811                 noteTableView.hideColumn(Global.noteTableGuidPosition);
2812         
2813         if (selections.size() > 0) {
2814                 QModelIndex index;
2815                 menuBar.noteDuplicateAction.setEnabled(true);
2816                 menuBar.noteOnlineHistoryAction.setEnabled(true);
2817                 menuBar.noteMergeAction.setEnabled(true);
2818                 selectedNoteGUIDs.clear();
2819                 if (selections.size() != 1 || Global.showDeleted) {
2820                         menuBar.noteDuplicateAction.setEnabled(false);
2821                 }
2822                 if (selections.size() != 1 || !Global.isConnected) {
2823                         menuBar.noteOnlineHistoryAction.setEnabled(false);
2824                 }
2825                 if (selections.size() == 1) {
2826                         menuBar.noteMergeAction.setEnabled(false);
2827                 }
2828                 for (int i=0; i<selections.size(); i++) {
2829                         int row = selections.get(i).row();
2830                         if (row == 0) 
2831                                 upButton.setEnabled(false);
2832                         else
2833                                 upButton.setEnabled(true);
2834                         if (row < listManager.getNoteTableModel().rowCount()-1)
2835                                 downButton.setEnabled(true);
2836                         else
2837                                 downButton.setEnabled(false);
2838                         index = noteTableView.proxyModel.index(row, Global.noteTableGuidPosition);
2839                         SortedMap<Integer, Object> ix = noteTableView.proxyModel.itemData(index);
2840                         currentNoteGuid = (String)ix.values().toArray()[0];
2841                         selectedNoteGUIDs.add(currentNoteGuid);
2842                 }
2843         }
2844         
2845         nextButton.setEnabled(true);
2846                 prevButton.setEnabled(true);
2847         if (!fromHistory) {
2848                 int endPosition = historyGuids.size()-1;
2849                 for (int j=historyPosition; j<=endPosition; j++) {
2850                         historyGuids.remove(historyGuids.size()-1);
2851                 }
2852                 historyGuids.add(currentNoteGuid);
2853                 historyPosition = historyGuids.size();
2854         } 
2855         if (historyPosition <= 1)
2856                 prevButton.setEnabled(false);
2857         if (historyPosition == historyGuids.size())
2858                 nextButton.setEnabled(false);
2859                 
2860         fromHistory = false;
2861         scrollToGuid(currentNoteGuid);
2862         refreshEvernoteNote(true);
2863                 logger.log(logger.HIGH, "Leaving NeverNote.noteTableSelection");
2864     }    
2865         // Trigger a refresh when the note db has been updated
2866         private void noteIndexUpdated(boolean reload) {
2867                 logger.log(logger.HIGH, "Entering NeverNote.noteIndexUpdated");
2868                 saveNote();
2869         refreshEvernoteNoteList();
2870         logger.log(logger.HIGH, "Calling note table reload in NeverNote.noteIndexUpdated() - "+reload);
2871         noteTableView.load(reload);
2872         scrollToGuid(currentNoteGuid);
2873                 logger.log(logger.HIGH, "Leaving NeverNote.noteIndexUpdated");
2874     }
2875         // Called when the list of notes is updated
2876     private void refreshEvernoteNoteList() {
2877         logger.log(logger.HIGH, "Entering NeverNote.refreshEvernoteNoteList");
2878         browserWindow.setDisabled(false);
2879                 if (selectedNoteGUIDs == null)
2880                         selectedNoteGUIDs = new ArrayList<String>();
2881                 selectedNoteGUIDs.clear();  // clear out old entries
2882                 
2883                 String saveCurrentNoteGuid = new String();
2884                 String tempNoteGuid = new String();
2885                                 
2886                 historyGuids.clear();
2887                 historyPosition = 0;
2888                 prevButton.setEnabled(false);
2889                 nextButton.setEnabled(false);
2890                 
2891                 if (currentNoteGuid == null) 
2892                         currentNoteGuid = new String();
2893                 
2894                 for (Note note : listManager.getNoteIndex()) {
2895                         tempNoteGuid = note.getGuid();
2896                         if (currentNoteGuid.equals(tempNoteGuid)) {
2897                                 saveCurrentNoteGuid = new String(tempNoteGuid);
2898                         }
2899                 }
2900                 
2901                 if (listManager.getNoteIndex().size() == 0) {
2902                         currentNoteGuid = "";
2903                         currentNote = null;
2904                         browserWindow.clear();
2905                         browserWindow.setDisabled(true);
2906                 } 
2907                 
2908                 if (saveCurrentNoteGuid.equals("") && listManager.getNoteIndex().size() >0) {
2909                         currentNoteGuid = listManager.getNoteIndex().get(listManager.getNoteIndex().size()-1).getGuid();
2910                         currentNote = listManager.getNoteIndex().get(listManager.getNoteIndex().size()-1);
2911                         refreshEvernoteNote(true);
2912                 } else {
2913                         refreshEvernoteNote(false);
2914                 }
2915                 reloadTagTree(false);
2916
2917                 logger.log(logger.HIGH, "Leaving NeverNote.refreshEvernoteNoteList");
2918         } 
2919     // Called when the previous arrow button is clicked 
2920     @SuppressWarnings("unused")
2921         private void previousViewedAction() {
2922         if (!prevButton.isEnabled())
2923                 return;
2924         if (historyPosition == 0)
2925                 return;
2926                 historyPosition--;
2927         if (historyPosition <= 0)
2928                 return;
2929         String historyGuid = historyGuids.get(historyPosition-1);
2930         fromHistory = true;
2931         for (int i=0; i<noteTableView.model().rowCount(); i++) {
2932                 QModelIndex modelIndex =  noteTableView.model().index(i, Global.noteTableGuidPosition);
2933                 if (modelIndex != null) {
2934                         SortedMap<Integer, Object> ix = noteTableView.model().itemData(modelIndex);
2935                         String tableGuid =  (String)ix.values().toArray()[0];
2936                         if (tableGuid.equals(historyGuid)) {
2937                                 noteTableView.selectRow(i);
2938                                 return;
2939                         }       
2940                 }
2941         }
2942     }
2943     @SuppressWarnings("unused")
2944         private void nextViewedAction() {
2945         if (!nextButton.isEnabled())
2946                 return;
2947         String historyGuid = historyGuids.get(historyPosition);
2948         historyPosition++;
2949         fromHistory = true;
2950         for (int i=0; i<noteTableView.model().rowCount(); i++) {
2951                 QModelIndex modelIndex =  noteTableView.model().index(i, Global.noteTableGuidPosition);
2952                 if (modelIndex != null) {
2953                         SortedMap<Integer, Object> ix = noteTableView.model().itemData(modelIndex);
2954                         String tableGuid =  (String)ix.values().toArray()[0];
2955                         if (tableGuid.equals(historyGuid)) {
2956                                 noteTableView.selectRow(i);
2957                                 return;
2958                         }       
2959                 }
2960         }       
2961     }
2962     // Called when the up arrow is clicked 
2963     @SuppressWarnings("unused")
2964         private void upAction() {
2965         List<QModelIndex> selections = noteTableView.selectionModel().selectedRows();
2966         int row = selections.get(0).row();
2967         if (row > 0) {
2968                 noteTableView.selectRow(row-1);
2969         }
2970     }
2971     // Called when the down arrow is clicked 
2972     @SuppressWarnings("unused")
2973         private void downAction() {
2974         List<QModelIndex> selections = noteTableView.selectionModel().selectedRows();
2975         int row = selections.get(0).row();
2976         int max = listManager.getNoteTableModel().rowCount();
2977         if (row < max-1) {
2978                 noteTableView.selectRow(row+1);
2979         }
2980     }
2981     // Update a tag string for a specific note in the list
2982     @SuppressWarnings("unused")
2983         private void updateListTags(String guid, List<String> tags) {
2984         logger.log(logger.HIGH, "Entering NeverNote.updateListTags");
2985         StringBuffer tagBuffer = new StringBuffer();
2986         for (int i=0; i<tags.size(); i++) {
2987                 tagBuffer.append(tags.get(i));
2988                 if (i<tags.size()-1)
2989                         tagBuffer.append(", ");
2990         }
2991         
2992         for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
2993                 QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
2994                 if (modelIndex != null) {
2995                         SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
2996                         String tableGuid =  (String)ix.values().toArray()[0];
2997                         if (tableGuid.equals(guid)) {
2998                                 listManager.getNoteTableModel().setData(i, Global.noteTableTagPosition,tagBuffer.toString());
2999                                 listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false");
3000                                 noteTableView.proxyModel.invalidate();
3001                                 return;
3002                         }
3003                 }
3004         }
3005         logger.log(logger.HIGH, "Leaving NeverNote.updateListTags");
3006     }
3007     // Update a title for a specific note in the list
3008     @SuppressWarnings("unused")
3009         private void updateListAuthor(String guid, String author) {
3010         logger.log(logger.HIGH, "Entering NeverNote.updateListAuthor");
3011
3012         for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3013                 //QModelIndex modelIndex =  noteTableView.proxyModel.index(i, Global.noteTableGuidPosition);
3014                 QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3015                 if (modelIndex != null) {
3016                         SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3017                         String tableGuid =  (String)ix.values().toArray()[0];
3018                         if (tableGuid.equals(guid)) {
3019                                 listManager.getNoteTableModel().setData(i, Global.noteTableAuthorPosition,author);
3020                                 listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false");
3021                                 noteTableView.proxyModel.invalidate();
3022                                 return;
3023                         }       
3024                 }
3025         }
3026         
3027         logger.log(logger.HIGH, "Leaving NeverNote.updateListAuthor");
3028     }
3029         private void updateListNoteNotebook(String guid, String notebook) {
3030         logger.log(logger.HIGH, "Entering NeverNote.updateListNoteNotebook");
3031         listManager.getNoteTableModel().updateNoteSyncStatus(guid, false);
3032         logger.log(logger.HIGH, "Leaving NeverNote.updateListNoteNotebook");
3033     }
3034     // Update a title for a specific note in the list
3035     @SuppressWarnings("unused")
3036         private void updateListSourceUrl(String guid, String url) {
3037         logger.log(logger.HIGH, "Entering NeverNote.updateListAuthor");
3038
3039         for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3040                 //QModelIndex modelIndex =  noteTableView.proxyModel.index(i, Global.noteTableGuidPosition);
3041                 QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3042                 if (modelIndex != null) {
3043 //                      SortedMap<Integer, Object> ix = noteTableView.proxyModel.itemData(modelIndex);
3044                         SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3045                         String tableGuid =  (String)ix.values().toArray()[0];
3046                         if (tableGuid.equals(guid)) {
3047                                 listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false");
3048                                 listManager.getNoteTableModel().setData(i, Global.noteTableSourceUrlPosition,url);
3049                                 noteTableView.proxyModel.invalidate();
3050                                 return;
3051                         }       
3052                 }
3053         }
3054         logger.log(logger.HIGH, "Leaving NeverNote.updateListAuthor");
3055     }
3056         private void updateListGuid(String oldGuid, String newGuid) {
3057         logger.log(logger.HIGH, "Entering NeverNote.updateListTitle");
3058
3059         for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3060                 QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3061                 if (modelIndex != null) {
3062                         SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3063                         String tableGuid =  (String)ix.values().toArray()[0];
3064                         if (tableGuid.equals(oldGuid)) {
3065                                 listManager.getNoteTableModel().setData(i, Global.noteTableGuidPosition,newGuid);
3066                                 //listManager.getNoteTableModel().setData(i, Global.noteTableSynchronizedPosition, "false");
3067                                 return;
3068                         }       
3069                 }
3070         }
3071         logger.log(logger.HIGH, "Leaving NeverNote.updateListTitle");
3072     }
3073         private void updateListTagName(String guid) {
3074         logger.log(logger.HIGH, "Entering NeverNote.updateTagName");
3075                 
3076                 for (int j=0; j<listManager.getNoteIndex().size(); j++) {
3077                         if (listManager.getNoteIndex().get(j).getTagGuids().contains(guid)) {
3078                                 String newName = listManager.getTagNamesForNote(listManager.getNoteIndex().get(j));
3079
3080                                 for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3081                                         QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3082                                         if (modelIndex != null) {
3083                                                 SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3084                                                 String noteGuid = (String)ix.values().toArray()[0];
3085                                                 if (noteGuid.equalsIgnoreCase(listManager.getNoteIndex().get(j).getGuid())) {
3086                                                         listManager.getNoteTableModel().setData(i, Global.noteTableTagPosition, newName);
3087                                                         i=listManager.getNoteTableModel().rowCount();
3088                                                 }
3089                                         }
3090                                 }
3091                         }
3092                 }       
3093         logger.log(logger.HIGH, "Leaving NeverNote.updateListNotebook");
3094     }
3095         private void removeListTagName(String guid) {
3096         logger.log(logger.HIGH, "Entering NeverNote.updateTagName");
3097                 
3098                 for (int j=0; j<listManager.getNoteIndex().size(); j++) {
3099                         if (listManager.getNoteIndex().get(j).getTagGuids().contains(guid)) {
3100                                 for (int i=listManager.getNoteIndex().get(j).getTagGuids().size()-1; i>=0; i--) {
3101                                         if (listManager.getNoteIndex().get(j).getTagGuids().get(i).equals(guid))
3102                                                 listManager.getNoteIndex().get(j).getTagGuids().remove(i);
3103                                 }
3104                                 
3105                                 String newName = listManager.getTagNamesForNote(listManager.getNoteIndex().get(j));
3106                                 for (int i=0; i<listManager.getNoteTableModel().rowCount(); i++) {
3107                                         QModelIndex modelIndex =  listManager.getNoteTableModel().index(i, Global.noteTableGuidPosition);
3108                                         if (modelIndex != null) {
3109                                                 SortedMap<Integer, Object> ix = listManager.getNoteTableModel().itemData(modelIndex);
3110                                                 String noteGuid = (String)ix.values().toArray()[0];
3111                                                 if (noteGuid.equalsIgnoreCase(listManager.getNoteIndex().get(j).getGuid())) {
3112                                                         listManager.getNoteTableModel().setData(i, Global.noteTableTagPosition, newName);
3113                                                         i=listManager.getNoteTableModel().rowCount();
3114                                                 }
3115                                         }
3116                                 }
3117                         }
3118                 }       
3119         logger.log(logger.HIGH, "Leaving NeverNote.updateListNotebook");