File: MBApplication.h

package info (click to toggle)
dx 1%3A4.4.4-12
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 55,880 kB
  • sloc: ansic: 365,466; cpp: 156,582; sh: 10,872; java: 10,641; makefile: 2,297; awk: 444; yacc: 327
file content (115 lines) | stat: -rw-r--r-- 2,599 bytes parent folder | download | duplicates (7)
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
103
104
105
106
107
108
109
110
111
112
113
114
115
/***********************************************************************/
/* Open Visualization Data Explorer                                    */
/* (C) Copyright IBM Corp. 1989,1999                                   */
/* ALL RIGHTS RESERVED                                                 */
/* This code licensed under the                                        */
/*    "IBM PUBLIC LICENSE - Open Visualization Data Explorer"          */
/***********************************************************************/

#include <dxconfig.h>



#ifndef _MBApplication_h
#define _MBApplication_h

#include <Xm/Xm.h>

#include "MainWindow.h"
#include "IBMApplication.h"
#include "List.h"


//
// Class name definition:
//
#define ClassMBApplication	"MBApplication"


typedef struct
{
    Pixel	insensitiveColor;
} MBResource;

class MBApplication : public IBMApplication
{

  private:
    //
    // Private class data:
    //
    static boolean    MBApplicationClassInitialized; // class initialized?

    void shutdownApplication() {};

    MainWindow		*mainWindow;

    boolean		is_dirty;

  protected:
    //
    // Overrides the Application class version:
    //   Initializes Xt Intrinsics with option list (switches).
    //
    virtual boolean initialize(int* argcp,
			    char**        argv);

    static MBResource	resource;

  public:

    boolean isDirty(){return this->is_dirty;}
    void setDirty(){this->is_dirty = TRUE;}
    void setClean(){this->is_dirty = FALSE;}

    Pixel getInsensitiveColor()
    {
	return this->resource.insensitiveColor;
    }
    //
    // Constructor:
    //
    MBApplication(char* className);

    //
    // Destructor:
    //
    ~MBApplication();

    //
    // Return the name of the application (i.e. 'Data Explorer',
    // 'Data Prompter', 'Medical Visualizer'...).
    //
    virtual const char *getInformalName();

    //
    // Return the formal name of the application (i.e.
    // 'Open Visualization Data Explorer', 'Open Visualization Data Prompter'...)
    //
    virtual const char *getFormalName();

    //
    // Get the applications copyright notice, for example...
    // "Copyright International Business Machines Corporation 1991-1993
    // All rights reserved"
    //
    virtual const char *getCopyrightNotice();

    virtual const char *getHelpDirFileName();

    virtual const char *getStartTutorialCommandString();

    //
    // Returns a pointer to the class name.
    //
    const char* getClassName()
    {
        return ClassMBApplication;
    }
};


extern MBApplication* theMBApplication;

#endif /*  _MBApplication_h */