aboutsummaryrefslogtreecommitdiffstats
path: root/Source/SPTableContentDelegate.m
Commit message (Collapse)AuthorAgeFilesLines
* Fix bundle commands no longer working in popup field editor (and possibly ↵Max2015-10-211-5/+5
| | | | | | other cases) (#2299) Replacing some [NSApp mainWindow] with their actually intended calls [NSApp keyWindow] and [view window]
* Fix a popular exception when a user tried to edit a field with a lost ↵Max2015-06-171-1/+1
| | | | connection and then chose "disconnect" when Sequel Pro asks to reconnect (attempt at #2137)
* Fix a previous commit not catching all cases.Max2015-04-131-8/+8
|
* Disable editing columns in "Display in Hex" modeMax2015-03-241-2/+11
| | | | This is a workaround for a potential data loss/corruption bug until we really fix this (see #1876)
* Formalize [x release], x = nil; conventionMax2015-01-041-1/+1
| | | | | Take this commit as a proposal to formalize our existing "[x release], x = nil;" convention by introducing a macro for it. Feel free to revert this commit if you see issues with the approch or implementation.
* Add cast for [NSApp delegate]Max2014-12-131-2/+2
| | | | | * (Also changed some outdated URLs) * Replaced [NSApplication sharedApplication] with NSApp
* Mark issue for s.o. to look atMax2014-12-131-2/+3
|
* Change some split view width calculations.Max2014-11-291-1/+1
| | | | | | * Attempt to fix the "<SPSplitView: ...>: the delegate <SPSplitView: ...> was sent -splitView:resizeSubviewsWithOldSize: and left the subview frames in an inconsistent state:" message that has been plaguing my console for some time. * This commit also adds a minimum width on the main area to prevent some strange UI bugs.
* Add a safety check within [SPCopyTable shouldUseFieldEditorForRow:column:] ↵rowanbeentje2014-06-161-2/+2
| | | | for use when loading tables, which may improve Issue #1925 and Issue #1902.
* Update URL in source file header to point to GitHub.Stuart Connolly2014-01-261-1/+1
|
* Remove SVN property placeholder.Stuart Connolly2014-01-261-2/+0
|
* when displaying binary data, make sure we're checking the display as hex ↵Stuart Connolly2014-01-191-1/+3
| | | | option to so we know what color to use.
* Add an option to display binary data as hex, while displaying it in blue to ↵Stuart Connolly2014-01-141-10/+24
| | | | distinguish from string data of similar content.
* - Add the ability for SPTextAndLinkCell arrows to be selectively disabled ↵rowanbeentje2013-08-271-4/+16
| | | | | | | on a per-cell rather than a per-column basis - Use this ability in SPTableContentDelegate to disable link arrows if the cell is showing a NULL or (not loaded) value, and also if the current row is being edited and so might be unvalidated. This addresses Issue #1790 and http://spbug.com/l/2306 .
* Rework table content and custom query data loading and storage for speed ↵rowanbeentje2013-08-131-20/+13
| | | | | | | | | increases and lower memory usage: - Add a new SPMySQLStreamingResultStore class to SPMySQL.framework. This class acts as both a result set and a data store for the accompanying data, storing the row information in a custom format in a custom malloc zone. - Amend SPDataStorage to wrap the new class, so original result information is stored in the one location in the custom format. Any edited information is handled by SPDataStorage for clean separation - Rework table content and custom query data data stores to use the new class. This significantly speeds up data loading, resulting in faster data loads if they weren't previously network constrained, or lower CPU usage otherwise. The memory usage is also lowered, with the memory overhead for many small cells being enormously reduced.
* - Fix all the Xcode 4.6.2 build warnings, and tweak warning settings to ↵rowanbeentje2013-05-211-4/+0
| | | | enable some more
* Fix remaining 10.6/7 build warnings.stuconnolly2013-02-171-0/+5
|
* Fix more wanrings by creating a protocol that delegates of the copy table ↵stuconnolly2013-02-161-0/+11
| | | | should conform to.
* Changing SP_REFACTOR macro to SP_CODAsqlprodev2013-02-141-15/+15
|
* Changes required to merge Sequel Pro r4011 into Codasqlprodev2013-02-141-2/+2
|
* Fix more warnings.stuconnolly2013-01-241-2/+2
|
* - Add names for most threads created by Sequel Pro for easier debugrowanbeentje2012-10-141-1/+2
|
* Move table content filter logic to it's own file.stuconnolly2012-08-151-0/+1
|
* Change Sequel Pro's license from GPL (version 2) to MIT.stuconnolly2012-07-251-3/+3
|
* * Fixes the case of the curious @"es"'sdmoagx2012-05-171-1/+1
|
* #ifdef'ing out references to frameworks that are not used in SP_REFACTOR buildssqlprodev2012-03-291-0/+4
|
* - Clean up SPMySQL and QueryKit inclusion and search methods, which should ↵rowanbeentje2012-03-271-1/+1
| | | | | | | fix nightly builds - Fix warnings
* - When exporting a query result or filtered table view make sure we're ↵stuconnolly2012-03-201-0/+778
including the entire content of BLOBs, not just what we display. Fixes issue #1124. - Move SPTableContent's table view datasource and delegate methods to separate categories in order to reduce it's size.