home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
AmigActive 6
/
AACD06.ISO
/
AACD
/
Online
/
Dial
/
source
/
GUI.h
< prev
next >
Wrap
C/C++ Source or Header
|
2000-01-23
|
3KB
|
127 lines
#ifndef GUI_FILE_H
#define GUI_FILE_H
/* Types */
#include <exec/types.h>
#include "cat.h"
struct ObjApp
{
APTR App;
APTR window;
APTR muiaboutwin;
APTR aboutwin;
APTR GR_grp_0;
APTR LV_main;
APTR BT_Dial;
APTR LV_set;
APTR STR_Name;
APTR STR_Number;
APTR BT_Add;
APTR BT_Remove;
APTR BT_Sort;
APTR BT_Load;
APTR BT_Save;
APTR CY_DialMode;
APTR SL_Length;
APTR SL_Pause;
APTR SL_HangUp;
APTR SL_Wait;
APTR STR_device;
APTR STR_unit;
APTR CH_system;
APTR STR_system;
APTR STR_LocalCode;
APTR STR_DialCode;
APTR PA_pbname;
APTR STR_PA_pbname;
APTR BT_PrefSave;
char * STR_GR_grp_0[4];
APTR A_LV_Text;
APTR A_BT_OK;
APTR A_image;
APTR CH_Conceal;
APTR SL_AudioLR;
APTR WI_Settings;
APTR GR_Settings;
APTR LA_DialMode;
APTR LA_Length;
APTR LA_Pause;
APTR LA_AudioLR;
APTR LA_LocalCode;
APTR LA_Wait;
APTR LA_device;
APTR LA_HangUp;
APTR obj_aux4;
APTR LA_DialCode;
APTR LA_pbname;
APTR GR_device;
APTR TX_NumEntries;
APTR WI_dialling;
APTR TX_dialling;
APTR BT_dialling;
APTR WI_CallByCall;
APTR LV_CallByCall;
APTR STR_CBC_Pattern;
APTR STR_CBC_Number;
APTR BT_CBC_Add;
APTR BT_CBC_Save;
APTR BT_CBC_Load;
APTR TX_CBC_Name;
APTR MN_CBC_active;
APTR CH_voice;
APTR STR_voice;
APTR GR_voice;
APTR LV_PO_CBC;
APTR PO_CBC_Number;
};
extern struct ObjApp * CreateApp(int StartIconified);
extern void DisposeApp(struct ObjApp *);
#define ID_Dial 1
#define ID_Add 2
#define ID_Name 3
#define ID_Number 4
#define ID_ListClick 5
#define ID_SavePB 7
#define ID_LoadPB 8
#define ID_DialPage 9
#define ID_PBchanged 10
#define ID_ABOUT_CLOSE 11
#define ID_ABOUT_IMAGECLICK 12
#define ID_SETDEFAULT 13
#define ID_AbortDialling 14
#define ID_CloseCBC 15
#define ID_CBC_Remove 16
#define MEN_PROJECT 100
#define MEN_LOAD 101
#define MEN_SAVE 102
#define MEN_ABOUT 103
#define MEN_ABOUTMUI 104
#define MEN_QUIT 105
#define MEN_CBC 106
#define MEN_CBC_ACTIVE 107
#define MEN_CALLBYCALL 108
#define MEN_LOAD_CBC 109
#define MEN_SAVE_CBC 110
#define MEN_SET 111
#define MEN_SETTINGS 112
#define MEN_MUISET 113
#define MEN_LOADSET 114
#define MEN_SAVESET 115
#define MEN_SETDEFAULT 116
#endif