File: viedapp.cpp

package info (click to toggle)
v1 1.20-2
  • links: PTS
  • area: main
  • in suites: slink
  • size: 6,240 kB
  • ctags: 9,439
  • sloc: cpp: 48,033; ansic: 8,939; makefile: 1,369; sh: 30
file content (93 lines) | stat: -rw-r--r-- 3,101 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
//================================================================
//  viedapp.cxx:     Source file for V Icon Editor application
//
//    Copyright (C) 1995,1996  Bruce E. Wampler
//
//    This program is free software; you can redistribute it and/or modify
//    it under the terms of the GNU General Public License as published by
//    the Free Software Foundation; either version 2 of the License, or
//    (at your option) any later version.
//
//    This program is distributed in the hope that it will be useful,
//    but WITHOUT ANY WARRANTY; without even the implied warranty of
//    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
//    GNU General Public License for more details.
//
//    You should have received a copy of the GNU General Public License
//    along with this program; if not, write to the Free Software
//    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
//
//================================================================

#include "viedapp.h"    // our header
 
//==================>>> drawApp::NewAppWin <<<====================
  vWindow* drawApp::NewAppWin(vWindow* win, char* name, int w, int h,
                              vAppWinInfo* winInfo)
  {
    // Create a new Icon Editor window
    vWindow* thisWin = win;             // local copy to use
    vAppWinInfo* awinfo = winInfo;
 
    if (!thisWin)                       // need to new a window
      {
        thisWin = new myCmdWindow(name, w, h);
      }
 
    if (!awinfo)
        awinfo = new vAppWinInfo(name);
 
    return vApp::NewAppWin(thisWin, name, w, h, awinfo);
  }
 
//======================>>> drawApp::AppCommand <<<=====================
  void drawApp::AppCommand(vWindow* win, ItemVal id, ItemVal val, CmdType cType)
  {
    // Any commands not processed by the window will be passed along to here for
    // default treatment.

    UserDebug1(Build,"drawApp::AppCommand(ID: %d)\n",id);
 
    vApp::AppCommand(win, id, val, cType);
  }
 
//======================>>> drawApp::Exit <<<=====================
  void drawApp::Exit(void)
  {
    // This is called to close all windows.

    vApp::Exit();       // easy default behavior
  }
 
//====================>>> drawApp::CloseAppWin <<<================
  int drawApp::CloseAppWin(vWindow* win)
  {
    // Closes the application window 

    myCmdWindow* cw = (myCmdWindow*)win;
    if (cw->CheckClose())
        return vApp::CloseAppWin(win);
    else
        return 0;
  }
 

//***** EVERY V application needs to declare an app instance *****
static drawApp draw_App("Icon Edit");    // The instance of the app

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

    myCmdWindow* cw =           // open new window, remember it
        (myCmdWindow*) theApp->NewAppWin(0, "V Icon Edit - No Name",400,200);
    if (argc > 1)
      {
        theApp->CheckEvents();  // make sure events done before opening
        cw->OpenFile(argv[1]);  // open a file
      }
 
    return 0;           // 0 means OK
  }