diff options
author | Bibiko <bibiko@eva.mpg.de> | 2009-09-04 08:45:47 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2009-09-04 08:45:47 +0000 |
commit | 931a46891ac3f0610363105419b01eb7b40b034f (patch) | |
tree | 26c68003589c07e2bdd8ebad53111e778c54f13d /Source/CustomQuery.h | |
parent | a8bee6d7815cf9431cc53522f74bed648087a674 (diff) | |
download | sequelpro-931a46891ac3f0610363105419b01eb7b40b034f.tar.gz sequelpro-931a46891ac3f0610363105419b01eb7b40b034f.tar.bz2 sequelpro-931a46891ac3f0610363105419b01eb7b40b034f.zip |
• implementation of a new history controller
- each history is doc-based even if you have opened not only one instance of the same spf file
- for each SPF file identified by its file URL SP remembers each history item regardless from which doc instance it comes from internally ( to make sure that after closing the last instance of a doc all executed queries are saved in that file - if the user wants to change that s/he has to save that file under a different name )
- the history list for each Untitled doc will be initialized by the items stored in the global SP's prefs
- the history list for each SPF doc will be initialized by the items stored in the SPF file unless an instance of the same file is already open - then the new instance inherits the history list from the opened one(s)
- all history items executed in any Untitled docs will be added to SP's prefs - in other words SP's global prefs plist is the historyrepository for each new Untitled doc
- if the user saves an untitled doc or rename an opened SPF file the _current_ history list for that doc will be saved to the chosen file unless an other doc instance is still open
- all history lists are saved automatically if SP quits or the user closes a doc window
Note: This should be tested for any logical pitfalls - each desired logic can be implemented :)
Diffstat (limited to 'Source/CustomQuery.h')
-rw-r--r-- | Source/CustomQuery.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Source/CustomQuery.h b/Source/CustomQuery.h index e6c9ad43..cedccab0 100644 --- a/Source/CustomQuery.h +++ b/Source/CustomQuery.h @@ -114,9 +114,6 @@ unsigned int numberOfQueries; - NSMutableArray *localFavorites; - NSMutableArray *localHistoryItems; - } // IBAction methods @@ -147,8 +144,6 @@ // Accessors - (NSArray *)currentResult; - (void)processResultIntoDataStorage:(MCPStreamingResult *)theResult; -- (NSArray *)localFavorites; -- (NSArray *)localHistoryItems; // MySQL Help - (NSString *)getHTMLformattedMySQLHelpFor:(NSString *)aString; |