Isis 3 Programmer Reference
|
Opens a window in Gui Application to be able to edit, save and create text files. More...
#include <GuiEditFile.h>
Public Slots | |
void | open () |
For action File->Open. More... | |
void | OpenFile (QString) |
To display the contents of an opened file. More... | |
void | setTextChanged () |
Indicator that the text has changed. More... | |
void | saveAs () |
For action File->Save As. More... | |
void | saveAsFile (QString) |
Save the contents of text editor to another file. More... | |
void | saveFile () |
For action File->Save. More... | |
void | closeFile () |
For action File->Close. More... | |
void | closeWin () |
For action Exit (close the window) More... | |
Public Member Functions | |
void | showWindow (QString psFile="") |
If there is already an instance of this object, then display the window. More... | |
~GuiEditFile () | |
Destructor. More... | |
void | clearFile () |
Delete the contents of a file. More... | |
Static Public Member Functions | |
static void | EditFile (UserInterface &pUI, QString psFile="") |
Creates a single instance of the GuiEditFile. More... | |
Private Member Functions | |
GuiEditFile (UserInterface &pUI, QString psFile="") | |
Constructor. More... | |
void | windowTitle (QString &psfile) |
display only the file base name More... | |
Private Attributes | |
QWidget * | m_parent |
Parent widget. More... | |
QString | m_fileName |
Current file open. More... | |
QMainWindow * | m_editWin |
Editor window. More... | |
QTextEdit * | m_txtEdit |
Text Editor. More... | |
QFile * | m_editFile |
File pointer to current file. More... | |
bool | m_textChanged |
Flag to indicate text changed. More... | |
QAction * | m_open |
Actioons. More... | |
QAction * | m_save |
Action Save. More... | |
QAction * | m_saveAs |
Action Save As. More... | |
QAction * | m_close |
Action Close. More... | |
QAction * | m_exit |
Action Exit. More... | |
Static Private Attributes | |
static GuiEditFile * | m_instance = NULL |
Instance of this object - singleton. More... | |
Opens a window in Gui Application to be able to edit, save and create text files.
Creates a singleton window to edit files.
Example can be used to edit DefFiles in control net applications. Refer to cnetedit Application
Definition at line 54 of file GuiEditFile.h.
Isis::GuiEditFile::~GuiEditFile | ( | ) |
Destructor.
Definition at line 155 of file GuiEditFile.cpp.
|
private |
Constructor.
pUI | |
psFile |
Definition at line 69 of file GuiEditFile.cpp.
References Isis::UserInterface::TheGui().
void Isis::GuiEditFile::clearFile | ( | ) |
Delete the contents of a file.
Delete the contents of the current file - especially if changes are made and they are not to be saved.
Definition at line 329 of file GuiEditFile.cpp.
|
slot |
For action File->Close.
Action File->close, close the opened file.
Definition at line 218 of file GuiEditFile.cpp.
|
slot |
For action Exit (close the window)
Action Exit - Close window and clear text editor.
Definition at line 174 of file GuiEditFile.cpp.
|
static |
Creates a single instance of the GuiEditFile.
If already an instance, display the object
pUI | - User Interface of parent app |
psFile | - File to edit |
Definition at line 38 of file GuiEditFile.cpp.
|
slot |
|
slot |
To display the contents of an opened file.
Display the selected file.
psOutFile |
Definition at line 239 of file GuiEditFile.cpp.
|
slot |
|
slot |
Save the contents of text editor to another file.
Copy the current file into user selected file.
psNewFile |
Definition at line 314 of file GuiEditFile.cpp.
|
slot |
|
slot |
Indicator that the text has changed.
Flag to indicate text has changed.
Definition at line 184 of file GuiEditFile.cpp.
void Isis::GuiEditFile::showWindow | ( | QString | psFile = "" | ) |
If there is already an instance of this object, then display the window.
Display the window if there is already an instance of this object.
psFile | - File to edit |
Definition at line 54 of file GuiEditFile.cpp.
|
private |
display only the file base name
Display only the base name of the file.
psfile | - current file |
Definition at line 344 of file GuiEditFile.cpp.
|
private |
Action Close.
Definition at line 96 of file GuiEditFile.h.
|
private |
File pointer to current file.
Definition at line 89 of file GuiEditFile.h.
|
private |
Editor window.
Definition at line 87 of file GuiEditFile.h.
|
private |
Action Exit.
Definition at line 97 of file GuiEditFile.h.
|
private |
Current file open.
Definition at line 86 of file GuiEditFile.h.
|
staticprivate |
Instance of this object - singleton.
Definition at line 84 of file GuiEditFile.h.
|
private |
|
private |
Parent widget.
Definition at line 85 of file GuiEditFile.h.
|
private |
Action Save.
Definition at line 94 of file GuiEditFile.h.
|
private |
Action Save As.
Definition at line 95 of file GuiEditFile.h.
|
private |
Flag to indicate text changed.
Definition at line 90 of file GuiEditFile.h.
|
private |
Text Editor.
Definition at line 88 of file GuiEditFile.h.