aboutsummaryrefslogtreecommitdiffstats
path: root/Interfaces
Commit message (Collapse)AuthorAgeFilesLines
* - Select 'drop tables' option for MySQL export by default, to improve ↵rowanbeentje2009-04-061-9/+45
| | | | | | | backup-type process and more closely match mysqldump, and correctly drop views - Consistently set and restore the encoding appropriately for SQL import/export, and export to UTF8 files to correctly store all characters. Goes a good way towards addressing Issue #116.
* • ADDED - (IBAction)doRemoveDiacritics:(id)senderBibiko2009-04-061-428/+21
| | | | | - this method removes all combining diacritics -- e.g. façäñど ⇢ facanと after Unicode's NFD
* Remove the 'Clear' menu item from the 'Edit' menu because it doesn't ↵stuconnolly2009-04-051-39/+429
| | | | actually do anything. See issue #221.
* • ADDED: - (IBAction)doTranspose:(id)sender;Bibiko2009-04-051-2/+12
| | | | - Note: not yet combining-diacritics-safe!
* • ADDED to SPTextViewAdditions:Bibiko2009-04-051-408/+96
| | | | | | | | | | | | | | - (NSRange)getRangeForCurrentWord - (IBAction)selectCurrentWord:(id)sender; - (IBAction)selectCurrentLine:(id)sender; - (IBAction)doSelectionUpperCase:(id)sender; - (IBAction)doSelectionLowerCase:(id)sender; - (IBAction)doSelectionTitleCase:(id)sender; - (IBAction)doDecomposedStringWithCanonicalMapping:(id)sender; - (IBAction)doDecomposedStringWithCompatibilityMapping:(id)sender; - (IBAction)doPrecomposedStringWithCanonicalMapping:(id)sender; - (IBAction)doPrecomposedStringWithCompatibilityMapping:(id)sender; • BOUNDED these IBAction to mainmenu.xib
* • ADDED to menu item “Edit” the submenus:Bibiko2009-04-051-1/+19
| | | | | | | | | | | | | | | | | | Convert > - to Uppercase ^U - to Lowercase ^⇧U - to Titlecase ^⌥U - Transpose ^T - Remove Diacritics - Normalization > -- Canonical Decomposing (NFD) -- Canonical Composing (NFC) -- Compatibility Decomposition (NFKD) -- Compatibility Composition (NFKC) Select > - Word ^W - Line ^L - All ⌘A
* • ADDED to menu item “Edit” the submenus:Bibiko2009-04-051-36/+458
|
* - Fix an invalid reference to a missing pulldown_arrow image causing ↵rowanbeentje2009-04-051-104/+73
| | | | | | | | invalid log entries - Set the focus to the custom query text field when appropriate when switching to the custom query tab - Add the ability to set the custom query editor font, save and load it from preferences, and no longer reset the font on queries
* - Change the method of creating a new table to be the same as that when ↵stuconnolly2009-04-041-10/+995
| | | | | | | | | | creating a new database by presenting a sheet, allowing the user to specify the table name and encoding. - Allowing the user to specify the table encoding partially addresses issue #161. - Implementing interface validation in the form of not allowing table creation without a name also removes the need for lots of error checking and presenting these errors to the user. - In addition to the above the ability to specify the initial field name, type and length (if applicable) of a new table can now be done on the same sheet, but is yet to be implemented. - Also did a general tidy up of TablesList.[hm].
* - removed some ellipsis (...) from the Favorites/History Menu on the Custom ↵jakob2009-04-031-19/+57
| | | | Query Tab (for information on the proper usage of the ellipsis character, see http://developer.apple.com/documentation/userexperience/Conceptual/AppleHIGuidelines/XHIGText/XHIGText.html#//apple_ref/doc/uid/TP30000365-TPXREF126 )
* - Fixed issue #219: Query tab favorites, history, run buttons missing in ↵avenjamin2009-04-031-76/+37
| | | | nightly build 469
* - Fixed missing image erroravenjamin2009-04-031-49/+82
|
* - Add the ability for CMTextView to automatically capitalise SQL keywords ↵rowanbeentje2009-04-031-23/+50
| | | | in the text view, currently off by default but saved from preferences. Thanks again to Hans-Jörg Bibiko for this patch; see Issue #218.
* - Changed to "NULL" column header to "Allow NULL" to make it cleareravenjamin2009-04-021-42/+16
|
* Change the toggle console menu item's title to either 'Show' or 'Hide' console.stuconnolly2009-04-021-15/+42
|
* - Changed Auto Complete keyboard shortcut to just Escape instead of ↵avenjamin2009-04-021-13/+21
| | | | Option-Escape
* - Implemented "Clear History" in new Gear menuavenjamin2009-04-021-354/+383
| | | | - Changed UI in Query Tab for favourite and history popups as well as Run query buttons
* - Add a new "gear" action menu underneath the custom query view, including ↵rowanbeentje2009-04-021-29/+495
| | | | | | | | | | | | a number of items: - Add menu commands for "Run All" and "Run Selected", with additional keyboard shortcuts - cmd-R for Run all, addressing #137 - Add menu commands for indenting text, outdenting text, and to show autocompletion is available - Add menu commands to toggle autopairing and autoindenting - Also hidden menu commands for history navigation and clearing, not hooked in yet (see #207) - Add a new method to our string additions: lineRangesForRange - Add "shift right" (indent) and "shift left" (outdent) support to CMTextView, including for multiple lines
* Added delete as a hot key to the remove row and column buttons to fix issue #216avenjamin2009-04-011-8/+8
|
* - set the delegate for the index-NSTableView to TableSource (necessary for ↵jakob2009-03-281-4/+24
| | | | automatic enabling/disabling of the remove-index-button)
* Restore the ability to reorder columns in the Content view, as a temporary ↵rowanbeentje2009-03-281-1/+27
| | | | way of altering the displayed information for display purposes only (addresses Issue #153). I've reviewed code which works with the table columns and we're still correctly using identifers rather than indices everywhere (even in new code!). Filtering and paginating keeps the columns as reordered, refreshing restores them - seems reasonable.
* - Fix buttons in table selection views to use new refresh button image, ↵rowanbeentje2009-03-271-62/+18
| | | | fixing console errors about missing images on run
* Completely redesigned query console that now uses a table view instead of a ↵stuconnolly2009-03-262-364/+992
| | | | | | | | | | | | | text view. This should significantly improve import speed, but most importantly resolves the crashes caused by the drawing that was being performed by the text view. Fixes issue #87 and implements #167. New console provides the following: - Live filtering - Ability to hide message time stamps - Ability to hide SELECT/SHOW statement messages - Ability to copy messages to pasteboard, including multiple messages - Ability to save the current filtered content to a file, with the option to include the message time stamps
* Fixed layering issue. Row count text was hidden by bottom baravenjamin2009-03-261-24/+27
|
* - fixed the duplicate field button in the table view (the delete button was ↵jakob2009-03-261-3/+3
| | | | too large and overlapped)
* Enabled Page Setup for printing, so now you can print landscape toobamse162009-03-261-13/+3
| | | | | | Enabled auto pagination, so we print everything for now
* Added Marius Ursache to current developers and credited Jakob Egger for his ↵avenjamin2009-03-261-4/+13
| | | | syntax colouring code contributions.
* Trivial commit to test the new nightly build sparkle functionality. mattlangtree2009-03-261-1/+1
|
* Fixed tooltip on delete button on table structure.avenjamin2009-03-251-10/+19
| | | | Now says "Delete selected field(s)" - Added (s)
* - Restores the "Zoom" button to the window menu, for conistency with the ↵rowanbeentje2009-03-251-14/+30
| | | | platform. Thanks to "samsouder" for the original patch; this resolves Issue #196.
* - Update the help text for the "Run all" button following r402rowanbeentje2009-03-251-61/+15
| | | | | - Add help text and a keyboard shortvut (alt-cmd-R) for the Run Current/Run Selection button
* Set the default edit-in-sheets button toggle state to no, and add a ↵rowanbeentje2009-03-251-27/+84
| | | | highlighted image state to show when it's set to on
* Linked refresh tables button to TablesList.updatedTablesbamse162009-03-231-23/+24
|
* - Added missing keyboard shortcuts for new interface buttons.avenjamin2009-03-222-819/+703
| | | | - Preliminary work on new ConnectionView
* - Added tooltips to action button menu itemsavenjamin2009-03-221-160/+184
| | | | - Removed refresh tables menu item - refresh button right beside it.
* - Restyled the bottom bars in the Sidebar, Structure, Indexes, and Content viewsavenjamin2009-03-211-1305/+1308
| | | | | - Added new images - Cleaned up tooltips for the new buttons
* SPSQLParser changes:rowanbeentje2009-03-191-38/+174
| | | | | | | | | | | | | | | | | | - Use method caches for oft-called functions, and support caching of chunks of the underlying string for string walking, resulting in an overall 1.3x-1.4x parsing speedup. - Improve handling of multi-character comment starts (eg / or -) at the very end of strings - When running splitString... methods return even empty strings for consistency. - Update TableDump and TableData to match new usage SPStringAddition changes: - Add a formatter for time intervals. CMMCPConnection changes: - Add support for timing queries CustomQuery and nib changes: - Change the "Run Queries" button to "Run All". - Add a "Run Current" button, which runs the query the text caret is currently positioned inside; if text is actually selected, this changes to "Run Selection". This addresses Issue #43. - Amend the "rows affected" string to better reflect the actual number of rows altered by several queries, show the query count if > 1, and display the overall execution time of the queries. This addresses Issue #142. - No longer execute blank strings as part of the custom query, preventing errors.
* - Moved connection tabview from DBView nib into its own xib fileavenjamin2009-03-192-5115/+5363
|
* - Increment trunk version number to 0.9.4rowanbeentje2009-03-111-1/+1
| | | | | | | - Improves on r370 and r375 by preventing actions triggered by the save from triggering saves themselves - Improves further on r370 and r375 by committing any current edits before saving - Additional comments
* + Added new images for button barsavenjamin2009-03-101-480/+501
| | | | + Changed button bar images for left sidebar
* Make copy button text small and remove favourites table view focus remove.stuconnolly2009-03-051-12/+24
|
* - Hide SSH options for favourites in the preferences, temporarily, to avoid ↵rowanbeentje2009-03-051-87/+154
| | | | | | | confusion while this is non-functional. - Clean up +/- buttons beneath the prefs and change the incorrectly labelled "-" button to "Copy"
* - Fix a number of edit sheet crashers regarding opening and saving files, ↵rowanbeentje2009-03-051-7/+29
| | | | | | | | | image deletions, and image drag and dropping (fixes Issue #85 and google groups report) - Improves compatbility of drag-and-drops onto the image well, including support for image drags from other applications - Attempt to automatically select the image or text tab in the edit sheet as appropriate - Fixes build-from-clean warnings caused by an unexposed function added in r375
* Add Korean encoding option to new database encoding dropdown - thanks Ben ↵rowanbeentje2009-03-051-6/+26
| | | | for spotting the omission in r371!
* - Renames "Database Encoding" menu item in Database menu to "View Using ↵rowanbeentje2009-03-041-24/+110
| | | | | | | | Encoding" for clarity - Add support for EUC-KR (I think, unable to test), hopefully fixing Issue #149 - Add workaround for UTF8 via Latin 1, supporting viewing and editing of data added using broken clients/upgraded old Wordpress/etc.
* - Re-design the custom query favourties editor and get rid of the nasty ↵stuconnolly2009-03-021-207/+223
| | | | | | | plus/minus buttons. Also add some interface element validation. - Tidy up CustomQuery.h by getting rid of the definition of all datasource and delegate method signatures which don't need to be declared.
* Implemented method: componentsSeparatedByCharactersInSet. to be compatible ↵avenjamin2009-02-281-1/+1
| | | | with 10.4+
* Reduce the amount of padding on the new console panel and also auto save its ↵stuconnolly2009-02-281-16/+33
| | | | position. Thanks to Rowan for suggesting these.
* + Separate the console from being drawer based to its own panel. New console ↵stuconnolly2009-02-282-317/+1081
| | | | | | | | | panel also adds the ability to save the current console content to a file on disk. Speed up the updating of the text view by removing the re-draw of the view after each message is appended. The console is still very basic, but is a starting point for more functionality to be added now that it is all handled in a single class. + Add the ability to specify the encoding when creating a new database. Addresses issue #125. Also improve the usability of the create database sheet by only enabling the 'Add' button if the database name length is greater than zero. This elimates the check that is done and the error panel that is displayed if the name is empty.
* Deselect favorites when any detail other than the password is edited. This ↵rowanbeentje2009-02-211-6/+56
| | | | improves clarity, but also fixes an issue: if a connection with amended details failed, the default favourite details are reloaded in the sheet if a favorite is selected. This change allows a connection to fail and the actual used details to be reshown in the sheet.