libgphoto2 photo camera library (libgphoto2) API 2.5.30
gphoto2-widget.h
Go to the documentation of this file.
1
24#ifndef LIBGPHOTO2_GPHOTO2_WIDGET_H
25#define LIBGPHOTO2_GPHOTO2_WIDGET_H
26
28
29#ifdef __cplusplus
30extern "C" {
31#endif /* __cplusplus */
32
35
36#ifdef __cplusplus
37}
38#endif /* __cplusplus */
39
40
41
43
44#ifdef __cplusplus
45extern "C" {
46#endif /* __cplusplus */
47
54typedef enum { /* Value (get/set): */
59 GP_WIDGET_TEXT, /* char * */
60 GP_WIDGET_RANGE, /* float */
62 GP_WIDGET_RADIO, /* char * */
63 GP_WIDGET_MENU, /* char * */
64 GP_WIDGET_BUTTON, /* CameraWidgetCallback */
65 GP_WIDGET_DATE /* int */
67
72
73int gp_widget_new (CameraWidgetType type, const char *label,
74 CameraWidget **widget);
75int gp_widget_free (CameraWidget *widget);
76int gp_widget_ref (CameraWidget *widget);
77int gp_widget_unref (CameraWidget *widget);
78
79int gp_widget_append (CameraWidget *widget, CameraWidget *child);
80int gp_widget_prepend (CameraWidget *widget, CameraWidget *child);
81
83int gp_widget_get_child (CameraWidget *widget, int child_number,
84 CameraWidget **child);
85
86/* Retrieve Widgets */
88 const char *label,
89 CameraWidget **child);
90int gp_widget_get_child_by_id (CameraWidget *widget, int id,
91 CameraWidget **child);
93 const char *name,
94 CameraWidget **child);
96 CameraWidget **root);
98 CameraWidget **parent);
99
100int gp_widget_set_value (CameraWidget *widget, const void *value);
101int gp_widget_get_value (CameraWidget *widget, void *value);
102
103int gp_widget_set_name (CameraWidget *widget, const char *name);
104int gp_widget_get_name (CameraWidget *widget, const char **name);
105
106int gp_widget_set_info (CameraWidget *widget, const char *info);
107int gp_widget_get_info (CameraWidget *widget, const char **info);
108
109int gp_widget_get_id (CameraWidget *widget, int *id);
111int gp_widget_get_label (CameraWidget *widget, const char **label);
112
114 float low, float high, float increment);
116 float *min, float *max, float *increment);
117
118int gp_widget_add_choice (CameraWidget *widget, const char *choice);
120int gp_widget_get_choice (CameraWidget *widget, int choice_number,
121 const char **choice);
122
123int gp_widget_changed (CameraWidget *widget);
124int gp_widget_set_changed (CameraWidget *widget, int changed);
125
126int gp_widget_set_readonly (CameraWidget *widget, int readonly);
127int gp_widget_get_readonly (CameraWidget *widget, int *readonly);
128
129#ifdef __cplusplus
130}
131#endif /* __cplusplus */
132
133#endif /* !defined(LIBGPHOTO2_GPHOTO2_WIDGET_H) */
Implement Camera object representing a camera attached to the system.
Context callback operation functions.
int gp_widget_get_range(CameraWidget *range, float *min, float *max, float *increment)
Retrieves some range parameters of the CameraWidget.
Definition: gphoto2-widget.c:739
int gp_widget_get_name(CameraWidget *widget, const char **name)
Gets the name of the widget.
Definition: gphoto2-widget.c:234
int gp_widget_get_parent(CameraWidget *widget, CameraWidget **parent)
Retrieves the parent of a CameraWidget.
Definition: gphoto2-widget.c:675
int(* CameraWidgetCallback)(Camera *, CameraWidget *, GPContext *)
Callback handler for Button widgets.
Definition: gphoto2-widget.h:71
int gp_widget_get_child_by_label(CameraWidget *widget, const char *label, CameraWidget **child)
Retrieves the child with label label of the CameraWidget.
Definition: gphoto2-widget.c:567
int gp_widget_get_child(CameraWidget *widget, int child_number, CameraWidget **child)
Retrieves the child number child_number of the parent.
Definition: gphoto2-widget.c:547
int gp_widget_set_changed(CameraWidget *widget, int changed)
Tells that the widget has been changed.
Definition: gphoto2-widget.c:290
int gp_widget_set_name(CameraWidget *widget, const char *name)
Sets the name of the widget.
Definition: gphoto2-widget.c:251
int gp_widget_set_readonly(CameraWidget *widget, int readonly)
Tells that the widget is readonly.
Definition: gphoto2-widget.c:311
int gp_widget_prepend(CameraWidget *widget, CameraWidget *child)
Prepends a CameraWidget to a CameraWidget.
Definition: gphoto2-widget.c:497
int gp_widget_unref(CameraWidget *widget)
Decrements the reference count for the CameraWidget.
Definition: gphoto2-widget.c:178
int gp_widget_set_value(CameraWidget *widget, const void *value)
Sets the value of the widget.
Definition: gphoto2-widget.c:385
int gp_widget_new(CameraWidgetType type, const char *label, CameraWidget **widget)
Create a new widget.
Definition: gphoto2-widget.c:94
int gp_widget_set_range(CameraWidget *range, float low, float high, float increment)
Sets some range parameters of the CameraWidget.
Definition: gphoto2-widget.c:716
int gp_widget_get_type(CameraWidget *widget, CameraWidgetType *type)
Retrieves the type of the CameraWidget.
Definition: gphoto2-widget.c:345
int gp_widget_count_choices(CameraWidget *widget)
Counts the choices of the CameraWidget.
Definition: gphoto2-widget.c:781
CameraWidgetType
Type of the widget to be created.
Definition: gphoto2-widget.h:54
@ GP_WIDGET_RANGE
Slider widget.
Definition: gphoto2-widget.h:60
@ GP_WIDGET_BUTTON
Button press widget.
Definition: gphoto2-widget.h:64
@ GP_WIDGET_SECTION
Section widget (think Tab)
Definition: gphoto2-widget.h:58
@ GP_WIDGET_TOGGLE
Toggle widget (think check box)
Definition: gphoto2-widget.h:61
@ GP_WIDGET_RADIO
Radio button widget.
Definition: gphoto2-widget.h:62
@ GP_WIDGET_DATE
Date entering widget.
Definition: gphoto2-widget.h:65
@ GP_WIDGET_WINDOW
Window widget This is the toplevel configuration widget. It should likely contain multiple GP_WIDGET_...
Definition: gphoto2-widget.h:55
@ GP_WIDGET_MENU
Menu widget (same as RADIO).
Definition: gphoto2-widget.h:63
@ GP_WIDGET_TEXT
Text widget.
Definition: gphoto2-widget.h:59
int gp_widget_get_value(CameraWidget *widget, void *value)
Retrieves the value of the CameraWidget.
Definition: gphoto2-widget.c:435
int gp_widget_get_info(CameraWidget *widget, const char **info)
Retrieves the information about the widget.
Definition: gphoto2-widget.c:199
int gp_widget_get_child_by_id(CameraWidget *widget, int id, CameraWidget **child)
Retrieves the child with id id of the widget.
Definition: gphoto2-widget.c:604
int gp_widget_append(CameraWidget *widget, CameraWidget *child)
Appends a CameraWidget to a CameraWidget.
Definition: gphoto2-widget.c:471
int gp_widget_free(CameraWidget *widget)
Frees a CameraWidget.
Definition: gphoto2-widget.c:133
int gp_widget_get_label(CameraWidget *widget, const char **label)
Retrieves the label of the CameraWidget.
Definition: gphoto2-widget.c:362
int gp_widget_get_child_by_name(CameraWidget *widget, const char *name, CameraWidget **child)
Retrieves the child with name name of the widget.
Definition: gphoto2-widget.c:639
int gp_widget_ref(CameraWidget *widget)
Increments the reference count for the CameraWidget.
Definition: gphoto2-widget.c:161
int gp_widget_changed(CameraWidget *widget)
Tells if the widget has been changed.
Definition: gphoto2-widget.c:824
int gp_widget_get_root(CameraWidget *widget, CameraWidget **root)
Retrieves the root of the CameraWidget.
Definition: gphoto2-widget.c:693
int gp_widget_add_choice(CameraWidget *widget, const char *choice)
Adds a choice to the CameraWidget.
Definition: gphoto2-widget.c:761
int gp_widget_get_id(CameraWidget *widget, int *id)
Retrieves the unique id of the CameraWidget.
Definition: gphoto2-widget.c:270
int gp_widget_get_choice(CameraWidget *widget, int choice_number, const char **choice)
Retrieves the choice number choice_number.
Definition: gphoto2-widget.c:800
int gp_widget_get_readonly(CameraWidget *widget, int *readonly)
Retrieves the readonly state of the CameraWidget.
Definition: gphoto2-widget.c:328
int gp_widget_count_children(CameraWidget *widget)
Counts the children of the CameraWidget.
Definition: gphoto2-widget.c:530
int gp_widget_set_info(CameraWidget *widget, const char *info)
Sets the information about the widget.
Definition: gphoto2-widget.c:217
Definition: gphoto2-widget.c:39
Definition: gphoto2-camera.h:325
Definition: gphoto2-context.c:39