Added documentation.

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/apps/gorm/trunk@21567 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2005-07-30 08:21:57 +00:00
parent 71f668b9f2
commit 689c79c572
2 changed files with 56 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2005-07-30 04:29 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormFilePrefsManager.h: Added documentation.
2005-07-30 04:16 Gregory John Casamento <greg_casamento@yahoo.com>
* GormCore/GormDocument.m: use versionOfClass: in

View file

@ -20,24 +20,76 @@
NSDictionary *versionProfiles;
NSDictionary *currentProfile;
}
/**
* Show incompatibilities in the panel.
*/
- (void) showIncompatibilities: (id)sender;
/**
* Action called when the target version pulldown is selected.
*/
- (void) selectTargetVersion: (id)sender;
/**
* Action called when the archive type pulldown is selected.
*/
- (void) selectArchiveType: (id)sender;
/**
* Loads the encoded file info.
*/
- (BOOL) loadFromFile: (NSString *)path;
/**
* Saves the encoded file info.
*/
- (BOOL) saveToFile: (NSString *)path;
/**
* Loads the profile.
*/
- (void) loadProfile: (NSString *)version;
// accessors...
/**
* Gorm Version of the current archive.
*/
- (int) version;
/**
* Which version of the gui library, by name.
*/
- (NSString *)targetVersionName;
/**
* Which achive type, by name.
*/
- (NSString *)archiveTypeName;
/**
* Are we set to the latest version? Returns YES, if so.
*/
- (BOOL) isLatest;
// set class versions
/**
* Sets the version of the classes.
*/
- (void) setClassVersions;
/**
* Restores the versions to the most current.
*/
- (void) restoreClassVersions;
/**
* Returns the version of the class in the current profile.
*/
- (int) versionOfClass: (NSString *)className;
/**
* The current Gorm version.
*/
+ (int) currentVersion;
@end