2 * This file is part of NeverNote
3 * Copyright 2009 Randy Baumgarte
5 * This file may be licensed under the terms of of the
6 * GNU General Public License Version 2 (the ``GPL'').
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.
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.
19 package cx.fbn.nevernote;
20 import java.awt.Desktop;
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;
46 import org.apache.thrift.TException;
47 import org.h2.tools.ChangeFileEncryption;
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;
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;
173 public class NeverNote extends QMainWindow{
175 QStatusBar statusBar; // Application status bar
177 DatabaseConnection conn;
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
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).
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
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;
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
214 ListManager listManager; // DB runnable task
216 List<QTemporaryFile> tempFiles; // Array of temporary files;
218 QTimer indexTimer; // timer to start the index thread
219 IndexRunner indexRunner; // thread to index notes
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
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
237 int indexTime; // how often to try and index
238 boolean indexRunning; // Is indexing running?
239 boolean indexDisabled; // Is indexing disabled?
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;
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
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
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)
272 OnlineNoteHistory historyWindow; // online history window
273 List<NoteVersionId> versions; // history versions
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
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.
299 String iconPath = new String("classpath:cx/fbn/nevernote/icons/");
302 //***************************************************************
303 //***************************************************************
304 //** Constructor & main entry point
305 //***************************************************************
306 //***************************************************************
307 // Application Constructor
308 public NeverNote(DatabaseConnection 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.";
315 QMessageBox.critical(null, "Database Connection Error",msg);
319 thread().setPriority(Thread.MAX_PRIORITY);
321 logger = new ApplicationLogger("nevernote.log");
322 logger.log(logger.HIGH, "Starting Application");
324 decryptOnShutdown = false;
325 encryptOnShutdown = false;
326 conn.checkDatabaseVersion();
330 // Start building the invalid XML tables
331 Global.invalidElements = conn.getInvalidXMLTable().getInvalidElements();
332 List<String> elements = conn.getInvalidXMLTable().getInvalidAttributeElements();
334 for (int i=0; i<elements.size(); i++) {
335 Global.invalidAttributes.put(elements.get(i), conn.getInvalidXMLTable().getInvalidAttributes(elements.get(i)));
338 logger.log(logger.EXTREME, "Starting GUI build");
340 QTranslator nevernoteTranslator = new QTranslator();
341 nevernoteTranslator.load(Global.getFileManager().getTranslateFilePath("nevernote_" + QLocale.system().name() + ".qm"));
342 QApplication.instance().installTranslator(nevernoteTranslator);
344 Global.originalPalette = QApplication.palette();
345 QApplication.setStyle(Global.getStyle());
346 if (Global.useStandardPalette())
347 QApplication.setPalette(QApplication.style().standardPalette());
348 setWindowTitle("NeverNote");
350 mainLeftRightSplitter = new QSplitter();
351 setCentralWidget(mainLeftRightSplitter);
352 leftSplitter1 = new QSplitter();
353 leftSplitter1.setOrientation(Qt.Orientation.Vertical);
355 browserIndexSplitter = new QSplitter();
356 browserIndexSplitter.setOrientation(Qt.Orientation.Vertical);
358 //* Setup threads & thread timers
359 int indexRunnerCount = Global.getIndexThreads();
360 indexRunnerCount = 1;
361 QThreadPool.globalInstance().setMaxThreadCount(indexRunnerCount+5); // increase max thread count
363 logger.log(logger.EXTREME, "Building list manager");
364 listManager = new ListManager(conn, logger);
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");
371 synchronizeAnimationTimer = new QTimer();
372 synchronizeAnimationTimer.timeout.connect(this, "updateSyncButton()");
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;
381 logger.log(logger.EXTREME, "Setting sync thread & timers");
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()");
392 automaticSync = true;
393 syncTimer.start(syncTime*60*1000);
395 automaticSync = false;
398 syncRunner.setEvernoteUpdateCount(Global.getEvernoteUpdateCount());
399 syncThread = new QThread(syncRunner, "Synchronization Thread");
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()");
413 thumbnailTimer.setInterval(5*1000); // Thumbnail every 2 min
414 thumbnailTimer.start();
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)");
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());
429 listManager.saveRunner.noteSignals.noteSaveRunnerError.connect(this, "saveRunnerError(String, String)");
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();
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);
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);
455 // Setup the browser window
456 noteCache = new HashMap<String,String>();
457 browserWindow = new BrowserWindow(conn);
459 mainLeftRightSplitter.addWidget(leftSplitter1);
460 mainLeftRightSplitter.addWidget(browserIndexSplitter);
462 if (Global.getListView() == Global.View_List_Wide) {
463 browserIndexSplitter.addWidget(noteTableView);
464 browserIndexSplitter.addWidget(browserWindow);
466 mainLeftRightSplitter.addWidget(noteTableView);
467 mainLeftRightSplitter.addWidget(browserWindow);
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)");
476 quotaBar = new QProgressBar();
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()");
485 //Setup external browser manager
486 externalWindows = new HashMap<String, ExternalBrowse>();
488 listManager.loadNotesIndex();
489 initializeNotebookTree();
491 initializeSavedSearchTree();
492 attributeTree.itemClicked.connect(this, "attributeTreeClicked(QTreeWidgetItem, Integer)");
493 attributeTreeSelected = null;
494 initializeNoteTable();
496 selectedNoteGUIDs = new ArrayList<String>();
497 statusBar = new QStatusBar();
498 setStatusBar(statusBar);
499 menuBar = new MainMenuBar(this);
500 emitLog = new ArrayList<String>();
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()");
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"));
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"));
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)");
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"));
544 noteTableView.setVisible(Global.isWindowVisible("noteList"));
545 menuBar.hideNoteList.setChecked(Global.isWindowVisible("noteList"));
547 if (!Global.isWindowVisible("editorButtonBar"))
548 toggleEditorButtonBar();
549 if (!Global.isWindowVisible("leftPanel"))
550 menuBar.hideLeftSide.setChecked(true);
551 if (Global.isWindowVisible("noteInformation"))
552 toggleNoteInformation();
556 find = new FindDialog();
557 find.getOkButton().clicked.connect(this, "doFindText()");
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);
564 trayExitAction.triggered.connect(this, "close()");
565 trayAddNoteAction.triggered.connect(this, "addNote()");
566 trayShowAction.triggered.connect(this, "trayToggleVisible()");
568 trayMenu = new QMenu(this);
569 trayMenu.addAction(trayAddNoteAction);
570 trayMenu.addAction(trayShowAction);
571 trayMenu.addAction(trayExitAction);
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)");
580 currentNoteGuid = Global.getLastViewedNoteGuid();
581 historyGuids = new ArrayList<String>();
585 if (!currentNoteGuid.trim().equals("")) {
586 currentNote = conn.getNoteTable().getNote(currentNoteGuid, true,true,false,false,true);
589 noteIndexUpdated(true);
591 menuBar.showEditorBar.setChecked(Global.isWindowVisible("editorButtonBar"));
592 if (menuBar.showEditorBar.isChecked())
593 showEditorButtons(browserWindow);
594 tagIndexUpdated(true);
595 savedSearchIndexUpdated();
596 notebookIndexUpdated();
598 setupSyncSignalListeners();
599 setupBrowserSignalListeners();
600 setupIndexListeners();
603 tagTree.tagSignal.listChanged.connect(this, "tagIndexUpdated()");
604 tagTree.showAllTags(true);
606 QIcon appIcon = new QIcon(iconPath+"nevernote.png");
607 setWindowIcon(appIcon);
608 trayIcon.setIcon(appIcon);
609 if (Global.showTrayIcon())
614 scrollToGuid(currentNoteGuid);
615 if (Global.automaticLogin()) {
617 if (Global.isConnected)
620 setupFolderImports();
623 restoreWindowState(true);
625 if (Global.mimicEvernoteInterface) {
626 notebookTree.selectGuid("");
629 threadMonitorTimer = new QTimer();
630 threadMonitorTimer.timeout.connect(this, "threadMonitorCheck()");
631 threadMonitorTimer.start(1000*10); // Check for threads every 10 seconds;
633 historyGuids.add(currentNoteGuid);
636 if (Global.getListView() == Global.View_List_Narrow) {
637 menuBar.narrowListView.setChecked(true);
641 menuBar.wideListView.setChecked(true);
645 if (Global.getListView() == Global.View_List_Wide) {
646 browserIndexSplitter.addWidget(noteTableView);
647 browserIndexSplitter.addWidget(browserWindow);
649 mainLeftRightSplitter.addWidget(noteTableView);
650 mainLeftRightSplitter.addWidget(browserWindow);
653 int sortCol = Global.getSortColumn();
654 int sortOrder = Global.getSortOrder();
655 noteTableView.sortByColumn(sortCol, SortOrder.resolve(sortOrder));
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);
667 DatabaseConnection dbConn;
670 initializeGlobalSettings(args);
672 showSplash = Global.isWindowVisible("SplashScreen");
676 dbConn = setupDatabaseConnection();
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();
681 } catch (InitializationException e) {
684 QMessageBox.critical(null, "Startup error", "Aborting: " + e.getMessage());
688 NeverNote application = new NeverNote(dbConn);
690 application.setAttribute(WidgetAttribute.WA_DeleteOnClose, true);
691 if (Global.startMinimized())
692 application.showMinimized();
694 if (Global.wasWindowMaximized())
695 application.showMaximized();
701 splash.finish(application);
703 System.out.println("Goodbye.");
708 * Open the internal database, or create if not present
710 * @throws InitializationException when opening the database fails, e.g. because another process has it locked
712 private static DatabaseConnection setupDatabaseConnection() throws InitializationException {
713 ApplicationLogger logger = new ApplicationLogger("nevernote-database.log");
715 File f = Global.getFileManager().getDbDirFile(Global.databaseName + ".h2.db");
716 boolean dbExists = f.exists();
718 Global.setDatabaseUrl("");
720 if (Global.getDatabaseUrl().toUpperCase().indexOf("CIPHER=") > -1) {
721 boolean goodCheck = false;
723 DatabaseLoginDialog dialog = new DatabaseLoginDialog();
725 if (!dialog.okPressed())
727 Global.cipherPassword = dialog.getPassword();
728 goodCheck = databaseCheck(Global.getDatabaseUrl(), Global.getDatabaseUserid(),
729 Global.getDatabaseUserPassword(), Global.cipherPassword);
732 DatabaseConnection dbConn = new DatabaseConnection(logger,Global.getDatabaseUrl(), Global.getDatabaseUserid(), Global.getDatabaseUserPassword(), Global.cipherPassword);
736 // Encrypt the database upon shutdown
737 private void encryptOnShutdown() {
738 String dbPath= Global.getFileManager().getDbDirPath("");
739 String dbName = "NeverNote";
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");
751 } catch (SQLException e) {
756 // Decrypt the database upon shutdown
757 private void decryptOnShutdown() {
758 String dbPath= Global.getFileManager().getDbDirPath("");
759 String dbName = "NeverNote";
761 Statement st = conn.getConnection().createStatement();
762 st.execute("shutdown");
763 if (Global.getDatabaseUrl().toUpperCase().indexOf(";CIPHER=AES") > -1)
764 encryptCipher = "AES";
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()) {
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"));
776 } catch (SQLException e) {
781 * Encrypt/Decrypt the local database
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()) {
795 DBEncryptDialog dialog = new DBEncryptDialog();
797 if (dialog.okPressed()) {
798 Global.cipherPassword = dialog.getPassword();
799 encryptOnShutdown = true;
800 encryptCipher = dialog.getEncryptionMethod();
803 DBEncryptDialog dialog = new DBEncryptDialog();
804 dialog.setWindowTitle("Database Decryption");
805 dialog.hideEncryption();
807 if (dialog.okPressed()) {
808 if (!dialog.getPassword().equals(Global.cipherPassword)) {
809 QMessageBox.critical(null, tr("Incorrect Password"), tr("Incorrect Password"));
812 decryptOnShutdown = true;
819 private static void initializeGlobalSettings(String[] args) throws InitializationException {
820 StartupConfig startupConfig = new StartupConfig();
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);
831 Global.setup(startupConfig);
836 public void closeEvent(QCloseEvent event) {
837 logger.log(logger.HIGH, "Entering NeverNote.closeEvent");
840 if (currentNote!= null & browserWindow!=null) {
841 if (!currentNote.getTitle().equals(browserWindow.getTitle()))
842 conn.getNoteTable().updateNoteTitle(currentNote.getGuid(), browserWindow.getTitle());
845 setMessage(tr("Beginning shutdown."));
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();
857 externalFileEditedSaver();
858 if (Global.isConnected && Global.synchronizeOnClose()) {
859 setMessage(tr("Performing synchronization before closing."));
860 syncRunner.addWork("SYNC");
862 setMessage("Closing Program.");
863 threadMonitorTimer.stop();
865 syncRunner.addWork("STOP");
866 syncRunner.keepRunning = false;
867 thumbnailRunner.addWork("STOP");
868 syncRunner.keepRunning = false;
869 indexRunner.addWork("STOP");
870 syncRunner.keepRunning = false;
875 if (tempFiles != null)
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();
890 Global.saveWindowVisible("toolBar", toolBar.isVisible());
891 saveNoteColumnPositions();
892 saveNoteIndexWidth();
894 int width = notebookTree.columnWidth(0);
895 Global.setColumnWidth("notebookTreeName", width);
896 width = tagTree.columnWidth(0);
897 Global.setColumnWidth("tagTreeName", width);
899 Global.saveWindowMaximized(isMaximized());
900 Global.saveCurrentNoteGuid(currentNoteGuid);
902 int sortCol = noteTableView.proxyModel.sortColumn();
903 int sortOrder = noteTableView.proxyModel.sortOrder().value();
904 Global.setSortColumn(sortCol);
905 Global.setSortOrder(sortOrder);
909 Global.keepRunning = false;
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();
917 if (!syncRunner.isIdle()) {
919 logger.log(logger.MEDIUM, "Waiting for syncThread to stop");
921 logger.log(logger.MEDIUM, "Sync thread has stopped");
922 } catch (InterruptedException e1) {
923 e1.printStackTrace();
927 if (encryptOnShutdown) {
930 if (decryptOnShutdown) {
933 logger.log(logger.HIGH, "Leaving NeverNote.closeEvent");
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);
941 logger.log(logger.HIGH, "Leaving NeverNote.setMessage");
944 private void waitCursor(boolean wait) {
946 // QApplication.setOverrideCursor(new QCursor(Qt.CursorShape.WaitCursor));
948 // QApplication.restoreOverrideCursor();
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)");
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()");
963 syncRunner.syncSignal.saveUploadAmount.connect(this,"saveUploadAmount(long)");
964 syncRunner.syncSignal.saveUserInformation.connect(this,"saveUserInformation(User)");
965 syncRunner.syncSignal.saveEvernoteUpdateCount.connect(this,"saveEvernoteUpdateCount(int)");
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)");
972 syncRunner.syncSignal.refreshLists.connect(this, "refreshLists()");
975 private void setupBrowserSignalListeners() {
976 setupBrowserWindowListeners(browserWindow, true);
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)");
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();
1009 ConfigDialog settings = new ConfigDialog(this);
1010 String dateFormat = Global.getDateFormat();
1011 String timeFormat = Global.getTimeFormat();
1013 indexTime = 1000*Global.getIndexThreadSleepInterval();
1014 indexTimer.start(indexTime); // reset indexing timer
1017 if (Global.showTrayIcon())
1022 if (menuBar.showEditorBar.isChecked())
1023 showEditorButtons(browserWindow);
1025 // Reset the save timer
1026 if (Global.getAutoSaveInterval() > 0)
1027 saveTimer.setInterval(1000*60*Global.getAutoSaveInterval());
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())) {
1035 noteIndexUpdated(true);
1038 logger.log(logger.HIGH, "Leaving NeverNote.settings");
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");
1048 // Restore the actual positions.
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()));
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());
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();
1070 setStyleSheet(styleSheet);
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);
1098 // Save column widths for the next time
1099 private void saveNoteIndexWidth() {
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);
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");
1141 // Listener when a notebook is selected
1142 private void notebookTreeSelection() {
1143 logger.log(logger.HIGH, "Entering NeverNote.notebookTreeSelection");
1146 clearAttributeFilter();
1147 clearSavedSearchFilter();
1148 if (Global.mimicEvernoteInterface) {
1150 searchField.clear();
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));
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);
1176 if (selections.size() > 0)
1177 guid = (selections.get(0).text(2));
1178 if (!guid.equals(""))
1179 selectedNotebookGUIDs.add(guid);
1181 listManager.setSelectedNotebooks(selectedNotebookGUIDs);
1182 listManager.loadNotesIndex();
1183 noteIndexUpdated(false);
1184 logger.log(logger.HIGH, "Leaving NeverNote.notebookTreeSelection");
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);
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())) {
1207 j=listManager.getArchiveNotebookIndex().size();
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));
1219 selectedNotebookGUIDs.remove(i);
1221 notebookTree.blockSignals(false);
1223 logger.log(logger.HIGH, "Leaving NeverNote.notebookIndexUpdated");
1225 // Show/Hide note information
1226 private void toggleNotebookWindow() {
1227 logger.log(logger.HIGH, "Entering NeverNote.toggleNotebookWindow");
1228 if (notebookTree.isVisible())
1229 notebookTree.hide();
1231 notebookTree.show();
1232 menuBar.hideNotebooks.setChecked(notebookTree.isVisible());
1233 Global.saveWindowVisible("notebookTree", notebookTree.isVisible());
1234 logger.log(logger.HIGH, "Leaving NeverNote.toggleNotebookWindow");
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());
1244 if (!edit.okPressed())
1247 Calendar currentTime = new GregorianCalendar();
1248 Long l = new Long(currentTime.getTimeInMillis());
1249 String randint = new String(Long.toString(l));
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);
1260 listManager.getNotebookIndex().add(newBook);
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");
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());
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();
1291 if (!edit.okPressed())
1294 updateListNotebookName(currentSelection.text(0), edit.getNotebook());
1295 currentSelection.setText(0, edit.getNotebook());
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());
1306 conn.getNotebookTable().updateNotebook(listManager.getNotebookIndex().get(i), true);
1307 i=listManager.getNotebookIndex().size();
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()))
1320 nbooks.add(listManager.getNotebookIndex().get(i));
1323 browserWindow.setNotebookList(nbooks);
1324 logger.log(logger.HIGH, "Leaving NeverNote.editNotebook");
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)) {
1341 j=listManager.getNoteIndex().size();
1342 i=selections.size();
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."));
1352 if (conn.getNotebookTable().getAll().size() == 1) {
1353 QMessageBox.information(this, tr("Unable to Delete"), tr("You must have at least one notebook."));
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()) {
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);
1372 // for (int i=<dbRunner.getLocalNotebooks().size()-1; i>=0; i--) {
1373 // if (dbRunner.getLocalNotebooks().get(i).equals(arg0))
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");
1381 // A note's notebook has been updated
1382 @SuppressWarnings("unused")
1383 private void updateNoteNotebook(String guid, String notebookGuid) {
1385 // Update the list manager
1386 listManager.updateNoteNotebook(guid, notebookGuid);
1387 listManager.countNotebookResults(listManager.getNoteIndex());
1388 // notebookTree.updateCounts(listManager.getNotebookIndex(), listManager.getNotebookCounter());
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();
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);
1405 browserWindow.notebookBox.setCurrentIndex(pos);
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);
1416 // Open/close notebooks
1417 @SuppressWarnings("unused")
1418 private void closeNotebooks() {
1419 NotebookArchive na = new NotebookArchive(listManager.getNotebookIndex(), listManager.getArchiveNotebookIndex());
1421 if (!na.okClicked())
1425 listManager.getArchiveNotebookIndex().clear();
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();
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();
1449 notebookTreeSelection();
1450 listManager.loadNotesIndex();
1451 notebookIndexUpdated();
1452 noteIndexUpdated(false);
1453 // noteIndexUpdated(false);
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()))
1464 nbooks.add(listManager.getNotebookIndex().get(i));
1467 browserWindow.setNotebookList(nbooks);
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());
1487 if (!edit.okPressed())
1490 Calendar currentTime = new GregorianCalendar();
1491 Long l = new Long(currentTime.getTimeInMillis());
1492 String randint = new String(Long.toString(l));
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);
1502 logger.log(logger.HIGH, "Leaving NeverNote.addTag");
1504 private void reloadTagTree() {
1505 reloadTagTree(false);
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"))
1515 if (tagTree.selectedItems().size() > 0)
1517 tagTree.showAllTags(!filter);
1518 logger.log(logger.HIGH, "Leaving NeverNote.reloadTagTree");
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());
1533 if (!edit.okPressed())
1536 String guid = currentSelection.text(2);
1537 currentSelection.setText(0,edit.getTag());
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");
1550 browserWindow.setTag(getTagNamesForNote(currentNote));
1551 logger.log(logger.HIGH, "Leaving NeverNote.editTag...");
1553 // Delete an existing tag
1554 @SuppressWarnings("unused")
1555 private void deleteTag() {
1556 logger.log(logger.HIGH, "Entering NeverNote.deleteTag");
1558 if (QMessageBox.question(this, tr("Confirmation"), tr("Delete the selected tags?"),
1559 QMessageBox.StandardButton.Yes,
1560 QMessageBox.StandardButton.No)==StandardButton.No.value()) {
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));
1570 tagIndexUpdated(true);
1572 listManager.countTagResults(listManager.getNoteIndex());
1573 // tagTree.updateCounts(listManager.getTagCounter());
1574 logger.log(logger.HIGH, "Leaving NeverNote.deleteTag");
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());
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);
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");
1602 // Listener when a tag is selected
1603 private void tagTreeSelection() {
1604 logger.log(logger.HIGH, "Entering NeverNote.tagTreeSelection");
1607 clearAttributeFilter();
1608 clearSavedSearchFilter();
1610 menuBar.noteRestoreAction.setVisible(false);
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));
1619 if (selections.size() > 0) {
1620 menuBar.tagEditAction.setEnabled(true);
1621 menuBar.tagDeleteAction.setEnabled(true);
1624 menuBar.tagEditAction.setEnabled(false);
1625 menuBar.tagDeleteAction.setEnabled(false);
1627 listManager.setSelectedTags(selectedTagGUIDs);
1628 listManager.loadNotesIndex();
1629 noteIndexUpdated(false);
1630 logger.log(logger.HIGH, "Leaving NeverNote.tagTreeSelection");
1632 // trigger the tag index to be refreshed
1633 @SuppressWarnings("unused")
1634 private void tagIndexUpdated() {
1635 tagIndexUpdated(true);
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
1643 tagTree.blockSignals(true);
1645 tagTree.load(listManager.getTagIndex());
1646 for (int i=selectedTagGUIDs.size()-1; i>=0; i--) {
1647 boolean found = tagTree.selectGuid(selectedTagGUIDs.get(i));
1649 selectedTagGUIDs.remove(i);
1651 tagTree.blockSignals(false);
1653 browserWindow.setTag(getTagNamesForNote(currentNote));
1654 logger.log(logger.HIGH, "Leaving NeverNote.tagIndexUpdated");
1656 // Show/Hide note information
1657 private void toggleTagWindow() {
1658 logger.log(logger.HIGH, "Entering NeverNote.toggleTagWindow");
1659 if (tagTree.isVisible())
1663 menuBar.hideTags.setChecked(tagTree.isVisible());
1664 Global.saveWindowVisible("tagTree", tagTree.isVisible());
1665 logger.log(logger.HIGH, "Leaving NeverNote.toggleTagWindow");
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));
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 + " ");
1686 browserWindow.setTag(names.toString());
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)));
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(""))
1698 StringBuffer buffer = new StringBuffer(100);
1699 Vector<String> v = new Vector<String>();
1700 List<String> guids = n.getTagGuids();
1705 for (int i=0; i<guids.size(); i++) {
1706 v.add(listManager.getTagNameByGuid(guids.get(i)));
1708 Comparator<String> comparator = Collections.reverseOrder();
1709 Collections.sort(v,comparator);
1710 Collections.reverse(v);
1712 for (int i = 0; i<v.size(); i++) {
1714 buffer.append(", ");
1715 buffer.append(v.get(i));
1718 logger.log(logger.HIGH, "Leaving NeverNote.getTagNamesForNote");
1719 return buffer.toString();
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();
1731 if (tagName == null)
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)));
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+" ";
1751 browserWindow.setTag(display);
1753 i=listManager.getMasterNoteIndex().size();
1758 listManager.getNoteTableModel().updateNoteSyncStatus(noteGuid, false);
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);
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());
1785 if (!edit.okPressed())
1788 Calendar currentTime = new GregorianCalendar();
1789 Long l = new Long(currentTime.getTimeInMillis());
1790 String randint = new String(Long.toString(l));
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");
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());
1819 if (!edit.okPressed())
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)) {
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");
1840 // Delete an existing tag
1841 @SuppressWarnings("unused")
1842 private void deleteSavedSearch() {
1843 logger.log(logger.HIGH, "Entering NeverNote.deleteSavedSearch");
1845 if (QMessageBox.question(this, "Confirmation", "Delete the selected search?",
1846 QMessageBox.StandardButton.Yes,
1847 QMessageBox.StandardButton.No)==StandardButton.No.value()) {
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;
1862 selections.remove(i);
1864 savedSearchIndexUpdated();
1865 logger.log(logger.HIGH, "Leaving NeverNote.deleteSavedSearch");
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");
1873 // Listener when a tag is selected
1874 @SuppressWarnings("unused")
1875 private void savedSearchTreeSelection() {
1876 logger.log(logger.HIGH, "Entering NeverNote.savedSearchTreeSelection");
1878 clearNotebookFilter();
1881 clearAttributeFilter();
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);
1894 selectedSavedSearchGUID = currentSelection.text(1);
1896 // i = selections.size() +1;
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();
1905 listManager.setSelectedSavedSearch(selectedSavedSearchGUID);
1907 logger.log(logger.HIGH, "Leaving NeverNote.savedSearchTreeSelection");
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);
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);
1929 // trigger when the saved search selection changes
1930 @SuppressWarnings("unused")
1931 private void updateSavedSearchSelection() {
1932 logger.log(logger.HIGH, "Entering NeverNote.updateSavedSearchSelection()");
1934 menuBar.savedSearchEditAction.setEnabled(true);
1935 menuBar.savedSearchDeleteAction.setEnabled(true);
1936 List<QTreeWidgetItem> selections = savedSearchTree.selectedItems();
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());
1945 menuBar.savedSearchEditAction.setEnabled(false);
1946 menuBar.savedSearchDeleteAction.setEnabled(false);
1947 selectedSavedSearchGUID = "";
1948 searchField.setEditText("");
1950 searchFieldChanged();
1952 logger.log(logger.HIGH, "Leaving NeverNote.updateSavedSearchSelection()");
1956 // Show/Hide note information
1957 private void toggleSavedSearchWindow() {
1958 logger.log(logger.HIGH, "Entering NeverNote.toggleSavedSearchWindow");
1959 if (savedSearchTree.isVisible())
1960 savedSearchTree.hide();
1962 savedSearchTree.show();
1963 menuBar.hideSavedSearches.setChecked(savedSearchTree.isVisible());
1965 Global.saveWindowVisible("savedSearchTree", savedSearchTree.isVisible());
1966 logger.log(logger.HIGH, "Leaving NeverNote.toggleSavedSearchWindow");
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() {
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());
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) {
2006 setMessage("Compacting database.");
2008 listManager.compactDatabase();
2010 setMessage("Database compact is complete.");
2011 logger.log(logger.HIGH, "Leaving NeverNote.compactDatabase");
2013 @SuppressWarnings("unused")
2014 private void accountInformation() {
2015 logger.log(logger.HIGH, "Entering NeverNote.accountInformation");
2016 AccountDialog dialog = new AccountDialog();
2018 logger.log(logger.HIGH, "Leaving NeverNote.accountInformation");
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)))
2032 textBox.setText(file.readAll().toString());
2034 dialog.setWindowTitle(tr("Release Notes"));
2035 dialog.setLayout(layout);
2037 logger.log(logger.HIGH, "Leaving NeverNote.releaseNotes");
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);
2049 dialog.setLayout(layout);
2050 dialog.setWindowTitle(tr("Mesasge Log"));
2052 logger.log(logger.HIGH, "Leaving NeverNote.logger");
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 ")
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");
2074 // Hide the entire left hand side
2075 @SuppressWarnings("unused")
2076 private void toggleLeftSide() {
2079 hidden = !menuBar.hideLeftSide.isChecked();
2080 menuBar.hideLeftSide.setChecked(!hidden);
2082 if (notebookTree.isVisible() != hidden)
2083 toggleNotebookWindow();
2084 if (savedSearchTree.isVisible() != hidden)
2085 toggleSavedSearchWindow();
2086 if (tagTree.isVisible() != hidden)
2088 if (attributeTree.isVisible() != hidden)
2089 toggleAttributesWindow();
2090 if (trashTree.isVisible() != hidden)
2091 toggleTrashWindow();
2093 Global.saveWindowVisible("leftPanel", hidden);
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();
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) {
2117 listManager.setEnSearch("");
2118 ///// listManager.clearNoteIndexSearch();
2119 //noteIndexUpdated(true);
2120 listManager.loadNotesIndex();
2121 refreshEvernoteNote(true);
2122 noteIndexUpdated(false);
2124 searchPerformed = false;
2127 // Text in the toolbar has changed
2128 private void searchFieldChanged() {
2129 logger.log(logger.HIGH, "Entering NeverNote.searchFieldChanged");
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");
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);
2151 toolBar.setVisible(true);
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"));
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"));
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"));
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"));
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"));
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"));
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"));
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"));
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"));
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"));
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"));
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"));
2226 toolBar.addSeparator();
2227 toolBar.addWidget(new QLabel(tr("Quota:")));
2228 toolBar.addWidget(quotaBar);
2229 //quotaBar.setSizePolicy(Policy.Minimum, Policy.Minimum);
2231 toolBar.addSeparator();
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);
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);
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"));
2259 logger.log(logger.HIGH, "Leaving NeverNote.setupToolBar");
2261 // Update the sychronize button picture
2263 public QMenu createPopupMenu() {
2264 QMenu contextMenu = super.createPopupMenu();
2266 contextMenu.addSeparator();
2267 QAction prevAction = addContextAction("prevArrow", tr("Previous Arrow"));
2268 contextMenu.addAction(prevAction);
2269 prevAction.triggered.connect(this, "togglePrevArrowButton(Boolean)");
2271 QAction nextAction = addContextAction("nextArrow", tr("Next Arrow"));
2272 contextMenu.addAction(nextAction);
2273 nextAction.triggered.connect(this, "toggleNextArrowButton(Boolean)");
2275 QAction upAction = addContextAction("upArrow", tr("Up Arrow"));
2276 contextMenu.addAction(upAction);
2277 upAction.triggered.connect(this, "toggleUpArrowButton(Boolean)");
2279 QAction downAction = addContextAction("downArrow", tr("Down Arrow"));
2280 contextMenu.addAction(downAction);
2281 downAction.triggered.connect(this, "toggleDownArrowButton(Boolean)");
2283 QAction synchronizeAction = addContextAction("synchronize", tr("Synchronize"));
2284 contextMenu.addAction(synchronizeAction);
2285 synchronizeAction.triggered.connect(this, "toggleSynchronizeButton(Boolean)");
2287 QAction printAction = addContextAction("print", tr("Print"));
2288 contextMenu.addAction(printAction);
2289 printAction.triggered.connect(this, "togglePrintButton(Boolean)");
2291 QAction tagAction = addContextAction("tag", tr("Tag"));
2292 contextMenu.addAction(tagAction);
2293 tagAction.triggered.connect(this, "toggleTagButton(Boolean)");
2295 QAction attributeAction = addContextAction("attribute", tr("Attribute"));
2296 contextMenu.addAction(attributeAction);
2297 attributeAction.triggered.connect(this, "toggleAttributeButton(Boolean)");
2299 QAction emailAction = addContextAction("email", tr("Email"));
2300 contextMenu.addAction(emailAction);
2301 emailAction.triggered.connect(this, "toggleEmailButton(Boolean)");
2303 QAction deleteAction = addContextAction("delete", tr("Delete"));
2304 contextMenu.addAction(deleteAction);
2305 deleteAction.triggered.connect(this, "toggleDeleteButton(Boolean)");
2307 QAction newAction = addContextAction("new", tr("Add"));
2308 contextMenu.addAction(newAction);
2309 newAction.triggered.connect(this, "toggleNewButton(Boolean)");
2311 QAction allNotesAction = addContextAction("allNotes", tr("All Notes"));
2312 contextMenu.addAction(allNotesAction);
2313 allNotesAction.triggered.connect(this, "toggleAllNotesButton(Boolean)");
2315 QAction searchClearAction = addContextAction("searchClear", tr("Search Clear"));
2316 contextMenu.addAction(searchClearAction);
2317 searchClearAction.triggered.connect(this, "toggleSearchClearButton(Boolean)");
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));
2329 private void togglePrevArrowButton(Boolean toggle) {
2330 prevButton.setVisible(toggle);
2331 Global.saveToolbarButtonsVisible("prevArrow", toggle);
2333 private void toggleNextArrowButton(Boolean toggle) {
2334 nextButton.setVisible(toggle);
2335 Global.saveToolbarButtonsVisible("nextArrow", toggle);
2337 private void toggleUpArrowButton(Boolean toggle) {
2338 upButton.setVisible(toggle);
2339 Global.saveToolbarButtonsVisible("upArrow", toggle);
2341 private void toggleDownArrowButton(Boolean toggle) {
2342 downButton.setVisible(toggle);
2343 Global.saveToolbarButtonsVisible("downArrow", toggle);
2345 private void toggleSynchronizeButton(Boolean toggle) {
2346 synchronizeButton.setVisible(toggle);
2347 Global.saveToolbarButtonsVisible("synchronize", toggle);
2349 private void togglePrintButton(Boolean toggle) {
2350 printButton.setVisible(toggle);
2351 Global.saveToolbarButtonsVisible("print", toggle);
2353 private void toggleTagButton(Boolean toggle) {
2354 tagButton.setVisible(toggle);
2355 Global.saveToolbarButtonsVisible("tag", toggle);
2357 private void toggleAttributeButton(Boolean toggle) {
2358 attributeButton.setVisible(toggle);
2359 Global.saveToolbarButtonsVisible("attribute", toggle);
2361 private void toggleEmailButton(Boolean toggle) {
2362 emailButton.setVisible(toggle);
2363 Global.saveToolbarButtonsVisible("email", toggle);
2365 private void toggleDeleteButton(Boolean toggle) {
2366 deleteButton.setVisible(toggle);
2367 Global.saveToolbarButtonsVisible("delete", toggle);
2369 private void toggleNewButton(Boolean toggle) {
2370 newButton.setVisible(toggle);
2371 Global.saveToolbarButtonsVisible("new", toggle);
2373 private void toggleAllNotesButton(Boolean toggle) {
2374 allNotesButton.setVisible(toggle);
2375 Global.saveToolbarButtonsVisible("allNotes", toggle);
2377 private void toggleSearchClearButton(Boolean toggle) {
2378 searchClearButton.setVisible(toggle);
2379 Global.saveToolbarButtonsVisible("searchClear", toggle);
2386 @SuppressWarnings("unused")
2387 private void updateSyncButton() {
2388 /* synchronizeFrame++;
2389 if (synchronizeFrame == 4)
2390 synchronizeFrame = 0;
2391 synchronizeButton.setIcon(synchronizeAnimation.get(synchronizeFrame));
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);
2407 QPixmap pix = new QPixmap(iconPath+"synchronize.png");
2408 QPixmap rotatedPix = new QPixmap(pix.size());
2409 QPainter p = new QPainter(rotatedPix);
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);
2422 synchronizeButton.setIcon(rotatedPix);
2425 // Synchronize with Evernote
2426 @SuppressWarnings("unused")
2427 private void evernoteSync() {
2428 logger.log(logger.HIGH, "Entering NeverNote.evernoteSync");
2429 if (!Global.isConnected)
2431 if (Global.isConnected)
2432 synchronizeAnimationTimer.start(10);
2433 // synchronizeAnimationTimer.start(200);
2435 logger.log(logger.HIGH, "Leaving NeverNote.evernoteSync");
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);
2444 quotaBar.setValue(0);
2447 @SuppressWarnings("unused")
2448 private void zoomChanged() {
2449 browserWindow.getBrowser().setZoomFactor(new Double(zoomSpinner.value())/100);
2452 //****************************************************************
2453 //****************************************************************
2454 //* System Tray functions
2455 //****************************************************************
2456 //****************************************************************
2457 private void trayToggleVisible() {
2462 if (windowMaximized)
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();
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");
2488 clearNotebookFilter();
2490 clearAttributeFilter();
2491 clearSavedSearchFilter();
2493 String tempGuid = currentNoteGuid;
2495 // currentNoteGuid = "";
2496 currentNote = new Note();
2497 selectedNoteGUIDs.clear();
2498 listManager.getSelectedNotebooks().clear();
2499 listManager.getSelectedTags().clear();
2500 listManager.setSelectedSavedSearch("");
2501 browserWindow.clear();
2503 // toggle the add buttons
2504 newButton.setEnabled(!newButton.isEnabled());
2505 menuBar.noteAdd.setEnabled(newButton.isEnabled());
2506 menuBar.noteAdd.setVisible(true);
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);
2517 currentNoteGuid = trashNoteGuid;
2518 trashNoteGuid = tempGuid;
2519 menuBar.noteRestoreAction.setEnabled(true);
2520 menuBar.noteRestoreAction.setVisible(true);
2521 Global.showDeleted = true;
2523 listManager.loadNotesIndex();
2524 noteIndexUpdated(false);
2525 //// browserWindow.setEnabled(newButton.isEnabled());
2526 browserWindow.setReadOnly(!newButton.isEnabled());
2527 logger.log(logger.HIGH, "Leaving NeverNote.trashTreeSelection");
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();
2544 clearNotebookFilter();
2545 clearSavedSearchFilter();
2546 clearAttributeFilter();
2548 Global.showDeleted = false;
2549 menuBar.noteRestoreAction.setEnabled(false);
2550 menuBar.noteRestoreAction.setVisible(false);
2552 listManager.loadNotesIndex();
2553 //--->>> noteIndexUpdated(true);
2554 noteIndexUpdated(false);
2557 // Show/Hide trash window
2558 private void toggleTrashWindow() {
2559 logger.log(logger.HIGH, "Entering NeverNote.toggleTrashWindow");
2560 if (trashTree.isVisible())
2564 menuBar.hideTrash.setChecked(trashTree.isVisible());
2566 Global.saveWindowVisible("trashTree", trashTree.isVisible());
2567 logger.log(logger.HIGH, "Leaving NeverNote.trashWindow");
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);
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();
2595 // Do a manual connect/disconnect
2596 private void remoteConnect() {
2597 logger.log(logger.HIGH, "Entering NeverNote.remoteConnect");
2599 if (Global.isConnected) {
2600 Global.isConnected = false;
2601 syncRunner.enDisconnect();
2602 setupConnectMenuOptions();
2607 AESEncrypter aes = new AESEncrypter();
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.
2613 String userid = aes.getUserid();
2614 String password = aes.getPassword();
2615 if (!userid.equals("") && !password.equals("")) {
2616 Global.username = userid;
2617 Global.password = password;
2620 // Show the login dialog box
2621 if (!Global.automaticLogin() || userid.equals("")|| password.equals("")) {
2622 LoginDialog login = new LoginDialog();
2625 if (!login.okPressed()) {
2629 Global.username = login.getUserid();
2630 Global.password = login.getPassword();
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;
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", "") ;
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")) ;
2650 if (Global.getProxyValue("userid").equals("")) {
2651 Authenticator.setDefault(new Authenticator() {
2653 protected PasswordAuthentication getPasswordAuthentication() {
2655 PasswordAuthentication(Global.getProxyValue("userid"),Global.getProxyValue("password").toCharArray());
2661 syncRunner.enConnect();
2662 Global.isConnected = syncRunner.isConnected;
2664 setupConnectMenuOptions();
2665 logger.log(logger.HIGH, "Leaving NeverNote.remoteConnect");
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);
2674 menuBar.connectAction.setText(tr("Disconnect"));
2675 menuBar.connectAction.setToolTip(tr("Disconnect from Evernote"));
2676 menuBar.synchronizeAction.setEnabled(true);
2678 logger.log(logger.HIGH, "Leaving NeverNote.setupConnectionMenuOptions");
2683 //***************************************************************
2684 //***************************************************************
2685 //** These functions deal with the GUI Attribute tree
2686 //***************************************************************
2687 //***************************************************************
2688 @SuppressWarnings("unused")
2689 private void attributeTreeClicked(QTreeWidgetItem item, Integer integer) {
2692 clearNotebookFilter();
2694 clearSavedSearchFilter();
2696 if (attributeTreeSelected == null || item.nativeId() != attributeTreeSelected.nativeId()) {
2697 if (item.childCount() > 0) {
2698 item.setSelected(false);
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());
2709 f.select(item.parent().indexOfChild(item));
2711 Global.containsFilter.select(item.parent().indexOfChild(item));
2714 listManager.loadNotesIndex();
2715 noteIndexUpdated(false);
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);
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;
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();
2754 attributeTree.show();
2755 menuBar.hideAttributes.setChecked(attributeTree.isVisible());
2757 Global.saveWindowVisible("attributeTree", attributeTree.isVisible());
2758 logger.log(logger.HIGH, "Leaving NeverNote.toggleAttributeWindow");
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);
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");
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();
2792 noteTableView.show();
2793 menuBar.hideNoteList.setChecked(noteTableView.isVisible());
2795 Global.saveWindowVisible("noteList", noteTableView.isVisible());
2796 logger.log(logger.HIGH, "Leaving NeverNote.toggleNoteListWindow");
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");
2803 if (historyGuids.size() == 0) {
2804 historyGuids.add(currentNoteGuid);
2805 historyPosition = 1;
2807 noteTableView.showColumn(Global.noteTableGuidPosition);
2809 List<QModelIndex> selections = noteTableView.selectionModel().selectedRows();
2810 if (!Global.isColumnVisible("guid"))
2811 noteTableView.hideColumn(Global.noteTableGuidPosition);
2813 if (selections.size() > 0) {
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);
2822 if (selections.size() != 1 || !Global.isConnected) {
2823 menuBar.noteOnlineHistoryAction.setEnabled(false);
2825 if (selections.size() == 1) {
2826 menuBar.noteMergeAction.setEnabled(false);
2828 for (int i=0; i<selections.size(); i++) {
2829 int row = selections.get(i).row();
2831 upButton.setEnabled(false);
2833 upButton.setEnabled(true);
2834 if (row < listManager.getNoteTableModel().rowCount()-1)
2835 downButton.setEnabled(true);
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);
2845 nextButton.setEnabled(true);
2846 prevButton.setEnabled(true);
2848 int endPosition = historyGuids.size()-1;
2849 for (int j=historyPosition; j<=endPosition; j++) {
2850 historyGuids.remove(historyGuids.size()-1);
2852 historyGuids.add(currentNoteGuid);
2853 historyPosition = historyGuids.size();
2855 if (historyPosition <= 1)
2856 prevButton.setEnabled(false);
2857 if (historyPosition == historyGuids.size())
2858 nextButton.setEnabled(false);
2860 fromHistory = false;
2861 scrollToGuid(currentNoteGuid);
2862 refreshEvernoteNote(true);
2863 logger.log(logger.HIGH, "Leaving NeverNote.noteTableSelection");
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");
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");
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
2883 String saveCurrentNoteGuid = new String();
2884 String tempNoteGuid = new String();
2886 historyGuids.clear();
2887 historyPosition = 0;
2888 prevButton.setEnabled(false);
2889 nextButton.setEnabled(false);
2891 if (currentNoteGuid == null)
2892 currentNoteGuid = new String();
2894 for (Note note : listManager.getNoteIndex()) {
2895 tempNoteGuid = note.getGuid();
2896 if (currentNoteGuid.equals(tempNoteGuid)) {
2897 saveCurrentNoteGuid = new String(tempNoteGuid);
2901 if (listManager.getNoteIndex().size() == 0) {
2902 currentNoteGuid = "";
2904 browserWindow.clear();
2905 browserWindow.setDisabled(true);
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);
2913 refreshEvernoteNote(false);
2915 reloadTagTree(false);
2917 logger.log(logger.HIGH, "Leaving NeverNote.refreshEvernoteNoteList");
2919 // Called when the previous arrow button is clicked
2920 @SuppressWarnings("unused")
2921 private void previousViewedAction() {
2922 if (!prevButton.isEnabled())
2924 if (historyPosition == 0)
2927 if (historyPosition <= 0)
2929 String historyGuid = historyGuids.get(historyPosition-1);
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);
2943 @SuppressWarnings("unused")
2944 private void nextViewedAction() {
2945 if (!nextButton.isEnabled())
2947 String historyGuid = historyGuids.get(historyPosition);
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);
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();
2968 noteTableView.selectRow(row-1);
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();
2978 noteTableView.selectRow(row+1);
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(", ");
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();
3005 logger.log(logger.HIGH, "Leaving NeverNote.updateListTags");
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");
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();
3027 logger.log(logger.HIGH, "Leaving NeverNote.updateListAuthor");
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");
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");
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();
3054 logger.log(logger.HIGH, "Leaving NeverNote.updateListAuthor");
3056 private void updateListGuid(String oldGuid, String newGuid) {
3057 logger.log(logger.HIGH, "Entering NeverNote.updateListTitle");
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");
3071 logger.log(logger.HIGH, "Leaving NeverNote.updateListTitle");
3073 private void updateListTagName(String guid) {
3074 logger.log(logger.HIGH, "Entering NeverNote.updateTagName");
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));
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();
3093 logger.log(logger.HIGH, "Leaving NeverNote.updateListNotebook");
3095 private void removeListTagName(String guid) {
3096 logger.log(logger.HIGH, "Entering NeverNote.updateTagName");
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);
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();
3119 logger.log(logger.HIGH, "Leaving NeverNote.updateListNotebook");