-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathservice.h
47 lines (39 loc) · 883 Bytes
/
service.h
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
// service.h for Subaru Service Prorams
// Mar 2019 A. Tajitsu (Subaru Telescope, NAOJ)
// Service_Treeview
enum
{
COLUMN_SVC_NUMBER,
COLUMN_SVC_DAY,
COLUMN_SVC_COLFG_DAY,
COLUMN_SVC_ALLOC,
COLUMN_SVC_MOON,
COLUMN_SVC_COLFG_MOON,
COLUMN_SVC_COLBG_MOON,
COLUMN_SVC_MIN,
COLUMN_SVC_MAX,
COLUMN_SVC_OBJ,
COLUMN_SVC_TIME,
COLUMN_SVC_COLBG_TIME,
COLUMN_SVC_SCORE,
NUM_COLUMN_SVC
};
enum{
SVC_NIGHT_FULL,
SVC_NIGHT_1ST,
SVC_NIGHT_2ND,
NUM_SVC_NIGHT
};
gboolean do_calc_service();
void calc_service_sem();
void calc_service_night();
gboolean create_calc_service_dialog();
void close_service();
gboolean create_service_dialog();
GtkTreeModel * service_create_items_model();
void service_tree_update_item();
void service_add_columns();
void service_cell_data_func();
void service_make_tree();
int subZeller();
void service_set_date();