LiVES
3.2.0
|
Go to the source code of this file.
Data Structures | |
struct | lives_rect_t |
struct | widget_opts_t |
Typedefs | |
typedef LingoEllipsizeMode | LiVESEllipsizeMode |
typedef int | lives_expand_t |
Functions | |
lives_painter_t * | lives_painter_create_from_surface (lives_painter_surface_t *target) |
lives_painter_t * | lives_painter_create_from_widget (LiVESWidget *) |
boolean | lives_painter_remerge (lives_painter_t *) |
boolean | lives_painter_set_source_pixbuf (lives_painter_t *, const LiVESPixbuf *, double pixbuf_x, double pixbuf_y) |
boolean | lives_painter_set_source_surface (lives_painter_t *, lives_painter_surface_t *, double x, double y) |
lives_painter_surface_t * | lives_xwindow_create_similar_surface (LiVESXWindow *window, lives_painter_content_t cont, int width, int height) |
lives_painter_surface_t * | lives_widget_create_painter_surface (LiVESWidget *) |
lives_painter_surface_t * | lives_painter_image_surface_create (lives_painter_format_t format, int width, int height) |
lives_painter_surface_t * | lives_painter_image_surface_create_for_data (uint8_t *data, lives_painter_format_t, int width, int height, int stride) |
boolean | lives_painter_surface_flush (lives_painter_surface_t *) |
boolean | lives_painter_destroy (lives_painter_t *) |
boolean | lives_painter_new_path (lives_painter_t *) |
boolean | lives_painter_paint (lives_painter_t *) |
boolean | lives_painter_fill (lives_painter_t *) |
boolean | lives_painter_stroke (lives_painter_t *) |
boolean | lives_painter_clip (lives_painter_t *) |
boolean | lives_painter_render_background (LiVESWidget *, lives_painter_t *, double x, double y, double width, double height) |
boolean | lives_painter_set_source_rgb (lives_painter_t *, double red, double green, double blue) |
boolean | lives_painter_set_source_rgba (lives_painter_t *, double red, double green, double blue, double alpha) |
boolean | lives_painter_set_line_width (lives_painter_t *, double width) |
boolean | lives_painter_translate (lives_painter_t *, double x, double y) |
boolean | lives_painter_rectangle (lives_painter_t *, double x, double y, double width, double height) |
boolean | lives_painter_arc (lives_painter_t *, double xc, double yc, double radius, double angle1, double angle2) |
boolean | lives_painter_line_to (lives_painter_t *, double x, double y) |
boolean | lives_painter_move_to (lives_painter_t *, double x, double y) |
boolean | lives_painter_close_path (lives_painter_t *) |
boolean | lives_painter_set_operator (lives_painter_t *, lives_painter_operator_t) |
boolean | lives_painter_set_fill_rule (lives_painter_t *, lives_painter_fill_rule_t) |
lives_painter_surface_t * | lives_painter_get_target (lives_painter_t *) |
int | lives_painter_format_stride_for_width (lives_painter_format_t, int width) |
uint8_t * | lives_painter_image_surface_get_data (lives_painter_surface_t *) |
int | lives_painter_image_surface_get_width (lives_painter_surface_t *) |
int | lives_painter_image_surface_get_height (lives_painter_surface_t *) |
int | lives_painter_image_surface_get_stride (lives_painter_surface_t *) |
lives_painter_format_t | lives_painter_image_surface_get_format (lives_painter_surface_t *) |
LiVESAlign | lives_justify_to_align (LiVESJustification justification) |
LiVESScrollDirection | lives_get_scroll_direction (LiVESXEventScroll *event) |
boolean | lives_has_icon (LiVESIconTheme *, const char *stock_id, LiVESIconSize size) |
const char * | lives_get_stock_icon_alt (int alt_stock_id) |
void | widget_helper_set_stock_icon_alts (LiVESIconTheme *) |
boolean | widget_helper_init (void) |
boolean | widget_opts_rescale (double scale) |
lives_colRGBA64_t | lives_rgba_col_new (int red, int green, int blue, int alpha) |
lives_colRGBA64_t * | widget_color_to_lives_rgba (lives_colRGBA64_t *, LiVESWidgetColor *) |
LiVESWidgetColor * | lives_rgba_to_widget_color (LiVESWidgetColor *, lives_colRGBA64_t *) |
lives_colRGBA64_t * | lives_painter_set_source_rgb_from_lives_rgba (lives_painter_t *, lives_colRGBA64_t *) |
lives_colRGB48_t * | lives_painter_set_source_rgb_from_lives_rgb (lives_painter_t *, lives_colRGB48_t *) |
LiVESWidgetColor * | lives_painter_set_source_rgb_from_lives_widget_color (lives_painter_t *, LiVESWidgetColor *) |
boolean | clear_widget_bg (LiVESWidget *widget, lives_painter_surface_t *) |
boolean | clear_widget_bg_area (LiVESWidget *widget, lives_painter_surface_t *s, double x, double y, double width, double height) |
boolean | lives_rgba_equal (lives_colRGBA64_t *col1, lives_colRGBA64_t *col2) |
lives_colRGBA64_t * | lives_rgba_copy (lives_colRGBA64_t *col1, lives_colRGBA64_t *col2) |
boolean | lives_widget_object_ref (livespointer) |
increase refcount by one More... | |
boolean | lives_widget_object_unref (livespointer) |
decrease refcount by one: if refcount==0, object is destroyed More... | |
boolean | lives_widget_object_ref_sink (livespointer) |
void | lives_widget_object_set_data_auto (LiVESWidgetObject *, const char *key, livespointer data) |
void | lives_widget_object_set_data_list (LiVESWidgetObject *, const char *key, LiVESList *list) |
void | lives_widget_object_set_data_widget_object (LiVESWidgetObject *, const char *key, livespointer other) |
int | lives_pixbuf_get_width (const LiVESPixbuf *) |
int | lives_pixbuf_get_height (const LiVESPixbuf *) |
boolean | lives_pixbuf_get_has_alpha (const LiVESPixbuf *) |
int | lives_pixbuf_get_rowstride (const LiVESPixbuf *) |
int | lives_pixbuf_get_n_channels (const LiVESPixbuf *) |
unsigned char * | lives_pixbuf_get_pixels (const LiVESPixbuf *) |
const unsigned char * | lives_pixbuf_get_pixels_readonly (const LiVESPixbuf *) |
LiVESPixbuf * | lives_pixbuf_new (boolean has_alpha, int width, int height) |
LiVESPixbuf * | lives_pixbuf_copy (LiVESPixbuf *) |
LiVESPixbuf * | lives_pixbuf_new_from_data (const unsigned char *buf, boolean has_alpha, int width, int height, int rowstride, LiVESPixbufDestroyNotify lives_free_buffer_fn, livespointer destroy_fn_data) |
LiVESPixbuf * | lives_pixbuf_new_from_file (const char *filename, LiVESError **error) |
LiVESWidget * | lives_image_new_from_pixbuf (LiVESPixbuf *) |
LiVESPixbuf * | lives_pixbuf_new_from_file_at_scale (const char *filename, int width, int height, boolean preserve_aspect_ratio, LiVESError **error) |
LiVESPixbuf * | lives_pixbuf_scale_simple (const LiVESPixbuf *src, int dest_width, int dest_height, LiVESInterpType interp_type) |
boolean | lives_pixbuf_saturate_and_pixelate (const LiVESPixbuf *src, LiVESPixbuf *dest, float saturation, boolean pixilate) |
ulong | lives_signal_connect (LiVESWidget *, const char *signal_name, ulong funcptr, livespointer data) |
boolean | lives_signal_handler_block (livespointer instance, unsigned long handler_id) |
boolean | lives_signal_handler_unblock (livespointer instance, unsigned long handler_id) |
boolean | lives_signal_handler_disconnect (livespointer instance, unsigned long handler_id) |
boolean | lives_signal_stop_emission_by_name (livespointer instance, const char *detailed_signal) |
boolean | lives_grab_add (LiVESWidget *) |
boolean | lives_grab_remove (LiVESWidget *) |
boolean | lives_widget_set_sensitive (LiVESWidget *, boolean state) |
boolean | lives_widget_get_sensitive (LiVESWidget *) |
boolean | lives_widget_show (LiVESWidget *) |
boolean | lives_widget_show_now (LiVESWidget *) |
boolean | lives_widget_show_all (LiVESWidget *) |
boolean | lives_widget_show_all_from_bg (LiVESWidget *) |
boolean | lives_widget_hide (LiVESWidget *) |
boolean | lives_widget_destroy (LiVESWidget *) |
boolean | lives_widget_realize (LiVESWidget *) |
boolean | lives_widget_queue_draw (LiVESWidget *) |
boolean | lives_widget_queue_draw_area (LiVESWidget *, int x, int y, int width, int height) |
boolean | lives_widget_queue_resize (LiVESWidget *) |
boolean | lives_widget_set_size_request (LiVESWidget *, int width, int height) |
boolean | lives_widget_set_minimum_size (LiVESWidget *, int width, int height) |
boolean | lives_widget_set_maximum_size (LiVESWidget *, int width, int height) |
boolean | lives_widget_reparent (LiVESWidget *, LiVESWidget *new_parent) |
boolean | lives_widget_is_ancestor (LiVESWidget *, LiVESWidget *ancestor) |
boolean | lives_widget_set_app_paintable (LiVESWidget *, boolean paintable) |
boolean | lives_widget_set_opacity (LiVESWidget *widget, double opacity) |
boolean | lives_widget_has_focus (LiVESWidget *) |
boolean | lives_widget_is_focus (LiVESWidget *) |
boolean | lives_widget_has_default (LiVESWidget *) |
boolean | lives_widget_set_halign (LiVESWidget *, LiVESAlign align) |
boolean | lives_widget_set_valign (LiVESWidget *, LiVESAlign align) |
LiVESWidget * | lives_event_box_new (void) |
boolean | lives_event_box_set_above_child (LiVESEventBox *, boolean set) |
LiVESWidget * | lives_label_new (const char *text) |
const char * | lives_label_get_text (LiVESLabel *) |
boolean | lives_label_set_text (LiVESLabel *, const char *text) |
boolean | lives_label_set_markup (LiVESLabel *, const char *markup) |
boolean | lives_label_set_mnemonic_widget (LiVESLabel *, LiVESWidget *widget) |
LiVESWidget * | lives_label_get_mnemonic_widget (LiVESLabel *) |
boolean | lives_label_set_selectable (LiVESLabel *, boolean setting) |
boolean | lives_label_set_line_wrap (LiVESLabel *, boolean set) |
boolean | lives_label_set_line_wrap_mode (LiVESLabel *, LingoWrapMode mode) |
boolean | lives_label_seT_lines (LiVESLabel *, int nlines) |
boolean | lives_label_set_ellipsize (LiVESLabel *, LiVESEllipsizeMode mode) |
LiVESWidget * | lives_button_new (void) |
LiVESWidget * | lives_button_new_with_label (const char *label) |
boolean | lives_button_set_label (LiVESButton *, const char *label) |
const char * | lives_button_get_label (LiVESButton *) |
boolean | lives_button_clicked (LiVESButton *) |
boolean | lives_button_set_relief (LiVESButton *, LiVESReliefStyle) |
boolean | lives_button_set_image (LiVESButton *, LiVESWidget *image) |
boolean | lives_button_set_image_from_stock (LiVESButton *, const char *stock_id) |
boolean | lives_button_set_focus_on_click (LiVESButton *, boolean focus) |
boolean | lives_widget_set_focus_on_click (LiVESWidget *, boolean focus) |
LiVESWidget * | lives_switch_new (void) |
boolean | lives_switch_set_active (LiVESSwitch *, boolean) |
boolean | lives_switch_get_active (LiVESSwitch *) |
LiVESWidget * | lives_spinner_new (void) |
boolean | lives_spinner_start (LiVESSpinner *) |
boolean | lives_spinner_stop (LiVESSpinner *) |
LiVESWidget * | lives_check_button_new (void) |
LiVESWidget * | lives_check_button_new_with_label (const char *label) |
LiVESWidget * | lives_radio_button_new (LiVESSList *group) |
LiVESWidget * | lives_spin_button_new (LiVESAdjustment *, double climb_rate, uint32_t digits) |
LiVESResponseType | lives_dialog_run (LiVESDialog *) |
boolean | lives_dialog_response (LiVESDialog *, int response) |
int | lives_dialog_get_response_for_widget (LiVESDialog *, LiVESWidget *) |
boolean | lives_widget_set_bg_color (LiVESWidget *, LiVESWidgetState state, const LiVESWidgetColor *) |
boolean | lives_widget_set_fg_color (LiVESWidget *, LiVESWidgetState state, const LiVESWidgetColor *) |
boolean | lives_widget_set_text_color (LiVESWidget *, LiVESWidgetState state, const LiVESWidgetColor *) |
boolean | lives_widget_set_base_color (LiVESWidget *, LiVESWidgetState state, const LiVESWidgetColor *) |
boolean | lives_widget_set_border_color (LiVESWidget *, LiVESWidgetState state, const LiVESWidgetColor *) |
boolean | lives_widget_set_outline_color (LiVESWidget *, LiVESWidgetState state, const LiVESWidgetColor *) |
boolean | lives_widget_set_text_size (LiVESWidget *, LiVESWidgetState state, const char *size) |
boolean | lives_widget_get_fg_state_color (LiVESWidget *, LiVESWidgetState state, LiVESWidgetColor *) |
boolean | lives_widget_get_bg_state_color (LiVESWidget *, LiVESWidgetState state, LiVESWidgetColor *) |
boolean | lives_color_parse (const char *spec, LiVESWidgetColor *) |
LiVESWidgetColor * | lives_widget_color_copy (LiVESWidgetColor *c1orNULL, const LiVESWidgetColor *c2) |
boolean | lives_widget_color_equal (LiVESWidgetColor *, const LiVESWidgetColor *) |
boolean | lives_widget_color_mix (LiVESWidgetColor *c1, const LiVESWidgetColor *c2, float mixval) |
LiVESWidget * | lives_image_new (void) |
LiVESWidget * | lives_image_new_from_file (const char *filename) |
LiVESWidget * | lives_image_new_from_stock (const char *stock_id, LiVESIconSize size) |
boolean | lives_image_set_from_pixbuf (LiVESImage *, LiVESPixbuf *) |
LiVESPixbuf * | lives_image_get_pixbuf (LiVESImage *) |
boolean | lives_widget_set_margin_left (LiVESWidget *, int margin) |
boolean | lives_widget_set_margin_right (LiVESWidget *, int margin) |
boolean | lives_widget_set_margin_top (LiVESWidget *, int margin) |
boolean | lives_widget_set_margin_bottom (LiVESWidget *, int margin) |
boolean | lives_widget_set_margin (LiVESWidget *, int margin) |
boolean | lives_widget_set_padding (LiVESWidget *, int padding) |
LiVESWidget * | lives_dialog_get_content_area (LiVESDialog *) |
LiVESWidget * | lives_dialog_get_action_area (LiVESDialog *) |
boolean | lives_dialog_add_action_widget (LiVESDialog *, LiVESWidget *, int response_id) |
LiVESWidget * | lives_window_new (LiVESWindowType wintype) |
boolean | lives_window_set_title (LiVESWindow *, const char *title) |
const char * | lives_window_get_title (LiVESWindow *) |
boolean | lives_window_set_transient_for (LiVESWindow *, LiVESWindow *parent) |
boolean | lives_window_set_modal (LiVESWindow *, boolean modal) |
boolean | lives_window_set_deletable (LiVESWindow *, boolean deletable) |
boolean | lives_window_set_resizable (LiVESWindow *, boolean resizable) |
boolean | lives_window_set_keep_below (LiVESWindow *, boolean keep_below) |
boolean | lives_window_set_keep_above (LiVESWindow *, boolean keep_below) |
boolean | lives_window_set_decorated (LiVESWindow *, boolean decorated) |
boolean | lives_window_set_default_size (LiVESWindow *, int width, int height) |
boolean | lives_window_set_monitor (LiVESWindow *window, int monnum) |
boolean | lives_widget_get_position (LiVESWidget *, int *x, int *y) |
LiVESWidget * | lives_window_get_focus (LiVESWindow *) |
boolean | lives_window_get_modal (LiVESWindow *) |
boolean | lives_window_move (LiVESWindow *, int x, int y) |
boolean | lives_window_get_position (LiVESWindow *, int *x, int *y) |
boolean | lives_window_set_position (LiVESWindow *, LiVESWindowPosition pos) |
boolean | lives_window_resize (LiVESWindow *, int width, int height) |
boolean | lives_window_present (LiVESWindow *) |
boolean | lives_window_fullscreen (LiVESWindow *) |
boolean | lives_window_unfullscreen (LiVESWindow *) |
boolean | lives_window_maximize (LiVESWindow *) |
boolean | lives_window_unmaximize (LiVESWindow *) |
boolean | lives_window_set_hide_titlebar_when_maximized (LiVESWindow *, boolean setting) |
boolean | lives_window_add_accel_group (LiVESWindow *, LiVESAccelGroup *group) |
boolean | lives_window_remove_accel_group (LiVESWindow *, LiVESAccelGroup *group) |
boolean | lives_menu_set_accel_group (LiVESMenu *, LiVESAccelGroup *group) |
LiVESAdjustment * | lives_adjustment_new (double value, double lower, double upper, double step_increment, double page_increment, double page_size) |
boolean | lives_box_reorder_child (LiVESBox *, LiVESWidget *child, int pos) |
boolean | lives_box_set_homogeneous (LiVESBox *, boolean homogeneous) |
boolean | lives_box_set_spacing (LiVESBox *, int spacing) |
boolean | lives_box_set_child_packing (LiVESBox *, LiVESWidget *child, boolean expand, boolean fill, uint32_t padding, LiVESPackType pack_type) |
boolean | lives_box_pack_start (LiVESBox *, LiVESWidget *child, boolean expand, boolean fill, uint32_t padding) |
boolean | lives_box_pack_end (LiVESBox *, LiVESWidget *child, boolean expand, boolean fill, uint32_t padding) |
LiVESWidget * | lives_hbox_new (boolean homogeneous, int spacing) |
LiVESWidget * | lives_vbox_new (boolean homogeneous, int spacing) |
LiVESWidget * | lives_hseparator_new (void) |
LiVESWidget * | lives_vseparator_new (void) |
LiVESWidget * | lives_hbutton_box_new (void) |
LiVESWidget * | lives_vbutton_box_new (void) |
boolean | lives_button_box_set_layout (LiVESButtonBox *, LiVESButtonBoxStyle bstyle) |
boolean | lives_button_box_set_button_width (LiVESButtonBox *, LiVESWidget *button, int min_width) |
boolean | lives_button_box_set_child_non_homogeneous (LiVESButtonBox *, LiVESWidget *child, boolean set) |
boolean | lives_button_set_border_colour (LiVESWidget *, LiVESWidgetState state, LiVESWidgetColor *) |
boolean | lives_button_center (LiVESWidget *) |
boolean | lives_button_uncenter (LiVESWidget *, int normal_width) |
boolean | lives_button_box_make_first (LiVESButtonBox *, LiVESWidget *) |
boolean | lives_dialog_make_widget_first (LiVESDialog *, LiVESWidget *) |
LiVESAccelGroup * | lives_dialog_add_escape (LiVESDialog *dlg, LiVESWidget *button) |
LiVESWidget * | lives_standard_toolbar_new (void) |
LiVESWidget * | lives_standard_hscale_new (LiVESAdjustment *) |
LiVESWidget * | lives_vscale_new (LiVESAdjustment *) |
LiVESWidget * | lives_hpaned_new (void) |
LiVESWidget * | lives_vpaned_new (void) |
boolean | lives_paned_set_position (LiVESPaned *, int pos) |
int | lives_paned_get_position (LiVESPaned *) |
boolean | lives_paned_pack (int where, LiVESPaned *, LiVESWidget *child, boolean resize, boolean shrink) |
LiVESWidget * | lives_hscrollbar_new (LiVESAdjustment *) |
LiVESWidget * | lives_vscrollbar_new (LiVESAdjustment *) |
LiVESWidget * | lives_arrow_new (LiVESArrowType, LiVESShadowType) |
LiVESWidget * | lives_alignment_new (float xalign, float yalign, float xscale, float yscale) |
boolean | lives_alignment_set (LiVESWidget *, float xalign, float yalign, float xscale, float yscale) |
LiVESWidget * | lives_expander_new (const char *label) |
LiVESWidget * | lives_expander_get_label_widget (LiVESExpander *) |
boolean | lives_expander_set_use_markup (LiVESExpander *, boolean val) |
boolean | lives_expander_set_expanded (LiVESExpander *, boolean val) |
boolean | lives_expander_set_label (LiVESExpander *, const char *text) |
boolean | lives_expander_get_expanded (LiVESExpander *) |
boolean | lives_label_set_width_chars (LiVESLabel *, int nchars) |
boolean | lives_label_set_halignment (LiVESLabel *, float yalign) |
LiVESWidget * | lives_combo_new (void) |
LiVESWidget * | lives_combo_new_with_model (LiVESTreeModel *model) |
LiVESTreeModel * | lives_combo_get_model (LiVESCombo *) |
boolean | lives_combo_set_model (LiVESCombo *, LiVESTreeModel *) |
boolean | lives_combo_set_focus_on_click (LiVESCombo *, boolean state) |
void | lives_combo_popup (LiVESCombo *) |
boolean | lives_combo_remove_all_text (LiVESCombo *) |
boolean | lives_combo_append_text (LiVESCombo *, const char *text) |
boolean | lives_combo_set_entry_text_column (LiVESCombo *, int column) |
const char * | lives_combo_get_active_text (LiVESCombo *) WARN_UNUSED |
boolean | lives_combo_set_active_text (LiVESCombo *, const char *text) |
boolean | lives_combo_set_active_index (LiVESCombo *, int index) |
int | lives_combo_get_active_index (LiVESCombo *) |
boolean | lives_combo_get_active_iter (LiVESCombo *, LiVESTreeIter *) |
boolean | lives_combo_set_active_iter (LiVESCombo *, LiVESTreeIter *) |
boolean | lives_combo_set_active_string (LiVESCombo *, const char *active_str) |
LiVESWidget * | lives_combo_get_entry (LiVESCombo *) |
boolean | lives_combo_populate (LiVESCombo *, LiVESList *list) |
LiVESWidget * | lives_text_view_new (void) |
LiVESWidget * | lives_text_view_new_with_buffer (LiVESTextBuffer *) |
LiVESTextBuffer * | lives_text_view_get_buffer (LiVESTextView *) |
boolean | lives_text_view_set_editable (LiVESTextView *, boolean setting) |
boolean | lives_text_view_set_accepts_tab (LiVESTextView *, boolean setting) |
boolean | lives_text_view_set_cursor_visible (LiVESTextView *, boolean setting) |
boolean | lives_text_view_set_wrap_mode (LiVESTextView *, LiVESWrapMode wrapmode) |
boolean | lives_text_view_set_justification (LiVESTextView *, LiVESJustification justify) |
boolean | lives_text_view_set_top_margin (LiVESTextView *, int margin) |
boolean | lives_text_view_set_bottom_margin (LiVESTextView *, int margin) |
LiVESTextBuffer * | lives_text_buffer_new (void) |
char * | lives_text_buffer_get_text (LiVESTextBuffer *, LiVESTextIter *start, LiVESTextIter *end, boolean inc_hidden_chars) |
char * | lives_text_buffer_get_all_text (LiVESTextBuffer *) |
boolean | lives_text_buffer_set_text (LiVESTextBuffer *, const char *, int len) |
boolean | lives_text_buffer_insert (LiVESTextBuffer *, LiVESTextIter *, const char *, int len) |
boolean | lives_text_buffer_insert_at_cursor (LiVESTextBuffer *, const char *, int len) |
boolean | lives_text_buffer_get_start_iter (LiVESTextBuffer *, LiVESTextIter *) |
boolean | lives_text_buffer_get_end_iter (LiVESTextBuffer *, LiVESTextIter *) |
boolean | lives_text_buffer_place_cursor (LiVESTextBuffer *, LiVESTextIter *) |
LiVESTextMark * | lives_text_buffer_create_mark (LiVESTextBuffer *, const char *mark_name, const LiVESTextIter *where, boolean left_gravity) |
boolean | lives_text_buffer_delete_mark (LiVESTextBuffer *, LiVESTextMark *) |
boolean | lives_text_buffer_delete (LiVESTextBuffer *, LiVESTextIter *start, LiVESTextIter *end) |
boolean | lives_text_buffer_get_iter_at_mark (LiVESTextBuffer *, LiVESTextIter *, LiVESTextMark *) |
boolean | lives_tree_model_get (LiVESTreeModel *, LiVESTreeIter *,...) |
boolean | lives_tree_model_get_iter (LiVESTreeModel *, LiVESTreeIter *, LiVESTreePath *) |
boolean | lives_tree_model_get_iter_first (LiVESTreeModel *, LiVESTreeIter *) |
LiVESTreePath * | lives_tree_model_get_path (LiVESTreeModel *, LiVESTreeIter *) |
boolean | lives_tree_model_iter_children (LiVESTreeModel *, LiVESTreeIter *, LiVESTreeIter *parent) |
int | lives_tree_model_iter_n_children (LiVESTreeModel *, LiVESTreeIter *) |
boolean | lives_tree_model_iter_next (LiVESTreeModel *, LiVESTreeIter *) |
boolean | lives_tree_path_free (LiVESTreePath *) |
LiVESTreePath * | lives_tree_path_new_from_string (const char *path) |
int | lives_tree_path_get_depth (LiVESTreePath *) |
int * | lives_tree_path_get_indices (LiVESTreePath *) |
LiVESTreeStore * | lives_tree_store_new (int ncols,...) |
boolean | lives_tree_store_append (LiVESTreeStore *, LiVESTreeIter *, LiVESTreeIter *parent) |
boolean | lives_tree_store_prepend (LiVESTreeStore *, LiVESTreeIter *, LiVESTreeIter *parent) |
boolean | lives_tree_store_set (LiVESTreeStore *, LiVESTreeIter *,...) |
LiVESWidget * | lives_tree_view_new (void) |
LiVESWidget * | lives_tree_view_new_with_model (LiVESTreeModel *) |
boolean | lives_tree_view_set_model (LiVESTreeView *, LiVESTreeModel *) |
LiVESTreeModel * | lives_tree_view_get_model (LiVESTreeView *) |
int | lives_tree_view_append_column (LiVESTreeView *, LiVESTreeViewColumn *) |
boolean | lives_tree_view_set_headers_visible (LiVESTreeView *, boolean vis) |
LiVESAdjustment * | lives_tree_view_get_hadjustment (LiVESTreeView *) |
LiVESTreeSelection * | lives_tree_view_get_selection (LiVESTreeView *) |
LiVESTreeViewColumn * | lives_tree_view_column_new_with_attributes (const char *title, LiVESCellRenderer *,...) |
boolean | lives_tree_view_column_set_sizing (LiVESTreeViewColumn *, LiVESTreeViewColumnSizing type) |
boolean | lives_tree_view_column_set_fixed_width (LiVESTreeViewColumn *, int fwidth) |
boolean | lives_tree_selection_get_selected (LiVESTreeSelection *, LiVESTreeModel **, LiVESTreeIter *) |
boolean | lives_tree_selection_set_mode (LiVESTreeSelection *, LiVESSelectionMode) |
boolean | lives_tree_selection_select_iter (LiVESTreeSelection *, LiVESTreeIter *) |
LiVESListStore * | lives_list_store_new (int ncols,...) |
boolean | lives_list_store_set (LiVESListStore *, LiVESTreeIter *,...) |
boolean | lives_list_store_insert (LiVESListStore *, LiVESTreeIter *, int position) |
LiVESCellRenderer * | lives_cell_renderer_text_new (void) |
LiVESCellRenderer * | lives_cell_renderer_spin_new (void) |
LiVESCellRenderer * | lives_cell_renderer_toggle_new (void) |
LiVESCellRenderer * | lives_cell_renderer_pixbuf_new (void) |
LiVESWidget * | lives_drawing_area_new (void) |
int | lives_event_get_time (LiVESXEvent *) |
boolean | lives_toggle_button_get_active (LiVESToggleButton *) |
boolean | lives_toggle_button_set_active (LiVESToggleButton *, boolean active) |
boolean | lives_toggle_button_set_mode (LiVESToggleButton *, boolean drawind) |
boolean | lives_toggle_button_toggle (LiVESToggleButton *) |
LiVESWidget * | lives_toggle_tool_button_new (void) |
boolean | lives_toggle_tool_button_get_active (LiVESToggleToolButton *) |
boolean | lives_toggle_tool_button_set_active (LiVESToggleToolButton *, boolean active) |
boolean | lives_toggle_tool_button_toggle (LiVESToggleToolButton *) |
int | lives_utf8_strcmpfunc (livesconstpointer, livesconstpointer, livespointer fwd) |
LiVESList * | add_sorted_list_to_menu (LiVESMenu *, LiVESList *) |
LiVESSList * | lives_radio_button_get_group (LiVESRadioButton *) |
LiVESSList * | lives_radio_menu_item_get_group (LiVESRadioMenuItem *) |
LiVESWidget * | lives_widget_get_parent (LiVESWidget *) |
LiVESWidget * | lives_widget_get_toplevel (LiVESWidget *) |
LiVESXWindow * | lives_widget_get_xwindow (LiVESWidget *) |
boolean | lives_xwindow_set_keep_above (LiVESXWindow *, boolean setting) |
boolean | lives_xwindow_invalidate_rect (LiVESXWindow *, lives_rect_t *, boolean inv_childs) |
boolean | lives_widget_set_can_focus (LiVESWidget *, boolean state) |
boolean | lives_widget_set_can_default (LiVESWidget *, boolean state) |
boolean | lives_widget_set_can_focus_and_default (LiVESWidget *) |
boolean | lives_widget_add_events (LiVESWidget *, int events) |
boolean | lives_widget_set_events (LiVESWidget *, int events) |
boolean | lives_widget_remove_accelerator (LiVESWidget *, LiVESAccelGroup *, uint32_t accel_key, LiVESXModifierType accel_mods) |
boolean | lives_widget_get_preferred_size (LiVESWidget *, LiVESRequisition *min_size, LiVESRequisition *nat_size) |
boolean | lives_widget_set_no_show_all (LiVESWidget *, boolean set) |
boolean | lives_widget_get_no_show_all (LiVESWidget *) |
boolean | lives_container_remove (LiVESContainer *, LiVESWidget *) |
boolean | lives_container_add (LiVESContainer *, LiVESWidget *) |
boolean | lives_container_set_border_width (LiVESContainer *, uint32_t width) |
boolean | lives_container_foreach (LiVESContainer *, LiVESWidgetCallback callback, livespointer cb_data) |
LiVESList * | lives_container_get_children (LiVESContainer *) |
boolean | lives_container_set_focus_child (LiVESContainer *, LiVESWidget *child) |
LiVESWidget * | lives_container_get_focus_child (LiVESContainer *) |
LiVESWidget * | lives_progress_bar_new (void) |
boolean | lives_progress_bar_set_fraction (LiVESProgressBar *, double fraction) |
boolean | lives_progress_bar_set_pulse_step (LiVESProgressBar *, double fraction) |
boolean | lives_progress_bar_pulse (LiVESProgressBar *) |
double | lives_spin_button_get_value (LiVESSpinButton *) |
int | lives_spin_button_get_value_as_int (LiVESSpinButton *) |
LiVESAdjustment * | lives_spin_button_get_adjustment (LiVESSpinButton *) |
LiVESAdjustment * | lives_spin_button_set_adjustment (LiVESSpinButton *, LiVESAdjustment *adj) |
boolean | lives_spin_button_set_value (LiVESSpinButton *, double value) |
boolean | lives_spin_button_set_range (LiVESSpinButton *, double min, double max) |
boolean | lives_spin_button_set_wrap (LiVESSpinButton *, boolean wrap) |
boolean | lives_spin_button_set_step_increment (LiVESSpinButton *button, double step_increment) |
boolean | lives_spin_button_set_snap_to_ticks (LiVESSpinButton *, boolean snap) |
boolean | lives_spin_button_set_snap_to_multiples (LiVESSpinButton *, double mult) |
boolean | lives_spin_button_set_digits (LiVESSpinButton *, uint32_t digits) |
boolean | lives_spin_button_update (LiVESSpinButton *) |
LiVESWidget * | lives_color_button_new_with_color (const LiVESWidgetColor *) |
LiVESWidgetColor * | lives_color_button_get_color (LiVESColorButton *, LiVESWidgetColor *) |
boolean | lives_color_button_set_color (LiVESColorButton *, const LiVESWidgetColor *) |
boolean | lives_color_button_set_alpha (LiVESColorButton *, int16_t alpha) |
int16_t | lives_color_button_get_alpha (LiVESColorButton *) |
boolean | lives_color_button_set_title (LiVESColorButton *, const char *title) |
boolean | lives_color_button_set_use_alpha (LiVESColorButton *, boolean use_alpha) |
LiVESToolItem * | lives_tool_button_new (LiVESWidget *icon_widget, const char *label) |
LiVESToolItem * | lives_tool_item_new (void) |
LiVESToolItem * | lives_separator_tool_item_new (void) |
boolean | lives_tool_button_set_icon_widget (LiVESToolButton *, LiVESWidget *icon) |
boolean | lives_tool_button_set_label_widget (LiVESToolButton *, LiVESWidget *label) |
boolean | lives_tool_button_set_use_underline (LiVESToolButton *, boolean use_underline) |
LiVESWidget * | lives_message_dialog_new (LiVESWindow *parent, LiVESDialogFlags flags, LiVESMessageType type, LiVESButtonsType buttons, const char *msg_fmt,...) |
double | lives_ruler_get_value (LiVESRuler *) |
double | lives_ruler_set_value (LiVESRuler *, double value) |
boolean | lives_ruler_set_range (LiVESRuler *, double lower, double upper, double position, double max_size) |
double | lives_ruler_set_upper (LiVESRuler *, double upper) |
double | lives_ruler_set_lower (LiVESRuler *, double lower) |
LiVESWidget * | lives_toolbar_new (void) |
boolean | lives_toolbar_insert (LiVESToolbar *, LiVESToolItem *, int pos) |
boolean | lives_toolbar_set_show_arrow (LiVESToolbar *, boolean show) |
LiVESIconSize | lives_toolbar_get_icon_size (LiVESToolbar *) |
boolean | lives_toolbar_set_icon_size (LiVESToolbar *, LiVESIconSize icon_size) |
boolean | lives_toolbar_set_style (LiVESToolbar *, LiVESToolbarStyle style) |
int | lives_widget_get_allocation_x (LiVESWidget *) |
int | lives_widget_get_allocation_y (LiVESWidget *) |
int | lives_widget_get_allocation_width (LiVESWidget *) |
int | lives_widget_get_allocation_height (LiVESWidget *) |
boolean | lives_widget_set_state (LiVESWidget *, LiVESWidgetState state) |
LiVESWidgetState | lives_widget_get_state (LiVESWidget *widget) |
LiVESWidget * | lives_bin_get_child (LiVESBin *) |
boolean | lives_widget_is_sensitive (LiVESWidget *) |
boolean | lives_widget_is_visible (LiVESWidget *) |
boolean | lives_widget_is_realized (LiVESWidget *) |
double | lives_adjustment_get_upper (LiVESAdjustment *) |
double | lives_adjustment_get_lower (LiVESAdjustment *) |
double | lives_adjustment_get_page_size (LiVESAdjustment *) |
double | lives_adjustment_get_step_increment (LiVESAdjustment *) |
double | lives_adjustment_get_value (LiVESAdjustment *) |
boolean | lives_adjustment_set_upper (LiVESAdjustment *, double upper) |
boolean | lives_adjustment_set_lower (LiVESAdjustment *, double lower) |
boolean | lives_adjustment_set_page_size (LiVESAdjustment *, double page_size) |
boolean | lives_adjustment_set_step_increment (LiVESAdjustment *, double step_increment) |
boolean | lives_adjustment_set_value (LiVESAdjustment *, double value) |
boolean | lives_adjustment_clamp_page (LiVESAdjustment *, double lower, double upper) |
LiVESAdjustment * | lives_range_get_adjustment (LiVESRange *) |
boolean | lives_range_set_value (LiVESRange *, double value) |
boolean | lives_range_set_range (LiVESRange *, double min, double max) |
boolean | lives_range_set_increments (LiVESRange *, double step, double page) |
boolean | lives_range_set_inverted (LiVESRange *, boolean invert) |
double | lives_range_get_value (LiVESRange *) |
boolean | lives_editable_set_editable (LiVESEditable *, boolean editable) |
boolean | lives_editable_get_editable (LiVESEditable *) |
boolean | lives_editable_select_region (LiVESEditable *, int start_pos, int end_pos) |
LiVESWidget * | lives_entry_new (void) |
boolean | lives_entry_set_editable (LiVESEntry *, boolean editable) |
boolean | lives_entry_get_editable (LiVESEntry *) |
const char * | lives_entry_get_text (LiVESEntry *) |
boolean | lives_entry_set_text (LiVESEntry *, const char *text) |
boolean | lives_entry_set_width_chars (LiVESEntry *, int nchars) |
boolean | lives_entry_set_max_length (LiVESEntry *, int len) |
boolean | lives_entry_set_activates_default (LiVESEntry *, boolean act) |
boolean | lives_entry_get_activates_default (LiVESEntry *) |
boolean | lives_entry_set_visibility (LiVESEntry *, boolean vis) |
boolean | lives_entry_set_has_frame (LiVESEntry *, boolean has) |
boolean | lives_entry_set_alignment (LiVESEntry *, float align) |
double | lives_scale_button_get_value (LiVESScaleButton *) |
boolean | lives_scale_button_set_value (LiVESScaleButton *, double value) |
LiVESWidget * | lives_table_new (uint32_t rows, uint32_t cols, boolean homogeneous) |
boolean | lives_table_set_row_spacings (LiVESTable *, uint32_t spacing) |
boolean | lives_table_set_col_spacings (LiVESTable *, uint32_t spacing) |
boolean | lives_table_resize (LiVESTable *, uint32_t rows, uint32_t cols) |
boolean | lives_table_attach (LiVESTable *, LiVESWidget *child, uint32_t left, uint32_t right, uint32_t top, uint32_t bottom, LiVESAttachOptions xoptions, LiVESAttachOptions yoptions, uint32_t xpad, uint32_t ypad) |
boolean | lives_table_set_column_homogeneous (LiVESTable *, boolean homogeneous) |
boolean | lives_table_set_row_homogeneous (LiVESTable *, boolean homogeneous) |
LiVESWidget * | lives_frame_new (const char *label) |
boolean | lives_frame_set_label (LiVESFrame *, const char *label) |
boolean | lives_frame_set_label_align (LiVESFrame *, float xalign, float yalign) |
boolean | lives_frame_set_label_widget (LiVESFrame *, LiVESWidget *) |
LiVESWidget * | lives_frame_get_label_widget (LiVESFrame *) |
boolean | lives_frame_set_shadow_type (LiVESFrame *, LiVESShadowType) |
LiVESWidget * | lives_notebook_new (void) |
LiVESWidget * | lives_notebook_get_nth_page (LiVESNotebook *, int pagenum) |
int | lives_notebook_get_current_page (LiVESNotebook *) |
boolean | lives_notebook_set_current_page (LiVESNotebook *, int pagenum) |
boolean | lives_notebook_set_tab_label (LiVESNotebook *, LiVESWidget *child, LiVESWidget *tablabel) |
LiVESWidget * | lives_menu_new (void) |
LiVESWidget * | lives_menu_bar_new (void) |
boolean | lives_menu_popup (LiVESMenu *, LiVESXEventButton *) |
boolean | lives_menu_reorder_child (LiVESMenu *, LiVESWidget *, int pos) |
boolean | lives_menu_detach (LiVESMenu *) |
boolean | lives_menu_shell_insert (LiVESMenuShell *, LiVESWidget *child, int pos) |
boolean | lives_menu_shell_prepend (LiVESMenuShell *, LiVESWidget *child) |
boolean | lives_menu_shell_append (LiVESMenuShell *, LiVESWidget *child) |
LiVESWidget * | lives_menu_item_new (void) |
LiVESWidget * | lives_menu_item_new_with_label (const char *label) |
boolean | lives_menu_item_set_accel_path (LiVESMenuItem *, const char *path) |
LiVESWidget * | lives_check_menu_item_new_with_label (const char *label) |
boolean | lives_check_menu_item_set_draw_as_radio (LiVESCheckMenuItem *, boolean setting) |
LiVESWidget * | lives_radio_menu_item_new_with_label (LiVESSList *group, const char *label) |
LiVESWidget * | lives_image_menu_item_new_with_label (const char *label) |
LiVESWidget * | lives_image_menu_item_new_from_stock (const char *stock_id, LiVESAccelGroup *accel_group) |
LiVESToolItem * | lives_menu_tool_button_new (LiVESWidget *icon, const char *label) |
boolean | lives_menu_tool_button_set_menu (LiVESMenuToolButton *, LiVESWidget *menu) |
boolean | lives_image_menu_item_set_image (LiVESImageMenuItem *, LiVESWidget *image) |
boolean | lives_menu_item_set_submenu (LiVESMenuItem *, LiVESWidget *) |
LiVESWidget * | lives_menu_item_get_submenu (LiVESMenuItem *) |
boolean | lives_menu_item_activate (LiVESMenuItem *) |
boolean | lives_check_menu_item_set_active (LiVESCheckMenuItem *, boolean state) |
boolean | lives_check_menu_item_get_active (LiVESCheckMenuItem *) |
boolean | lives_menu_set_title (LiVESMenu *, const char *title) |
int | lives_display_get_n_screens (LiVESXDisplay *) |
char * | lives_file_chooser_get_filename (LiVESFileChooser *) |
LiVESSList * | lives_file_chooser_get_filenames (LiVESFileChooser *) |
boolean | lives_widget_grab_focus (LiVESWidget *) |
boolean | lives_widget_grab_default (LiVESWidget *) |
LiVESWidget * | lives_widget_set_tooltip_text (LiVESWidget *, const char *text) |
boolean | lives_widget_process_updates (LiVESWidget *) |
boolean | lives_xwindow_get_origin (LiVESXWindow *, int *posx, int *posy) |
boolean | lives_xwindow_get_frame_extents (LiVESXWindow *, lives_rect_t *) |
LiVESAccelGroup * | lives_accel_group_new (void) |
boolean | lives_accel_group_connect (LiVESAccelGroup *, uint32_t key, LiVESXModifierType mod, LiVESAccelFlags flags, LiVESWidgetClosure *closure) |
boolean | lives_accel_group_disconnect (LiVESAccelGroup *, LiVESWidgetClosure *closure) |
boolean | lives_accel_groups_activate (LiVESWidgetObject *object, uint32_t key, LiVESXModifierType mod) |
boolean | lives_widget_add_accelerator (LiVESWidget *, const char *accel_signal, LiVESAccelGroup *accel_group, uint32_t accel_key, LiVESXModifierType accel_mods, LiVESAccelFlags accel_flags) |
boolean | lives_widget_get_pointer (LiVESXDevice *, LiVESWidget *, int *x, int *y) |
boolean | lives_widget_get_modmask (LiVESXDevice *, LiVESWidget *, LiVESXModifierType *modmask) |
LiVESXWindow * | lives_display_get_window_at_pointer (LiVESXDevice *, LiVESXDisplay *, int *win_x, int *win_y) |
boolean | lives_display_get_pointer (LiVESXDevice *, LiVESXDisplay *, LiVESXScreen **, int *x, int *y, LiVESXModifierType *mask) |
boolean | lives_display_warp_pointer (LiVESXDevice *, LiVESXDisplay *, LiVESXScreen *, int x, int y) |
LiVESXDisplay * | lives_widget_get_display (LiVESWidget *) |
lives_display_t | lives_widget_get_display_type (LiVESWidget *) |
uint64_t | lives_widget_get_xwinid (LiVESWidget *, const char *failure_msg) |
LiVESWindow * | lives_widget_get_window (LiVESWidget *) |
LiVESWidget * | lives_scrolled_window_new (LiVESAdjustment *hadj, LiVESAdjustment *vadj) |
LiVESAdjustment * | lives_scrolled_window_get_hadjustment (LiVESScrolledWindow *) |
LiVESAdjustment * | lives_scrolled_window_get_vadjustment (LiVESScrolledWindow *) |
boolean | lives_scrolled_window_set_policy (LiVESScrolledWindow *, LiVESPolicyType hpolicy, LiVESPolicyType vpolicy) |
boolean | lives_scrolled_window_add_with_viewport (LiVESScrolledWindow *, LiVESWidget *child) |
boolean | lives_scrolled_window_set_min_content_height (LiVESScrolledWindow *, int height) |
boolean | lives_scrolled_window_set_min_content_width (LiVESScrolledWindow *, int width) |
boolean | lives_xwindow_raise (LiVESXWindow *) |
boolean | lives_xwindow_set_cursor (LiVESXWindow *, LiVESXCursor *) |
uint32_t | lives_timer_add (uint32_t interval, LiVESWidgetSourceFunc function, livespointer data) |
boolean | lives_timer_remove (uint32_t timer) |
uint32_t | lives_idle_add (LiVESWidgetSourceFunc function, livespointer data) |
boolean | lives_source_remove (uint32_t handle) |
uint32_t | lives_accelerator_get_default_mod_mask () |
int | lives_screen_get_width (LiVESXScreen *) |
int | lives_screen_get_height (LiVESXScreen *) |
boolean | lives_scale_set_draw_value (LiVESScale *, boolean draw_value) |
boolean | lives_scale_set_value_pos (LiVESScale *, LiVESPositionType ptype) |
boolean | lives_scale_set_digits (LiVESScale *, int digits) |
boolean | lives_has_toplevel_focus (LiVESWidget *window) |
boolean | lives_dialog_set_has_separator (LiVESDialog *, boolean has) |
boolean | lives_widget_set_hexpand (LiVESWidget *, boolean state) |
boolean | lives_widget_set_vexpand (LiVESWidget *, boolean state) |
boolean | lives_image_menu_item_set_always_show_image (LiVESImageMenuItem *, boolean show) |
boolean | lives_scale_button_set_orientation (LiVESScaleButton *, LiVESOrientation orientation) |
boolean | lives_window_set_auto_startup_notification (boolean set) |
boolean | lives_widget_set_pack_type (LiVESBox *, LiVESWidget *, LiVESPackType) |
void | lives_label_set_hpadding (LiVESLabel *, int pad) |
LiVESWidget * | align_horizontal_with (LiVESWidget *thingtoadd, LiVESWidget *thingtoalignwith) |
boolean | lives_box_pack_first (LiVESBox *, LiVESWidget *child, boolean expand, boolean fill, uint32_t padding) |
LiVESWidget * | lives_layout_new (LiVESBox *) |
LiVESWidget * | lives_layout_hbox_new (LiVESLayout *) |
LiVESWidget * | lives_layout_row_new (LiVESLayout *) |
int | lives_layout_add_row (LiVESLayout *) |
LiVESWidget * | lives_layout_pack (LiVESHBox *, LiVESWidget *) |
LiVESWidget * | lives_layout_add_label (LiVESLayout *, const char *text, boolean horizontal) |
void | lives_layout_label_set_text (LiVESLabel *, const char *text) |
LiVESWidget * | lives_layout_add_fill (LiVESLayout *, boolean horizontal) |
LiVESWidget * | lives_layout_add_separator (LiVESLayout *, boolean horizontal) |
LiVESWidget * | lives_layout_expansion_row_new (LiVESLayout *, LiVESWidget *widget) |
boolean | lives_button_grab_default_special (LiVESWidget *) |
boolean | lives_button_ungrab_default_special (LiVESWidget *) |
boolean | show_warn_image (LiVESWidget *, const char *text) |
boolean | hide_warn_image (LiVESWidget *) |
boolean | is_standard_widget (LiVESWidget *) |
boolean | lives_widget_set_frozen (LiVESWidget *, boolean state) |
LiVESWidget * | lives_standard_button_new_from_stock (const char *stock_id, const char *label, int width, int height) |
LiVESWidget * | lives_standard_menu_new (void) |
LiVESWidget * | lives_standard_menu_item_new (void) |
LiVESWidget * | lives_standard_menu_item_new_with_label (const char *labeltext) |
LiVESWidget * | lives_standard_image_menu_item_new_with_label (const char *labeltext) |
LiVESWidget * | lives_standard_image_menu_item_new_from_stock (const char *stock_id, LiVESAccelGroup *accel_group) |
LiVESWidget * | lives_standard_radio_menu_item_new_with_label (LiVESSList *group, const char *labeltext) |
LiVESWidget * | lives_standard_check_menu_item_new_with_label (const char *labeltext, boolean active) |
LiVESWidget * | lives_standard_check_menu_item_new_for_var (const char *ltext, boolean *var, boolean invert) |
LiVESWidget * | lives_standard_switch_new (const char *labeltext, boolean active, LiVESBox *, const char *tooltip) |
LiVESWidget * | lives_standard_vpaned_new (void) |
LiVESWidget * | lives_standard_hpaned_new (void) |
LiVESWidget * | lives_standard_notebook_new (const LiVESWidgetColor *bg_color, const LiVESWidgetColor *act_color) |
LiVESWidget * | lives_standard_label_new (const char *labeltext) |
LiVESWidget * | lives_standard_label_new_with_mnemonic_widget (const char *text, LiVESWidget *mnemonic_widget) |
LiVESWidget * | lives_standard_label_new_with_tooltips (const char *text, LiVESBox *box, const char *tips) |
LiVESWidget * | lives_standard_formatted_label_new (const char *text) |
char * | lives_big_and_bold (const char *fmt,...) |
void | lives_label_chomp (LiVESLabel *) |
LiVESWidget * | lives_standard_drawing_area_new (LiVESGuiCallback, lives_painter_surface_t **) |
LiVESWidget * | lives_standard_frame_new (const char *labeltext, float xalign, boolean invisible_outline) |
LiVESWidget * | lives_standard_check_button_new (const char *labeltext, boolean active, LiVESBox *, const char *tooltip) |
LiVESWidget * | lives_glowing_check_button_new (const char *labeltext, LiVESBox *, const char *tooltip, boolean *togglevalue) |
LiVESWidget * | lives_standard_radio_button_new (const char *labeltext, LiVESSList **rbgroup, LiVESBox *, const char *tooltip) |
LiVESWidget * | lives_standard_spin_button_new (const char *labeltext, double val, double min, double max, double step, double page, int dp, LiVESBox *, const char *tooltip) |
LiVESWidget * | lives_standard_combo_new (const char *labeltext, LiVESList *list, LiVESBox *, const char *tooltip) |
LiVESWidget * | lives_standard_combo_new_with_model (LiVESTreeModel *, LiVESBox *) |
LiVESWidget * | lives_standard_entry_new (const char *labeltext, const char *txt, int dispwidth, int maxchars, LiVESBox *, const char *tooltip) |
LiVESWidget * | lives_standard_direntry_new (const char *labeltext, const char *txt, int dispwidth, int maxchars, LiVESBox *, const char *tooltip) |
LiVESWidget * | lives_standard_fileentry_new (const char *labeltext, const char *txt, const char *defdir, int dispwidth, int maxchars, LiVESBox *box, const char *tooltip) |
LiVESWidget * | lives_standard_progress_bar_new (void) |
LiVESWidget * | lives_standard_font_chooser_new (void) |
LiVESWidget * | lives_standard_lock_button_new (boolean is_locked, int width, int height, const char *label, const char *tooltip) |
boolean | lives_lock_button_get_locked (LiVESButton *) |
boolean | lives_lock_button_toggle (LiVESButton *) |
boolean | lives_dialog_set_button_layout (LiVESDialog *, LiVESButtonBoxStyle bstyle) |
LiVESWidget * | lives_standard_dialog_new (const char *title, boolean add_std_buttons, int width, int height) |
LiVESWidget * | lives_dialog_add_button_from_stock (LiVESDialog *, const char *stock_id, const char *label, int response_id) |
LiVESWidget * | lives_standard_hruler_new (void) |
LiVESWidget * | lives_standard_scrolled_window_new (int width, int height, LiVESWidget *child) |
double | lives_scrolled_window_scroll_to (LiVESScrolledWindow *, LiVESPositionType pos) |
LiVESWidget * | lives_standard_expander_new (const char *labeltext, LiVESBox *parent, LiVESWidget *child) |
LiVESWidget * | lives_volume_button_new (LiVESOrientation orientation, LiVESAdjustment *, double volume) |
LiVESWidget * | lives_standard_file_button_new (boolean is_dir, const char *def_dir) |
LiVESWidget * | lives_standard_color_button_new (LiVESBox *parent, const char *name, boolean use_alpha, lives_colRGBA64_t *rgba, LiVESWidget **sb_red, LiVESWidget **sb_green, LiVESWidget **sb_blue, LiVESWidget **sb_alpha) |
LiVESWidget * | lives_standard_text_view_new (const char *text, LiVESTextBuffer *tbuff) |
LiVESWidget * | lives_standard_table_new (uint32_t rows, uint32_t cols, boolean homogeneous) |
LiVESToolItem * | lives_standard_menu_tool_button_new (LiVESWidget *icon, const char *label) |
LiVESXCursor * | lives_cursor_new_from_pixbuf (LiVESXDisplay *, LiVESPixbuf *, int x, int y) |
void | set_button_image_border_colour (LiVESButton *, LiVESWidgetState state, LiVESWidgetColor *) |
void | lives_widget_apply_theme (LiVESWidget *, LiVESWidgetState state) |
void | lives_widget_apply_theme_dimmed (LiVESWidget *, LiVESWidgetState state, int dimval) |
void | set_child_dimmed_colour (LiVESWidget *, int dim) |
void | set_child_colour (LiVESWidget *, boolean set_all) |
void | lives_widget_apply_theme2 (LiVESWidget *, LiVESWidgetState state, boolean set_fg) |
void | lives_widget_apply_theme_dimmed2 (LiVESWidget *, LiVESWidgetState state, int dimval) |
void | set_child_dimmed_colour2 (LiVESWidget *, int dim) |
void | set_child_alt_colour (LiVESWidget *, boolean set_all) |
void | set_child_alt_colour_prelight (LiVESWidget *) |
void | lives_widget_apply_theme3 (LiVESWidget *, LiVESWidgetState state) |
void | set_child_colour3 (LiVESWidget *, boolean set_all) |
boolean | lives_widget_set_sensitive_with (LiVESWidget *, LiVESWidget *other) |
boolean | lives_widget_set_show_hide_with (LiVESWidget *, LiVESWidget *other) |
boolean | lives_image_scale (LiVESImage *, int width, int height, LiVESInterpType interp_type) |
LiVESPixbuf * | lives_pixbuf_new_from_stock_at_size (const char *stock_id, LiVESIconSize size, int x, int y) |
LiVESWidget * | lives_image_new_from_stock_at_size (const char *stock_id, LiVESIconSize size, int x, int y) |
boolean | lives_widget_queue_draw_if_visible (LiVESWidget *) |
boolean | lives_widget_queue_draw_and_update (LiVESWidget *) |
boolean | global_recent_manager_add (const char *file_name) |
boolean | lives_cursor_unref (LiVESXCursor *) |
boolean | lives_tree_store_find_iter (LiVESTreeStore *, int col, const char *val, LiVESTreeIter *existing, LiVESTreeIter *newiter) |
boolean | lives_widget_context_update (void) |
LiVESWidget * | lives_menu_add_separator (LiVESMenu *) |
void | lives_menu_item_set_text (LiVESWidget *, const char *text, boolean use_mnemonic) |
const char * | lives_menu_item_get_text (LiVESWidget *) |
boolean | lives_widget_get_fg_color (LiVESWidget *, LiVESWidgetColor *) |
boolean | lives_widget_set_show_hide_parent (LiVESWidget *) |
boolean | lives_window_center (LiVESWindow *) |
boolean | lives_window_uncenter (LiVESWindow *) |
boolean | lives_entry_set_completion_from_list (LiVESEntry *, LiVESList *) |
boolean | lives_widget_unparent (LiVESWidget *) |
void | lives_tooltips_copy (LiVESWidget *dest, LiVESWidget *source) |
char * | lives_text_view_get_text (LiVESTextView *) |
boolean | lives_text_view_set_text (LiVESTextView *, const char *text, int len) |
boolean | lives_text_buffer_insert_at_end (LiVESTextBuffer *, const char *text) |
void | lives_general_button_clicked (LiVESButton *, livespointer data_to_free) |
boolean | lives_spin_button_configure (LiVESSpinButton *, double value, double lower, double upper, double step_increment, double page_increment) |
size_t | calc_spin_button_width (double min, double max, int dp) |
double | lives_spin_button_get_snapval (LiVESSpinButton *, double val) |
int | get_box_child_index (LiVESBox *, LiVESWidget *child) |
boolean | lives_box_pack_top (LiVESBox *, LiVESWidget *child, boolean expand, boolean fill, uint32_t padding) |
boolean | lives_container_child_set_shrinkable (LiVESContainer *, LiVESWidget *child, boolean val) |
boolean | set_submenu_colours (LiVESMenu *, LiVESWidgetColor *colf, LiVESWidgetColor *colb) |
boolean | toggle_sets_sensitive (LiVESToggleButton *, LiVESWidget *, boolean invert) |
set callbacks More... | |
boolean | toggle_toolbutton_sets_sensitive (LiVESToggleToolButton *, LiVESWidget *, boolean invert) |
boolean | menu_sets_sensitive (LiVESCheckMenuItem *, LiVESWidget *, boolean invert) |
boolean | toggle_sets_visible (LiVESToggleButton *, LiVESWidget *, boolean invert) |
boolean | toggle_toolbutton_sets_visible (LiVESToggleToolButton *, LiVESWidget *, boolean invert) |
boolean | menu_sets_visible (LiVESCheckMenuItem *, LiVESWidget *, boolean invert) |
boolean | toggle_sets_sensitive_cond (LiVESToggleButton *, LiVESWidget *, livespointer condsens, livespointer condinsens, boolean invert) |
boolean | toggle_toggles_var (LiVESToggleButton *, boolean *var, boolean invert) |
boolean | label_act_toggle (LiVESWidget *, LiVESXEventButton *, LiVESWidget *) |
boolean | widget_act_toggle (LiVESWidget *, LiVESWidget *) |
boolean | widget_inact_toggle (LiVESWidget *, LiVESWidget *) |
boolean | toggle_button_toggle (LiVESToggleButton *) |
boolean | label_act_lockbutton (LiVESWidget *, LiVESXEventButton *, LiVESButton *) |
void | funkify_dialog (LiVESWidget *dialog) |
#define USE_REVEAL - not working here More... | |
EXPOSE_FN_PROTOTYPE (draw_cool_toggle) | |
void | lives_cool_toggled (LiVESWidget *tbutton, livespointer) |
boolean | unhide_cursor (LiVESXWindow *) |
void | hide_cursor (LiVESXWindow *) |
boolean | set_tooltips_state (LiVESWidget *, boolean state) |
boolean | get_border_size (LiVESWidget *win, int *bx, int *by) |
boolean | lives_window_get_inner_size (LiVESWindow *, int *x, int *y) |
LiVESWidget * | lives_standard_hseparator_new (void) |
LiVESWidget * | lives_standard_vseparator_new (void) |
LiVESWidget * | add_hsep_to_box (LiVESBox *) |
LiVESWidget * | add_vsep_to_box (LiVESBox *) |
LiVESWidget * | add_fill_to_box (LiVESBox *) |
LiVESWidget * | add_spring_to_box (LiVESBox *, int min) |
LiVESWidget * | lives_toolbar_insert_space (LiVESToolbar *) |
LiVESWidget * | lives_toolbar_insert_label (LiVESToolbar *, const char *labeltext, LiVESWidget *actwidg) |
LiVESWidget * | lives_standard_tool_button_new (LiVESToolbar *, GtkWidget *icon_widget, const char *label, const char *tooltips) |
boolean | lives_tool_button_set_border_color (LiVESWidget *button, LiVESWidgetState state, LiVESWidgetColor *) |
LiVESWidget * | lives_glowing_tool_button_new (const char *labeltext, LiVESToolbar *tbar, const char *tooltip, boolean *togglevalue) |
boolean | lives_accel_path_disconnect (LiVESAccelGroup *, const char *path) |
boolean | lives_widget_get_mod_mask (LiVESWidget *, LiVESXModifierType *modmask) |
boolean | lives_widget_nullify_with (LiVESWidget *, void **) |
boolean | lives_widget_destroy_with (LiVESWidget *, LiVESWidget *dieplease) |
void * | lives_fg_run (weed_plant_t *lpt, void *retval) |
void | lives_set_cursor_style (lives_cursor_t cstyle, LiVESWidget *) |
LiVESList * | get_textsizes_list (void) |
const char * | lives_textsize_to_string (int val) |
Variables | |
char | LIVES_STOCK_LABEL_CANCEL [32] |
stock labels, these are set up in widget_helper_init() More... | |
char | LIVES_STOCK_LABEL_OK [32] |
char | LIVES_STOCK_LABEL_YES [32] |
char | LIVES_STOCK_LABEL_NO [32] |
char | LIVES_STOCK_LABEL_SAVE [32] |
char | LIVES_STOCK_LABEL_SAVE_AS [32] |
char | LIVES_STOCK_LABEL_OPEN [32] |
char | LIVES_STOCK_LABEL_QUIT [32] |
char | LIVES_STOCK_LABEL_APPLY [32] |
char | LIVES_STOCK_LABEL_CLOSE [32] |
char | LIVES_STOCK_LABEL_REVERT [32] |
char | LIVES_STOCK_LABEL_REFRESH [32] |
char | LIVES_STOCK_LABEL_DELETE [32] |
char | LIVES_STOCK_LABEL_SELECT_ALL [32] |
char | LIVES_STOCK_LABEL_GO_FORWARD [32] |
char | LIVES_STOCK_LABEL_MEDIA_FORWARD [32] |
char | LIVES_STOCK_LABEL_MEDIA_REWIND [32] |
char | LIVES_STOCK_LABEL_MEDIA_STOP [32] |
char | LIVES_STOCK_LABEL_MEDIA_PLAY [32] |
char | LIVES_STOCK_LABEL_MEDIA_PAUSE [32] |
char | LIVES_STOCK_LABEL_MEDIA_RECORD [32] |
char | LIVES_STOCK_LABEL_CLOSE_WINDOW [32] |
char | LIVES_STOCK_LABEL_SKIP [32] |
char | LIVES_STOCK_LABEL_SELECT [32] |
widget_opts_t | widget_opts |
widget_opts_t | def_widget_opts |
#define BUTTON_DIM_VAL (0.4 * 65535.) |
Definition at line 1016 of file widget-helper.h.
#define DEFDIR_KEY "def_dir" |
Definition at line 1490 of file widget-helper.h.
#define FILESEL_TYPE_KEY "filesel_type" |
Definition at line 1493 of file widget-helper.h.
#define FILTER_KEY "filter" |
Definition at line 1489 of file widget-helper.h.
#define HIDDEN_KEY "hidden" |
Definition at line 1485 of file widget-helper.h.
#define ISDIR_KEY "is_dir" |
Definition at line 1488 of file widget-helper.h.
#define LIVES_ELLIPSIZE_END LINGO_ELLIPSIZE_END |
Definition at line 114 of file widget-helper.h.
#define LIVES_ELLIPSIZE_MIDDLE LINGO_ELLIPSIZE_MIDDLE |
Definition at line 113 of file widget-helper.h.
#define LIVES_ELLIPSIZE_NONE LINGO_ELLIPSIZE_NONE |
Definition at line 111 of file widget-helper.h.
#define LIVES_ELLIPSIZE_START LINGO_ELLIPSIZE_START |
Definition at line 112 of file widget-helper.h.
#define LIVES_EXPAND_DEFAULT (LIVES_EXPAND_DEFAULT_HEIGHT | LIVES_EXPAND_DEFAULT_WIDTH) |
Definition at line 1314 of file widget-helper.h.
#define LIVES_EXPAND_DEFAULT_HEIGHT 1 |
Definition at line 1312 of file widget-helper.h.
#define LIVES_EXPAND_DEFAULT_WIDTH 2 |
Definition at line 1313 of file widget-helper.h.
#define LIVES_EXPAND_EXTRA (LIVES_EXPAND_EXTRA_HEIGHT | LIVES_EXPAND_EXTRA_WIDTH) |
Definition at line 1317 of file widget-helper.h.
#define LIVES_EXPAND_EXTRA_HEIGHT 4 |
Definition at line 1315 of file widget-helper.h.
#define LIVES_EXPAND_EXTRA_WIDTH 8 |
Definition at line 1316 of file widget-helper.h.
#define LIVES_EXPAND_NONE 0 |
Definition at line 1311 of file widget-helper.h.
#define LIVES_HAS_DEVICE_MANAGER 0 |
Definition at line 25 of file widget-helper.h.
#define LIVES_HAS_GRID_WIDGET 0 |
Definition at line 22 of file widget-helper.h.
#define LIVES_HAS_IMAGE_MENU_ITEM 0 |
Definition at line 24 of file widget-helper.h.
#define LIVES_HAS_SWITCH_WIDGET 0 |
Definition at line 23 of file widget-helper.h.
#define LIVES_JUSTIFY_DEFAULT (def_widget_opts.justify) |
Definition at line 1289 of file widget-helper.h.
#define LIVES_LIVES_STOCK_AUDIO "lives-audio" |
Definition at line 1342 of file widget-helper.h.
#define LIVES_LIVES_STOCK_FULLSCREEN "lives-fullscreen" |
Definition at line 1344 of file widget-helper.h.
#define LIVES_LIVES_STOCK_LOOP "lives-loop" |
Definition at line 1347 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PLAY_SEL "lives-playsel" |
Definition at line 1343 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PREF_DECODING "lives-pref_decoding" |
Definition at line 1351 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PREF_DIRECTORY "lives-pref_directory" |
Definition at line 1352 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PREF_EFFECTS "lives-pref_effects" |
Definition at line 1353 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PREF_ENCODING "lives-pref_encoding" |
Definition at line 1354 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PREF_GUI "lives-pref_gui" |
Definition at line 1350 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PREF_JACK "lives-pref_jack" |
Definition at line 1355 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PREF_MIDI "lives-pref_midi" |
Definition at line 1356 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PREF_MISC "lives-pref_misc" |
Definition at line 1357 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PREF_MULTITRACK "lives-pref_multitrack" |
Definition at line 1358 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PREF_NET "lives-pref_net" |
Definition at line 1359 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PREF_PLAYBACK "lives-pref_playback" |
Definition at line 1360 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PREF_RECORD "lives-pref_record" |
Definition at line 1361 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PREF_THEMES "lives-pref_themes" |
Definition at line 1362 of file widget-helper.h.
#define LIVES_LIVES_STOCK_PREF_WARNING "lives-pref_warning" |
Definition at line 1363 of file widget-helper.h.
#define LIVES_LIVES_STOCK_SEPWIN "lives-sepwin" |
Definition at line 1345 of file widget-helper.h.
#define LIVES_LIVES_STOCK_VOLUME_MUTE "lives-volume_mute" |
Definition at line 1346 of file widget-helper.h.
#define LIVES_LIVES_STOCK_ZOOM_IN "lives-zoom-in" |
Definition at line 1348 of file widget-helper.h.
#define LIVES_LIVES_STOCK_ZOOM_OUT "lives-zoom-out" |
Definition at line 1349 of file widget-helper.h.
#define LIVES_SHOULD_EXPAND (widget_opts.expand != LIVES_EXPAND_NONE) |
Definition at line 1319 of file widget-helper.h.
#define LIVES_SHOULD_EXPAND_DEFAULT (widget_opts.expand == LIVES_EXPAND_DEFAULT) |
Definition at line 1320 of file widget-helper.h.
#define LIVES_SHOULD_EXPAND_DEFAULT_FOR | ( | box | ) | ((LIVES_IS_HBOX(box) && LIVES_SHOULD_EXPAND_DEFAULT_WIDTH) || (LIVES_IS_VBOX(box) && LIVES_EXPAND_DEFAULT_HEIGHT)) |
Definition at line 1332 of file widget-helper.h.
#define LIVES_SHOULD_EXPAND_DEFAULT_HEIGHT (LIVES_SHOULD_EXPAND_HEIGHT && !LIVES_SHOULD_EXPAND_EXTRA_HEIGHT) |
Definition at line 1330 of file widget-helper.h.
#define LIVES_SHOULD_EXPAND_DEFAULT_WIDTH (LIVES_SHOULD_EXPAND_WIDTH && !LIVES_SHOULD_EXPAND_EXTRA_WIDTH) |
Definition at line 1329 of file widget-helper.h.
#define LIVES_SHOULD_EXPAND_EXTRA (widget_opts.expand == LIVES_EXPAND_EXTRA) |
Definition at line 1321 of file widget-helper.h.
#define LIVES_SHOULD_EXPAND_EXTRA_FOR | ( | box | ) | ((LIVES_IS_HBOX(box) && LIVES_SHOULD_EXPAND_EXTRA_WIDTH) || (LIVES_IS_VBOX(box) && LIVES_SHOULD_EXPAND_EXTRA_HEIGHT)) |
Definition at line 1334 of file widget-helper.h.
#define LIVES_SHOULD_EXPAND_EXTRA_HEIGHT (widget_opts.expand & LIVES_EXPAND_EXTRA_HEIGHT) |
Definition at line 1327 of file widget-helper.h.
#define LIVES_SHOULD_EXPAND_EXTRA_WIDTH (widget_opts.expand & LIVES_EXPAND_EXTRA_WIDTH) |
Definition at line 1326 of file widget-helper.h.
#define LIVES_SHOULD_EXPAND_FOR | ( | box | ) | (LIVES_SHOULD_EXPAND_DEFAULT_FOR(box) || LIVES_SHOULD_EXPAND_EXTRA_FOR(box)) |
Definition at line 1336 of file widget-helper.h.
#define LIVES_SHOULD_EXPAND_HEIGHT (widget_opts.expand & (LIVES_EXPAND_DEFAULT_HEIGHT | LIVES_EXPAND_EXTRA_HEIGHT)) |
Definition at line 1324 of file widget-helper.h.
#define LIVES_SHOULD_EXPAND_WIDTH (widget_opts.expand & (LIVES_EXPAND_DEFAULT_WIDTH | LIVES_EXPAND_EXTRA_WIDTH)) |
Definition at line 1323 of file widget-helper.h.
#define lives_standard_button_get_label | ( | b | ) | lives_button_get_label(b) |
Definition at line 1045 of file widget-helper.h.
#define lives_standard_button_new | ( | w, | |
h | |||
) | lives_button_new() |
Definition at line 1042 of file widget-helper.h.
#define lives_standard_button_new_with_label | ( | l, | |
w, | |||
h | |||
) | lives_button_new_with_label(l) |
Definition at line 1043 of file widget-helper.h.
#define lives_standard_button_set_image | ( | b, | |
i | |||
) | lives_button_set_image(b, i) |
Definition at line 1046 of file widget-helper.h.
#define lives_standard_button_set_label | ( | b, | |
l | |||
) | ; lives_button_set_label(b, l) |
Definition at line 1044 of file widget-helper.h.
#define LIVES_TEXT_SIZE_LARGE "large" |
Definition at line 1370 of file widget-helper.h.
#define LIVES_TEXT_SIZE_MEDIUM "medium" |
Definition at line 1369 of file widget-helper.h.
#define LIVES_TEXT_SIZE_NORMAL LIVES_TEXT_SIZE_MEDIUM |
Definition at line 1373 of file widget-helper.h.
#define LIVES_TEXT_SIZE_SMALL "small" |
Definition at line 1368 of file widget-helper.h.
#define LIVES_TEXT_SIZE_X_LARGE "x-large" |
Definition at line 1371 of file widget-helper.h.
#define LIVES_TEXT_SIZE_X_SMALL "x-small" |
Definition at line 1367 of file widget-helper.h.
#define LIVES_TEXT_SIZE_XX_LARGE "xx-large" |
Definition at line 1372 of file widget-helper.h.
#define LIVES_TEXT_SIZE_XX_SMALL "xx-small" |
Definition at line 1366 of file widget-helper.h.
#define LOCK_BUTTON_HEIGHT 24 |
Definition at line 1019 of file widget-helper.h.
#define LOCK_BUTTON_WIDTH 24 |
sizes for the lock button
Definition at line 1018 of file widget-helper.h.
#define LONG_ENTRY_WIDTH ((int)(100.*widget_opts.scale)) |
Definition at line 29 of file widget-helper.h.
#define M_PI 3.1415926536 |
Definition at line 19 of file widget-helper.h.
#define MEDIUM_ENTRY_WIDTH ((int)(60.*widget_opts.scale)) |
Definition at line 31 of file widget-helper.h.
#define MIN_SPINBUTTON_SIZE 6 |
min digits for spinbuttons
Definition at line 27 of file widget-helper.h.
#define N_TEXT_SIZES 7 |
Definition at line 1374 of file widget-helper.h.
#define PARAM_NUMBER_KEY "param_number" |
Definition at line 1494 of file widget-helper.h.
#define RFX_KEY "rfx" |
Definition at line 1491 of file widget-helper.h.
#define SECLIST_KEY "secondary_list" |
Definition at line 1486 of file widget-helper.h.
#define SECLIST_VAL_KEY "secondary_list_value" |
Definition at line 1487 of file widget-helper.h.
#define SHORT_ENTRY_WIDTH ((int)(40.*widget_opts.scale)) |
Definition at line 30 of file widget-helper.h.
#define SHORTER_ENTRY_WIDTH (MEDIUM_ENTRY_WIDTH >> 1) |
Definition at line 32 of file widget-helper.h.
#define TEXTWIDGET_KEY "def_dir" |
Definition at line 1492 of file widget-helper.h.
#define W_BORDER_WIDTH 10 |
Definition at line 51 of file widget-helper.h.
#define W_CSS_MIN_HEIGHT 18 |
Definition at line 48 of file widget-helper.h.
#define W_CSS_MIN_WIDTH -1 |
Definition at line 47 of file widget-helper.h.
#define W_FILL_LENGTH (W_PACKING_WIDTH * 4) |
Definition at line 52 of file widget-helper.h.
#define W_PACKING_HEIGHT 6 |
Definition at line 50 of file widget-helper.h.
#define W_PACKING_WIDTH 10 |
Definition at line 49 of file widget-helper.h.
#define WH_LAYOUT_KEY "_wh_layout" |
Definition at line 1495 of file widget-helper.h.
#define WIDGET_HELPER_GLOBAL_INLINE inline |
Definition at line 11 of file widget-helper.h.
#define WIDGET_HELPER_LOCAL_INLINE static inline |
Definition at line 12 of file widget-helper.h.
typedef int lives_expand_t |
Definition at line 1310 of file widget-helper.h.
typedef LingoEllipsizeMode LiVESEllipsizeMode |
Definition at line 110 of file widget-helper.h.
enum lives_cursor_t |
Definition at line 1291 of file widget-helper.h.
enum lives_display_t |
Enumerator | |
---|---|
LIVES_DISPLAY_TYPE_UNKNOWN | |
LIVES_DISPLAY_TYPE_X11 | |
LIVES_DISPLAY_TYPE_WIN32 | |
LIVES_DISPLAY_TYPE_WAYLAND |
Definition at line 34 of file widget-helper.h.
LiVESWidget* add_fill_to_box | ( | LiVESBox * | ) |
Definition at line 12377 of file widget-helper.c.
Referenced by add_audio_options(), add_spring_to_box(), amixer_show(), autolives_pre_dialog(), create_cdtrack_dialog(), create_comments_dialog(), create_insert_dialog(), create_location_dialog(), create_new_pb_speed(), create_processing(), create_rename_dialog(), do_startup_interface_query(), lives_layout_add_fill(), on_rte_info_clicked(), on_vpp_advanced_clicked(), and prompt_for_script_name().
LiVESWidget* add_hsep_to_box | ( | LiVESBox * | ) |
Definition at line 12355 of file widget-helper.c.
Referenced by autolives_pre_dialog(), create_camwindow(), create_insert_dialog(), create_pandh_dialog(), lives_layout_add_separator(), and make_preview_box().
LiVESList* add_sorted_list_to_menu | ( | LiVESMenu * | , |
LiVESList * | |||
) |
Definition at line 11051 of file widget-helper.c.
LiVESWidget* add_spring_to_box | ( | LiVESBox * | , |
int | min | ||
) |
Definition at line 12421 of file widget-helper.c.
Referenced by run_youtube_dialog().
LiVESWidget* add_vsep_to_box | ( | LiVESBox * | ) |
Definition at line 12365 of file widget-helper.c.
LiVESWidget* align_horizontal_with | ( | LiVESWidget * | thingtoadd, |
LiVESWidget * | thingtoalignwith | ||
) |
Definition at line 7467 of file widget-helper.c.
size_t calc_spin_button_width | ( | double | min, |
double | max, | ||
int | dp | ||
) |
Definition at line 9384 of file widget-helper.c.
Referenced by lives_standard_spin_button_new(), and load_rfx_preview().
boolean clear_widget_bg | ( | LiVESWidget * | widget, |
lives_painter_surface_t * | |||
) |
Definition at line 11108 of file widget-helper.c.
Referenced by add_to_playframe(), all_config(), config_laud_draw(), config_raud_draw(), config_vid_draw(), do_quick_switch(), fade_background(), and resize().
boolean clear_widget_bg_area | ( | LiVESWidget * | widget, |
lives_painter_surface_t * | s, | ||
double | x, | ||
double | y, | ||
double | width, | ||
double | height | ||
) |
Definition at line 11122 of file widget-helper.c.
EXPOSE_FN_PROTOTYPE | ( | draw_cool_toggle | ) |
void funkify_dialog | ( | LiVESWidget * | dialog | ) |
#define USE_REVEAL - not working here
Definition at line 12062 of file widget-helper.c.
boolean get_border_size | ( | LiVESWidget * | win, |
int * | bx, | ||
int * | by | ||
) |
Definition at line 12255 of file widget-helper.c.
Referenced by choose_file_with_preview(), lazy_startup_checks(), resize(), and resize_message_area().
int get_box_child_index | ( | LiVESBox * | , |
LiVESWidget * | child | ||
) |
Definition at line 11731 of file widget-helper.c.
LiVESList* get_textsizes_list | ( | void | ) |
Definition at line 12618 of file widget-helper.c.
boolean global_recent_manager_add | ( | const char * | file_name | ) |
Definition at line 7394 of file widget-helper.c.
void hide_cursor | ( | LiVESXWindow * | ) |
Definition at line 12018 of file widget-helper.c.
Referenced by on_sepwin_activate().
boolean hide_warn_image | ( | LiVESWidget * | ) |
Definition at line 7899 of file widget-helper.c.
boolean is_standard_widget | ( | LiVESWidget * | ) |
Definition at line 154 of file widget-helper.c.
Referenced by all_config(), lives_button_get_label(), lives_button_set_image_from_stock(), lives_button_set_label(), lives_dialog_add_button_from_stock(), lives_progress_bar_pulse(), lives_progress_bar_set_fraction(), and lives_spin_button_set_value().
boolean label_act_lockbutton | ( | LiVESWidget * | , |
LiVESXEventButton * | , | ||
LiVESButton * | |||
) |
Definition at line 10505 of file widget-helper.c.
boolean label_act_toggle | ( | LiVESWidget * | , |
LiVESXEventButton * | , | ||
LiVESWidget * | |||
) |
Definition at line 11476 of file widget-helper.c.
Referenced by amixer_show().
boolean lives_accel_group_connect | ( | LiVESAccelGroup * | , |
uint32_t | key, | ||
LiVESXModifierType | mod, | ||
LiVESAccelFlags | flags, | ||
LiVESWidgetClosure * | closure | ||
) |
Definition at line 2927 of file widget-helper.c.
Referenced by mt_swap_play_pause(), and play_file().
boolean lives_accel_group_disconnect | ( | LiVESAccelGroup * | , |
LiVESWidgetClosure * | closure | ||
) |
Definition at line 2940 of file widget-helper.c.
Referenced by mt_swap_play_pause().
LiVESAccelGroup* lives_accel_group_new | ( | void | ) |
Definition at line 2915 of file widget-helper.c.
Referenced by amixer_show(), create_cds_dialog(), create_cdtrack_dialog(), create_clip_info_window(), create_insert_dialog(), create_location_dialog(), create_new_pb_speed(), create_opensel_dialog(), create_prefs_dialog(), create_processing(), create_rename_dialog(), create_resaudw(), create_text_window(), do_audio_choice_dialog(), filter_cleanup(), lives_dialog_add_escape(), multitrack(), on_fx_pre_activate(), and on_vpp_advanced_clicked().
boolean lives_accel_groups_activate | ( | LiVESWidgetObject * | object, |
uint32_t | key, | ||
LiVESXModifierType | mod | ||
) |
Definition at line 3033 of file widget-helper.c.
Referenced by handle_cached_keys().
boolean lives_accel_path_disconnect | ( | LiVESAccelGroup * | , |
const char * | path | ||
) |
Definition at line 12563 of file widget-helper.c.
Referenced by play_file().
uint32_t lives_accelerator_get_default_mod_mask | ( | ) |
Definition at line 7366 of file widget-helper.c.
boolean lives_adjustment_clamp_page | ( | LiVESAdjustment * | , |
double | lower, | ||
double | upper | ||
) |
Definition at line 5645 of file widget-helper.c.
Referenced by mt_clip_select().
double lives_adjustment_get_lower | ( | LiVESAdjustment * | ) |
Definition at line 5536 of file widget-helper.c.
Referenced by lives_ruler_set_upper(), and lives_scrolled_window_scroll_to().
double lives_adjustment_get_page_size | ( | LiVESAdjustment * | ) |
Definition at line 5549 of file widget-helper.c.
Referenced by lives_scrolled_window_scroll_to(), and mt_clip_select().
double lives_adjustment_get_step_increment | ( | LiVESAdjustment * | ) |
Definition at line 5562 of file widget-helper.c.
double lives_adjustment_get_upper | ( | LiVESAdjustment * | ) |
Definition at line 5523 of file widget-helper.c.
Referenced by lives_ruler_set_lower(), lives_scrolled_window_scroll_to(), mt_clip_select(), and pump_io_chan().
double lives_adjustment_get_value | ( | LiVESAdjustment * | ) |
Definition at line 5575 of file widget-helper.c.
Referenced by msg_area_scroll(), on_msg_area_scroll(), and scroll_track_by_scrollbar().
LiVESAdjustment* lives_adjustment_new | ( | double | value, |
double | lower, | ||
double | upper, | ||
double | step_increment, | ||
double | page_increment, | ||
double | page_size | ||
) |
Definition at line 3196 of file widget-helper.c.
Referenced by amixer_add_channel_slider(), and lives_standard_spin_button_new().
boolean lives_adjustment_set_lower | ( | LiVESAdjustment * | , |
double | lower | ||
) |
Definition at line 5597 of file widget-helper.c.
boolean lives_adjustment_set_page_size | ( | LiVESAdjustment * | , |
double | page_size | ||
) |
Definition at line 5610 of file widget-helper.c.
Referenced by add_audio_track(), and scroll_tracks().
boolean lives_adjustment_set_step_increment | ( | LiVESAdjustment * | , |
double | step_increment | ||
) |
Definition at line 5623 of file widget-helper.c.
Referenced by lives_spin_button_set_step_increment().
boolean lives_adjustment_set_upper | ( | LiVESAdjustment * | , |
double | upper | ||
) |
Definition at line 5584 of file widget-helper.c.
Referenced by add_audio_track(), and scroll_tracks().
boolean lives_adjustment_set_value | ( | LiVESAdjustment * | , |
double | value | ||
) |
Definition at line 5636 of file widget-helper.c.
Referenced by lives_scrolled_window_scroll_to(), on_msg_area_scroll(), pump_io_chan(), and scroll_tracks().
LiVESWidget* lives_alignment_new | ( | float | xalign, |
float | yalign, | ||
float | xscale, | ||
float | yscale | ||
) |
Definition at line 3567 of file widget-helper.c.
Referenced by lives_layout_hbox_new(), and widget_add_preview().
boolean lives_alignment_set | ( | LiVESWidget * | , |
float | xalign, | ||
float | yalign, | ||
float | xscale, | ||
float | yscale | ||
) |
Definition at line 3584 of file widget-helper.c.
LiVESWidget* lives_arrow_new | ( | LiVESArrowType | , |
LiVESShadowType | |||
) |
Definition at line 3469 of file widget-helper.c.
Referenced by add_audio_track(), and mt_init_start_end_spins().
char* lives_big_and_bold | ( | const char * | fmt, |
... | |||
) |
Definition at line 8648 of file widget-helper.c.
Referenced by create_rename_dialog(), on_vpp_advanced_clicked(), and run_youtube_dialog().
LiVESWidget* lives_bin_get_child | ( | LiVESBin * | ) |
Definition at line 5514 of file widget-helper.c.
Referenced by lives_combo_get_active_text(), lives_combo_get_entry(), lives_combo_set_active_string(), lives_menu_item_get_text(), lives_menu_item_set_text(), on_rte_info_clicked(), and set_mt_colours().
boolean lives_box_pack_end | ( | LiVESBox * | , |
LiVESWidget * | child, | ||
boolean | expand, | ||
boolean | fill, | ||
uint32_t | padding | ||
) |
Definition at line 3291 of file widget-helper.c.
Referenced by add_mt_param_box(), amixer_show(), and create_camwindow().
boolean lives_box_pack_first | ( | LiVESBox * | , |
LiVESWidget * | child, | ||
boolean | expand, | ||
boolean | fill, | ||
uint32_t | padding | ||
) |
Definition at line 7480 of file widget-helper.c.
Referenced by add_resnn_label().
boolean lives_box_pack_start | ( | LiVESBox * | , |
LiVESWidget * | child, | ||
boolean | expand, | ||
boolean | fill, | ||
uint32_t | padding | ||
) |
Definition at line 3281 of file widget-helper.c.
Referenced by add_audio_track(), add_context_label(), add_fill_to_box(), add_hsep_to_box(), add_mt_param_box(), add_param_label_to_box(), add_param_to_box(), add_video_options(), add_vsep_to_box(), amixer_add_channel_slider(), amixer_show(), autolives_pre_dialog(), create_audfade_dialog(), create_camwindow(), create_cds_dialog(), create_cdtrack_dialog(), create_cleardisk_advanced_dialog(), create_clip_info_window(), create_combo_dialog(), create_comments_dialog(), create_encoder_prep_dialog(), create_insert_dialog(), create_location_dialog(), create_new_pb_speed(), create_opensel_dialog(), create_pandh_dialog(), create_prefs_dialog(), create_processing(), create_rename_dialog(), create_resaudw(), create_text_window(), do_audio_choice_dialog(), do_startup_interface_query(), framedraw_add_label(), funkify_dialog(), lives_box_pack_first(), lives_box_pack_top(), lives_layout_new(), lives_layout_pack(), make_preview_box(), mt_init_start_end_spins(), multitrack(), on_decplug_advanced_clicked(), on_fx_pre_activate(), on_rte_info_clicked(), on_vpp_advanced_clicked(), prompt_for_script_name(), run_youtube_dialog(), set_interactive(), splash_init(), transition_add_in_out(), trash_rb(), and widget_add_preview().
boolean lives_box_pack_top | ( | LiVESBox * | , |
LiVESWidget * | child, | ||
boolean | expand, | ||
boolean | fill, | ||
uint32_t | padding | ||
) |
Definition at line 11742 of file widget-helper.c.
boolean lives_box_reorder_child | ( | LiVESBox * | , |
LiVESWidget * | child, | ||
int | pos | ||
) |
Definition at line 3225 of file widget-helper.c.
Referenced by add_audio_track(), lives_box_pack_first(), and lives_box_pack_top().
boolean lives_box_set_child_packing | ( | LiVESBox * | , |
LiVESWidget * | child, | ||
boolean | expand, | ||
boolean | fill, | ||
uint32_t | padding, | ||
LiVESPackType | pack_type | ||
) |
Definition at line 3234 of file widget-helper.c.
Referenced by lives_widget_set_pack_type().
Definition at line 3213 of file widget-helper.c.
Referenced by add_param_label_to_box(), lives_hbox_new(), and lives_vbox_new().
boolean lives_box_set_spacing | ( | LiVESBox * | , |
int | spacing | ||
) |
Definition at line 3244 of file widget-helper.c.
Referenced by create_resaudw().
boolean lives_button_box_make_first | ( | LiVESButtonBox * | , |
LiVESWidget * | |||
) |
Definition at line 12481 of file widget-helper.c.
Referenced by do_messages_window(), lives_dialog_make_widget_first(), and trash_rb().
boolean lives_button_box_set_button_width | ( | LiVESButtonBox * | , |
LiVESWidget * | button, | ||
int | min_width | ||
) |
Definition at line 12466 of file widget-helper.c.
boolean lives_button_box_set_child_non_homogeneous | ( | LiVESButtonBox * | , |
LiVESWidget * | child, | ||
boolean | set | ||
) |
Definition at line 3372 of file widget-helper.c.
boolean lives_button_box_set_layout | ( | LiVESButtonBox * | , |
LiVESButtonBoxStyle | bstyle | ||
) |
Definition at line 3355 of file widget-helper.c.
Referenced by amixer_show(), lives_button_box_set_button_width(), lives_button_center(), lives_button_uncenter(), lives_dialog_set_button_layout(), and popup_lmap_errors().
boolean lives_button_center | ( | LiVESWidget * | ) |
Definition at line 12502 of file widget-helper.c.
Referenced by lives_dialog_add_button_from_stock().
boolean lives_button_clicked | ( | LiVESButton * | ) |
Definition at line 4368 of file widget-helper.c.
const char* lives_button_get_label | ( | LiVESButton * | ) |
Definition at line 4357 of file widget-helper.c.
boolean lives_button_grab_default_special | ( | LiVESWidget * | ) |
Definition at line 7587 of file widget-helper.c.
Referenced by apply_button_set_enabled(), create_cds_dialog(), create_insert_dialog(), create_new_pb_speed(), create_opensel_dialog(), create_processing(), create_resaudw(), create_text_window(), do_resize_dlg(), on_fx_pre_activate(), on_prefs_apply_clicked(), and on_rte_info_clicked().
LiVESWidget* lives_button_new | ( | void | ) |
Definition at line 4161 of file widget-helper.c.
Referenced by lives_button_new_with_label().
LiVESWidget* lives_button_new_with_label | ( | const char * | label | ) |
Definition at line 4171 of file widget-helper.c.
boolean lives_button_set_border_colour | ( | LiVESWidget * | , |
LiVESWidgetState | state, | ||
LiVESWidgetColor * | |||
) |
Definition at line 4409 of file widget-helper.c.
boolean lives_button_set_image | ( | LiVESButton * | , |
LiVESWidget * | image | ||
) |
Definition at line 4386 of file widget-helper.c.
boolean lives_button_set_image_from_stock | ( | LiVESButton * | , |
const char * | stock_id | ||
) |
tweaks for better icons
Definition at line 4181 of file widget-helper.c.
Referenced by on_effects_paused().
boolean lives_button_set_label | ( | LiVESButton * | , |
const char * | label | ||
) |
Definition at line 4345 of file widget-helper.c.
Referenced by create_cds_dialog(), lives_button_new_with_label(), on_camplay_clicked(), on_camstop_clicked(), on_effects_paused(), and on_liveinp_advanced_clicked().
boolean lives_button_set_relief | ( | LiVESButton * | , |
LiVESReliefStyle | |||
) |
Definition at line 4377 of file widget-helper.c.
boolean lives_button_uncenter | ( | LiVESWidget * | , |
int | normal_width | ||
) |
Definition at line 12512 of file widget-helper.c.
Referenced by lives_dialog_add_button_from_stock().
boolean lives_button_ungrab_default_special | ( | LiVESWidget * | ) |
Definition at line 7572 of file widget-helper.c.
LiVESCellRenderer* lives_cell_renderer_pixbuf_new | ( | void | ) |
Definition at line 5363 of file widget-helper.c.
LiVESCellRenderer* lives_cell_renderer_spin_new | ( | void | ) |
Definition at line 5343 of file widget-helper.c.
LiVESCellRenderer* lives_cell_renderer_text_new | ( | void | ) |
Definition at line 5334 of file widget-helper.c.
LiVESCellRenderer* lives_cell_renderer_toggle_new | ( | void | ) |
Definition at line 5354 of file widget-helper.c.
LiVESWidget* lives_check_button_new | ( | void | ) |
Definition at line 4597 of file widget-helper.c.
Referenced by amixer_show(), and lives_standard_check_button_new().
LiVESWidget* lives_check_button_new_with_label | ( | const char * | label | ) |
Definition at line 4606 of file widget-helper.c.
Referenced by amixer_show().
boolean lives_check_menu_item_get_active | ( | LiVESCheckMenuItem * | ) |
Definition at line 6546 of file widget-helper.c.
Referenced by autolives_toggle(), mt_aparam_view_toggled(), mt_selection_lock(), on_seltrack_activate(), procw_desensitize(), rec_callback(), switch_clip_activate(), toggle_sets_pref(), track_select(), and vj_mode_toggled().
LiVESWidget* lives_check_menu_item_new_with_label | ( | const char * | label | ) |
Definition at line 6458 of file widget-helper.c.
Referenced by lives_standard_check_menu_item_new_with_label().
Definition at line 6537 of file widget-helper.c.
Referenced by autolives_toggle(), lives_standard_check_menu_item_new_for_var(), lives_standard_check_menu_item_new_with_label(), loop_callback(), mute_audio_callback(), on_double_size_pressed(), on_fade_pressed(), on_full_screen_pressed(), on_loop_button_activate(), on_mute_button_activate(), on_sepwin_pressed(), on_toy_activate(), pref_factory_bool(), rec_callback(), reset_clipmenu(), showfct_callback(), showsubs_callback(), track_select(), update_grav_mode(), update_insert_mode(), and vj_mode_toggled().
Definition at line 6468 of file widget-helper.c.
Referenced by add_to_clipmenu().
int16_t lives_color_button_get_alpha | ( | LiVESColorButton * | ) |
Definition at line 7110 of file widget-helper.c.
LiVESWidgetColor* lives_color_button_get_color | ( | LiVESColorButton * | , |
LiVESWidgetColor * | |||
) |
Definition at line 7077 of file widget-helper.c.
Referenced by on_pwcolsel(), and pref_factory_color_button().
LiVESWidget* lives_color_button_new_with_color | ( | const LiVESWidgetColor * | ) |
Definition at line 7064 of file widget-helper.c.
boolean lives_color_button_set_alpha | ( | LiVESColorButton * | , |
int16_t | alpha | ||
) |
Definition at line 7094 of file widget-helper.c.
boolean lives_color_button_set_color | ( | LiVESColorButton * | , |
const LiVESWidgetColor * | |||
) |
Definition at line 7124 of file widget-helper.c.
Referenced by on_pwcolsel().
boolean lives_color_button_set_title | ( | LiVESColorButton * | , |
const char * | title | ||
) |
Definition at line 7141 of file widget-helper.c.
Definition at line 7152 of file widget-helper.c.
boolean lives_color_parse | ( | const char * | spec, |
LiVESWidgetColor * | |||
) |
Definition at line 2466 of file widget-helper.c.
boolean lives_combo_append_text | ( | LiVESCombo * | , |
const char * | text | ||
) |
Definition at line 3802 of file widget-helper.c.
int lives_combo_get_active_index | ( | LiVESCombo * | ) |
Definition at line 3909 of file widget-helper.c.
Referenced by fx_changed().
boolean lives_combo_get_active_iter | ( | LiVESCombo * | , |
LiVESTreeIter * | |||
) |
Definition at line 3901 of file widget-helper.c.
Referenced by fx_changed(), and lives_combo_get_active_index().
const char* lives_combo_get_active_text | ( | LiVESCombo * | ) |
Definition at line 3874 of file widget-helper.c.
Referenced by after_string_list_changed(), after_vpp_changed(), apply_prefs(), on_encoder_entry_changed(), on_encoder_ofmt_changed(), on_trans_method_changed(), rdet_acodec_changed(), rfxbuilder_to_script(), and set_param_from_list().
LiVESWidget* lives_combo_get_entry | ( | LiVESCombo * | ) |
Definition at line 12295 of file widget-helper.c.
Referenced by create_rename_dialog(), create_resaudw(), dlg_focus_changed(), lives_standard_combo_new(), on_vpp_advanced_clicked(), and prompt_for_script_name().
LiVESTreeModel* lives_combo_get_model | ( | LiVESCombo * | ) |
Definition at line 3763 of file widget-helper.c.
Referenced by fx_changed(), lives_combo_append_text(), lives_combo_get_active_index(), lives_combo_populate(), lives_combo_prepend_text(), and lives_combo_remove_all_text().
LiVESWidget* lives_combo_new | ( | void | ) |
Definition at line 3727 of file widget-helper.c.
Referenced by lives_standard_combo_new().
LiVESWidget* lives_combo_new_with_model | ( | LiVESTreeModel * | model | ) |
Definition at line 3743 of file widget-helper.c.
boolean lives_combo_populate | ( | LiVESCombo * | , |
LiVESList * | list | ||
) |
Definition at line 7509 of file widget-helper.c.
Referenced by on_encoder_entry_changed(), and set_acodec_list_from_allowed().
void lives_combo_popup | ( | LiVESCombo * | ) |
Definition at line 3781 of file widget-helper.c.
Referenced by lives_standard_combo_new().
boolean lives_combo_remove_all_text | ( | LiVESCombo * | ) |
block CHANGED signal else it gets called for EVERY SINGLE removed element !
Definition at line 3840 of file widget-helper.c.
Referenced by lives_combo_populate().
boolean lives_combo_set_active_index | ( | LiVESCombo * | , |
int | index | ||
) |
Definition at line 3883 of file widget-helper.c.
Referenced by lives_combo_populate(), on_encoder_ofmt_changed(), and set_acodec_list_from_allowed().
boolean lives_combo_set_active_iter | ( | LiVESCombo * | , |
LiVESTreeIter * | |||
) |
Definition at line 3892 of file widget-helper.c.
boolean lives_combo_set_active_string | ( | LiVESCombo * | , |
const char * | active_str | ||
) |
Definition at line 12290 of file widget-helper.c.
Referenced by after_vpp_changed(), on_encoder_entry_changed(), pref_factory_string(), and set_param_from_list().
boolean lives_combo_set_active_text | ( | LiVESCombo * | , |
const char * | text | ||
) |
boolean lives_combo_set_entry_text_column | ( | LiVESCombo * | , |
int | column | ||
) |
Definition at line 3861 of file widget-helper.c.
Definition at line 3789 of file widget-helper.c.
Referenced by lives_standard_combo_new().
boolean lives_combo_set_model | ( | LiVESCombo * | , |
LiVESTreeModel * | |||
) |
Definition at line 3772 of file widget-helper.c.
Referenced by lives_standard_combo_new_with_model().
boolean lives_container_add | ( | LiVESContainer * | , |
LiVESWidget * | |||
) |
Definition at line 4929 of file widget-helper.c.
Referenced by add_rfx_effects2(), add_sorted_list_to_menu(), add_to_clipmenu(), add_to_playframe(), add_video_options(), amixer_show(), autolives_pre_dialog(), create_camwindow(), create_cleardisk_advanced_dialog(), create_clip_info_window(), create_resaudw(), do_audio_choice_dialog(), do_block_context(), do_effect_context(), do_startup_interface_query(), frame_context(), funkify_dialog(), lives_glowing_tool_button_new(), lives_layout_hbox_new(), lives_menu_add_separator(), lives_scrolled_window_add_with_viewport(), lives_toolbar_insert_label(), make_preview_box(), mt_show_current_frame(), multitrack(), on_decplug_advanced_clicked(), scroll_tracks(), splash_init(), switch_to_file(), and widget_add_preview().
boolean lives_container_child_set_shrinkable | ( | LiVESContainer * | , |
LiVESWidget * | child, | ||
boolean | val | ||
) |
Definition at line 11750 of file widget-helper.c.
boolean lives_container_foreach | ( | LiVESContainer * | , |
LiVESWidgetCallback | callback, | ||
livespointer | cb_data | ||
) |
Definition at line 4957 of file widget-helper.c.
Referenced by add_aparam_menuitems(), lives_widget_set_sensitive(), and on_trans_method_changed().
LiVESList* lives_container_get_children | ( | LiVESContainer * | ) |
Definition at line 4979 of file widget-helper.c.
Referenced by get_box_child_index(), lives_standard_menu_tool_button_new(), mt_clip_select(), mt_delete_clips(), rte_reset_defs_clicked(), and set_submenu_colours().
LiVESWidget* lives_container_get_focus_child | ( | LiVESContainer * | ) |
Definition at line 4997 of file widget-helper.c.
Referenced by dlg_focus_changed().
boolean lives_container_remove | ( | LiVESContainer * | , |
LiVESWidget * | |||
) |
Definition at line 4938 of file widget-helper.c.
Referenced by lives_widget_unparent(), mt_show_current_frame(), and multitrack_playall().
boolean lives_container_set_border_width | ( | LiVESContainer * | , |
uint32_t | width | ||
) |
Definition at line 4947 of file widget-helper.c.
Referenced by autolives_pre_dialog(), choose_file(), create_cleardisk_advanced_dialog(), create_clip_info_window(), create_comments_dialog(), create_resaudw(), funkify_dialog(), lives_button_box_make_first(), lives_standard_color_button_new(), lives_standard_frame_new(), lives_standard_menu_tool_button_new(), lives_standard_text_view_new(), make_preview_box(), popup_lmap_errors(), splash_init(), and widget_add_preview().
boolean lives_container_set_focus_child | ( | LiVESContainer * | , |
LiVESWidget * | child | ||
) |
Definition at line 4988 of file widget-helper.c.
Referenced by rte_reset_defs_clicked().
void lives_cool_toggled | ( | LiVESWidget * | tbutton, |
livespointer | |||
) |
Definition at line 12094 of file widget-helper.c.
Referenced by amixer_show(), and lives_glowing_check_button_new().
LiVESXCursor* lives_cursor_new_from_pixbuf | ( | LiVESXDisplay * | , |
LiVESPixbuf * | , | ||
int | x, | ||
int | y | ||
) |
Definition at line 7405 of file widget-helper.c.
boolean lives_cursor_unref | ( | LiVESXCursor * | ) |
Definition at line 11139 of file widget-helper.c.
Referenced by hide_cursor(), lives_set_cursor_style(), and on_camquit_clicked().
boolean lives_dialog_add_action_widget | ( | LiVESDialog * | , |
LiVESWidget * | , | ||
int | response_id | ||
) |
Definition at line 2596 of file widget-helper.c.
Referenced by lives_dialog_add_button_from_stock().
LiVESWidget* lives_dialog_add_button_from_stock | ( | LiVESDialog * | , |
const char * | stock_id, | ||
const char * | label, | ||
int | response_id | ||
) |
if we have only ome button, center it
else attach at end
Definition at line 9892 of file widget-helper.c.
Referenced by amixer_show(), ask_permission_dialog_complex(), create_camwindow(), create_cds_dialog(), create_insert_dialog(), create_new_pb_speed(), create_opensel_dialog(), create_processing(), create_resaudw(), create_text_window(), do_foundclips_query(), do_imgfmts_error(), do_please_install(), do_resize_dlg(), do_startup_interface_query(), on_fx_pre_activate(), on_rte_info_clicked(), and popup_lmap_errors().
LiVESAccelGroup* lives_dialog_add_escape | ( | LiVESDialog * | dlg, |
LiVESWidget * | button | ||
) |
Definition at line 9962 of file widget-helper.c.
LiVESWidget* lives_dialog_get_action_area | ( | LiVESDialog * | ) |
Definition at line 2495 of file widget-helper.c.
Referenced by choose_file_with_preview(), do_messages_window(), funkify_dialog(), lives_dialog_make_widget_first(), and lives_dialog_set_button_layout().
LiVESWidget* lives_dialog_get_content_area | ( | LiVESDialog * | ) |
Definition at line 2479 of file widget-helper.c.
Referenced by add_resnn_label(), autolives_pre_dialog(), choose_file_with_preview(), create_audfade_dialog(), create_camwindow(), create_cds_dialog(), create_cdtrack_dialog(), create_cleardisk_advanced_dialog(), create_clip_info_window(), create_combo_dialog(), create_comments_dialog(), create_encoder_prep_dialog(), create_insert_dialog(), create_location_dialog(), create_new_pb_speed(), create_opensel_dialog(), create_pandh_dialog(), create_prefs_dialog(), create_processing(), create_rename_dialog(), create_resaudw(), create_text_window(), do_audio_choice_dialog(), do_startup_interface_query(), funkify_dialog(), on_decplug_advanced_clicked(), on_fx_pre_activate(), on_rte_info_clicked(), on_vpp_advanced_clicked(), popup_lmap_errors(), prompt_for_script_name(), rte_reset_defs_clicked(), and run_youtube_dialog().
int lives_dialog_get_response_for_widget | ( | LiVESDialog * | , |
LiVESWidget * | |||
) |
Definition at line 1829 of file widget-helper.c.
Referenced by on_paramwindow_button_clicked().
boolean lives_dialog_make_widget_first | ( | LiVESDialog * | , |
LiVESWidget * | |||
) |
Definition at line 12495 of file widget-helper.c.
boolean lives_dialog_response | ( | LiVESDialog * | , |
int | response | ||
) |
Definition at line 1820 of file widget-helper.c.
Referenced by on_paramwindow_button_clicked(), on_vppa_ok_clicked(), and response_ok().
LiVESResponseType lives_dialog_run | ( | LiVESDialog * | ) |
Definition at line 1783 of file widget-helper.c.
Referenced by ask_permission_dialog_complex(), autolives_toggle(), check_for_layout_del(), do_comments_dialog(), do_error_dialog_with_check(), do_foundclips_query(), do_imgfmts_error(), do_please_install(), do_resize_dlg(), do_startup_interface_query(), do_warning_dialog_with_check(), do_workdir_query(), do_yesno_dialog(), do_yesno_dialog_with_check(), do_yesno_dialogf(), mt_change_vals_activate(), multitrack_view_events(), multitrack_view_sel_events(), on_append_audio_activate(), on_capture_activate(), on_clear_event_list_activate(), on_cleardisk_advanced_clicked(), on_export_proj_activate(), on_fade_audio_activate(), on_filesel_button_clicked(), on_live_fw_activate(), on_live_tvcard_activate(), on_load_audio_activate(), on_load_set_activate(), on_multitrack_activate(), on_open_activate(), on_open_lives2lives_activate(), on_open_sel_activate(), on_quit_activate(), on_rename_track_activate(), on_save_set_activate(), on_send_lives2lives_activate(), reload_clip(), render_to_clip(), and set_new_set_name().
boolean lives_dialog_set_button_layout | ( | LiVESDialog * | , |
LiVESButtonBoxStyle | bstyle | ||
) |
Definition at line 9955 of file widget-helper.c.
Referenced by do_foundclips_query(), do_please_install(), and do_resize_dlg().
Definition at line 6334 of file widget-helper.c.
int lives_display_get_n_screens | ( | LiVESXDisplay * | ) |
Definition at line 11938 of file widget-helper.c.
Referenced by get_monitors().
boolean lives_display_get_pointer | ( | LiVESXDevice * | , |
LiVESXDisplay * | , | ||
LiVESXScreen ** | , | ||
int * | x, | ||
int * | y, | ||
LiVESXModifierType * | mask | ||
) |
Definition at line 7253 of file widget-helper.c.
LiVESXWindow* lives_display_get_window_at_pointer | ( | LiVESXDevice * | , |
LiVESXDisplay * | , | ||
int * | win_x, | ||
int * | win_y | ||
) |
Definition at line 7238 of file widget-helper.c.
Referenced by on_mouse_scroll(), and on_track_release().
boolean lives_display_warp_pointer | ( | LiVESXDevice * | , |
LiVESXDisplay * | , | ||
LiVESXScreen * | , | ||
int | x, | ||
int | y | ||
) |
Definition at line 7268 of file widget-helper.c.
LiVESWidget* lives_drawing_area_new | ( | void | ) |
Definition at line 4447 of file widget-helper.c.
Referenced by widget_add_preview().
boolean lives_editable_get_editable | ( | LiVESEditable * | ) |
Definition at line 6113 of file widget-helper.c.
Referenced by lives_entry_get_editable().
boolean lives_editable_select_region | ( | LiVESEditable * | , |
int | start_pos, | ||
int | end_pos | ||
) |
Definition at line 6131 of file widget-helper.c.
Definition at line 6121 of file widget-helper.c.
Referenced by create_camwindow(), create_resaudw(), and lives_entry_set_editable().
boolean lives_entry_get_activates_default | ( | LiVESEntry * | ) |
Definition at line 6168 of file widget-helper.c.
Referenced by dlg_focus_changed().
boolean lives_entry_get_editable | ( | LiVESEntry * | ) |
Definition at line 7427 of file widget-helper.c.
const char* lives_entry_get_text | ( | LiVESEntry * | ) |
Definition at line 6203 of file widget-helper.c.
Referenced by after_param_text_changed(), apply_prefs(), create_resaudw(), do_comments_dialog(), do_workdir_query(), find_free_camfile(), lives_combo_get_active_text(), mt_change_vals_activate(), on_camgrab_clicked(), on_capture_activate(), on_clear_clicked(), on_export_proj_activate(), on_filesel_button_clicked(), on_ins_silence_details_clicked(), on_load_set_activate(), on_multitrack_activate(), on_open_lives2lives_activate(), on_quit_activate(), on_recaudclip_ok_clicked(), on_rename_clip_name(), on_rename_track_activate(), on_resaudio_ok_clicked(), on_resaudw_asamps_changed(), on_save_set_activate(), on_vppa_ok_clicked(), perform_param_checks(), perform_rfxbuilder_checks(), render_to_clip(), rfxbuilder_to_script(), set_new_set_name(), and set_param_from_list().
LiVESWidget* lives_entry_new | ( | void | ) |
Definition at line 6140 of file widget-helper.c.
Referenced by create_camwindow(), lives_standard_entry_new(), and lives_standard_progress_bar_new().
Definition at line 6159 of file widget-helper.c.
Referenced by lives_standard_combo_new(), lives_standard_entry_new(), and lives_standard_spin_button_new().
boolean lives_entry_set_alignment | ( | LiVESEntry * | , |
float | align | ||
) |
Definition at line 6194 of file widget-helper.c.
Referenced by lives_entry_set_text(), lives_standard_entry_new(), lives_standard_progress_bar_new(), and lives_standard_spin_button_new().
boolean lives_entry_set_completion_from_list | ( | LiVESEntry * | , |
LiVESList * | |||
) |
Definition at line 11224 of file widget-helper.c.
Referenced by create_rename_dialog().
Definition at line 7422 of file widget-helper.c.
Referenced by create_rename_dialog(), lives_standard_combo_new(), and lives_standard_progress_bar_new().
Definition at line 6185 of file widget-helper.c.
Referenced by lives_standard_combo_new(), lives_standard_entry_new(), and lives_standard_spin_button_new().
boolean lives_entry_set_max_length | ( | LiVESEntry * | , |
int | len | ||
) |
Definition at line 6149 of file widget-helper.c.
Referenced by create_rename_dialog(), create_resaudw(), and lives_standard_entry_new().
boolean lives_entry_set_text | ( | LiVESEntry * | , |
const char * | text | ||
) |
Definition at line 6211 of file widget-helper.c.
Referenced by create_camwindow(), create_comments_dialog(), create_rename_dialog(), create_resaudw(), do_comments_dialog(), fx_changed(), lives_ce_update_timeline(), lives_combo_set_active_string(), lives_standard_entry_new(), load_frame_image(), on_camgrab_clicked(), on_camstop_clicked(), on_filesel_button_clicked(), on_vpp_advanced_clicked(), rtew_combo_set_text(), script_to_rfxbuilder(), set_param_from_list(), and splash_msg().
Definition at line 6176 of file widget-helper.c.
boolean lives_entry_set_width_chars | ( | LiVESEntry * | , |
int | nchars | ||
) |
Definition at line 6223 of file widget-helper.c.
Referenced by create_resaudw(), lives_standard_combo_new(), lives_standard_entry_new(), lives_standard_spin_button_new(), load_rfx_preview(), make_preview_box(), mt_init_start_end_spins(), and on_vpp_advanced_clicked().
LiVESWidget* lives_event_box_new | ( | void | ) |
Definition at line 2284 of file widget-helper.c.
Referenced by add_audio_track(), add_to_playframe(), amixer_show(), make_preview_box(), mt_init_tracks(), and widget_add_preview().
Definition at line 2296 of file widget-helper.c.
int lives_event_get_time | ( | LiVESXEvent * | ) |
Definition at line 4459 of file widget-helper.c.
boolean lives_expander_get_expanded | ( | LiVESExpander * | ) |
Definition at line 3654 of file widget-helper.c.
LiVESWidget* lives_expander_get_label_widget | ( | LiVESExpander * | ) |
Definition at line 3615 of file widget-helper.c.
LiVESWidget* lives_expander_new | ( | const char * | label | ) |
Definition at line 3602 of file widget-helper.c.
Referenced by lives_standard_expander_new().
Definition at line 3633 of file widget-helper.c.
boolean lives_expander_set_label | ( | LiVESExpander * | , |
const char * | text | ||
) |
Definition at line 3642 of file widget-helper.c.
Definition at line 3624 of file widget-helper.c.
Referenced by lives_standard_expander_new().
void* lives_fg_run | ( | weed_plant_t * | lpt, |
void * | retval | ||
) |
char* lives_file_chooser_get_filename | ( | LiVESFileChooser * | ) |
Definition at line 6721 of file widget-helper.c.
Referenced by on_filesel_button_clicked(), on_open_new_audio_clicked(), on_open_sel_activate(), and reload_clip().
LiVESSList* lives_file_chooser_get_filenames | ( | LiVESFileChooser * | ) |
Definition at line 6730 of file widget-helper.c.
Referenced by on_ok_file_open_clicked().
LiVESWidget* lives_frame_get_label_widget | ( | LiVESFrame * | ) |
Definition at line 6867 of file widget-helper.c.
Referenced by set_colours(), and set_mt_colours().
LiVESWidget* lives_frame_new | ( | const char * | label | ) |
Definition at line 6831 of file widget-helper.c.
Referenced by lives_standard_frame_new().
boolean lives_frame_set_label | ( | LiVESFrame * | , |
const char * | label | ||
) |
Definition at line 6840 of file widget-helper.c.
Referenced by fade_background(), and unfade_background().
boolean lives_frame_set_label_align | ( | LiVESFrame * | , |
float | xalign, | ||
float | yalign | ||
) |
Definition at line 6849 of file widget-helper.c.
Referenced by lives_standard_frame_new().
boolean lives_frame_set_label_widget | ( | LiVESFrame * | , |
LiVESWidget * | |||
) |
Definition at line 6858 of file widget-helper.c.
Referenced by lives_standard_frame_new().
boolean lives_frame_set_shadow_type | ( | LiVESFrame * | , |
LiVESShadowType | |||
) |
Definition at line 6876 of file widget-helper.c.
Referenced by lives_alignment_new(), and lives_standard_frame_new().
void lives_general_button_clicked | ( | LiVESButton * | , |
livespointer | data_to_free | ||
) |
TODO: this is BAD. Need to check that mainw->mt_needs_idlefunc is set conistently
< add idlefunc iff mainw->mt_needs_idlefunc is set
Definition at line 12306 of file widget-helper.c.
Referenced by create_insert_dialog(), create_new_pb_speed(), create_resaudw(), create_text_window(), mt_change_disp_tracks_ok(), on_cancel_opensel_clicked(), on_change_speed_ok_clicked(), on_lerrors_clear_clicked(), on_load_cdtrack_ok_clicked(), on_load_vcd_ok_clicked(), on_opensel_range_ok_clicked(), on_prefs_close_clicked(), on_resample_vid_ok(), on_rte_info_clicked(), on_save_textview_clicked(), and popup_lmap_errors().
LiVESScrollDirection lives_get_scroll_direction | ( | LiVESXEventScroll * | event | ) |
Definition at line 8785 of file widget-helper.c.
Referenced by on_mouse_scroll(), and on_msg_area_scroll().
const char* lives_get_stock_icon_alt | ( | int | alt_stock_id | ) |
LiVESWidget* lives_glowing_check_button_new | ( | const char * | labeltext, |
LiVESBox * | , | ||
const char * | tooltip, | ||
boolean * | togglevalue | ||
) |
Definition at line 9163 of file widget-helper.c.
Referenced by lives_glowing_tool_button_new(), and mt_init_start_end_spins().
LiVESWidget* lives_glowing_tool_button_new | ( | const char * | labeltext, |
LiVESToolbar * | tbar, | ||
const char * | tooltip, | ||
boolean * | togglevalue | ||
) |
Definition at line 9215 of file widget-helper.c.
boolean lives_grab_add | ( | LiVESWidget * | ) |
Definition at line 1454 of file widget-helper.c.
Referenced by on_vppa_ok_clicked().
boolean lives_grab_remove | ( | LiVESWidget * | ) |
Definition at line 1462 of file widget-helper.c.
Referenced by close_vid_playback_plugin(), lives_exit(), on_vppa_ok_clicked(), and vid_playback_plugin_exit().
boolean lives_has_icon | ( | LiVESIconTheme * | , |
const char * | stock_id, | ||
LiVESIconSize | size | ||
) |
Definition at line 11067 of file widget-helper.c.
Referenced by lives_pixbuf_new_from_stock_at_size().
boolean lives_has_toplevel_focus | ( | LiVESWidget * | window | ) |
Definition at line 7414 of file widget-helper.c.
LiVESWidget* lives_hbox_new | ( | boolean | homogeneous, |
int | spacing | ||
) |
Definition at line 3253 of file widget-helper.c.
Referenced by add_audio_options(), add_param_to_box(), amixer_show(), autolives_pre_dialog(), create_audfade_dialog(), create_camwindow(), create_cds_dialog(), create_cdtrack_dialog(), create_cleardisk_advanced_dialog(), create_comments_dialog(), create_encoder_prep_dialog(), create_insert_dialog(), create_location_dialog(), create_new_pb_speed(), create_pandh_dialog(), create_prefs_dialog(), create_processing(), create_rename_dialog(), create_resaudw(), do_audio_choice_dialog(), do_startup_interface_query(), get_eload_filename(), lives_glowing_tool_button_new(), lives_layout_add_label(), lives_layout_hbox_new(), make_preview_box(), mt_init_start_end_spins(), mt_show_current_frame(), multitrack(), on_decplug_advanced_clicked(), on_fx_pre_activate(), on_rte_info_clicked(), on_vpp_advanced_clicked(), prompt_for_script_name(), run_youtube_dialog(), splash_init(), transition_add_in_out(), and trash_rb().
LiVESWidget* lives_hbutton_box_new | ( | void | ) |
Definition at line 3329 of file widget-helper.c.
Referenced by amixer_show(), and create_camwindow().
LiVESWidget* lives_hpaned_new | ( | void | ) |
Definition at line 3399 of file widget-helper.c.
Referenced by create_prefs_dialog(), and lives_standard_hpaned_new().
LiVESWidget* lives_hscrollbar_new | ( | LiVESAdjustment * | ) |
Definition at line 3425 of file widget-helper.c.
LiVESWidget* lives_hseparator_new | ( | void | ) |
Definition at line 3301 of file widget-helper.c.
Referenced by create_resaudw(), and lives_standard_hseparator_new().
uint32_t lives_idle_add | ( | LiVESWidgetSourceFunc | function, |
livespointer | data | ||
) |
Definition at line 7350 of file widget-helper.c.
Referenced by idle_cancel_proc(), idle_choose_file_with_preview(), idle_choose_layout(), idle_choose_set(), idle_fx_enable(), idle_fx_setmode(), idle_insert_block(), idle_insert_vtrack(), idle_map_fx(), idle_move_block(), idle_mt_set_track(), idle_open_file(), idle_quit(), idle_reload_layout(), idle_reload_set(), idle_remove_block(), idle_render_layout(), idle_resync_fps(), idle_save_layout(), idle_select_all(), idle_select_end(), idle_select_start(), idle_set_current_audio_time(), idle_set_current_fps(), idle_set_current_frame(), idle_set_current_time(), idle_set_fullscreen(), idle_set_fullscreen_sepwin(), idle_set_gravity(), idle_set_if_mode(), idle_set_insert_mode(), idle_set_interactive(), idle_set_loop_mode(), idle_set_ping_pong(), idle_set_pref_bitmapped(), idle_set_pref_bool(), idle_set_pref_int(), idle_set_sepwin(), idle_set_set_name(), idle_set_track_label(), idle_show_info(), idle_stop_playback(), idle_switch_clip(), idle_unmap_effects(), idle_unmap_fx(), idle_wipe_layout(), and start_playback_async().
LiVESPixbuf* lives_image_get_pixbuf | ( | LiVESImage * | ) |
Definition at line 2454 of file widget-helper.c.
Referenced by get_vspace(), and lives_pixbuf_new_from_stock_at_size().
LiVESWidget* lives_image_menu_item_new_from_stock | ( | const char * | stock_id, |
LiVESAccelGroup * | accel_group | ||
) |
Definition at line 6477 of file widget-helper.c.
Referenced by lives_standard_image_menu_item_new_from_stock().
LiVESWidget* lives_image_menu_item_new_with_label | ( | const char * | label | ) |
Definition at line 6425 of file widget-helper.c.
Referenced by lives_standard_image_menu_item_new_with_label().
Definition at line 6638 of file widget-helper.c.
boolean lives_image_menu_item_set_image | ( | LiVESImageMenuItem * | , |
LiVESWidget * | image | ||
) |
Definition at line 6556 of file widget-helper.c.
Referenced by multitrack().
LiVESWidget* lives_image_new | ( | void | ) |
Definition at line 2308 of file widget-helper.c.
LiVESWidget* lives_image_new_from_file | ( | const char * | filename | ) |
Definition at line 2419 of file widget-helper.c.
LiVESWidget* lives_image_new_from_pixbuf | ( | LiVESPixbuf * | ) |
Definition at line 2428 of file widget-helper.c.
Referenced by lives_image_new_from_stock_at_size(), and splash_init().
LiVESWidget* lives_image_new_from_stock | ( | const char * | stock_id, |
LiVESIconSize | size | ||
) |
Definition at line 2412 of file widget-helper.c.
Referenced by lives_standard_file_button_new(), make_preview_box(), mt_swap_play_pause(), and multitrack().
LiVESWidget* lives_image_new_from_stock_at_size | ( | const char * | stock_id, |
LiVESIconSize | size, | ||
int | x, | ||
int | y | ||
) |
Definition at line 2401 of file widget-helper.c.
Referenced by lives_image_new_from_stock().
boolean lives_image_scale | ( | LiVESImage * | , |
int | width, | ||
int | height, | ||
LiVESInterpType | interp_type | ||
) |
Definition at line 7434 of file widget-helper.c.
boolean lives_image_set_from_pixbuf | ( | LiVESImage * | , |
LiVESPixbuf * | |||
) |
Definition at line 2440 of file widget-helper.c.
Referenced by pref_change_images().
LiVESAlign lives_justify_to_align | ( | LiVESJustification | justification | ) |
Definition at line 8778 of file widget-helper.c.
Referenced by lives_layout_pack(), and lives_standard_label_new().
void lives_label_chomp | ( | LiVESLabel * | ) |
Definition at line 8685 of file widget-helper.c.
LiVESWidget* lives_label_get_mnemonic_widget | ( | LiVESLabel * | ) |
Definition at line 6095 of file widget-helper.c.
Referenced by create_rename_dialog(), and do_workdir_query().
const char* lives_label_get_text | ( | LiVESLabel * | ) |
Definition at line 6056 of file widget-helper.c.
Referenced by lives_label_chomp(), lives_label_set_hpadding(), lives_menu_item_get_text(), and multitrack_redo().
LiVESWidget* lives_label_new | ( | const char * | text | ) |
Definition at line 3457 of file widget-helper.c.
Referenced by add_audio_track(), add_fill_to_box(), add_mt_param_box(), do_onchange_init(), lives_standard_label_new(), and lives_toolbar_insert_label().
boolean lives_label_set_ellipsize | ( | LiVESLabel * | , |
LiVESEllipsizeMode | mode | ||
) |
Definition at line 3696 of file widget-helper.c.
boolean lives_label_set_halignment | ( | LiVESLabel * | , |
float | yalign | ||
) |
Definition at line 3704 of file widget-helper.c.
void lives_label_set_hpadding | ( | LiVESLabel * | , |
int | pad | ||
) |
Definition at line 7459 of file widget-helper.c.
Definition at line 3672 of file widget-helper.c.
boolean lives_label_set_line_wrap_mode | ( | LiVESLabel * | , |
LingoWrapMode | mode | ||
) |
Definition at line 3680 of file widget-helper.c.
boolean lives_label_seT_lines | ( | LiVESLabel * | , |
int | nlines | ||
) |
Definition at line 3688 of file widget-helper.c.
boolean lives_label_set_markup | ( | LiVESLabel * | , |
const char * | markup | ||
) |
Definition at line 6076 of file widget-helper.c.
Referenced by add_context_label(), add_param_label_to_box(), lives_label_set_text(), lives_layout_label_set_text(), and lives_standard_formatted_label_new().
boolean lives_label_set_mnemonic_widget | ( | LiVESLabel * | , |
LiVESWidget * | widget | ||
) |
Definition at line 6086 of file widget-helper.c.
Referenced by amixer_show(), create_new_pb_speed(), and lives_standard_label_new_with_mnemonic_widget().
Definition at line 6104 of file widget-helper.c.
boolean lives_label_set_text | ( | LiVESLabel * | , |
const char * | text | ||
) |
Definition at line 6064 of file widget-helper.c.
Referenced by add_audio_track(), do_auto_dialog(), fade_background(), lives_label_chomp(), lives_label_set_text(), lives_menu_item_set_text(), lives_standard_formatted_label_new(), lives_standard_label_new(), lives_standard_label_new_with_mnemonic_widget(), on_effects_paused(), set_sel_label(), show_playbar_labels(), splash_msg(), type_label_set_text(), unfade_background(), update_grav_mode(), and update_insert_mode().
boolean lives_label_set_width_chars | ( | LiVESLabel * | , |
int | nchars | ||
) |
Definition at line 3662 of file widget-helper.c.
Referenced by add_fill_to_box(), lives_label_set_hpadding(), and lives_standard_formatted_label_new().
LiVESWidget* lives_layout_add_fill | ( | LiVESLayout * | , |
boolean | horizontal | ||
) |
Definition at line 7841 of file widget-helper.c.
Referenced by create_rename_dialog().
LiVESWidget* lives_layout_add_label | ( | LiVESLayout * | , |
const char * | text, | ||
boolean | horizontal | ||
) |
Definition at line 7810 of file widget-helper.c.
Referenced by create_clip_info_window(), create_rename_dialog(), and lives_layout_add_fill().
int lives_layout_add_row | ( | LiVESLayout * | ) |
Definition at line 7783 of file widget-helper.c.
Referenced by lives_layout_row_new().
LiVESWidget* lives_layout_add_separator | ( | LiVESLayout * | , |
boolean | horizontal | ||
) |
Definition at line 7855 of file widget-helper.c.
LiVESWidget* lives_layout_expansion_row_new | ( | LiVESLayout * | , |
LiVESWidget * | widget | ||
) |
Definition at line 7640 of file widget-helper.c.
Referenced by lives_layout_add_fill(), lives_layout_add_label(), and lives_layout_add_separator().
LiVESWidget* lives_layout_hbox_new | ( | LiVESLayout * | ) |
Definition at line 7757 of file widget-helper.c.
Referenced by add_video_options(), lives_layout_add_fill(), lives_layout_add_label(), lives_layout_add_separator(), and lives_layout_row_new().
void lives_layout_label_set_text | ( | LiVESLabel * | , |
const char * | text | ||
) |
Definition at line 7797 of file widget-helper.c.
Referenced by lives_layout_add_label().
LiVESWidget* lives_layout_new | ( | LiVESBox * | ) |
Definition at line 7732 of file widget-helper.c.
Referenced by add_video_options(), create_clip_info_window(), and create_rename_dialog().
LiVESWidget* lives_layout_pack | ( | LiVESHBox * | , |
LiVESWidget * | |||
) |
Definition at line 7699 of file widget-helper.c.
Referenced by lives_layout_add_label(), lives_layout_add_separator(), and lives_layout_expansion_row_new().
LiVESWidget* lives_layout_row_new | ( | LiVESLayout * | ) |
Definition at line 7791 of file widget-helper.c.
Referenced by add_video_options(), and lives_layout_expansion_row_new().
boolean lives_list_store_insert | ( | LiVESListStore * | , |
LiVESTreeIter * | , | ||
int | position | ||
) |
Definition at line 6047 of file widget-helper.c.
LiVESListStore* lives_list_store_new | ( | int | ncols, |
... | |||
) |
Definition at line 6015 of file widget-helper.c.
boolean lives_list_store_set | ( | LiVESListStore * | , |
LiVESTreeIter * | , | ||
... | |||
) |
Definition at line 6034 of file widget-helper.c.
boolean lives_lock_button_get_locked | ( | LiVESButton * | ) |
Definition at line 10483 of file widget-helper.c.
Referenced by after_aspect_height_changed(), and after_aspect_width_changed().
boolean lives_lock_button_toggle | ( | LiVESButton * | ) |
Definition at line 10512 of file widget-helper.c.
LiVESWidget* lives_menu_add_separator | ( | LiVESMenu * | ) |
Definition at line 11910 of file widget-helper.c.
Referenced by add_rfx_effects2(), and multitrack().
LiVESWidget* lives_menu_bar_new | ( | void | ) |
Definition at line 6380 of file widget-helper.c.
Referenced by multitrack().
boolean lives_menu_detach | ( | LiVESMenu * | ) |
Definition at line 6601 of file widget-helper.c.
boolean lives_menu_item_activate | ( | LiVESMenuItem * | ) |
Definition at line 6528 of file widget-helper.c.
Referenced by on_cancel_opensel_clicked().
LiVESWidget* lives_menu_item_get_submenu | ( | LiVESMenuItem * | ) |
Definition at line 6417 of file widget-helper.c.
Referenced by lives_widget_set_sensitive(), and set_submenu_colours().
const char* lives_menu_item_get_text | ( | LiVESWidget * | ) |
Definition at line 11931 of file widget-helper.c.
Referenced by on_redo_activate(), on_undo_activate(), show_lives(), update_grav_mode(), and update_insert_mode().
LiVESWidget* lives_menu_item_new | ( | void | ) |
Definition at line 6389 of file widget-helper.c.
Referenced by add_rfx_effects2(), lives_menu_add_separator(), and lives_standard_menu_item_new().
LiVESWidget* lives_menu_item_new_with_label | ( | const char * | label | ) |
Definition at line 6398 of file widget-helper.c.
Referenced by lives_standard_menu_item_new_with_label().
boolean lives_menu_item_set_accel_path | ( | LiVESMenuItem * | , |
const char * | path | ||
) |
Definition at line 6408 of file widget-helper.c.
Referenced by lives_image_menu_item_new_from_stock().
boolean lives_menu_item_set_submenu | ( | LiVESMenuItem * | , |
LiVESWidget * | |||
) |
Definition at line 6519 of file widget-helper.c.
Referenced by add_rfx_effects2(), and multitrack().
void lives_menu_item_set_text | ( | LiVESWidget * | , |
const char * | text, | ||
boolean | use_mnemonic | ||
) |
Definition at line 11920 of file widget-helper.c.
Referenced by close_current_file(), disable_record(), do_effect(), enable_record(), mt_swap_play_pause(), on_rename_clip_name(), reload_clip(), set_redoable(), set_undoable(), switch_to_file(), toggle_record(), update_grav_mode(), and update_insert_mode().
LiVESWidget* lives_menu_new | ( | void | ) |
Definition at line 6371 of file widget-helper.c.
Referenced by do_block_context(), do_effect_context(), do_track_context(), frame_context(), lives_standard_menu_new(), and multitrack().
boolean lives_menu_popup | ( | LiVESMenu * | , |
LiVESXEventButton * | |||
) |
Definition at line 6579 of file widget-helper.c.
Referenced by do_effect_context(), and frame_context().
boolean lives_menu_reorder_child | ( | LiVESMenu * | , |
LiVESWidget * | , | ||
int | pos | ||
) |
Definition at line 6592 of file widget-helper.c.
boolean lives_menu_set_accel_group | ( | LiVESMenu * | , |
LiVESAccelGroup * | group | ||
) |
Definition at line 3020 of file widget-helper.c.
boolean lives_menu_set_title | ( | LiVESMenu * | , |
const char * | title | ||
) |
Definition at line 6566 of file widget-helper.c.
Referenced by do_block_context(), do_effect_context(), and frame_context().
boolean lives_menu_shell_append | ( | LiVESMenuShell * | , |
LiVESWidget * | child | ||
) |
Definition at line 6611 of file widget-helper.c.
boolean lives_menu_shell_insert | ( | LiVESMenuShell * | , |
LiVESWidget * | child, | ||
int | pos | ||
) |
Definition at line 6620 of file widget-helper.c.
Referenced by add_rfx_effects2(), and replace_with_delegates().
boolean lives_menu_shell_prepend | ( | LiVESMenuShell * | , |
LiVESWidget * | child | ||
) |
Definition at line 6629 of file widget-helper.c.
LiVESToolItem* lives_menu_tool_button_new | ( | LiVESWidget * | icon, |
const char * | label | ||
) |
Definition at line 6501 of file widget-helper.c.
Referenced by lives_standard_menu_tool_button_new().
boolean lives_menu_tool_button_set_menu | ( | LiVESMenuToolButton * | , |
LiVESWidget * | menu | ||
) |
Definition at line 6510 of file widget-helper.c.
LiVESWidget* lives_message_dialog_new | ( | LiVESWindow * | parent, |
LiVESDialogFlags | flags, | ||
LiVESMessageType | type, | ||
LiVESButtonsType | buttons, | ||
const char * | msg_fmt, | ||
... | |||
) |
Definition at line 5259 of file widget-helper.c.
int lives_notebook_get_current_page | ( | LiVESNotebook * | ) |
Definition at line 6903 of file widget-helper.c.
Referenced by get_poly_state_from_page(), and set_poly_tab().
LiVESWidget* lives_notebook_get_nth_page | ( | LiVESNotebook * | , |
int | pagenum | ||
) |
Definition at line 6894 of file widget-helper.c.
Referenced by set_poly_tab().
LiVESWidget* lives_notebook_new | ( | void | ) |
Definition at line 6885 of file widget-helper.c.
Referenced by lives_standard_notebook_new().
boolean lives_notebook_set_current_page | ( | LiVESNotebook * | , |
int | pagenum | ||
) |
Definition at line 6912 of file widget-helper.c.
Referenced by set_poly_tab().
boolean lives_notebook_set_tab_label | ( | LiVESNotebook * | , |
LiVESWidget * | child, | ||
LiVESWidget * | tablabel | ||
) |
Definition at line 6921 of file widget-helper.c.
boolean lives_painter_arc | ( | lives_painter_t * | , |
double | xc, | ||
double | yc, | ||
double | radius, | ||
double | angle1, | ||
double | angle2 | ||
) |
Definition at line 569 of file widget-helper.c.
Referenced by draw_cool_toggle().
boolean lives_painter_clip | ( | lives_painter_t * | ) |
Definition at line 397 of file widget-helper.c.
boolean lives_painter_close_path | ( | lives_painter_t * | ) |
Definition at line 546 of file widget-helper.c.
lives_painter_t* lives_painter_create_from_surface | ( | lives_painter_surface_t * | target | ) |
Definition at line 309 of file widget-helper.c.
Referenced by clear_widget_bg(), and reshow_msg_area().
lives_painter_t* lives_painter_create_from_widget | ( | LiVESWidget * | ) |
boolean lives_painter_destroy | ( | lives_painter_t * | ) |
Definition at line 412 of file widget-helper.c.
Referenced by clear_widget_bg().
boolean lives_painter_fill | ( | lives_painter_t * | ) |
Definition at line 367 of file widget-helper.c.
Referenced by draw_cool_toggle().
int lives_painter_format_stride_for_width | ( | lives_painter_format_t | , |
int | width | ||
) |
Definition at line 723 of file widget-helper.c.
lives_painter_surface_t* lives_painter_get_target | ( | lives_painter_t * | ) |
Definition at line 711 of file widget-helper.c.
Referenced by lives_painter_to_layer().
lives_painter_surface_t* lives_painter_image_surface_create | ( | lives_painter_format_t | format, |
int | width, | ||
int | height | ||
) |
Definition at line 674 of file widget-helper.c.
lives_painter_surface_t* lives_painter_image_surface_create_for_data | ( | uint8_t * | data, |
lives_painter_format_t | , | ||
int | width, | ||
int | height, | ||
int | stride | ||
) |
Definition at line 660 of file widget-helper.c.
uint8_t* lives_painter_image_surface_get_data | ( | lives_painter_surface_t * | ) |
Definition at line 735 of file widget-helper.c.
Referenced by weed_layer_pixel_data_free().
lives_painter_format_t lives_painter_image_surface_get_format | ( | lives_painter_surface_t * | ) |
Definition at line 783 of file widget-helper.c.
int lives_painter_image_surface_get_height | ( | lives_painter_surface_t * | ) |
Definition at line 759 of file widget-helper.c.
int lives_painter_image_surface_get_stride | ( | lives_painter_surface_t * | ) |
Definition at line 771 of file widget-helper.c.
int lives_painter_image_surface_get_width | ( | lives_painter_surface_t * | ) |
Definition at line 747 of file widget-helper.c.
boolean lives_painter_line_to | ( | lives_painter_t * | , |
double | x, | ||
double | y | ||
) |
Definition at line 533 of file widget-helper.c.
Referenced by all_expose_overlay(), and draw_cool_toggle().
boolean lives_painter_move_to | ( | lives_painter_t * | , |
double | x, | ||
double | y | ||
) |
Definition at line 520 of file widget-helper.c.
Referenced by all_expose_overlay(), and draw_cool_toggle().
boolean lives_painter_new_path | ( | lives_painter_t * | ) |
Definition at line 478 of file widget-helper.c.
Referenced by draw_cool_toggle().
boolean lives_painter_paint | ( | lives_painter_t * | ) |
Definition at line 355 of file widget-helper.c.
Referenced by all_expose(), expose_laud_draw(), expose_raud_draw(), and expose_vid_draw().
boolean lives_painter_rectangle | ( | lives_painter_t * | , |
double | x, | ||
double | y, | ||
double | width, | ||
double | height | ||
) |
Definition at line 555 of file widget-helper.c.
Referenced by draw_cool_toggle().
boolean lives_painter_remerge | ( | lives_painter_t * | ) |
boolean lives_painter_render_background | ( | LiVESWidget * | , |
lives_painter_t * | , | ||
double | x, | ||
double | y, | ||
double | width, | ||
double | height | ||
) |
painter cairo
Definition at line 426 of file widget-helper.c.
Referenced by clear_widget_bg(), and reshow_msg_area().
boolean lives_painter_set_fill_rule | ( | lives_painter_t * | , |
lives_painter_fill_rule_t | |||
) |
Definition at line 635 of file widget-helper.c.
boolean lives_painter_set_line_width | ( | lives_painter_t * | , |
double | width | ||
) |
Definition at line 507 of file widget-helper.c.
Referenced by all_expose_overlay(), and draw_cool_toggle().
boolean lives_painter_set_operator | ( | lives_painter_t * | , |
lives_painter_operator_t | |||
) |
Definition at line 588 of file widget-helper.c.
boolean lives_painter_set_source_pixbuf | ( | lives_painter_t * | , |
const LiVESPixbuf * | , | ||
double | pixbuf_x, | ||
double | pixbuf_y | ||
) |
Definition at line 321 of file widget-helper.c.
boolean lives_painter_set_source_rgb | ( | lives_painter_t * | , |
double | red, | ||
double | green, | ||
double | blue | ||
) |
Definition at line 604 of file widget-helper.c.
Referenced by lives_painter_set_source_rgb_from_lives_rgb(), and lives_painter_set_source_rgb_from_lives_rgba().
lives_colRGB48_t* lives_painter_set_source_rgb_from_lives_rgb | ( | lives_painter_t * | , |
lives_colRGB48_t * | |||
) |
Definition at line 11081 of file widget-helper.c.
lives_colRGBA64_t* lives_painter_set_source_rgb_from_lives_rgba | ( | lives_painter_t * | , |
lives_colRGBA64_t * | |||
) |
Definition at line 11090 of file widget-helper.c.
Referenced by lives_painter_set_source_rgb_from_lives_widget_color().
LiVESWidgetColor* lives_painter_set_source_rgb_from_lives_widget_color | ( | lives_painter_t * | , |
LiVESWidgetColor * | |||
) |
Definition at line 11099 of file widget-helper.c.
Referenced by all_expose_overlay().
boolean lives_painter_set_source_rgba | ( | lives_painter_t * | , |
double | red, | ||
double | green, | ||
double | blue, | ||
double | alpha | ||
) |
Definition at line 619 of file widget-helper.c.
Referenced by draw_cool_toggle(), and layout_to_lives_painter().
boolean lives_painter_set_source_surface | ( | lives_painter_t * | , |
lives_painter_surface_t * | , | ||
double | x, | ||
double | y | ||
) |
Definition at line 339 of file widget-helper.c.
Referenced by all_expose(), expose_laud_draw(), expose_raud_draw(), and expose_vid_draw().
boolean lives_painter_stroke | ( | lives_painter_t * | ) |
Definition at line 382 of file widget-helper.c.
Referenced by all_expose_overlay(), and draw_cool_toggle().
boolean lives_painter_surface_flush | ( | lives_painter_surface_t * | ) |
Definition at line 648 of file widget-helper.c.
boolean lives_painter_translate | ( | lives_painter_t * | , |
double | x, | ||
double | y | ||
) |
Definition at line 492 of file widget-helper.c.
Referenced by draw_cool_toggle().
int lives_paned_get_position | ( | LiVESPaned * | ) |
Definition at line 4414 of file widget-helper.c.
boolean lives_paned_pack | ( | int | where, |
LiVESPaned * | , | ||
LiVESWidget * | child, | ||
boolean | resize, | ||
boolean | shrink | ||
) |
Definition at line 4432 of file widget-helper.c.
boolean lives_paned_set_position | ( | LiVESPaned * | , |
int | pos | ||
) |
Definition at line 4422 of file widget-helper.c.
LiVESPixbuf* lives_pixbuf_copy | ( | LiVESPixbuf * | ) |
Definition at line 3056 of file widget-helper.c.
boolean lives_pixbuf_get_has_alpha | ( | const LiVESPixbuf * | ) |
Definition at line 3162 of file widget-helper.c.
int lives_pixbuf_get_height | ( | const LiVESPixbuf * | ) |
Definition at line 3118 of file widget-helper.c.
Referenced by get_vspace(), and make_preview_box().
int lives_pixbuf_get_n_channels | ( | const LiVESPixbuf * | ) |
Definition at line 3129 of file widget-helper.c.
unsigned char* lives_pixbuf_get_pixels | ( | const LiVESPixbuf * | ) |
Definition at line 3140 of file widget-helper.c.
Referenced by lives_pixbuf_set_opaque().
const unsigned char* lives_pixbuf_get_pixels_readonly | ( | const LiVESPixbuf * | ) |
Definition at line 3151 of file widget-helper.c.
int lives_pixbuf_get_rowstride | ( | const LiVESPixbuf * | ) |
Definition at line 3096 of file widget-helper.c.
Referenced by lives_pixbuf_set_opaque().
int lives_pixbuf_get_width | ( | const LiVESPixbuf * | ) |
Definition at line 3107 of file widget-helper.c.
Referenced by lives_pixbuf_is_all_black(), and make_preview_box().
LiVESPixbuf* lives_pixbuf_new | ( | boolean | has_alpha, |
int | width, | ||
int | height | ||
) |
Definition at line 3047 of file widget-helper.c.
LiVESPixbuf* lives_pixbuf_new_from_data | ( | const unsigned char * | buf, |
boolean | has_alpha, | ||
int | width, | ||
int | height, | ||
int | rowstride, | ||
LiVESPixbufDestroyNotify | lives_free_buffer_fn, | ||
livespointer | destroy_fn_data | ||
) |
Definition at line 3065 of file widget-helper.c.
LiVESPixbuf* lives_pixbuf_new_from_file | ( | const char * | filename, |
LiVESError ** | error | ||
) |
Definition at line 3078 of file widget-helper.c.
Referenced by resize(), and splash_init().
LiVESPixbuf* lives_pixbuf_new_from_file_at_scale | ( | const char * | filename, |
int | width, | ||
int | height, | ||
boolean | preserve_aspect_ratio, | ||
LiVESError ** | error | ||
) |
Definition at line 3086 of file widget-helper.c.
LiVESPixbuf* lives_pixbuf_new_from_stock_at_size | ( | const char * | stock_id, |
LiVESIconSize | size, | ||
int | x, | ||
int | y | ||
) |
Definition at line 2339 of file widget-helper.c.
Referenced by lives_button_set_image_from_stock(), and lives_image_new_from_stock_at_size().
boolean lives_pixbuf_saturate_and_pixelate | ( | const LiVESPixbuf * | src, |
LiVESPixbuf * | dest, | ||
float | saturation, | ||
boolean | pixilate | ||
) |
Definition at line 3182 of file widget-helper.c.
Referenced by resize().
LiVESPixbuf* lives_pixbuf_scale_simple | ( | const LiVESPixbuf * | src, |
int | dest_width, | ||
int | dest_height, | ||
LiVESInterpType | interp_type | ||
) |
Definition at line 3173 of file widget-helper.c.
LiVESWidget* lives_progress_bar_new | ( | void | ) |
Definition at line 5005 of file widget-helper.c.
Referenced by lives_standard_progress_bar_new().
boolean lives_progress_bar_pulse | ( | LiVESProgressBar * | ) |
Definition at line 5047 of file widget-helper.c.
Referenced by do_auto_dialog().
boolean lives_progress_bar_set_fraction | ( | LiVESProgressBar * | , |
double | fraction | ||
) |
Definition at line 5014 of file widget-helper.c.
Referenced by splash_msg().
boolean lives_progress_bar_set_pulse_step | ( | LiVESProgressBar * | , |
double | fraction | ||
) |
Definition at line 5034 of file widget-helper.c.
Referenced by do_auto_dialog(), and splash_init().
LiVESSList* lives_radio_button_get_group | ( | LiVESRadioButton * | ) |
Definition at line 4731 of file widget-helper.c.
Referenced by lives_standard_radio_button_new().
LiVESWidget* lives_radio_button_new | ( | LiVESSList * | group | ) |
Definition at line 4534 of file widget-helper.c.
Referenced by lives_standard_radio_button_new().
LiVESSList* lives_radio_menu_item_get_group | ( | LiVESRadioMenuItem * | ) |
Definition at line 6450 of file widget-helper.c.
Referenced by add_to_clipmenu(), and remove_from_clipmenu().
LiVESWidget* lives_radio_menu_item_new_with_label | ( | LiVESSList * | group, |
const char * | label | ||
) |
Definition at line 6440 of file widget-helper.c.
Referenced by lives_standard_radio_menu_item_new_with_label().
LiVESAdjustment* lives_range_get_adjustment | ( | LiVESRange * | ) |
Definition at line 5654 of file widget-helper.c.
Referenced by on_amixer_slider_changed(), and scroll_track_by_scrollbar().
double lives_range_get_value | ( | LiVESRange * | ) |
Definition at line 5699 of file widget-helper.c.
Referenced by on_amixer_close_clicked(), and on_amixer_slider_changed().
boolean lives_range_set_increments | ( | LiVESRange * | , |
double | step, | ||
double | page | ||
) |
Definition at line 5681 of file widget-helper.c.
Definition at line 5690 of file widget-helper.c.
Referenced by amixer_add_channel_slider().
boolean lives_range_set_range | ( | LiVESRange * | , |
double | min, | ||
double | max | ||
) |
Definition at line 5672 of file widget-helper.c.
boolean lives_range_set_value | ( | LiVESRange * | , |
double | value | ||
) |
Definition at line 5663 of file widget-helper.c.
Referenced by invalidate_preview(), load_rfx_preview(), on_amixer_slider_changed(), and pref_factory_float().
lives_colRGBA64_t lives_rgba_col_new | ( | int | red, |
int | green, | ||
int | blue, | ||
int | alpha | ||
) |
Definition at line 12574 of file widget-helper.c.
Referenced by render_text_overlay().
lives_colRGBA64_t* lives_rgba_copy | ( | lives_colRGBA64_t * | col1, |
lives_colRGBA64_t * | col2 | ||
) |
Definition at line 12609 of file widget-helper.c.
Referenced by pref_factory_color_button().
boolean lives_rgba_equal | ( | lives_colRGBA64_t * | col1, |
lives_colRGBA64_t * | col2 | ||
) |
Definition at line 12604 of file widget-helper.c.
Referenced by pref_factory_color_button().
LiVESWidgetColor* lives_rgba_to_widget_color | ( | LiVESWidgetColor * | , |
lives_colRGBA64_t * | |||
) |
Definition at line 12593 of file widget-helper.c.
Referenced by scroll_tracks(), and set_palette_colours().
double lives_ruler_get_value | ( | LiVESRuler * | ) |
Definition at line 5272 of file widget-helper.c.
double lives_ruler_set_lower | ( | LiVESRuler * | , |
double | lower | ||
) |
Definition at line 5315 of file widget-helper.c.
Referenced by set_timeline_end_secs().
boolean lives_ruler_set_range | ( | LiVESRuler * | , |
double | lower, | ||
double | upper, | ||
double | position, | ||
double | max_size | ||
) |
Definition at line 5244 of file widget-helper.c.
Referenced by set_timeline_end_secs().
double lives_ruler_set_upper | ( | LiVESRuler * | , |
double | upper | ||
) |
Definition at line 5296 of file widget-helper.c.
Referenced by do_quick_switch(), and set_timeline_end_secs().
double lives_ruler_set_value | ( | LiVESRuler * | , |
double | value | ||
) |
Definition at line 5284 of file widget-helper.c.
Referenced by all_expose_overlay(), lives_ce_update_timeline(), and multitrack_play_sel().
double lives_scale_button_get_value | ( | LiVESScaleButton * | ) |
Definition at line 6695 of file widget-helper.c.
Referenced by on_volume_slider_value_changed().
boolean lives_scale_button_set_orientation | ( | LiVESScaleButton * | , |
LiVESOrientation | orientation | ||
) |
Definition at line 6678 of file widget-helper.c.
Referenced by lives_volume_button_new().
boolean lives_scale_button_set_value | ( | LiVESScaleButton * | , |
double | value | ||
) |
Definition at line 6708 of file widget-helper.c.
Referenced by pref_factory_float().
boolean lives_scale_set_digits | ( | LiVESScale * | , |
int | digits | ||
) |
Definition at line 6669 of file widget-helper.c.
Referenced by amixer_add_channel_slider().
Definition at line 6652 of file widget-helper.c.
boolean lives_scale_set_value_pos | ( | LiVESScale * | , |
LiVESPositionType | ptype | ||
) |
Definition at line 6660 of file widget-helper.c.
Referenced by amixer_add_channel_slider().
int lives_screen_get_height | ( | LiVESXScreen * | ) |
Definition at line 7384 of file widget-helper.c.
Referenced by get_play_screen_size().
int lives_screen_get_width | ( | LiVESXScreen * | ) |
Definition at line 7374 of file widget-helper.c.
Referenced by get_play_screen_size().
boolean lives_scrolled_window_add_with_viewport | ( | LiVESScrolledWindow * | , |
LiVESWidget * | child | ||
) |
Definition at line 6274 of file widget-helper.c.
LiVESAdjustment* lives_scrolled_window_get_hadjustment | ( | LiVESScrolledWindow * | ) |
Definition at line 6245 of file widget-helper.c.
Referenced by lives_scrolled_window_scroll_to(), and mt_clip_select().
LiVESAdjustment* lives_scrolled_window_get_vadjustment | ( | LiVESScrolledWindow * | ) |
Definition at line 6254 of file widget-helper.c.
Referenced by lives_scrolled_window_scroll_to(), and pump_io_chan().
LiVESWidget* lives_scrolled_window_new | ( | LiVESAdjustment * | hadj, |
LiVESAdjustment * | vadj | ||
) |
Definition at line 6236 of file widget-helper.c.
double lives_scrolled_window_scroll_to | ( | LiVESScrolledWindow * | , |
LiVESPositionType | pos | ||
) |
Definition at line 10253 of file widget-helper.c.
Referenced by do_messages_window().
boolean lives_scrolled_window_set_min_content_height | ( | LiVESScrolledWindow * | , |
int | height | ||
) |
Definition at line 6288 of file widget-helper.c.
boolean lives_scrolled_window_set_min_content_width | ( | LiVESScrolledWindow * | , |
int | width | ||
) |
Definition at line 6300 of file widget-helper.c.
boolean lives_scrolled_window_set_policy | ( | LiVESScrolledWindow * | , |
LiVESPolicyType | hpolicy, | ||
LiVESPolicyType | vpolicy | ||
) |
Definition at line 6263 of file widget-helper.c.
LiVESToolItem* lives_separator_tool_item_new | ( | void | ) |
Definition at line 5192 of file widget-helper.c.
Referenced by lives_toolbar_insert_space().
void lives_set_cursor_style | ( | lives_cursor_t | cstyle, |
LiVESWidget * | |||
) |
Definition at line 11950 of file widget-helper.c.
Referenced by create_rte_window(), do_auto_dialog(), do_layout_recover_dialog(), get_decoder_cdata(), get_set_list(), insert_frames(), lives_system(), load_rfx_preview(), move_block(), on_camgrab_clicked(), on_camstop_clicked(), on_cancel_keep_button_clicked(), on_import_theme_activate(), on_multitrack_activate(), on_prefs_apply_clicked(), on_prefs_revert_clicked(), on_track_release(), refresh_rte_window(), set_interactive(), splash_end(), and splash_init().
ulong lives_signal_connect | ( | LiVESWidget * | , |
const char * | signal_name, | ||
ulong | funcptr, | ||
livespointer | data | ||
) |
Referenced by create_insert_dialog(), create_new_pb_speed(), create_opensel_dialog(), do_block_context(), do_effect_context(), lives_standard_drawing_area_new(), make_preview_box(), mt_swap_play_pause(), multitrack(), on_rte_info_clicked(), on_sepwin_activate(), replace_with_delegates(), and widget_add_preview().
boolean lives_signal_handler_block | ( | livespointer | instance, |
unsigned long | handler_id | ||
) |
Definition at line 933 of file widget-helper.c.
Referenced by ce_thumbs_set_key_check_state(), do_quick_switch(), fps_reset_callback(), invalidate_preview(), lives_ce_update_timeline(), load_rfx_preview(), mt_spin_end_value_changed(), mt_spin_start_value_changed(), on_amixer_slider_changed(), on_encoder_entry_changed(), on_encoder_ofmt_changed(), on_loop_button_activate(), on_mouse_sel_reset(), on_mute_button_activate(), on_preview_spinbutton_changed(), on_timeline_release(), on_toy_activate(), pref_factory_bool(), procw_desensitize(), reset_clipmenu(), rtew_set_key_check_state(), rtew_set_keych(), rtew_set_keygr(), rtew_set_mode_radio(), sensitize(), update_grav_mode(), update_insert_mode(), vj_mode_toggled(), and zero_spinbuttons().
boolean lives_signal_handler_disconnect | ( | livespointer | instance, |
unsigned long | handler_id | ||
) |
Definition at line 961 of file widget-helper.c.
Referenced by end_fs_preview(), and replace_with_delegates().
boolean lives_signal_handler_unblock | ( | livespointer | instance, |
unsigned long | handler_id | ||
) |
Definition at line 947 of file widget-helper.c.
Referenced by do_quick_switch(), fps_reset_callback(), invalidate_preview(), lives_ce_update_timeline(), load_rfx_preview(), on_amixer_slider_changed(), on_encoder_entry_changed(), on_encoder_ofmt_changed(), on_loop_button_activate(), on_mouse_sel_start(), on_mute_button_activate(), on_preview_spinbutton_changed(), on_timeline_release(), on_toy_activate(), pref_factory_bool(), procw_desensitize(), reset_clipmenu(), sensitize(), update_grav_mode(), update_insert_mode(), vj_mode_toggled(), and zero_spinbuttons().
boolean lives_signal_stop_emission_by_name | ( | livespointer | instance, |
const char * | detailed_signal | ||
) |
Definition at line 975 of file widget-helper.c.
boolean lives_source_remove | ( | uint32_t | handle | ) |
Definition at line 7361 of file widget-helper.c.
Referenced by do_track_context(), get_eload_filename(), in_out_end_changed(), in_out_start_changed(), load_event_list(), move_block(), mt_add_block_effect(), mt_add_region_effect(), mt_quit_activate(), mt_show_current_frame(), multitrack_audio_insert(), multitrack_delete(), multitrack_insert(), multitrack_playall(), multitrack_redo(), multitrack_undo(), on_capture_activate(), on_clear_event_list_activate(), on_close_activate(), on_del_node_clicked(), on_fx_pre_activate(), on_insgap_cur_activate(), on_insgap_sel_activate(), on_lerrors_clear_clicked(), on_lerrors_delete_clicked(), on_load_audio_activate(), on_load_event_list_activate(), on_load_set_activate(), on_mt_delfx_activate(), on_open_activate(), on_open_fw_activate(), on_open_loc_activate(), on_open_sel_activate(), on_open_utube_activate(), on_open_vcd_activate(), on_quit_activate(), on_render_activate(), on_set_pvals_clicked(), on_split_activate(), on_split_curr_activate(), on_split_sel_activate(), on_track_release(), pref_factory_int(), reload_set(), set_new_set_name(), and wipe_layout().
boolean lives_spin_button_configure | ( | LiVESSpinButton * | , |
double | value, | ||
double | lower, | ||
double | upper, | ||
double | step_increment, | ||
double | page_increment | ||
) |
Definition at line 11783 of file widget-helper.c.
Referenced by add_mt_param_box().
LiVESAdjustment* lives_spin_button_get_adjustment | ( | LiVESSpinButton * | ) |
Definition at line 5099 of file widget-helper.c.
Referenced by lives_spin_button_configure(), lives_spin_button_set_step_increment(), and make_preview_box().
double lives_spin_button_get_snapval | ( | LiVESSpinButton * | , |
double | val | ||
) |
Definition at line 11553 of file widget-helper.c.
Referenced by lives_spin_button_set_value(), and lives_standard_spin_button_new().
double lives_spin_button_get_value | ( | LiVESSpinButton * | ) |
Definition at line 5083 of file widget-helper.c.
Referenced by after_param_value_changed(), apply_prefs(), avel_reverse_toggled(), avel_spin_changed(), changed_fps_during_pb(), in_out_end_changed(), mt_desensitise(), mt_get_effect_time(), mt_spin_end_value_changed(), mt_spin_start_value_changed(), on_capture_activate(), on_del_node_clicked(), on_fade_audio_activate(), on_next_node_clicked(), on_node_spin_value_changed(), on_prev_node_clicked(), on_recaudclip_ok_clicked(), on_set_pvals_clicked(), rdetw_spinf_changed(), render_to_clip(), and set_param_from_list().
int lives_spin_button_get_value_as_int | ( | LiVESSpinButton * | ) |
Definition at line 5091 of file widget-helper.c.
Referenced by after_param_alpha_changed(), after_param_blue_changed(), after_param_green_changed(), after_param_red_changed(), after_param_value_changed(), apply_prefs(), autolives_toggle(), in_out_start_changed(), on_merge_cancel_clicked(), on_open_lives2lives_activate(), on_preview_spinbutton_changed(), on_vppa_ok_clicked(), rdetw_spinh_changed(), rdetw_spinw_changed(), rfxbuilder_to_script(), set_param_from_list(), and setmergealign().
LiVESWidget* lives_spin_button_new | ( | LiVESAdjustment * | , |
double | climb_rate, | ||
uint32_t | digits | ||
) |
Definition at line 5071 of file widget-helper.c.
Referenced by lives_standard_spin_button_new().
LiVESAdjustment* lives_spin_button_set_adjustment | ( | LiVESSpinButton * | , |
LiVESAdjustment * | adj | ||
) |
Definition at line 5111 of file widget-helper.c.
boolean lives_spin_button_set_digits | ( | LiVESSpinButton * | , |
uint32_t | digits | ||
) |
Definition at line 5156 of file widget-helper.c.
boolean lives_spin_button_set_range | ( | LiVESSpinButton * | , |
double | min, | ||
double | max | ||
) |
Definition at line 5129 of file widget-helper.c.
Referenced by do_quick_switch(), invalidate_preview(), load_rfx_preview(), mt_desensitise(), mt_spin_end_value_changed(), mt_spin_start_value_changed(), on_timeline_release(), procw_desensitize(), sensitize(), set_param_from_list(), set_timeline_end_secs(), and zero_spinbuttons().
boolean lives_spin_button_set_snap_to_multiples | ( | LiVESSpinButton * | , |
double | mult | ||
) |
Definition at line 9374 of file widget-helper.c.
Referenced by add_video_options().
Definition at line 5147 of file widget-helper.c.
Referenced by lives_spin_button_set_snap_to_multiples(), and mt_init_start_end_spins().
boolean lives_spin_button_set_step_increment | ( | LiVESSpinButton * | button, |
double | step_increment | ||
) |
Definition at line 9364 of file widget-helper.c.
Referenced by lives_spin_button_set_snap_to_multiples().
boolean lives_spin_button_set_value | ( | LiVESSpinButton * | , |
double | value | ||
) |
Definition at line 5119 of file widget-helper.c.
Referenced by do_quick_switch(), fps_reset_callback(), freeze_callback(), invalidate_preview(), lives_ce_update_timeline(), lives_standard_spin_button_new(), load_rfx_preview(), mt_spin_end_value_changed(), mt_spin_start_value_changed(), on_change_speed_ok_clicked(), on_faster_pressed(), on_mouse_sel_start(), on_mouse_sel_update(), on_pwcolsel(), on_select_all_activate(), on_select_end_only_activate(), on_select_from_start_activate(), on_select_invert_activate(), on_select_last_activate(), on_select_new_activate(), on_select_start_only_activate(), on_select_to_end_activate(), on_slower_pressed(), on_timeline_release(), on_timeline_update(), procw_desensitize(), resample_clipboard(), script_to_rfxbuilder(), sensitize(), set_param_from_list(), setmergealign(), and zero_spinbuttons().
Definition at line 5138 of file widget-helper.c.
boolean lives_spin_button_update | ( | LiVESSpinButton * | ) |
Definition at line 5165 of file widget-helper.c.
Referenced by add_video_options(), after_param_value_changed(), lives_standard_spin_button_new(), and set_param_from_list().
LiVESWidget* lives_spinner_new | ( | void | ) |
Definition at line 4567 of file widget-helper.c.
boolean lives_spinner_start | ( | LiVESSpinner * | ) |
Definition at line 4575 of file widget-helper.c.
boolean lives_spinner_stop | ( | LiVESSpinner * | ) |
Definition at line 4586 of file widget-helper.c.
LiVESWidget* lives_standard_button_new_from_stock | ( | const char * | stock_id, |
const char * | label, | ||
int | width, | ||
int | height | ||
) |
Definition at line 4215 of file widget-helper.c.
Referenced by create_camwindow(), and lives_dialog_add_button_from_stock().
LiVESWidget* lives_standard_check_button_new | ( | const char * | labeltext, |
boolean | active, | ||
LiVESBox * | , | ||
const char * | tooltip | ||
) |
Definition at line 9048 of file widget-helper.c.
Referenced by add_audio_options(), add_param_to_box(), add_suffix_check(), add_warn_check(), autolives_pre_dialog(), create_camwindow(), create_cleardisk_advanced_dialog(), create_comments_dialog(), create_encoder_prep_dialog(), create_insert_dialog(), create_location_dialog(), create_new_pb_speed(), create_resaudw(), do_messages_window(), lives_glowing_check_button_new(), lives_standard_switch_new(), make_autoreload_check(), on_decplug_advanced_clicked(), run_youtube_dialog(), and transition_add_in_out().
LiVESWidget* lives_standard_check_menu_item_new_for_var | ( | const char * | ltext, |
boolean * | var, | ||
boolean | invert | ||
) |
Definition at line 8568 of file widget-helper.c.
LiVESWidget* lives_standard_check_menu_item_new_with_label | ( | const char * | labeltext, |
boolean | active | ||
) |
Definition at line 8547 of file widget-helper.c.
Referenced by add_to_clipmenu(), lives_standard_check_menu_item_new_for_var(), and multitrack().
LiVESWidget* lives_standard_color_button_new | ( | LiVESBox * | parent, |
const char * | name, | ||
boolean | use_alpha, | ||
lives_colRGBA64_t * | rgba, | ||
LiVESWidget ** | sb_red, | ||
LiVESWidget ** | sb_green, | ||
LiVESWidget ** | sb_blue, | ||
LiVESWidget ** | sb_alpha | ||
) |
Definition at line 10683 of file widget-helper.c.
LiVESWidget* lives_standard_combo_new | ( | const char * | labeltext, |
LiVESList * | list, | ||
LiVESBox * | , | ||
const char * | tooltip | ||
) |
Definition at line 9544 of file widget-helper.c.
Referenced by create_combo_dialog(), create_rename_dialog(), create_resaudw(), lives_standard_combo_new_with_model(), on_vpp_advanced_clicked(), and prompt_for_script_name().
LiVESWidget* lives_standard_combo_new_with_model | ( | LiVESTreeModel * | , |
LiVESBox * | |||
) |
Definition at line 9681 of file widget-helper.c.
LiVESWidget* lives_standard_dialog_new | ( | const char * | title, |
boolean | add_std_buttons, | ||
int | width, | ||
int | height | ||
) |
Definition at line 9971 of file widget-helper.c.
Referenced by autolives_pre_dialog(), create_audfade_dialog(), create_camwindow(), create_cdtrack_dialog(), create_cleardisk_advanced_dialog(), create_clip_info_window(), create_combo_dialog(), create_comments_dialog(), create_insert_dialog(), create_location_dialog(), create_new_pb_speed(), create_opensel_dialog(), create_pandh_dialog(), create_prefs_dialog(), create_processing(), create_rename_dialog(), create_resaudw(), create_text_window(), do_audio_choice_dialog(), do_startup_interface_query(), on_decplug_advanced_clicked(), on_fx_pre_activate(), on_rte_info_clicked(), on_vpp_advanced_clicked(), prompt_for_script_name(), and run_youtube_dialog().
LiVESWidget* lives_standard_direntry_new | ( | const char * | labeltext, |
const char * | txt, | ||
int | dispwidth, | ||
int | maxchars, | ||
LiVESBox * | , | ||
const char * | tooltip | ||
) |
Definition at line 10164 of file widget-helper.c.
Referenced by create_camwindow(), and create_rename_dialog().
LiVESWidget* lives_standard_drawing_area_new | ( | LiVESGuiCallback | , |
lives_painter_surface_t ** | |||
) |
Definition at line 8693 of file widget-helper.c.
Referenced by make_preview_box(), and mt_init_tracks().
LiVESWidget* lives_standard_entry_new | ( | const char * | labeltext, |
const char * | txt, | ||
int | dispwidth, | ||
int | maxchars, | ||
LiVESBox * | , | ||
const char * | tooltip | ||
) |
Definition at line 9688 of file widget-helper.c.
Referenced by create_camwindow(), create_cds_dialog(), create_comments_dialog(), create_location_dialog(), create_rename_dialog(), create_resaudw(), and prompt_for_script_name().
LiVESWidget* lives_standard_expander_new | ( | const char * | labeltext, |
LiVESBox * | parent, | ||
LiVESWidget * | child | ||
) |
Definition at line 10351 of file widget-helper.c.
Referenced by create_comments_dialog(), create_processing(), and create_rename_dialog().
LiVESWidget* lives_standard_file_button_new | ( | boolean | is_dir, |
const char * | def_dir | ||
) |
height X height is correct
Definition at line 10470 of file widget-helper.c.
LiVESWidget* lives_standard_fileentry_new | ( | const char * | labeltext, |
const char * | txt, | ||
const char * | defdir, | ||
int | dispwidth, | ||
int | maxchars, | ||
LiVESBox * | box, | ||
const char * | tooltip | ||
) |
Definition at line 10171 of file widget-helper.c.
LiVESWidget* lives_standard_font_chooser_new | ( | void | ) |
Definition at line 10081 of file widget-helper.c.
LiVESWidget* lives_standard_formatted_label_new | ( | const char * | text | ) |
Definition at line 8662 of file widget-helper.c.
LiVESWidget* lives_standard_frame_new | ( | const char * | labeltext, |
float | xalign, | ||
boolean | invisible_outline | ||
) |
Definition at line 8732 of file widget-helper.c.
Referenced by add_video_options(), autolives_pre_dialog(), create_clip_info_window(), create_resaudw(), funkify_dialog(), lives_standard_color_button_new(), and widget_add_preview().
LiVESWidget* lives_standard_hpaned_new | ( | void | ) |
Definition at line 8383 of file widget-helper.c.
LiVESWidget* lives_standard_hruler_new | ( | void | ) |
Definition at line 10231 of file widget-helper.c.
Referenced by mt_init_tracks().
LiVESWidget* lives_standard_hscale_new | ( | LiVESAdjustment * | ) |
Definition at line 10192 of file widget-helper.c.
Referenced by make_preview_box().
LiVESWidget* lives_standard_hseparator_new | ( | void | ) |
Definition at line 12319 of file widget-helper.c.
Referenced by add_hsep_to_box(), and add_resnn_label().
LiVESWidget* lives_standard_image_menu_item_new_from_stock | ( | const char * | stock_id, |
LiVESAccelGroup * | accel_group | ||
) |
Definition at line 8511 of file widget-helper.c.
Referenced by multitrack().
LiVESWidget* lives_standard_image_menu_item_new_with_label | ( | const char * | labeltext | ) |
Definition at line 8492 of file widget-helper.c.
Referenced by multitrack().
LiVESWidget* lives_standard_label_new | ( | const char * | labeltext | ) |
Definition at line 8601 of file widget-helper.c.
Referenced by add_context_label(), add_fill_to_box(), add_param_label_to_box(), add_resnn_label(), amixer_add_channel_slider(), autolives_pre_dialog(), create_audfade_dialog(), create_camwindow(), create_combo_dialog(), create_comments_dialog(), create_location_dialog(), create_opensel_dialog(), create_pandh_dialog(), create_prefs_dialog(), create_processing(), create_rename_dialog(), create_resaudw(), do_audio_choice_dialog(), do_startup_interface_query(), framedraw_add_label(), lives_standard_formatted_label_new(), lives_standard_frame_new(), lives_standard_label_new_with_mnemonic_widget(), lives_standard_label_new_with_tooltips(), lives_standard_tool_button_new(), mt_init_start_end_spins(), mt_init_tracks(), on_decplug_advanced_clicked(), on_rte_info_clicked(), on_vpp_advanced_clicked(), prompt_for_script_name(), run_youtube_dialog(), and splash_init().
LiVESWidget* lives_standard_label_new_with_mnemonic_widget | ( | const char * | text, |
LiVESWidget * | mnemonic_widget | ||
) |
Definition at line 8720 of file widget-helper.c.
Referenced by add_param_label_to_box(), amixer_show(), and create_new_pb_speed().
LiVESWidget* lives_standard_label_new_with_tooltips | ( | const char * | text, |
LiVESBox * | box, | ||
const char * | tips | ||
) |
Definition at line 8633 of file widget-helper.c.
Referenced by lives_layout_add_label().
LiVESWidget* lives_standard_lock_button_new | ( | boolean | is_locked, |
int | width, | ||
int | height, | ||
const char * | label, | ||
const char * | tooltip | ||
) |
Definition at line 10518 of file widget-helper.c.
LiVESWidget* lives_standard_menu_item_new | ( | void | ) |
Definition at line 8456 of file widget-helper.c.
LiVESWidget* lives_standard_menu_item_new_with_label | ( | const char * | labeltext | ) |
Definition at line 8474 of file widget-helper.c.
Referenced by add_rfx_effects2(), do_block_context(), do_effect_context(), frame_context(), make_custom_submenus(), multitrack(), and replace_with_delegates().
LiVESWidget* lives_standard_menu_new | ( | void | ) |
Definition at line 8438 of file widget-helper.c.
Referenced by add_rfx_effects2().
LiVESToolItem* lives_standard_menu_tool_button_new | ( | LiVESWidget * | icon, |
const char * | label | ||
) |
Definition at line 9228 of file widget-helper.c.
LiVESWidget* lives_standard_notebook_new | ( | const LiVESWidgetColor * | bg_color, |
const LiVESWidgetColor * | act_color | ||
) |
Definition at line 8579 of file widget-helper.c.
LiVESWidget* lives_standard_progress_bar_new | ( | void | ) |
Definition at line 9824 of file widget-helper.c.
Referenced by create_processing(), and splash_init().
LiVESWidget* lives_standard_radio_button_new | ( | const char * | labeltext, |
LiVESSList ** | rbgroup, | ||
LiVESBox * | , | ||
const char * | tooltip | ||
) |
Definition at line 9265 of file widget-helper.c.
Referenced by autolives_pre_dialog(), create_audfade_dialog(), create_insert_dialog(), create_new_pb_speed(), create_pandh_dialog(), create_resaudw(), do_audio_choice_dialog(), do_startup_interface_query(), make_preview_box(), and trash_rb().
LiVESWidget* lives_standard_radio_menu_item_new_with_label | ( | LiVESSList * | group, |
const char * | labeltext | ||
) |
Definition at line 8529 of file widget-helper.c.
Referenced by add_to_clipmenu().
LiVESWidget* lives_standard_scrolled_window_new | ( | int | width, |
int | height, | ||
LiVESWidget * | child | ||
) |
Definition at line 10272 of file widget-helper.c.
Referenced by amixer_show(), create_cleardisk_advanced_dialog(), create_processing(), create_rename_dialog(), create_text_window(), on_decplug_advanced_clicked(), and on_rte_info_clicked().
LiVESWidget* lives_standard_spin_button_new | ( | const char * | labeltext, |
double | val, | ||
double | min, | ||
double | max, | ||
double | step, | ||
double | page, | ||
int | dp, | ||
LiVESBox * | , | ||
const char * | tooltip | ||
) |
Definition at line 9397 of file widget-helper.c.
Referenced by add_video_options(), amixer_add_channel_slider(), autolives_pre_dialog(), create_audfade_dialog(), create_cdtrack_dialog(), create_insert_dialog(), create_new_pb_speed(), create_opensel_dialog(), create_resaudw(), make_preview_box(), mt_init_start_end_spins(), and on_vpp_advanced_clicked().
LiVESWidget* lives_standard_switch_new | ( | const char * | labeltext, |
boolean | active, | ||
LiVESBox * | , | ||
const char * | tooltip | ||
) |
Definition at line 8944 of file widget-helper.c.
Referenced by lives_standard_check_button_new().
LiVESWidget* lives_standard_table_new | ( | uint32_t | rows, |
uint32_t | cols, | ||
boolean | homogeneous | ||
) |
Definition at line 10420 of file widget-helper.c.
Referenced by create_text_window().
LiVESWidget* lives_standard_text_view_new | ( | const char * | text, |
LiVESTextBuffer * | tbuff | ||
) |
Definition at line 10433 of file widget-helper.c.
Referenced by create_output_textview(), on_rte_info_clicked(), and scrolled_textview().
LiVESWidget* lives_standard_tool_button_new | ( | LiVESToolbar * | , |
GtkWidget * | icon_widget, | ||
const char * | label, | ||
const char * | tooltips | ||
) |
Definition at line 12537 of file widget-helper.c.
LiVESWidget* lives_standard_toolbar_new | ( | void | ) |
Definition at line 10178 of file widget-helper.c.
LiVESWidget* lives_standard_vpaned_new | ( | void | ) |
Definition at line 8410 of file widget-helper.c.
Referenced by multitrack().
LiVESWidget* lives_standard_vseparator_new | ( | void | ) |
Definition at line 12337 of file widget-helper.c.
Referenced by add_vsep_to_box().
boolean lives_switch_get_active | ( | LiVESSwitch * | ) |
Definition at line 4551 of file widget-helper.c.
LiVESWidget* lives_switch_new | ( | void | ) |
Definition at line 4543 of file widget-helper.c.
Referenced by lives_standard_switch_new().
Definition at line 4558 of file widget-helper.c.
Referenced by lives_toggle_button_set_active().
boolean lives_table_attach | ( | LiVESTable * | , |
LiVESWidget * | child, | ||
uint32_t | left, | ||
uint32_t | right, | ||
uint32_t | top, | ||
uint32_t | bottom, | ||
LiVESAttachOptions | xoptions, | ||
LiVESAttachOptions | yoptions, | ||
uint32_t | xpad, | ||
uint32_t | ypad | ||
) |
Definition at line 7035 of file widget-helper.c.
Referenced by create_comments_dialog(), create_insert_dialog(), create_opensel_dialog(), and mt_init_tracks().
LiVESWidget* lives_table_new | ( | uint32_t | rows, |
uint32_t | cols, | ||
boolean | homogeneous | ||
) |
Definition at line 6931 of file widget-helper.c.
Referenced by create_comments_dialog(), create_insert_dialog(), create_opensel_dialog(), lives_layout_new(), lives_standard_table_new(), and scroll_tracks().
boolean lives_table_resize | ( | LiVESTable * | , |
uint32_t | rows, | ||
uint32_t | cols | ||
) |
Definition at line 7011 of file widget-helper.c.
Referenced by do_keys_window(), and do_mt_keys_window().
boolean lives_table_set_col_spacings | ( | LiVESTable * | , |
uint32_t | spacing | ||
) |
Definition at line 6972 of file widget-helper.c.
Referenced by create_insert_dialog(), lives_layout_new(), and lives_standard_table_new().
Definition at line 6998 of file widget-helper.c.
Referenced by create_opensel_dialog(), lives_standard_color_button_new(), on_double_size_activate(), on_sepwin_activate(), and resize().
Definition at line 6985 of file widget-helper.c.
boolean lives_table_set_row_spacings | ( | LiVESTable * | , |
uint32_t | spacing | ||
) |
Definition at line 6959 of file widget-helper.c.
Referenced by create_comments_dialog(), create_insert_dialog(), create_opensel_dialog(), lives_layout_new(), and lives_standard_table_new().
LiVESTextMark* lives_text_buffer_create_mark | ( | LiVESTextBuffer * | , |
const char * | mark_name, | ||
const LiVESTextIter * | where, | ||
boolean | left_gravity | ||
) |
Definition at line 4107 of file widget-helper.c.
Referenced by add_lmap_error().
boolean lives_text_buffer_delete | ( | LiVESTextBuffer * | , |
LiVESTextIter * | start, | ||
LiVESTextIter * | end | ||
) |
Definition at line 4126 of file widget-helper.c.
Referenced by clear_lmap_errors(), and remove_current_from_affected_layouts().
boolean lives_text_buffer_delete_mark | ( | LiVESTextBuffer * | , |
LiVESTextMark * | |||
) |
Definition at line 4117 of file widget-helper.c.
Referenced by remove_current_from_affected_layouts().
char* lives_text_buffer_get_all_text | ( | LiVESTextBuffer * | ) |
Definition at line 4072 of file widget-helper.c.
boolean lives_text_buffer_get_end_iter | ( | LiVESTextBuffer * | , |
LiVESTextIter * | |||
) |
Definition at line 4089 of file widget-helper.c.
Referenced by add_lmap_error(), clear_lmap_errors(), lives_text_buffer_get_all_text(), lives_text_buffer_insert_at_end(), and lives_text_view_get_text().
boolean lives_text_buffer_get_iter_at_mark | ( | LiVESTextBuffer * | , |
LiVESTextIter * | , | ||
LiVESTextMark * | |||
) |
Definition at line 4142 of file widget-helper.c.
Referenced by remove_current_from_affected_layouts().
boolean lives_text_buffer_get_start_iter | ( | LiVESTextBuffer * | , |
LiVESTextIter * | |||
) |
Definition at line 4080 of file widget-helper.c.
Referenced by clear_lmap_errors(), lives_text_buffer_get_all_text(), and lives_text_view_get_text().
char* lives_text_buffer_get_text | ( | LiVESTextBuffer * | , |
LiVESTextIter * | start, | ||
LiVESTextIter * | end, | ||
boolean | inc_hidden_chars | ||
) |
Definition at line 4063 of file widget-helper.c.
Referenced by lives_text_buffer_get_all_text(), and lives_text_view_get_text().
boolean lives_text_buffer_insert | ( | LiVESTextBuffer * | , |
LiVESTextIter * | , | ||
const char * | , | ||
int | len | ||
) |
Definition at line 4035 of file widget-helper.c.
Referenced by add_lmap_error(), and lives_text_buffer_insert_at_end().
boolean lives_text_buffer_insert_at_cursor | ( | LiVESTextBuffer * | , |
const char * | , | ||
int | len | ||
) |
Definition at line 4045 of file widget-helper.c.
boolean lives_text_buffer_insert_at_end | ( | LiVESTextBuffer * | , |
const char * | text | ||
) |
Definition at line 11723 of file widget-helper.c.
Referenced by pump_io_chan().
LiVESTextBuffer* lives_text_buffer_new | ( | void | ) |
Definition at line 4026 of file widget-helper.c.
boolean lives_text_buffer_place_cursor | ( | LiVESTextBuffer * | , |
LiVESTextIter * | |||
) |
Definition at line 4098 of file widget-helper.c.
boolean lives_text_buffer_set_text | ( | LiVESTextBuffer * | , |
const char * | , | ||
int | len | ||
) |
Definition at line 4054 of file widget-helper.c.
Referenced by lives_text_view_set_text().
LiVESTextBuffer* lives_text_view_get_buffer | ( | LiVESTextView * | ) |
Definition at line 3950 of file widget-helper.c.
Referenced by lives_text_view_get_text(), lives_text_view_set_text(), and pump_io_chan().
char* lives_text_view_get_text | ( | LiVESTextView * | ) |
Definition at line 11706 of file widget-helper.c.
Referenced by after_param_text_changed(), on_details_button_clicked(), on_filesel_button_clicked(), on_save_textview_clicked(), and set_param_from_list().
LiVESWidget* lives_text_view_new | ( | void | ) |
Definition at line 3932 of file widget-helper.c.
Referenced by lives_standard_text_view_new().
LiVESWidget* lives_text_view_new_with_buffer | ( | LiVESTextBuffer * | ) |
Definition at line 3941 of file widget-helper.c.
Referenced by lives_standard_text_view_new().
Definition at line 3968 of file widget-helper.c.
boolean lives_text_view_set_bottom_margin | ( | LiVESTextView * | , |
int | margin | ||
) |
Definition at line 4015 of file widget-helper.c.
Definition at line 3977 of file widget-helper.c.
Referenced by lives_standard_text_view_new().
Definition at line 3959 of file widget-helper.c.
Referenced by lives_standard_text_view_new().
boolean lives_text_view_set_justification | ( | LiVESTextView * | , |
LiVESJustification | justify | ||
) |
Definition at line 3995 of file widget-helper.c.
Referenced by lives_standard_text_view_new().
boolean lives_text_view_set_text | ( | LiVESTextView * | , |
const char * | text, | ||
int | len | ||
) |
Definition at line 11715 of file widget-helper.c.
Referenced by lives_standard_text_view_new(), on_filesel_button_clicked(), and set_param_from_list().
boolean lives_text_view_set_top_margin | ( | LiVESTextView * | , |
int | margin | ||
) |
Definition at line 4004 of file widget-helper.c.
boolean lives_text_view_set_wrap_mode | ( | LiVESTextView * | , |
LiVESWrapMode | wrapmode | ||
) |
Definition at line 3986 of file widget-helper.c.
Referenced by lives_standard_text_view_new().
const char* lives_textsize_to_string | ( | int | val | ) |
Definition at line 12633 of file widget-helper.c.
uint32_t lives_timer_add | ( | uint32_t | interval, |
LiVESWidgetSourceFunc | function, | ||
livespointer | data | ||
) |
Definition at line 7318 of file widget-helper.c.
boolean lives_timer_remove | ( | uint32_t | timer | ) |
Definition at line 7341 of file widget-helper.c.
Referenced by lives_source_remove().
boolean lives_toggle_button_get_active | ( | LiVESToggleButton * | ) |
Definition at line 4472 of file widget-helper.c.
Referenced by after_boolean_param_toggled(), apply_prefs(), autolives_toggle(), avel_spin_changed(), do_comments_dialog(), do_startup_interface_query(), draw_cool_toggle(), grabkeys_callback_hook(), lives_cool_toggled(), lives_toggle_button_toggle(), mt_change_vals_activate(), mt_sensitise(), on_amixer_close_clicked(), on_amixer_slider_changed(), on_capture_activate(), on_ins_silence_details_clicked(), on_insert_pre_activate(), on_insertwsound_toggled(), on_multitrack_activate(), on_open_lives2lives_activate(), on_prv_link_toggled(), on_rb_audrec_time_toggled(), on_recaudclip_ok_clicked(), on_resaudio_ok_clicked(), on_seltrack_activate(), on_vppa_ok_clicked(), on_warn_mask_toggled(), rec(), render_to_clip(), rtemode_callback_hook(), set_param_from_list(), set_render_choice(), toggle_sets_pref(), and track_select().
Definition at line 4483 of file widget-helper.c.
Referenced by after_vpp_changed(), amixer_show(), autolives_pre_dialog(), ce_thumbs_set_fx_area(), create_audfade_dialog(), create_comments_dialog(), create_encoder_prep_dialog(), create_insert_dialog(), create_resaudw(), do_audio_choice_dialog(), do_startup_interface_query(), lives_toggle_button_toggle(), make_preview_box(), on_resaudw_asamps_changed(), on_seltrack_activate(), on_warn_mask_toggled(), pref_factory_bitmapped(), pref_factory_bool(), prefsw_set_astream_settings(), prefsw_set_rec_after_settings(), render_to_clip(), set_param_from_list(), toggle_toggles_var(), trash_rb(), widget_act_toggle(), and widget_inact_toggle().
Definition at line 4496 of file widget-helper.c.
Referenced by amixer_show(), and lives_glowing_check_button_new().
boolean lives_toggle_button_toggle | ( | LiVESToggleButton * | ) |
Definition at line 11494 of file widget-helper.c.
Referenced by label_act_toggle().
boolean lives_toggle_tool_button_get_active | ( | LiVESToggleToolButton * | ) |
Definition at line 4517 of file widget-helper.c.
Referenced by draw_cool_toggle(), lives_cool_toggled(), lives_toggle_tool_button_toggle(), and on_audio_toggled().
LiVESWidget* lives_toggle_tool_button_new | ( | void | ) |
Definition at line 4508 of file widget-helper.c.
Definition at line 4525 of file widget-helper.c.
Referenced by lives_toggle_tool_button_toggle(), pref_factory_bool(), widget_act_toggle(), and widget_inact_toggle().
boolean lives_toggle_tool_button_toggle | ( | LiVESToggleToolButton * | ) |
Definition at line 11499 of file widget-helper.c.
Referenced by label_act_toggle().
LiVESToolItem* lives_tool_button_new | ( | LiVESWidget * | icon_widget, |
const char * | label | ||
) |
Definition at line 5174 of file widget-helper.c.
Referenced by lives_standard_tool_button_new().
boolean lives_tool_button_set_border_color | ( | LiVESWidget * | button, |
LiVESWidgetState | state, | ||
LiVESWidgetColor * | |||
) |
Definition at line 12520 of file widget-helper.c.
Referenced by set_mt_colours().
boolean lives_tool_button_set_icon_widget | ( | LiVESToolButton * | , |
LiVESWidget * | icon | ||
) |
Definition at line 5201 of file widget-helper.c.
Referenced by mt_swap_play_pause().
boolean lives_tool_button_set_label_widget | ( | LiVESToolButton * | , |
LiVESWidget * | label | ||
) |
Definition at line 5218 of file widget-helper.c.
Referenced by lives_standard_tool_button_new().
Definition at line 5235 of file widget-helper.c.
LiVESToolItem* lives_tool_item_new | ( | void | ) |
Definition at line 5183 of file widget-helper.c.
Referenced by lives_glowing_tool_button_new(), and lives_toolbar_insert_label().
LiVESIconSize lives_toolbar_get_icon_size | ( | LiVESToolbar * | ) |
Definition at line 5399 of file widget-helper.c.
Referenced by mt_swap_play_pause().
boolean lives_toolbar_insert | ( | LiVESToolbar * | , |
LiVESToolItem * | , | ||
int | pos | ||
) |
Definition at line 5381 of file widget-helper.c.
Referenced by lives_glowing_tool_button_new(), and lives_toolbar_insert_space().
LiVESWidget* lives_toolbar_insert_label | ( | LiVESToolbar * | , |
const char * | labeltext, | ||
LiVESWidget * | actwidg | ||
) |
Definition at line 12447 of file widget-helper.c.
LiVESWidget* lives_toolbar_insert_space | ( | LiVESToolbar * | ) |
Definition at line 12434 of file widget-helper.c.
LiVESWidget* lives_toolbar_new | ( | void | ) |
Definition at line 5372 of file widget-helper.c.
Referenced by lives_standard_toolbar_new().
boolean lives_toolbar_set_icon_size | ( | LiVESToolbar * | , |
LiVESIconSize | icon_size | ||
) |
Definition at line 5407 of file widget-helper.c.
Referenced by lives_standard_toolbar_new().
Definition at line 5390 of file widget-helper.c.
Referenced by lives_standard_toolbar_new().
boolean lives_toolbar_set_style | ( | LiVESToolbar * | , |
LiVESToolbarStyle | style | ||
) |
Definition at line 5416 of file widget-helper.c.
Referenced by lives_standard_toolbar_new().
void lives_tooltips_copy | ( | LiVESWidget * | dest, |
LiVESWidget * | source | ||
) |
Definition at line 7488 of file widget-helper.c.
Referenced by amixer_show().
boolean lives_tree_model_get | ( | LiVESTreeModel * | , |
LiVESTreeIter * | , | ||
... | |||
) |
Definition at line 5708 of file widget-helper.c.
Referenced by fx_changed().
boolean lives_tree_model_get_iter | ( | LiVESTreeModel * | , |
LiVESTreeIter * | , | ||
LiVESTreePath * | |||
) |
Definition at line 5721 of file widget-helper.c.
boolean lives_tree_model_get_iter_first | ( | LiVESTreeModel * | , |
LiVESTreeIter * | |||
) |
Definition at line 5730 of file widget-helper.c.
LiVESTreePath* lives_tree_model_get_path | ( | LiVESTreeModel * | , |
LiVESTreeIter * | |||
) |
Definition at line 5738 of file widget-helper.c.
boolean lives_tree_model_iter_children | ( | LiVESTreeModel * | , |
LiVESTreeIter * | , | ||
LiVESTreeIter * | parent | ||
) |
Definition at line 5747 of file widget-helper.c.
int lives_tree_model_iter_n_children | ( | LiVESTreeModel * | , |
LiVESTreeIter * | |||
) |
Definition at line 5756 of file widget-helper.c.
boolean lives_tree_model_iter_next | ( | LiVESTreeModel * | , |
LiVESTreeIter * | |||
) |
Definition at line 5764 of file widget-helper.c.
boolean lives_tree_path_free | ( | LiVESTreePath * | ) |
Definition at line 5772 of file widget-helper.c.
int lives_tree_path_get_depth | ( | LiVESTreePath * | ) |
Definition at line 5790 of file widget-helper.c.
int* lives_tree_path_get_indices | ( | LiVESTreePath * | ) |
Definition at line 5799 of file widget-helper.c.
LiVESTreePath* lives_tree_path_new_from_string | ( | const char * | path | ) |
Definition at line 5781 of file widget-helper.c.
boolean lives_tree_selection_get_selected | ( | LiVESTreeSelection * | , |
LiVESTreeModel ** | , | ||
LiVESTreeIter * | |||
) |
Definition at line 5988 of file widget-helper.c.
Referenced by on_prefs_page_changed().
boolean lives_tree_selection_select_iter | ( | LiVESTreeSelection * | , |
LiVESTreeIter * | |||
) |
Definition at line 6006 of file widget-helper.c.
boolean lives_tree_selection_set_mode | ( | LiVESTreeSelection * | , |
LiVESSelectionMode | |||
) |
Definition at line 5997 of file widget-helper.c.
boolean lives_tree_store_append | ( | LiVESTreeStore * | , |
LiVESTreeIter * | , | ||
LiVESTreeIter * | parent | ||
) |
Definition at line 5831 of file widget-helper.c.
boolean lives_tree_store_find_iter | ( | LiVESTreeStore * | , |
int | col, | ||
const char * | val, | ||
LiVESTreeIter * | existing, | ||
LiVESTreeIter * | newiter | ||
) |
Definition at line 11805 of file widget-helper.c.
LiVESTreeStore* lives_tree_store_new | ( | int | ncols, |
... | |||
) |
Definition at line 5808 of file widget-helper.c.
boolean lives_tree_store_prepend | ( | LiVESTreeStore * | , |
LiVESTreeIter * | , | ||
LiVESTreeIter * | parent | ||
) |
Definition at line 5841 of file widget-helper.c.
boolean lives_tree_store_set | ( | LiVESTreeStore * | , |
LiVESTreeIter * | , | ||
... | |||
) |
Definition at line 5851 of file widget-helper.c.
Referenced by lives_combo_append_text(), and lives_combo_prepend_text().
int lives_tree_view_append_column | ( | LiVESTreeView * | , |
LiVESTreeViewColumn * | |||
) |
Definition at line 5909 of file widget-helper.c.
LiVESTreeViewColumn* lives_tree_view_column_new_with_attributes | ( | const char * | title, |
LiVESCellRenderer * | , | ||
... | |||
) |
Definition at line 5940 of file widget-helper.c.
boolean lives_tree_view_column_set_fixed_width | ( | LiVESTreeViewColumn * | , |
int | fwidth | ||
) |
Definition at line 5979 of file widget-helper.c.
boolean lives_tree_view_column_set_sizing | ( | LiVESTreeViewColumn * | , |
LiVESTreeViewColumnSizing | type | ||
) |
Definition at line 5969 of file widget-helper.c.
LiVESAdjustment* lives_tree_view_get_hadjustment | ( | LiVESTreeView * | ) |
Definition at line 5927 of file widget-helper.c.
LiVESTreeModel* lives_tree_view_get_model | ( | LiVESTreeView * | ) |
Definition at line 5891 of file widget-helper.c.
LiVESTreeSelection* lives_tree_view_get_selection | ( | LiVESTreeView * | ) |
Definition at line 5900 of file widget-helper.c.
LiVESWidget* lives_tree_view_new | ( | void | ) |
Definition at line 5873 of file widget-helper.c.
Referenced by create_prefs_dialog().
LiVESWidget* lives_tree_view_new_with_model | ( | LiVESTreeModel * | ) |
Definition at line 5864 of file widget-helper.c.
Definition at line 5918 of file widget-helper.c.
Referenced by create_prefs_dialog().
boolean lives_tree_view_set_model | ( | LiVESTreeView * | , |
LiVESTreeModel * | |||
) |
Definition at line 5882 of file widget-helper.c.
Referenced by on_prefs_close_clicked(), and on_prefs_revert_clicked().
int lives_utf8_strcmpfunc | ( | livesconstpointer | , |
livesconstpointer | , | ||
livespointer | fwd | ||
) |
Definition at line 11025 of file widget-helper.c.
Referenced by lives_list_sort_alpha().
LiVESWidget* lives_vbox_new | ( | boolean | homogeneous, |
int | spacing | ||
) |
Definition at line 3267 of file widget-helper.c.
Referenced by add_mt_param_box(), add_video_options(), amixer_add_channel_slider(), amixer_show(), autolives_pre_dialog(), create_cleardisk_advanced_dialog(), create_clip_info_window(), create_comments_dialog(), create_new_pb_speed(), create_opensel_dialog(), create_prefs_dialog(), create_processing(), create_rename_dialog(), create_resaudw(), create_text_window(), funkify_dialog(), make_preview_box(), multitrack(), on_decplug_advanced_clicked(), on_fx_pre_activate(), prompt_for_script_name(), splash_init(), and trash_rb().
LiVESWidget* lives_vbutton_box_new | ( | void | ) |
Definition at line 3342 of file widget-helper.c.
LiVESWidget* lives_volume_button_new | ( | LiVESOrientation | orientation, |
LiVESAdjustment * | , | ||
double | volume | ||
) |
Definition at line 7552 of file widget-helper.c.
LiVESWidget* lives_vpaned_new | ( | void | ) |
Definition at line 3412 of file widget-helper.c.
Referenced by lives_standard_vpaned_new().
LiVESWidget* lives_vscale_new | ( | LiVESAdjustment * | ) |
Definition at line 3383 of file widget-helper.c.
Referenced by amixer_add_channel_slider().
LiVESWidget* lives_vscrollbar_new | ( | LiVESAdjustment * | ) |
Definition at line 3441 of file widget-helper.c.
LiVESWidget* lives_vseparator_new | ( | void | ) |
Definition at line 3315 of file widget-helper.c.
Referenced by create_insert_dialog(), create_resaudw(), lives_layout_add_separator(), and lives_standard_vseparator_new().
boolean lives_widget_add_accelerator | ( | LiVESWidget * | , |
const char * | accel_signal, | ||
LiVESAccelGroup * | accel_group, | ||
uint32_t | accel_key, | ||
LiVESXModifierType | accel_mods, | ||
LiVESAccelFlags | accel_flags | ||
) |
Definition at line 2953 of file widget-helper.c.
Referenced by add_rfx_effects2(), amixer_show(), create_cds_dialog(), create_insert_dialog(), create_new_pb_speed(), create_opensel_dialog(), create_processing(), create_resaudw(), create_text_window(), lives_dialog_add_escape(), mt_init_start_end_spins(), multitrack(), and on_fx_pre_activate().
boolean lives_widget_add_events | ( | LiVESWidget * | , |
int | events | ||
) |
Definition at line 4821 of file widget-helper.c.
Referenced by lives_standard_combo_new(), and mt_init_tracks().
void lives_widget_apply_theme | ( | LiVESWidget * | , |
LiVESWidgetState | state | ||
) |
Definition at line 11156 of file widget-helper.c.
Referenced by amixer_show(), create_prefs_dialog(), lives_dialog_add_button_from_stock(), lives_standard_drawing_area_new(), lives_standard_frame_new(), lives_standard_hruler_new(), lives_standard_label_new(), lives_standard_progress_bar_new(), lives_standard_table_new(), mt_init_start_end_spins(), set_colours(), set_mt_colours(), and widget_add_preview().
void lives_widget_apply_theme2 | ( | LiVESWidget * | , |
LiVESWidgetState | state, | ||
boolean | set_fg | ||
) |
Definition at line 11169 of file widget-helper.c.
Referenced by add_mt_param_box(), amixer_show(), create_prefs_dialog(), do_effect_context(), lives_standard_check_menu_item_new_with_label(), lives_standard_image_menu_item_new_from_stock(), lives_standard_image_menu_item_new_with_label(), lives_standard_label_new(), lives_standard_menu_item_new(), lives_standard_menu_item_new_with_label(), lives_standard_menu_new(), lives_standard_radio_menu_item_new_with_label(), set_colours(), and set_mt_colours().
void lives_widget_apply_theme3 | ( | LiVESWidget * | , |
LiVESWidgetState | state | ||
) |
Definition at line 11183 of file widget-helper.c.
Referenced by lives_standard_text_view_new().
void lives_widget_apply_theme_dimmed | ( | LiVESWidget * | , |
LiVESWidgetState | state, | ||
int | dimval | ||
) |
Definition at line 11200 of file widget-helper.c.
void lives_widget_apply_theme_dimmed2 | ( | LiVESWidget * | , |
LiVESWidgetState | state, | ||
int | dimval | ||
) |
Definition at line 11212 of file widget-helper.c.
Referenced by lives_standard_check_menu_item_new_with_label(), lives_standard_image_menu_item_new_from_stock(), lives_standard_image_menu_item_new_with_label(), lives_standard_menu_item_new(), lives_standard_menu_item_new_with_label(), lives_standard_menu_new(), and lives_standard_radio_menu_item_new_with_label().
LiVESWidgetColor* lives_widget_color_copy | ( | LiVESWidgetColor * | c1orNULL, |
const LiVESWidgetColor * | c2 | ||
) |
Definition at line 2258 of file widget-helper.c.
Referenced by lives_widget_apply_theme_dimmed(), lives_widget_apply_theme_dimmed2(), lives_widget_get_bg_state_color(), lives_widget_get_fg_state_color(), and set_palette_colours().
boolean lives_widget_color_equal | ( | LiVESWidgetColor * | , |
const LiVESWidgetColor * | |||
) |
Definition at line 2233 of file widget-helper.c.
boolean lives_widget_color_mix | ( | LiVESWidgetColor * | c1, |
const LiVESWidgetColor * | c2, | ||
float | mixval | ||
) |
Definition at line 2245 of file widget-helper.c.
Referenced by lives_widget_apply_theme_dimmed(), and lives_widget_apply_theme_dimmed2().
boolean lives_widget_context_update | ( | void | ) |
Definition at line 11878 of file widget-helper.c.
Referenced by build_init_config(), create_rte_window(), do_auto_dialog(), do_messages_window(), do_no_decoder_error(), do_resize_dlg(), insert_frames(), mt_prepare_for_playback(), on_merge_cancel_clicked(), on_open_lives2lives_activate(), on_rebuild_rfx_activate(), on_resaudio_ok_clicked(), on_vppa_cancel_clicked(), refresh_rte_window(), resize(), resize_widgets_for_monitor(), set_new_set_name(), showclipimgs(), splash_init(), and splash_msg().
lives_painter_surface_t* lives_widget_create_painter_surface | ( | LiVESWidget * | ) |
Definition at line 700 of file widget-helper.c.
Referenced by all_config(), config_laud_draw(), config_raud_draw(), config_vid_draw(), and redraw_timeline().
boolean lives_widget_destroy | ( | LiVESWidget * | ) |
Definition at line 1553 of file widget-helper.c.
Referenced by _lives_widget_destroy(), add_mt_param_box(), add_rfx_effects(), add_rfx_effects2(), ask_permission_dialog_complex(), autolives_toggle(), check_for_layout_del(), delete_audio_track(), delete_video_track(), do_auto_dialog(), do_comments_dialog(), do_foundclips_query(), do_imgfmts_error(), do_onchange_init(), do_please_install(), do_resize_dlg(), do_startup_interface_query(), do_warning_dialog_with_check(), do_workdir_query(), do_yesno_dialog(), do_yesno_dialog_with_check(), do_yesno_dialogf(), lives_general_button_clicked(), lives_layout_add_label(), mt_change_vals_activate(), mt_delete_clips(), mt_init_tracks(), mt_show_current_frame(), multitrack(), on_amixer_close_clicked(), on_camquit_clicked(), on_capture_activate(), on_clear_event_list_activate(), on_cleardisk_advanced_clicked(), on_export_proj_activate(), on_fade_audio_activate(), on_filechooser_cancel_clicked(), on_filesel_button_clicked(), on_ins_silence_details_clicked(), on_live_fw_activate(), on_live_tvcard_activate(), on_load_set_activate(), on_merge_cancel_clicked(), on_multitrack_activate(), on_ok_file_open_clicked(), on_open_lives2lives_activate(), on_quit_activate(), on_recaudclip_ok_clicked(), on_rename_clip_name(), on_rename_track_activate(), on_resaudio_ok_clicked(), on_save_set_activate(), on_vppa_cancel_clicked(), refresh_rte_window(), reload_clip(), render_to_clip(), resize_widgets_for_monitor(), rte_reset_defs_clicked(), rte_set_defs_activate(), scroll_tracks(), set_new_set_name(), splash_end(), splash_init(), and switch_to_file().
boolean lives_widget_destroy_with | ( | LiVESWidget * | , |
LiVESWidget * | dieplease | ||
) |
Definition at line 7221 of file widget-helper.c.
int lives_widget_get_allocation_height | ( | LiVESWidget * | ) |
Definition at line 5470 of file widget-helper.c.
Referenced by all_expose_overlay(), choose_file_with_preview(), clear_widget_bg(), draw_cool_toggle(), get_border_size(), get_player_size(), lives_widget_create_painter_surface(), msg_area_config(), prepare_to_play_foreign(), reshow_msg_area(), resize(), resize_message_area(), set_mt_play_sizes_cfg(), and unpaint_line().
int lives_widget_get_allocation_width | ( | LiVESWidget * | ) |
Definition at line 5455 of file widget-helper.c.
Referenced by all_expose_overlay(), choose_file_with_preview(), clear_widget_bg(), draw_cool_toggle(), get_border_size(), get_player_size(), get_time_from_x(), lives_ce_update_timeline(), lives_widget_create_painter_surface(), msg_area_config(), on_hrule_reset(), on_hrule_set(), on_hrule_update(), on_mouse_sel_start(), on_mouse_sel_update(), prepare_to_play_foreign(), redraw_timer_bars(), reshow_msg_area(), resize(), set_mt_play_sizes_cfg(), and unpaint_line().
int lives_widget_get_allocation_x | ( | LiVESWidget * | ) |
Definition at line 5425 of file widget-helper.c.
Referenced by align_horizontal_with().
int lives_widget_get_allocation_y | ( | LiVESWidget * | ) |
Definition at line 5440 of file widget-helper.c.
Referenced by all_expose_overlay().
boolean lives_widget_get_bg_state_color | ( | LiVESWidget * | , |
LiVESWidgetState | state, | ||
LiVESWidgetColor * | |||
) |
Definition at line 2213 of file widget-helper.c.
LiVESXDisplay* lives_widget_get_display | ( | LiVESWidget * | ) |
Definition at line 7229 of file widget-helper.c.
lives_display_t lives_widget_get_display_type | ( | LiVESWidget * | ) |
Definition at line 7285 of file widget-helper.c.
Referenced by lives_widget_get_xwinid().
boolean lives_widget_get_fg_color | ( | LiVESWidget * | , |
LiVESWidgetColor * | |||
) |
Definition at line 11290 of file widget-helper.c.
boolean lives_widget_get_fg_state_color | ( | LiVESWidget * | , |
LiVESWidgetState | state, | ||
LiVESWidgetColor * | |||
) |
Definition at line 2191 of file widget-helper.c.
Referenced by lives_widget_get_fg_color().
boolean lives_widget_get_mod_mask | ( | LiVESWidget * | , |
LiVESXModifierType * | modmask | ||
) |
boolean lives_widget_get_modmask | ( | LiVESXDevice * | , |
LiVESWidget * | , | ||
LiVESXModifierType * | modmask | ||
) |
Definition at line 7195 of file widget-helper.c.
Referenced by on_hrule_update(), and on_timeline_press().
boolean lives_widget_get_no_show_all | ( | LiVESWidget * | ) |
Definition at line 4877 of file widget-helper.c.
LiVESWidget* lives_widget_get_parent | ( | LiVESWidget * | ) |
Definition at line 4739 of file widget-helper.c.
Referenced by add_param_to_box(), all_config(), lives_button_center(), lives_button_uncenter(), lives_dialog_add_action_widget(), lives_layout_expansion_row_new(), lives_standard_color_button_new(), lives_tool_button_set_border_color(), lives_widget_set_show_hide_parent(), lives_widget_unparent(), on_liveinp_advanced_clicked(), popup_lmap_errors(), set_colours(), set_interactive(), set_mt_colours(), and switch_to_file().
boolean lives_widget_get_pointer | ( | LiVESXDevice * | , |
LiVESWidget * | , | ||
int * | x, | ||
int * | y | ||
) |
Definition at line 7190 of file widget-helper.c.
Referenced by on_hrule_reset(), on_hrule_set(), on_hrule_update(), on_mouse_sel_start(), on_mouse_sel_update(), on_timeline_press(), on_timeline_update(), and on_track_release().
boolean lives_widget_get_position | ( | LiVESWidget * | , |
int * | x, | ||
int * | y | ||
) |
Definition at line 2802 of file widget-helper.c.
boolean lives_widget_get_preferred_size | ( | LiVESWidget * | , |
LiVESRequisition * | min_size, | ||
LiVESRequisition * | nat_size | ||
) |
Definition at line 4855 of file widget-helper.c.
boolean lives_widget_get_sensitive | ( | LiVESWidget * | ) |
Definition at line 1497 of file widget-helper.c.
LiVESWidgetState lives_widget_get_state | ( | LiVESWidget * | widget | ) |
Definition at line 5498 of file widget-helper.c.
Referenced by lives_widget_get_bg_state_color(), lives_widget_get_fg_state_color(), and reshow_msg_area().
LiVESWidget* lives_widget_get_toplevel | ( | LiVESWidget * | ) |
Definition at line 4750 of file widget-helper.c.
Referenced by dlg_focus_changed(), lives_button_grab_default_special(), lives_button_ungrab_default_special(), lives_general_button_clicked(), on_cleardisk_activate(), on_filesel_button_clicked(), on_lerrors_clear_clicked(), on_liveinp_advanced_clicked(), on_paramwindow_button_clicked(), on_save_textview_clicked(), on_vppa_ok_clicked(), and response_ok().
LiVESWindow* lives_widget_get_window | ( | LiVESWidget * | ) |
Definition at line 4771 of file widget-helper.c.
LiVESXWindow* lives_widget_get_xwindow | ( | LiVESWidget * | ) |
Definition at line 4759 of file widget-helper.c.
Referenced by do_quick_switch(), do_startup_interface_query(), do_workdir_query(), get_border_size(), lives_set_cursor_style(), lives_widget_create_painter_surface(), lives_widget_get_mods(), lives_widget_get_position(), lives_widget_get_xwinid(), lives_window_get_inner_size(), mt_post_playback(), mt_show_current_frame(), on_mouse_scroll(), on_sepwin_activate(), on_track_release(), on_vppa_cancel_clicked(), and resize().
uint64_t lives_widget_get_xwinid | ( | LiVESWidget * | , |
const char * | failure_msg | ||
) |
Definition at line 7298 of file widget-helper.c.
Referenced by on_vppa_ok_clicked().
boolean lives_widget_grab_default | ( | LiVESWidget * | ) |
Definition at line 4722 of file widget-helper.c.
Referenced by dlg_focus_changed(), and lives_button_grab_default_special().
boolean lives_widget_grab_focus | ( | LiVESWidget * | ) |
Definition at line 4712 of file widget-helper.c.
Referenced by create_cds_dialog(), create_insert_dialog(), create_new_pb_speed(), on_multitrack_activate(), on_prv_link_toggled(), perform_param_checks(), perform_rfxbuilder_checks(), and switch_to_file().
boolean lives_widget_has_default | ( | LiVESWidget * | ) |
Definition at line 2999 of file widget-helper.c.
boolean lives_widget_has_focus | ( | LiVESWidget * | ) |
physical
Definition at line 2981 of file widget-helper.c.
boolean lives_widget_hide | ( | LiVESWidget * | ) |
Definition at line 1514 of file widget-helper.c.
Referenced by build_init_config(), close_current_file(), create_processing(), do_auto_dialog(), do_startup_interface_query(), do_workdir_query(), end_fs_preview(), fade_background(), hide_warn_image(), lives_widget_set_opacity(), make_preview_box(), on_capture_activate(), on_cleardisk_activate(), on_double_size_activate(), on_effects_paused(), on_fade_activate(), on_liveinp_advanced_clicked(), on_prefs_page_changed(), on_quit_activate(), on_redo_activate(), on_save_textview_clicked(), on_sepwin_activate(), on_showfct_activate(), on_toolbar_hide(), on_toy_activate(), on_undo_activate(), pref_factory_bool(), resize(), set_interactive(), set_mt_colours(), set_redoable(), set_undoable(), show_lives(), show_playbar_labels(), splash_init(), splash_msg(), switch_aud_to_sox(), switch_to_file(), unfade_background(), and update_rfx_menus().
boolean lives_widget_is_ancestor | ( | LiVESWidget * | , |
LiVESWidget * | ancestor | ||
) |
Definition at line 1740 of file widget-helper.c.
Referenced by rte_reset_defs_clicked().
boolean lives_widget_is_focus | ( | LiVESWidget * | ) |
logical
Definition at line 2990 of file widget-helper.c.
boolean lives_widget_is_realized | ( | LiVESWidget * | ) |
Definition at line 4916 of file widget-helper.c.
boolean lives_widget_is_sensitive | ( | LiVESWidget * | ) |
Definition at line 4885 of file widget-helper.c.
Referenced by dlg_focus_changed(), drag_from_outside(), label_act_lockbutton(), mt_prepare_for_playback(), render_to_clip(), widget_act_toggle(), and widget_inact_toggle().
boolean lives_widget_is_visible | ( | LiVESWidget * | ) |
Definition at line 4901 of file widget-helper.c.
Referenced by check_storage_space(), idle_cancel_proc(), show_playbar_labels(), and unpaint_line().
boolean lives_widget_nullify_with | ( | LiVESWidget * | , |
void ** | |||
) |
Definition at line 7213 of file widget-helper.c.
Referenced by widget_add_preview().
boolean lives_widget_object_ref | ( | livespointer | ) |
increase refcount by one
Definition at line 797 of file widget-helper.c.
Referenced by add_audio_track(), funkify_dialog(), lives_layout_add_label(), lives_layout_expansion_row_new(), multitrack_playall(), and set_interactive().
boolean lives_widget_object_ref_sink | ( | livespointer | ) |
Definition at line 845 of file widget-helper.c.
void lives_widget_object_set_data_auto | ( | LiVESWidgetObject * | , |
const char * | key, | ||
livespointer | data | ||
) |
Definition at line 285 of file widget-helper.c.
Referenced by add_audio_track(), and on_rename_track_activate().
void lives_widget_object_set_data_list | ( | LiVESWidgetObject * | , |
const char * | key, | ||
LiVESList * | list | ||
) |
Definition at line 292 of file widget-helper.c.
Referenced by lives_layout_expansion_row_new(), lives_layout_new(), and lives_layout_pack().
void lives_widget_object_set_data_widget_object | ( | LiVESWidgetObject * | , |
const char * | key, | ||
livespointer | other | ||
) |
Definition at line 298 of file widget-helper.c.
Referenced by add_audio_track().
boolean lives_widget_object_unref | ( | livespointer | ) |
decrease refcount by one: if refcount==0, object is destroyed
Definition at line 815 of file widget-helper.c.
Referenced by add_fill_to_box(), end_fs_preview(), free_thumb_cache(), get_window_stack_level(), insert_blank_frames(), lives_image_new_from_stock_at_size(), lives_layout_add_label(), lives_layout_expansion_row_new(), mt_memory_free(), mt_show_current_frame(), multitrack_delete(), render_events(), render_to_clip(), set_interactive(), splash_init(), virtual_to_images(), and weed_layer_pixel_data_free().
boolean lives_widget_process_updates | ( | LiVESWidget * | ) |
Definition at line 1658 of file widget-helper.c.
Referenced by ask_permission_dialog_complex(), choose_file_with_preview(), create_comments_dialog(), do_auto_dialog(), do_foundclips_query(), do_please_install(), do_warning_dialog_with_check(), do_yesno_dialog(), do_yesno_dialog_with_check(), do_yesno_dialogf(), get_set_list(), lives_exit(), lives_general_button_clicked(), lives_widget_queue_draw_and_update(), mt_delete_clips(), multitrack_view_events(), multitrack_view_sel_events(), on_cancel_keep_button_clicked(), on_capture_activate(), on_eject_cd_activate(), on_export_proj_activate(), on_fade_audio_activate(), on_filesel_button_clicked(), on_import_theme_activate(), on_ins_silence_details_clicked(), on_load_cdtrack_activate(), on_load_set_activate(), on_load_subs_activate(), on_prefs_revert_clicked(), on_recaudclip_ok_clicked(), on_save_set_activate(), on_save_subs_activate(), on_save_textview_clicked(), pref_factory_bitmapped(), pref_factory_bool(), pref_factory_color_button(), pref_factory_float(), pref_factory_int(), pref_factory_int64(), pref_factory_string(), pref_factory_string_choice(), prepare_to_play_foreign(), set_new_set_name(), and wait_for_stop().
boolean lives_widget_queue_draw | ( | LiVESWidget * | ) |
Definition at line 1580 of file widget-helper.c.
Referenced by add_audio_track(), close_current_file(), dlg_focus_changed(), end_fs_preview(), lives_cool_toggled(), lives_widget_queue_draw_and_update(), lives_widget_queue_draw_if_visible(), load_frame_image(), load_rfx_preview(), mt_aparam_view_toggled(), mt_idle_show_current_frame(), mt_show_current_frame(), mt_spin_end_value_changed(), mt_spin_start_value_changed(), on_del_node_clicked(), on_hrule_set(), on_lerrors_clear_clicked(), on_rebuild_rfx_activate(), on_rewind_activate(), on_timeline_release(), pref_change_images(), pref_change_xcolours(), pref_factory_bool(), redraw_timeline(), resize_message_area(), rte_reset_defs_clicked(), set_sel_label(), set_timeline_end_secs(), showclipimgs(), splash_msg(), switch_to_file(), and unselect_all().
boolean lives_widget_queue_draw_and_update | ( | LiVESWidget * | ) |
Definition at line 11018 of file widget-helper.c.
Referenced by on_load_cdtrack_ok_clicked(), on_ok_file_open_clicked(), and on_save_set_activate().
boolean lives_widget_queue_draw_area | ( | LiVESWidget * | , |
int | x, | ||
int | y, | ||
int | width, | ||
int | height | ||
) |
Definition at line 1593 of file widget-helper.c.
Referenced by unpaint_line().
boolean lives_widget_queue_draw_if_visible | ( | LiVESWidget * | ) |
Definition at line 11009 of file widget-helper.c.
Referenced by d_print(), lives_ce_update_timeline(), on_rewind_activate(), and resize_message_area().
boolean lives_widget_queue_resize | ( | LiVESWidget * | ) |
Definition at line 1605 of file widget-helper.c.
Referenced by on_liveinp_advanced_clicked(), and resize_widgets_for_monitor().
boolean lives_widget_realize | ( | LiVESWidget * | ) |
Definition at line 1571 of file widget-helper.c.
boolean lives_widget_remove_accelerator | ( | LiVESWidget * | , |
LiVESAccelGroup * | , | ||
uint32_t | accel_key, | ||
LiVESXModifierType | accel_mods | ||
) |
Definition at line 4843 of file widget-helper.c.
boolean lives_widget_reparent | ( | LiVESWidget * | , |
LiVESWidget * | new_parent | ||
) |
Definition at line 1721 of file widget-helper.c.
Referenced by multitrack().
Definition at line 1748 of file widget-helper.c.
Referenced by add_to_playframe(), lives_standard_drawing_area_new(), make_preview_box(), on_sepwin_activate(), and widget_add_preview().
boolean lives_widget_set_base_color | ( | LiVESWidget * | , |
LiVESWidgetState | state, | ||
const LiVESWidgetColor * | |||
) |
Definition at line 2126 of file widget-helper.c.
Referenced by lives_widget_apply_theme(), lives_widget_apply_theme3(), lives_widget_set_bg_color(), on_rte_info_clicked(), set_colours(), and set_mt_colours().
boolean lives_widget_set_bg_color | ( | LiVESWidget * | , |
LiVESWidgetState | state, | ||
const LiVESWidgetColor * | |||
) |
Definition at line 2056 of file widget-helper.c.
Referenced by add_context_label(), add_to_playframe(), amixer_add_channel_slider(), amixer_show(), choose_file(), create_clip_info_window(), end_fs_preview(), frame_context(), lives_cool_toggled(), lives_glowing_check_button_new(), lives_standard_frame_new(), lives_standard_hseparator_new(), lives_standard_menu_tool_button_new(), lives_standard_vseparator_new(), lives_tool_button_set_border_color(), lives_widget_apply_theme(), lives_widget_apply_theme2(), lives_widget_apply_theme3(), lives_widget_apply_theme_dimmed(), lives_widget_apply_theme_dimmed2(), make_preview_box(), mt_clip_select(), mt_prepare_for_playback(), mt_show_current_frame(), on_rte_info_clicked(), set_colours(), set_mt_colours(), set_preview_box_colours(), set_submenu_colours(), splash_init(), and track_select().
boolean lives_widget_set_border_color | ( | LiVESWidget * | , |
LiVESWidgetState | state, | ||
const LiVESWidgetColor * | |||
) |
Definition at line 2165 of file widget-helper.c.
Definition at line 4805 of file widget-helper.c.
Referenced by create_processing(), lives_button_ungrab_default_special(), and lives_widget_set_can_focus_and_default().
Definition at line 4789 of file widget-helper.c.
Referenced by create_camwindow(), create_resaudw(), lives_editable_set_editable(), lives_standard_combo_new(), lives_standard_progress_bar_new(), and lives_widget_set_can_focus_and_default().
boolean lives_widget_set_can_focus_and_default | ( | LiVESWidget * | ) |
Definition at line 12300 of file widget-helper.c.
Referenced by amixer_show(), create_camwindow(), and lives_button_grab_default_special().
boolean lives_widget_set_events | ( | LiVESWidget * | , |
int | events | ||
) |
Definition at line 4830 of file widget-helper.c.
Referenced by make_preview_box(), and widget_add_preview().
boolean lives_widget_set_fg_color | ( | LiVESWidget * | , |
LiVESWidgetState | state, | ||
const LiVESWidgetColor * | |||
) |
Definition at line 2079 of file widget-helper.c.
Referenced by add_context_label(), amixer_add_channel_slider(), amixer_show(), choose_file(), create_processing(), fade_background(), frame_context(), lives_standard_hseparator_new(), lives_standard_vseparator_new(), lives_widget_apply_theme(), lives_widget_apply_theme2(), lives_widget_apply_theme3(), lives_widget_apply_theme_dimmed(), lives_widget_apply_theme_dimmed2(), mt_clip_select(), set_colours(), set_mt_colours(), set_preview_box_colours(), set_submenu_colours(), splash_init(), track_select(), and widget_add_preview().
Definition at line 4395 of file widget-helper.c.
Referenced by lives_button_set_focus_on_click(), and make_preview_box().
Definition at line 7964 of file widget-helper.c.
Referenced by play_file().
boolean lives_widget_set_halign | ( | LiVESWidget * | , |
LiVESAlign | align | ||
) |
Definition at line 3504 of file widget-helper.c.
Referenced by add_audio_track(), add_to_playframe(), create_opensel_dialog(), lives_button_center(), lives_button_uncenter(), lives_label_set_halignment(), lives_layout_expansion_row_new(), lives_layout_pack(), lives_standard_label_new(), lives_standard_menu_tool_button_new(), lives_standard_text_view_new(), lives_tool_button_set_border_color(), and widget_add_preview().
Definition at line 6347 of file widget-helper.c.
Referenced by add_fill_to_box(), add_to_playframe(), lives_standard_notebook_new(), lives_table_attach(), make_preview_box(), on_fx_pre_activate(), and widget_add_preview().
boolean lives_widget_set_margin | ( | LiVESWidget * | , |
int | margin | ||
) |
Definition at line 2568 of file widget-helper.c.
boolean lives_widget_set_margin_bottom | ( | LiVESWidget * | , |
int | margin | ||
) |
Definition at line 2557 of file widget-helper.c.
Referenced by lives_standard_hseparator_new(), lives_standard_menu_tool_button_new(), lives_table_attach(), and lives_widget_set_margin().
boolean lives_widget_set_margin_left | ( | LiVESWidget * | , |
int | margin | ||
) |
Definition at line 2516 of file widget-helper.c.
Referenced by lives_dialog_add_action_widget(), lives_standard_menu_tool_button_new(), lives_standard_vseparator_new(), lives_table_attach(), lives_widget_set_margin(), and resize().
boolean lives_widget_set_margin_right | ( | LiVESWidget * | , |
int | margin | ||
) |
Definition at line 2531 of file widget-helper.c.
Referenced by lives_dialog_add_action_widget(), lives_standard_menu_tool_button_new(), lives_standard_vseparator_new(), lives_table_attach(), lives_widget_set_margin(), and resize().
boolean lives_widget_set_margin_top | ( | LiVESWidget * | , |
int | margin | ||
) |
Definition at line 2546 of file widget-helper.c.
Referenced by funkify_dialog(), lives_standard_hseparator_new(), lives_standard_menu_tool_button_new(), lives_table_attach(), and lives_widget_set_margin().
boolean lives_widget_set_maximum_size | ( | LiVESWidget * | , |
int | width, | ||
int | height | ||
) |
Definition at line 1641 of file widget-helper.c.
boolean lives_widget_set_minimum_size | ( | LiVESWidget * | , |
int | width, | ||
int | height | ||
) |
Definition at line 1624 of file widget-helper.c.
Definition at line 4868 of file widget-helper.c.
Referenced by create_insert_dialog(), create_new_pb_speed(), create_prefs_dialog(), fade_background(), hide_warn_image(), make_custom_submenus(), make_preview_box(), on_vpp_advanced_clicked(), show_warn_image(), switch_to_file(), update_rfx_menus(), and widget_add_preview().
boolean lives_widget_set_opacity | ( | LiVESWidget * | widget, |
double | opacity | ||
) |
Definition at line 1757 of file widget-helper.c.
Referenced by add_to_playframe(), close_current_file(), fade_background(), make_preview_box(), on_loop_cont_activate(), on_mute_activate(), on_sepwin_activate(), prepare_to_play_foreign(), show_lives(), splash_init(), and unfade_background().
boolean lives_widget_set_outline_color | ( | LiVESWidget * | , |
LiVESWidgetState | state, | ||
const LiVESWidgetColor * | |||
) |
Definition at line 2151 of file widget-helper.c.
boolean lives_widget_set_pack_type | ( | LiVESBox * | , |
LiVESWidget * | , | ||
LiVESPackType | |||
) |
Definition at line 7448 of file widget-helper.c.
boolean lives_widget_set_padding | ( | LiVESWidget * | , |
int | padding | ||
) |
Definition at line 2582 of file widget-helper.c.
Definition at line 1477 of file widget-helper.c.
Referenced by activate_mt_preview(), add_lmap_error(), add_rfx_effects2(), add_to_clipmenu(), after_vpp_changed(), apply_button_set_enabled(), ce_thumbs_liberate_clip_area(), clear_lmap_errors(), close_current_file(), create_audfade_dialog(), create_camwindow(), create_cds_dialog(), create_comments_dialog(), create_encoder_prep_dialog(), create_insert_dialog(), create_resaudw(), desensitize(), do_effect(), enable_record(), get_region_overlap(), in_out_end_changed(), in_out_start_changed(), invalidate_preview(), lives2lives_read_stream(), lives_menu_add_separator(), lives_progress_bar_pulse(), lives_progress_bar_set_fraction(), lives_widget_set_frozen(), make_preview_box(), mt_backup(), mt_clip_select(), mt_delete_clips(), mt_desensitise(), mt_init_start_end_spins(), mt_post_playback(), mt_prepare_for_playback(), mt_selection_lock(), mt_sensitise(), mt_spin_end_value_changed(), mt_spin_start_value_changed(), mt_swap_play_pause(), multitrack(), multitrack_playall(), on_audio_toggled(), on_camff_clicked(), on_camgrab_clicked(), on_camplay_clicked(), on_camrew_clicked(), on_camstop_clicked(), on_cancel_keep_button_clicked(), on_del_node_clicked(), on_encoder_entry_changed(), on_fit_toggled(), on_fx_insa_clicked(), on_fx_insb_clicked(), on_fx_pre_activate(), on_hrule_reset(), on_insertwsound_toggled(), on_lerrors_clear_clicked(), on_load_audio_activate(), on_load_cdtrack_ok_clicked(), on_lock_selwidth_activate(), on_loop_cont_activate(), on_loop_video_activate(), on_open_activate(), on_open_loc_activate(), on_open_sel_activate(), on_open_utube_activate(), on_open_vcd_activate(), on_paramwindow_button_clicked(), on_playclip_activate(), on_prefs_apply_clicked(), on_prerender_aud_activate(), on_prv_link_toggled(), on_rb_audrec_time_toggled(), on_redo_activate(), on_render_activate(), on_resaudw_asamps_changed(), on_resetp_clicked(), on_rewind_activate(), on_seltrack_activate(), on_set_pvals_clicked(), on_stop_activate(), on_stop_clicked(), on_timeline_press(), on_timeline_release(), on_undo_activate(), on_warn_mask_toggled(), play_file(), prefsw_set_astream_settings(), prefsw_set_rec_after_settings(), procw_desensitize(), reload_set(), remove_current_from_affected_layouts(), render_to_clip(), replace_with_delegates(), rfxbuilder_to_script(), rte_on_off_callback(), rte_window_set_interactive(), sensitize(), sensitize_rfx(), set_interactive(), set_new_set_name(), set_params_unchanged(), set_redoable(), set_undoable(), show_lives(), show_warn_image(), start_render_effect_events(), switch_aud_to_jack(), switch_aud_to_none(), switch_aud_to_pulse(), switch_aud_to_sox(), switch_to_file(), track_select(), unselect_all(), update_rfx_menus(), and update_sel_menu().
boolean lives_widget_set_sensitive_with | ( | LiVESWidget * | , |
LiVESWidget * | other | ||
) |
Definition at line 8857 of file widget-helper.c.
Referenced by lives_standard_combo_new().
boolean lives_widget_set_show_hide_parent | ( | LiVESWidget * | ) |
Definition at line 8937 of file widget-helper.c.
Referenced by align_horizontal_with(), and lives_layout_pack().
boolean lives_widget_set_show_hide_with | ( | LiVESWidget * | , |
LiVESWidget * | other | ||
) |
Definition at line 8902 of file widget-helper.c.
Referenced by lives_standard_check_button_new(), lives_standard_spin_button_new(), lives_standard_switch_new(), and lives_widget_set_show_hide_parent().
boolean lives_widget_set_size_request | ( | LiVESWidget * | , |
int | width, | ||
int | height | ||
) |
Definition at line 1614 of file widget-helper.c.
Referenced by choose_file_with_preview(), create_comments_dialog(), create_opensel_dialog(), lives_button_box_set_button_width(), lives_button_center(), lives_button_uncenter(), lives_hseparator_new(), lives_vseparator_new(), make_preview_box(), reset_message_area(), reset_mt_play_sizes(), resize(), set_colours(), and widget_add_preview().
boolean lives_widget_set_state | ( | LiVESWidget * | , |
LiVESWidgetState | state | ||
) |
Definition at line 5485 of file widget-helper.c.
boolean lives_widget_set_text_color | ( | LiVESWidget * | , |
LiVESWidgetState | state, | ||
const LiVESWidgetColor * | |||
) |
Definition at line 2101 of file widget-helper.c.
Referenced by lives_standard_frame_new(), lives_widget_apply_theme(), lives_widget_apply_theme3(), on_rte_info_clicked(), set_colours(), and set_mt_colours().
boolean lives_widget_set_text_size | ( | LiVESWidget * | , |
LiVESWidgetState | state, | ||
const char * | size | ||
) |
Definition at line 2179 of file widget-helper.c.
Referenced by lives_standard_combo_new(), lives_standard_entry_new(), lives_standard_label_new(), lives_standard_progress_bar_new(), and lives_standard_text_view_new().
LiVESWidget* lives_widget_set_tooltip_text | ( | LiVESWidget * | , |
const char * | text | ||
) |
Definition at line 4641 of file widget-helper.c.
Referenced by add_audio_track(), add_rfx_effects2(), amixer_show(), lives_standard_check_button_new(), lives_standard_combo_new(), lives_standard_entry_new(), lives_standard_radio_button_new(), lives_standard_spin_button_new(), lives_standard_switch_new(), lives_tooltips_copy(), make_preview_box(), mt_swap_play_pause(), on_loop_cont_activate(), on_mute_activate(), on_sepwin_activate(), pref_factory_float(), and show_warn_image().
boolean lives_widget_set_valign | ( | LiVESWidget * | , |
LiVESAlign | align | ||
) |
Definition at line 3537 of file widget-helper.c.
Referenced by lives_standard_entry_new(), lives_standard_menu_tool_button_new(), lives_standard_progress_bar_new(), lives_standard_text_view_new(), lives_tool_button_set_border_color(), mt_init_start_end_spins(), set_colours(), and splash_init().
Definition at line 6359 of file widget-helper.c.
Referenced by add_fill_to_box(), add_to_playframe(), lives_table_attach(), make_preview_box(), msg_area_config(), multitrack(), on_fx_pre_activate(), resize_message_area(), and widget_add_preview().
boolean lives_widget_show | ( | LiVESWidget * | ) |
Definition at line 1505 of file widget-helper.c.
Referenced by add_context_label(), add_resnn_label(), add_to_clipmenu(), add_to_playframe(), build_init_config(), close_current_file(), create_prefs_dialog(), do_startup_interface_query(), do_workdir_query(), fade_background(), lives_widget_set_opacity(), mt_change_max_disp_tracks(), mt_post_playback(), mt_swap_play_pause(), on_capture_activate(), on_fade_activate(), on_liveinp_advanced_clicked(), on_recaudclip_activate(), on_redo_activate(), on_resample_audio_activate(), on_save_textview_clicked(), on_sepwin_activate(), on_showfct_activate(), on_toy_activate(), on_undo_activate(), pref_factory_bool(), prepare_to_play_foreign(), replace_with_delegates(), set_interactive(), set_mt_colours(), set_new_set_name(), set_poly_tab(), set_redoable(), set_undoable(), show_lives(), show_playbar_labels(), switch_aud_to_jack(), switch_aud_to_pulse(), switch_to_file(), unfade_background(), and update_rfx_menus().
boolean lives_widget_show_all | ( | LiVESWidget * | ) |
Definition at line 1523 of file widget-helper.c.
Referenced by add_audio_track(), after_foreign_play(), autolives_pre_dialog(), choose_file(), choose_file_with_preview(), create_cds_dialog(), create_comments_dialog(), create_insert_dialog(), create_opensel_dialog(), create_prefs_dialog(), create_processing(), create_resaudw(), create_text_window(), do_auto_dialog(), do_effect_context(), do_messages_window(), do_workdir_query(), do_yesno_dialog(), fade_background(), frame_context(), funkify_dialog(), get_eload_filename(), lives_widget_show_all_from_bg(), make_preview_box(), mt_show_current_frame(), on_cleardisk_advanced_clicked(), on_details_button_clicked(), on_double_size_activate(), on_effects_paused(), on_export_proj_activate(), on_insert_pre_activate(), on_load_cdtrack_activate(), on_open_fw_activate(), on_open_loc_activate(), on_open_vcd_activate(), on_quit_activate(), on_rename_activate(), on_rte_info_clicked(), on_sepwin_activate(), popup_lmap_errors(), rte_reset_defs_clicked(), set_interactive(), show_lives(), show_warn_image(), splash_init(), switch_to_file(), unfade_background(), and update_rfx_menus().
boolean lives_widget_show_all_from_bg | ( | LiVESWidget * | ) |
Definition at line 1535 of file widget-helper.c.
boolean lives_widget_show_now | ( | LiVESWidget * | ) |
Definition at line 1544 of file widget-helper.c.
Referenced by do_startup_interface_query(), do_workdir_query(), on_multitrack_activate(), show_lives(), and switch_to_file().
boolean lives_widget_unparent | ( | LiVESWidget * | ) |
Definition at line 11295 of file widget-helper.c.
Referenced by funkify_dialog(), lives_layout_add_label(), lives_layout_expansion_row_new(), remove_from_clipmenu(), and set_interactive().
boolean lives_window_add_accel_group | ( | LiVESWindow * | , |
LiVESAccelGroup * | group | ||
) |
Definition at line 2968 of file widget-helper.c.
Referenced by after_param_text_focus_changed(), amixer_show(), create_cds_dialog(), create_clip_info_window(), create_insert_dialog(), create_location_dialog(), create_new_pb_speed(), create_opensel_dialog(), create_prefs_dialog(), create_processing(), create_rename_dialog(), create_resaudw(), create_text_window(), do_audio_choice_dialog(), lives_dialog_add_escape(), multitrack(), on_fx_pre_activate(), and on_vpp_advanced_clicked().
boolean lives_window_center | ( | LiVESWindow * | ) |
Definition at line 11251 of file widget-helper.c.
Referenced by amixer_show(), lives_widget_show_all(), on_double_size_activate(), on_rte_info_clicked(), resize_widgets_for_monitor(), and splash_init().
boolean lives_window_fullscreen | ( | LiVESWindow * | ) |
Definition at line 2871 of file widget-helper.c.
Referenced by vid_playback_plugin_exit().
LiVESWidget* lives_window_get_focus | ( | LiVESWindow * | ) |
Definition at line 2907 of file widget-helper.c.
boolean lives_window_get_inner_size | ( | LiVESWindow * | , |
int * | x, | ||
int * | y | ||
) |
Definition at line 12240 of file widget-helper.c.
Referenced by get_player_size().
boolean lives_window_get_modal | ( | LiVESWindow * | ) |
Definition at line 2674 of file widget-helper.c.
boolean lives_window_get_position | ( | LiVESWindow * | , |
int * | x, | ||
int * | y | ||
) |
Definition at line 2815 of file widget-helper.c.
const char* lives_window_get_title | ( | LiVESWindow * | ) |
Definition at line 2782 of file widget-helper.c.
boolean lives_window_maximize | ( | LiVESWindow * | ) |
Definition at line 2889 of file widget-helper.c.
Referenced by choose_file(), choose_file_with_preview(), create_opensel_dialog(), lazy_startup_checks(), resize(), resize_message_area(), and resize_widgets_for_monitor().
boolean lives_window_move | ( | LiVESWindow * | , |
int | x, | ||
int | y | ||
) |
Definition at line 2793 of file widget-helper.c.
LiVESWidget* lives_window_new | ( | LiVESWindowType | wintype | ) |
Definition at line 2611 of file widget-helper.c.
Referenced by amixer_show(), and splash_init().
boolean lives_window_present | ( | LiVESWindow * | ) |
Definition at line 2858 of file widget-helper.c.
Referenced by do_quick_switch(), on_multitrack_activate(), on_vppa_cancel_clicked(), show_lives(), and splash_init().
boolean lives_window_remove_accel_group | ( | LiVESWindow * | , |
LiVESAccelGroup * | group | ||
) |
Definition at line 3007 of file widget-helper.c.
Referenced by after_param_text_focus_changed(), and multitrack().
boolean lives_window_resize | ( | LiVESWindow * | , |
int | width, | ||
int | height | ||
) |
Definition at line 2847 of file widget-helper.c.
Referenced by choose_file_with_preview(), on_liveinp_advanced_clicked(), and resize().
Definition at line 2727 of file widget-helper.c.
Referenced by splash_init().
Definition at line 2718 of file widget-helper.c.
Referenced by create_processing(), and splash_init().
boolean lives_window_set_default_size | ( | LiVESWindow * | , |
int | width, | ||
int | height | ||
) |
Definition at line 2767 of file widget-helper.c.
Referenced by create_prefs_dialog().
Definition at line 2682 of file widget-helper.c.
Definition at line 2833 of file widget-helper.c.
Referenced by lazy_startup_checks(), resize(), and resize_message_area().
Definition at line 2709 of file widget-helper.c.
Referenced by do_startup_interface_query(), and do_workdir_query().
Definition at line 2700 of file widget-helper.c.
Referenced by close_vid_playback_plugin(), on_vppa_ok_clicked(), and vid_playback_plugin_exit().
Definition at line 2650 of file widget-helper.c.
boolean lives_window_set_monitor | ( | LiVESWindow * | window, |
int | monnum | ||
) |
Definition at line 2751 of file widget-helper.c.
Referenced by create_processing(), lives_message_dialog_new(), and splash_init().
boolean lives_window_set_position | ( | LiVESWindow * | , |
LiVESWindowPosition | pos | ||
) |
Definition at line 2824 of file widget-helper.c.
Referenced by lives_window_uncenter().
Definition at line 2691 of file widget-helper.c.
Referenced by create_opensel_dialog().
boolean lives_window_set_title | ( | LiVESWindow * | , |
const char * | title | ||
) |
Definition at line 2620 of file widget-helper.c.
Referenced by amixer_show(), create_question_dialog(), play_window_set_title(), prompt_for_script_name(), and set_main_title().
boolean lives_window_set_transient_for | ( | LiVESWindow * | , |
LiVESWindow * | parent | ||
) |
Definition at line 2634 of file widget-helper.c.
Referenced by amixer_show(), and choose_file().
boolean lives_window_uncenter | ( | LiVESWindow * | ) |
Definition at line 11284 of file widget-helper.c.
boolean lives_window_unfullscreen | ( | LiVESWindow * | ) |
Definition at line 2880 of file widget-helper.c.
Referenced by on_sepwin_activate().
boolean lives_window_unmaximize | ( | LiVESWindow * | ) |
Definition at line 2898 of file widget-helper.c.
Referenced by choose_file_with_preview(), and resize().
lives_painter_surface_t* lives_xwindow_create_similar_surface | ( | LiVESXWindow * | window, |
lives_painter_content_t | cont, | ||
int | width, | ||
int | height | ||
) |
Definition at line 689 of file widget-helper.c.
Referenced by lives_widget_create_painter_surface(), and resize().
boolean lives_xwindow_get_frame_extents | ( | LiVESXWindow * | , |
lives_rect_t * | |||
) |
Definition at line 1702 of file widget-helper.c.
boolean lives_xwindow_get_origin | ( | LiVESXWindow * | , |
int * | posx, | ||
int * | posy | ||
) |
Definition at line 1693 of file widget-helper.c.
boolean lives_xwindow_invalidate_rect | ( | LiVESXWindow * | , |
lives_rect_t * | , | ||
boolean | inv_childs | ||
) |
Definition at line 1711 of file widget-helper.c.
boolean lives_xwindow_raise | ( | LiVESXWindow * | ) |
Definition at line 6312 of file widget-helper.c.
Referenced by do_quick_switch(), and on_vppa_cancel_clicked().
boolean lives_xwindow_set_cursor | ( | LiVESXWindow * | , |
LiVESXCursor * | |||
) |
Definition at line 6321 of file widget-helper.c.
Referenced by unhide_cursor().
Definition at line 4780 of file widget-helper.c.
Referenced by prepare_to_play_foreign().
Definition at line 11435 of file widget-helper.c.
Definition at line 11448 of file widget-helper.c.
void set_button_image_border_colour | ( | LiVESButton * | , |
LiVESWidgetState | state, | ||
LiVESWidgetColor * | |||
) |
void set_child_alt_colour | ( | LiVESWidget * | , |
boolean | set_all | ||
) |
Definition at line 11656 of file widget-helper.c.
Referenced by activate_mt_preview(), add_fill_to_box(), do_effect_context(), lives_layout_add_label(), mt_clip_select(), and set_mt_colours().
void set_child_alt_colour_prelight | ( | LiVESWidget * | ) |
Definition at line 11672 of file widget-helper.c.
void set_child_colour | ( | LiVESWidget * | , |
boolean | set_all | ||
) |
Definition at line 11592 of file widget-helper.c.
Referenced by activate_mt_preview(), choose_file(), lives_standard_label_new(), mt_clip_select(), set_mt_colours(), and set_preview_box_colours().
void set_child_colour3 | ( | LiVESWidget * | , |
boolean | set_all | ||
) |
Definition at line 11698 of file widget-helper.c.
void set_child_dimmed_colour | ( | LiVESWidget * | , |
int | dim | ||
) |
Definition at line 11611 of file widget-helper.c.
Referenced by lives_standard_label_new().
void set_child_dimmed_colour2 | ( | LiVESWidget * | , |
int | dim | ||
) |
Definition at line 11630 of file widget-helper.c.
Referenced by lives_standard_check_menu_item_new_with_label(), lives_standard_image_menu_item_new_from_stock(), lives_standard_image_menu_item_new_with_label(), lives_standard_menu_item_new(), lives_standard_menu_item_new_with_label(), lives_standard_menu_new(), and lives_standard_radio_menu_item_new_with_label().
boolean set_submenu_colours | ( | LiVESMenu * | , |
LiVESWidgetColor * | colf, | ||
LiVESWidgetColor * | colb | ||
) |
Definition at line 11762 of file widget-helper.c.
Referenced by set_colours(), set_mt_colours(), and set_submenu_colours().
Definition at line 11542 of file widget-helper.c.
Referenced by pref_factory_bool().
boolean show_warn_image | ( | LiVESWidget * | , |
const char * | text | ||
) |
Definition at line 7889 of file widget-helper.c.
boolean toggle_button_toggle | ( | LiVESToggleButton * | ) |
set callbacks
Definition at line 11427 of file widget-helper.c.
Referenced by create_insert_dialog().
boolean toggle_sets_sensitive_cond | ( | LiVESToggleButton * | , |
LiVESWidget * | , | ||
livespointer | condsens, | ||
livespointer | condinsens, | ||
boolean | invert | ||
) |
Definition at line 11440 of file widget-helper.c.
Definition at line 11485 of file widget-helper.c.
Referenced by create_insert_dialog().
boolean toggle_toolbutton_sets_sensitive | ( | LiVESToggleToolButton * | , |
LiVESWidget * | , | ||
boolean | invert | ||
) |
Definition at line 11431 of file widget-helper.c.
Definition at line 11444 of file widget-helper.c.
boolean unhide_cursor | ( | LiVESXWindow * | ) |
Definition at line 12056 of file widget-helper.c.
Referenced by mt_post_playback().
boolean widget_act_toggle | ( | LiVESWidget * | , |
LiVESWidget * | |||
) |
Definition at line 11455 of file widget-helper.c.
lives_colRGBA64_t* widget_color_to_lives_rgba | ( | lives_colRGBA64_t * | , |
LiVESWidgetColor * | |||
) |
Definition at line 12580 of file widget-helper.c.
Referenced by lives_painter_set_source_rgb_from_lives_widget_color(), pref_factory_color_button(), reshow_msg_area(), and set_palette_prefs().
boolean widget_helper_init | ( | void | ) |
Definition at line 10919 of file widget-helper.c.
void widget_helper_set_stock_icon_alts | ( | LiVESIconTheme * | ) |
Definition at line 10909 of file widget-helper.c.
boolean widget_inact_toggle | ( | LiVESWidget * | , |
LiVESWidget * | |||
) |
Definition at line 11466 of file widget-helper.c.
boolean widget_opts_rescale | ( | double | scale | ) |
Definition at line 10991 of file widget-helper.c.
widget_opts_t def_widget_opts |
Definition at line 1443 of file widget-helper.h.
Referenced by widget_helper_init(), and widget_opts_rescale().
char LIVES_STOCK_LABEL_APPLY[32] |
Definition at line 1385 of file widget-helper.h.
Referenced by widget_helper_init().
char LIVES_STOCK_LABEL_CANCEL[32] |
stock labels, these are set up in widget_helper_init()
Definition at line 1377 of file widget-helper.h.
Referenced by choose_file(), and widget_helper_init().
char LIVES_STOCK_LABEL_CLOSE[32] |
Definition at line 1386 of file widget-helper.h.
Referenced by widget_helper_init().
char LIVES_STOCK_LABEL_CLOSE_WINDOW[32] |
Definition at line 1400 of file widget-helper.h.
Referenced by create_camwindow(), and widget_helper_init().
char LIVES_STOCK_LABEL_DELETE[32] |
Definition at line 1389 of file widget-helper.h.
Referenced by widget_helper_init().
char LIVES_STOCK_LABEL_GO_FORWARD[32] |
Definition at line 1391 of file widget-helper.h.
Referenced by widget_helper_init().
char LIVES_STOCK_LABEL_MEDIA_FORWARD[32] |
Definition at line 1393 of file widget-helper.h.
Referenced by create_camwindow(), and widget_helper_init().
char LIVES_STOCK_LABEL_MEDIA_PAUSE[32] |
Definition at line 1397 of file widget-helper.h.
Referenced by on_camplay_clicked(), and widget_helper_init().
char LIVES_STOCK_LABEL_MEDIA_PLAY[32] |
Definition at line 1396 of file widget-helper.h.
Referenced by create_camwindow(), on_camplay_clicked(), on_camstop_clicked(), and widget_helper_init().
char LIVES_STOCK_LABEL_MEDIA_RECORD[32] |
Definition at line 1398 of file widget-helper.h.
Referenced by widget_helper_init().
char LIVES_STOCK_LABEL_MEDIA_REWIND[32] |
Definition at line 1394 of file widget-helper.h.
Referenced by create_camwindow(), and widget_helper_init().
char LIVES_STOCK_LABEL_MEDIA_STOP[32] |
Definition at line 1395 of file widget-helper.h.
Referenced by create_camwindow(), and widget_helper_init().
char LIVES_STOCK_LABEL_NO[32] |
Definition at line 1380 of file widget-helper.h.
Referenced by widget_helper_init().
char LIVES_STOCK_LABEL_OK[32] |
Definition at line 1378 of file widget-helper.h.
Referenced by widget_helper_init().
char LIVES_STOCK_LABEL_OPEN[32] |
Definition at line 1383 of file widget-helper.h.
Referenced by choose_file(), and widget_helper_init().
char LIVES_STOCK_LABEL_QUIT[32] |
Definition at line 1384 of file widget-helper.h.
Referenced by lives_image_menu_item_new_from_stock(), multitrack(), and widget_helper_init().
char LIVES_STOCK_LABEL_REFRESH[32] |
Definition at line 1388 of file widget-helper.h.
Referenced by widget_helper_init().
char LIVES_STOCK_LABEL_REVERT[32] |
Definition at line 1387 of file widget-helper.h.
Referenced by widget_helper_init().
char LIVES_STOCK_LABEL_SAVE[32] |
Definition at line 1381 of file widget-helper.h.
Referenced by choose_file(), lives_image_menu_item_new_from_stock(), and widget_helper_init().
char LIVES_STOCK_LABEL_SAVE_AS[32] |
Definition at line 1382 of file widget-helper.h.
Referenced by widget_helper_init().
char LIVES_STOCK_LABEL_SELECT[32] |
Definition at line 1402 of file widget-helper.h.
Referenced by choose_file(), and widget_helper_init().
char LIVES_STOCK_LABEL_SELECT_ALL[32] |
Definition at line 1390 of file widget-helper.h.
Referenced by widget_helper_init().
char LIVES_STOCK_LABEL_SKIP[32] |
Definition at line 1401 of file widget-helper.h.
Referenced by widget_helper_init().
char LIVES_STOCK_LABEL_YES[32] |
Definition at line 1379 of file widget-helper.h.
Referenced by widget_helper_init().
widget_opts_t widget_opts |
Definition at line 1442 of file widget-helper.h.
Referenced by add_audio_track(), add_context_label(), add_file_info(), add_fill_to_box(), add_hsep_to_box(), add_mt_param_box(), add_param_label_to_box(), add_param_to_box(), add_resnn_label(), add_spring_to_box(), add_to_clipmenu(), add_video_options(), add_vsep_to_box(), align_horizontal_with(), all_expose_overlay(), amixer_add_channel_slider(), amixer_show(), ask_permission_dialog_complex(), autolives_pre_dialog(), check_for_bad_ffmpeg(), check_for_lock_file(), check_storage_space(), check_workdir_valid(), choose_file(), create_audfade_dialog(), create_camwindow(), create_cds_dialog(), create_cdtrack_dialog(), create_cleardisk_advanced_dialog(), create_clip_info_window(), create_combo_dialog(), create_comments_dialog(), create_encoder_prep_dialog(), create_event_list_dialog(), create_insert_dialog(), create_location_dialog(), create_message_dialog(), create_new_pb_speed(), create_opensel_dialog(), create_pandh_dialog(), create_prefs_dialog(), create_processing(), create_rename_dialog(), create_resaudw(), create_text_window(), do_audio_choice_dialog(), do_effect(), do_error_dialog_with_check(), do_foundclips_query(), do_imgfmts_error(), do_keys_window(), do_messages_window(), do_mix_error(), do_mt_keys_window(), do_please_install(), do_plugin_encoder_error(), do_resize_dlg(), do_startup_interface_query(), do_system_failed_error(), do_workdir_query(), do_write_failed_error_s(), do_write_failed_error_s_with_retry(), explain_missing_activate(), filter_cleanup(), framedraw_add_label(), funkify_dialog(), get_border_size(), get_window_stack_level(), get_wm_caps(), lives2lives_read_stream(), lives_button_box_make_first(), lives_button_new(), lives_button_set_image_from_stock(), lives_check_menu_item_new_with_label(), lives_color_button_set_title(), lives_dialog_add_action_widget(), lives_dialog_add_button_from_stock(), lives_entry_set_text(), lives_expander_new(), lives_glowing_check_button_new(), lives_glowing_tool_button_new(), lives_image_menu_item_new_with_label(), lives_label_new(), lives_label_set_markup(), lives_label_set_text(), lives_layout_add_fill(), lives_layout_add_label(), lives_layout_add_separator(), lives_layout_expansion_row_new(), lives_layout_hbox_new(), lives_layout_label_set_text(), lives_layout_new(), lives_layout_pack(), lives_menu_item_new_with_label(), lives_menu_item_set_text(), lives_menu_set_title(), lives_message_dialog_new(), lives_pixbuf_new_from_stock_at_size(), lives_progress_bar_pulse(), lives_progress_bar_set_fraction(), lives_radio_menu_item_new_with_label(), lives_standard_check_button_new(), lives_standard_check_menu_item_new_with_label(), lives_standard_color_button_new(), lives_standard_combo_new(), lives_standard_drawing_area_new(), lives_standard_entry_new(), lives_standard_formatted_label_new(), lives_standard_frame_new(), lives_standard_hpaned_new(), lives_standard_hscale_new(), lives_standard_hseparator_new(), lives_standard_image_menu_item_new_from_stock(), lives_standard_image_menu_item_new_with_label(), lives_standard_label_new(), lives_standard_menu_item_new(), lives_standard_menu_item_new_with_label(), lives_standard_menu_new(), lives_standard_menu_tool_button_new(), lives_standard_notebook_new(), lives_standard_progress_bar_new(), lives_standard_radio_button_new(), lives_standard_radio_menu_item_new_with_label(), lives_standard_spin_button_new(), lives_standard_switch_new(), lives_standard_table_new(), lives_standard_text_view_new(), lives_standard_tool_button_new(), lives_standard_toolbar_new(), lives_standard_vpaned_new(), lives_standard_vseparator_new(), lives_toolbar_insert_label(), lives_widget_apply_theme(), lives_widget_apply_theme2(), lives_widget_apply_theme3(), lives_widget_apply_theme_dimmed(), lives_widget_apply_theme_dimmed2(), lives_widget_set_show_hide_with(), lives_window_center(), lives_window_get_inner_size(), lives_window_set_title(), load_frame_image(), load_vpp_defaults(), mt_init_start_end_spins(), multitrack(), on_about_activate(), on_capture_activate(), on_cleardisk_activate(), on_decplug_advanced_clicked(), on_delete_rfx_activate(), on_details_button_clicked(), on_fade_activate(), on_fade_pressed(), on_fx_pre_activate(), on_hrule_reset(), on_hrule_set(), on_hrule_update(), on_import_proj_activate(), on_mouse_scroll(), on_mouse_sel_start(), on_mouse_sel_update(), on_promote_rfx_activate(), on_quit_activate(), on_recaudclip_ok_clicked(), on_resaudio_ok_clicked(), on_rte_info_clicked(), on_select_all_activate(), on_send_lives2lives_activate(), on_sepwin_activate(), on_showfct_activate(), on_timeline_press(), on_timeline_update(), on_track_release(), on_vpp_advanced_clicked(), open_vid_playback_plugin(), popup_lmap_errors(), pref_factory_bool(), prepare_to_play_foreign(), prompt_for_script_name(), resize(), rfxbuilder_to_script(), run_youtube_dialog(), script_to_rfxbuilder(), scrolled_textview(), set_mt_colours(), splash_init(), splash_msg(), start_render_effect_events(), startup_message_info(), startup_message_nonfatal_dismissable(), transition_add_in_out(), trash_rb(), update_grav_mode(), update_insert_mode(), widget_add_preview(), widget_helper_init(), and widget_opts_rescale().