86 lines
2.1 KiB
C++
86 lines
2.1 KiB
C++
//## begin module.cm preserve=no
|
|
|
|
// %X% %Q% %Z% %W%
|
|
|
|
//## end module.cm
|
|
|
|
|
|
|
|
//## begin module.cp preserve=no
|
|
|
|
//## end module.cp
|
|
|
|
|
|
|
|
//## Module: NTConsole; Pseudo Package specification
|
|
|
|
//## Subsystem: lab7
|
|
|
|
//## Source file: H:\kurs\avC++\lab7\NTConsle.h
|
|
|
|
|
|
|
|
#ifndef NTConsle_h
|
|
|
|
#define NTConsle_h 1
|
|
|
|
|
|
|
|
//## begin module.additionalIncludes preserve=no
|
|
|
|
//## end module.additionalIncludes
|
|
|
|
|
|
|
|
//## begin module.includes preserve=yes
|
|
|
|
//## end module.includes
|
|
|
|
|
|
|
|
// Graphics
|
|
|
|
#include "Graphics.h"
|
|
|
|
//## begin module.additionalDeclarations preserve=yes
|
|
|
|
//## end module.additionalDeclarations
|
|
|
|
|
|
|
|
|
|
|
|
//## Class: NTConsole
|
|
|
|
//## Category: lab7
|
|
|
|
//## Subsystem: lab7
|
|
|
|
//## Persistence: Transient
|
|
|
|
//## Cardinality/Multiplicity: n
|
|
|
|
|
|
|
|
class NTConsole : public Graphics //## Inherits: <unnamed>
|
|
|
|
{
|
|
|
|
//## begin NTConsole.initialDeclarations preserve=yes
|
|
|
|
//## end NTConsole.initialDeclarations
|
|
|
|
|
|
|
|
public:
|
|
|
|
//## Constructors (generated)
|
|
|
|
NTConsole();
|
|
|
|
|
|
|
|
//## Destructor (generated)
|
|
|
|
~NTConsole();
|
|
|
|
|
|
|
|
|
|
|
|
//## Other Operations (specified)
|
|
|
|
//## Operation: drawWindow%940929802
|
|
|
|
void drawWindow (int xpos, int ypos, int width, int height, char* name);
|
|
|
|
|
|
|
|
//## Operation: drawButton%940929803
|
|
|
|
void drawButton (int xpos, int ypos, int width, int height, char* text);
|
|
|
|
|
|
|
|
// Additional Public Declarations
|
|
|
|
//## begin NTConsole.public preserve=yes
|
|
|
|
//## end NTConsole.public
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Additional Protected Declarations
|
|
|
|
//## begin NTConsole.protected preserve=yes
|
|
|
|
//## end NTConsole.protected
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Additional Private Declarations
|
|
|
|
//## begin NTConsole.private preserve=yes
|
|
|
|
//## end NTConsole.private
|
|
|
|
|
|
|
|
private: //## implementation
|
|
|
|
// Additional Implementation Declarations
|
|
|
|
//## begin NTConsole.implementation preserve=yes
|
|
|
|
//## end NTConsole.implementation
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
//## begin NTConsole.postscript preserve=yes
|
|
|
|
//## end NTConsole.postscript
|
|
|
|
|
|
|
|
// Class NTConsole
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//## begin module.epilog preserve=yes
|
|
|
|
//## end module.epilog
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|