source: tags/initial/NTREE/ntree.hxx

Last change on this file was 2, checked in by oldcode, 23 years ago

Initial revision

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 796 bytes
Line 
1#ifndef ntree_hxx_included
2#define ntree_hxx_included
3
4
5#define NT_AW_TRUE 1
6#define NT_AW_FALSE 0
7class AWT_graphic_tree;
8
9struct NT_global {
10    AW_root *awr;
11    AWT_graphic_tree *tree;
12    AW_Window_Creator window_creator;
13    AW_BOOL     extern_quit_button;
14};
15
16extern NT_global nt;
17extern GBDATA *gb_main;
18
19
20class NT_install_window_creator{
21    int dummy;
22public:
23    NT_install_window_creator( AW_Window_Creator wc ){
24        nt.window_creator = wc;
25    };
26};
27
28void nt_main_startup_main_window(AW_root *aw_root);
29void nt_exit(AW_window *aw_window);
30AW_window *NT_create_save_as(AW_root *aw_root,const char *base_name); // basename is awar_prefix
31
32#define AWAR_EXPORT_NDS "tmp/export_nds"
33#define AWAR_NT_REMOTE_BASE "tmp/remote/ARB_NT"
34#define AWAR_IMPORT_PROBE_GROUP_RESULT "tmp/pg_result"
35
36
37#endif
Note: See TracBrowser for help on using the repository browser.