aboutsummaryrefslogtreecommitdiffstats
path: root/Interfaces/English.lproj/DBView.xib
Commit message (Collapse)AuthorAgeFilesLines
* Add SPDefaultPasteboardDragType constant.stuconnolly2010-10-281-27/+42
|
* Replace use of hardcoded strings with constants when working with trigger data.stuconnolly2010-10-191-9/+9
|
* Add a 'Edit Trigger' menu item to the trigger's table view context menu.stuconnolly2010-10-191-782/+172
|
* • placed the TableStructure's source table gear menu to the right hand ↵Bibiko2010-10-151-6/+6
| | | | side next to the edit button
* • implemented for TableStructure's source table the possibility to ↵Bibiko2010-10-151-52/+574
| | | | | | hide/unhide the columns: Key, encoding, collation, comment by adding a gear menu 'View Columns'; the hide status will be saved inside the Pref key: 'NSTableView Hidden Columns SPTableStructureSource' - this implements the feature request issue 868
* • Filter TableBibiko2010-09-291-105/+139
| | | | | - minor GUI improvements - try to fix issue 1654
* • Filter Table - Set Default OperatorBibiko2010-09-291-19/+582
| | | | - added the chance to define the unmarked default operator
* • Filter TableBibiko2010-09-291-73/+8
| | | | | - fixed thread issue while loading a new table - fixed DBView.xib warnings
* • Filter TableBibiko2010-09-291-134/+320
| | | | | | | - added "Search while Typing" - added some keyboard short-cuts - fixed some minor issues - Filter Table is now a normal NSWindow
* • enabled Filter Table approach (Content View > ⌘F) for testingBibiko2010-09-281-24/+91
|
* • some progress on the filter table approachBibiko2010-09-281-14/+743
|
* • some progress on the filter table approachBibiko2010-09-271-15/+21
|
* Correctly uppercase menu item. Also, update strings files.stuconnolly2010-09-271-423/+122
|
* • initial sketch approach to allow to write complex WHERE clauses by ↵Bibiko2010-09-271-112/+1330
| | | | | | using a table approach - not yet activated
* - Remove "Release when closed" from three panels; this was causing ↵rowanbeentje2010-09-251-33/+145
| | | | conflicts with manual memory management on 10.5.8 on quit. This addresses http://spbug.com/728 , together with a number of recorded crashes ( http://spbug.com/l/190, http://spbug.com/l/1522 )
* • TableStructureBibiko2010-09-211-2/+5
| | | | | | - started general cell editing validation due to currently set type and other parameters to help user while setting up/changing fields (must be tested) - set BINARY checked if collation ends with _bin since string fields stores that information in that way for convenience - added TINYTEXT as type suggestion
* • fixed localize problem while entering the new auto_inc value in TableStatusBibiko2010-09-141-95/+30
| | | | | - one has to tick the formatter's 'Localize' checkbox - fixes i820
* - Implement support for MySQL over SSL for both TCP/IP and Socket ↵rowanbeentje2010-09-131-9/+76
| | | | | | | | | | connection modes. - Upgrade the MySQL binaries to version 5.1.50 (was 5.1.46) - Enable SSL support in the MySQL libraries (this leads to a large increase in library size, unfortunately) - Enable more optimisations in the MySQL libraries (especially --enable-assembler for faster in-library string processing and --with-mysqld-ldflags=-all-static) This completes support for Issue #27.
* * Fix string width as reported by Alexander Vasiliev (ru)dmoagx2010-09-121-433/+56
| | | | * Make the table status tab date formatter use medium style or the string would be too large at smallest window width
* • added to Structure source table's context menu item: "Show optimized ↵Bibiko2010-09-121-11/+54
| | | | field type" which will come up with a suggested field type calculated by PROCEDURE ANALYSE(0,8192)
* • SPTableStructure's source table saves its column widthsBibiko2010-09-101-4/+5
| | | | • SPQueryController: removed unnecessary [table reloadData]
* • TableStructureBibiko2010-09-101-5/+6
| | | | | | | - added support for field types SERIAL and BOOL(EAN) - added extra setting and support for SERIAL DEFAULT VALUE - fixed several string comparisons based on user input, ie trim it and compare it upper or lower cased resp. - if adding or changing of a field fails display the SQL statement which caused the error in the error sheet for better debugging
* • TableStructureBibiko2010-09-101-38/+13
| | | | | | - moved field type suggestions for combobox as data source to SPTableStructure - applied type combobox lowercased completion while typing - improved DEFAULT handling for any numeric, date, time fields if DEFAULT was set to an empty string '' - if so skip it to avoid unnecessary error messages
* • Structure editingBibiko2010-09-091-5/+305
| | | | | | | - fixed issue while drag&drop an auto_inc field > ignore DEFAULT - fixed several keyboard navigation issues - further code improvements - fixed encoding editing
* Uppercase field types popup cell in table structure view.stuconnolly2010-09-091-613/+623
|
* • TableStructureBibiko2010-09-091-69/+249
| | | | | | | - changed: field information are retrieved via [SPTableData columns]; mainly to get all infos like comment, encoding, and collation - added the chance to edit encoding, collation, and comment for each field Note: This is work is progress - not yet optimized but fully workable. Due to GUI I simply added these three columns - improvements will follow
* • outsourced control:textView:doCommandBySelector: stuff to SPCopyTable ↵Bibiko2010-08-241-3/+3
| | | | | | | | | | since we need that for Content and Custom Query table; only class specific stuff like ESC trapping will handled in the actual class • enabled in cell editing for Custom Query tables - also added spreadsheet button to Custom Query status bar • fixed ESC trapping: F5 can be used for completion • simplified [SPCopyTable keyDown:] for trapping ENTER/RETURN key • some code cosmetics
* • added context menu for Copy, Copy with Header, Copy as SQL Insert to ↵Bibiko2010-08-241-3/+147
| | | | Custom Query table
* • first preparations to allow in cell editing in Custom Query (not yet ↵Bibiko2010-08-221-13/+684
| | | | | | | | | | active) • view data editing - disable add/duplicate/remove row for views - first improvements for editing navigation via keyboard - after editing avoid relaodTable instead use loadTableValues - outsourced: (NSInteger)fieldEditStatusForRow:andColumn: since it will be used for keyboard editing navigation
* Missing changes from r2554.stuconnolly2010-08-191-97/+85
|
* - Tweak the layout of the "Add Triggers" sheet, giving labels more space ↵rowanbeentje2010-08-011-60/+69
| | | | for localisation
* Tweak structure view index collapsing:rowanbeentje2010-07-171-94/+107
| | | | | | | - Make the minimum index view size a little smaller - Add a button to reveal the indexes subview when it is collapsed. This button is hidden when te index view is not collapsed. This addresses Issue #746
* Localisation improvements:rowanbeentje2010-07-161-901/+107
| | | | | | | - Tweak custom query button widgets and spacing - Improve User Manager layout, particularly for button and label widths - Update connection error dialog strings file to remove Retry
* •re-bound SPDatabaseDocument's customQueryTextView outlet with Custom ↵Bibiko2010-07-081-30/+38
| | | | | | Query's text field - solves i759
* • forgotten to remove placeholders and default values resp. of data ↵Bibiko2010-07-071-12/+11
| | | | textfields in Table Status view
* • made Comment and CREATE-Syntax textfield the same width in Table Status viewBibiko2010-07-071-3/+3
|
* • made Table Status view localisable and resized GUI elementsBibiko2010-07-071-64/+382
|
* • fine-tuned scrollView position of Custom Query Result tableBibiko2010-07-071-10/+891
| | | | | | | • resized GUI elements (Run Current, Last Error Mes.) for localisation • centered label for "Query Favorites" and "Query History" - maybe we should think about the appearance these buttons! • increased the min width of Custom Query view by 15px in order to avoid GUI overlappings
* • fixed scrollView height and position of Custom Query Result table to ↵Bibiko2010-07-071-5/+7
| | | | display the horizontal scroll bar correctly
* Rename TableDump to SPDataImport and fix export selected tables functionality.stuconnolly2010-07-061-319/+311
|
* Rename CustomQuery as SPCustomQuery.stuconnolly2010-07-061-270/+259
|
* - Make the query info/error display collapsible.stuconnolly2010-07-061-2466/+2787
| | | | | | | - Add a 'gear menu' with the option to export the current result set as either CSV or XML. (Note, that the collapsiable view currently suffers from the same BWToolKit issue as the table information pane).
* • resized GUI elements for localisation of longer explanationsBibiko2010-07-051-15/+44
|
* Remove all the old export code and associated UI controls.stuconnolly2010-07-021-3504/+3020
|
* • fixed tablesList's searchField width after collapsing tablesList's viewBibiko2010-06-301-2/+10
| | | | • set minimum width of right view (Structure, Content, etc.) in order to avoid irreversible GUI overlaps
* Minor interface tweaks.stuconnolly2010-06-251-10/+16
|
* Add a new button bar to the query editor in preparation for redesigning the ↵stuconnolly2010-06-151-167/+223
| | | | errors/message panel (show/hide button current inactive and disabled). Rows affected and timing stats are now displayed in the button bar. Also, fix the height of all other button bars.
* • several fixes for index table in Structure viewBibiko2010-06-151-89/+102
| | | | | | | - fixed binding for removeIndexButton - moved indexTable's tableViewSelectionDidChange: delegate to SPIndexController to fix enabling/disabling of the removeIndexButton - fixed issue to blank the index table for multiple selected tables
* - Convert connection encoding menus to be menu tag based to fix ↵rowanbeentje2010-06-141-1135/+86
| | | | | | | | | | localisation errors - Add database encoding retrieval support for MySQL 4.1 - Convert the add table and add database sheets to use encoding menus derived from server supported encodings - Re-layout preferences with larger labels to aid localisation - Fix preference resizing in non-Favorite tabs
* Split the management of a table's indexes (adding and removing) to its own ↵stuconnolly2010-06-141-763/+236
| | | | controller and XIB in preparation for the UI redesign.