/*
Copyright (C) 2002-2003, Jeffrey D. Argast.
The authors make NO WARRANTY or representation, either express or implied,
with respect to this software, its quality, accuracy, merchantability, or
fitness for a particular purpose. This software is provided "AS IS", and you,
its user, assume the entire risk as to its quality and accuracy.
Permission is hereby granted to use, copy, modify, and distribute this
software or portions thereof for any purpose, without fee, subject to these
conditions:
(1) If any part of the source code is distributed, then this
statement must be included, with this copyright and no-warranty notice
unaltered.
(2) Permission for use of this software is granted only if the user accepts
full responsibility for any undesirable consequences; the authors accept
NO LIABILITY for damages of any kind.
*/
#import <Foundation/Foundation.h>
#import <Cocoa/Cocoa.h>
#ifdef __cplusplus
extern "C" {
#endif
NSString* GetAppTempPath();
NSString* ExtractLastPathComponent (NSString* fullPath);
void CreateAppTempDir();
void RemoveAppTempDir();
void SendExecutingMessage (const char* msg);
void SendOutputMessage (const char* msg);
void SendInfoMessage (const char* msg);
void SendWarnMessage (const char* msg);
void SendErrorMessage (const char* msg);
void CenterWindowInScreen (NSWindow* nsWindow);
void DiffFiles (NSString* fileOne, NSString* fileTwo);
void ViewFileInEditor (NSString* file);
NSString* GetUserAtClientString();
// returns user@client
NSString* GetPerforceExecPath();
// Returns the fully qualified path the the perforce p4 command.
// This will show an alert if it cannot find the p4 command
NSString* GetDiffExecPath();
NSString* GetEditExecPath(); // likely nil if the user is using a .app for editing
void SendNotification (NSString* message);
void SendNotificationWithObject (NSString* message, id withObject);
void WriteStringToPasteboard (NSString* dataString, NSPasteboard* pb);
NSString* ReadStringFromPasteboard (NSPasteboard* pb);
NSString* GetTempFileName (NSString* clientFilePath, NSString* fileRev);
#ifdef __cplusplus
}
#endif