File: vgapp.cpp

package info (click to toggle)
v1 1.17-4
  • links: PTS
  • area: main
  • in suites: hamm
  • size: 5,812 kB
  • ctags: 6,780
  • sloc: cpp: 43,604; ansic: 5,003; makefile: 955; sh: 30
file content (102 lines) | stat: -rw-r--r-- 2,737 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
//=======================================================================
//	vgapp.cpp:	Source for vgApp class
//=======================================================================

#include "vgapp.h"		// Header file

//=========================>>> vgApp::vgApp <<<==========================
  vgApp::vgApp(char* name) : vApp(name)
  {
    // Constructor

   _vgCmdWin = 0;

  }

//=========================>>> vgApp::vgApp <<<==========================
  vgApp::~vgApp()
  {
    // Desstructor
   

  }

//=====================>>> vgApp::NewAppWin <<<==========================
  vWindow* vgApp::NewAppWin(vWindow* win, char* name, 
    int w, int h, vAppWinInfo* winInfo)
  {
    vAppWinInfo* awinfo = winInfo;
    char *vgname = name;

    if (!*name)
      {
	vgname = "V Shell App Generator";		// Default name
      }
	
    UserDebug1(Build,"vgApp::NewAppWin(%s)\n",vgname);

    // Create the first window using provided CmdWindow

    _vgCmdWin = (vgCmdWindow*) win;
    if (!_vgCmdWin)
      {
	_vgCmdWin = new vgCmdWindow(vgname, w, h);
      }

    if (!awinfo)
	awinfo = new vAppWinInfo(vgname);

    return vApp::NewAppWin(_vgCmdWin, vgname, w, h, awinfo);
  }

//============================>>> vgApp::Exit <<<===========================
  void vgApp::Exit(void)
  {
    // This is called to close all windows.

    UserDebug(Build,"vgApp::Exit()\n");

    vApp::Exit();		// Default behavior
  }

//======================>>> vgApp::CloseAppWin <<<===========================
  void vgApp::CloseAppWin(vWindow* win)
  {
    // This will be called BEFORE a window has been unregistered or
    // closed.  Default behavior: unregister and close the window.

    UserDebug(Build,"vgApp::CloseAppWin()\n");

    vApp::CloseAppWin(win);
  }

//=====================>>> vgApp::AppCommand <<<==============================
  void vgApp::AppCommand(vWindow* win, ItemVal id, ItemVal val, CmdType cType)
  {
    // Commands not processed by the window will be passed here

    UserDebug1(Build,"vgApp::AppCmd(ID: %d)\n",id);
    vApp::AppCommand(win, id, val, cType);
  }

//=========================>>> vgApp::KeyIn <<<==============================
  void vgApp::KeyIn(vWindow* win, vKey key, unsigned int shift)
  {
    // Key strokes not processed by the window will be passed here

    vApp::KeyIn(win, key, shift);
  }

//###########################################################################

  static vgApp vg_App("V Shell App Generator");	// The instance of the app

//============================>>> AppMain <<<==============================
  int AppMain(int argc, char** argv)
  {
    // Use AppMain to create the main window

    (void) theApp->NewAppWin(0, "V Shell App Generator",600, 300);

    return 0;
  }