home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 May
/
Pcwk5b98.iso
/
Borland
/
Cplus45
/
BC45
/
OWLINC.PAK
/
EDITFILE.H
< prev
next >
Wrap
C/C++ Source or Header
|
1995-08-29
|
2KB
|
80 lines
//----------------------------------------------------------------------------
// ObjectWindows
// (C) Copyright 1992, 1994 by Borland International, All Rights Reserved
//
// Definition of class TEditFile, a text edit which can find/replace
// and read/write from/to a file.
//----------------------------------------------------------------------------
#if !defined(OWL_EDITFILE_H)
#define OWL_EDITFILE_H
#if !defined(OWL_EDITSEAR_H)
# include <owl/editsear.h>
#endif
#if !defined(OWL_OPENSAVE_H)
# include <owl/opensave.h>
#endif
#include <owl/editfile.rh>
//
// class TEditFile
// ----- -----------
//
class _OWLCLASS TEditFile : public TEditSearch {
public:
TOpenSaveDialog::TData FileData;
char far* FileName;
TEditFile(TWindow* parent = 0,
int id = 0,
const char far* text = 0,
int x = 0, int y = 0, int w = 0, int h = 0,
const char far* fileName = 0,
TModule* module = 0);
~TEditFile();
virtual bool CanClear();
virtual bool CanClose();
void NewFile();
void Open();
bool Read(const char far* fileName=0);
void ReplaceWith(const char far* fileName);
bool Save();
bool SaveAs();
void SetFileName(const char far* fileName);
bool Write(const char far* fileName=0);
//
// command response functions
//
void CmFileNew() {NewFile();} // CM_FILENEW
void CmFileOpen() {Open();} // CM_FILEOPEN
void CmFileSave() {Save();} // CM_FILESAVE
void CmFileSaveAs() {SaveAs();} // CM_FILESAVEAS
//
// command enabler functions
//
void CmSaveEnable(TCommandEnabler& commandHandler);
protected:
//
// override virtual functions defined by TWindow
//
void SetupWindow();
private:
//
// hidden to prevent accidental copying or assignment
//
TEditFile(const TEditFile&);
TEditFile& operator =(const TEditFile&);
DECLARE_RESPONSE_TABLE(TEditFile);
DECLARE_STREAMABLE(_OWLCLASS, TEditFile, 1);
};
#endif // OWL_EDITFILE_H