-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshutter.h
57 lines (32 loc) · 1.63 KB
/
shutter.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
48
49
50
51
52
53
54
55
56
57
/*
* copyright (c) 2022 Thomas Paillet <[email protected]>
* This file is part of RCP-Virtuels.
* RCP-Virtuels 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 3 of the License, or
* (at your option) any later version.
* RCP-Virtuels 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 RCP-Virtuels. If not, see <https://www.gnu.org/licenses/>.
*/
#ifndef __SHUTTER_H
#define __SHUTTER_H
void set_shutter_type_AW_HE130 (rcp_t *rcp);
void populate_shutter_step_combo_box_AW_HE130 (GtkComboBoxText *combo_box);
void set_shutter_step_AW_HE130 (rcp_t *rcp);
void set_shutter_synchro_label_AW_HE130 (rcp_t *rcp);
void set_shutter_synchro_AW_HE130 (rcp_t *rcp);
GtkWidget *create_shutter_frame_AW_HE130 (rcp_t *rcp);
void set_shutter_type_AW_UE150 (rcp_t *rcp);
void populate_shutter_step_combo_box_AW_UE150 (GtkComboBoxText *combo_box);
void update_shutter_step_combo_box_AW_UE150 (rcp_t *rcp);
void set_shutter_step_AW_UE150 (rcp_t *rcp);
void set_shutter_synchro_label_AW_UE150 (rcp_t *rcp);
void set_shutter_synchro_AW_UE150 (rcp_t *rcp);
void create_shutter_synchro_window_AW_UE150 (rcp_t *rcp);
void set_ELC_limit (rcp_t *rcp);
GtkWidget *create_shutter_frame_AW_UE150 (rcp_t *rcp);
#endif