Removed TABs and trailing whitespace from GtkComboBox and GtkTreeMenu
This commit is contained in:
1241
gtk/gtkcombobox.c
1241
gtk/gtkcombobox.c
File diff suppressed because it is too large
Load Diff
@ -86,15 +86,15 @@ void gtk_combo_box_set_column_span_column (GtkComboBox *combo_box,
|
|||||||
|
|
||||||
gboolean gtk_combo_box_get_add_tearoffs (GtkComboBox *combo_box);
|
gboolean gtk_combo_box_get_add_tearoffs (GtkComboBox *combo_box);
|
||||||
void gtk_combo_box_set_add_tearoffs (GtkComboBox *combo_box,
|
void gtk_combo_box_set_add_tearoffs (GtkComboBox *combo_box,
|
||||||
gboolean add_tearoffs);
|
gboolean add_tearoffs);
|
||||||
|
|
||||||
G_CONST_RETURN gchar *gtk_combo_box_get_title (GtkComboBox *combo_box);
|
G_CONST_RETURN gchar *gtk_combo_box_get_title (GtkComboBox *combo_box);
|
||||||
void gtk_combo_box_set_title (GtkComboBox *combo_box,
|
void gtk_combo_box_set_title (GtkComboBox *combo_box,
|
||||||
const gchar *title);
|
const gchar *title);
|
||||||
|
|
||||||
gboolean gtk_combo_box_get_focus_on_click (GtkComboBox *combo);
|
gboolean gtk_combo_box_get_focus_on_click (GtkComboBox *combo);
|
||||||
void gtk_combo_box_set_focus_on_click (GtkComboBox *combo,
|
void gtk_combo_box_set_focus_on_click (GtkComboBox *combo,
|
||||||
gboolean focus_on_click);
|
gboolean focus_on_click);
|
||||||
|
|
||||||
/* get/set active item */
|
/* get/set active item */
|
||||||
gint gtk_combo_box_get_active (GtkComboBox *combo_box);
|
gint gtk_combo_box_get_active (GtkComboBox *combo_box);
|
||||||
@ -112,21 +112,21 @@ GtkTreeModel *gtk_combo_box_get_model (GtkComboBox *combo_box);
|
|||||||
|
|
||||||
GtkTreeViewRowSeparatorFunc gtk_combo_box_get_row_separator_func (GtkComboBox *combo_box);
|
GtkTreeViewRowSeparatorFunc gtk_combo_box_get_row_separator_func (GtkComboBox *combo_box);
|
||||||
void gtk_combo_box_set_row_separator_func (GtkComboBox *combo_box,
|
void gtk_combo_box_set_row_separator_func (GtkComboBox *combo_box,
|
||||||
GtkTreeViewRowSeparatorFunc func,
|
GtkTreeViewRowSeparatorFunc func,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
GDestroyNotify destroy);
|
GDestroyNotify destroy);
|
||||||
|
|
||||||
void gtk_combo_box_set_button_sensitivity (GtkComboBox *combo_box,
|
void gtk_combo_box_set_button_sensitivity (GtkComboBox *combo_box,
|
||||||
GtkSensitivityType sensitivity);
|
GtkSensitivityType sensitivity);
|
||||||
GtkSensitivityType gtk_combo_box_get_button_sensitivity (GtkComboBox *combo_box);
|
GtkSensitivityType gtk_combo_box_get_button_sensitivity (GtkComboBox *combo_box);
|
||||||
|
|
||||||
gboolean gtk_combo_box_get_has_entry (GtkComboBox *combo_box);
|
gboolean gtk_combo_box_get_has_entry (GtkComboBox *combo_box);
|
||||||
void gtk_combo_box_set_entry_text_column (GtkComboBox *combo_box,
|
void gtk_combo_box_set_entry_text_column (GtkComboBox *combo_box,
|
||||||
gint text_column);
|
gint text_column);
|
||||||
gint gtk_combo_box_get_entry_text_column (GtkComboBox *combo_box);
|
gint gtk_combo_box_get_entry_text_column (GtkComboBox *combo_box);
|
||||||
|
|
||||||
void gtk_combo_box_set_popup_fixed_width (GtkComboBox *combo_box,
|
void gtk_combo_box_set_popup_fixed_width (GtkComboBox *combo_box,
|
||||||
gboolean fixed);
|
gboolean fixed);
|
||||||
gboolean gtk_combo_box_get_popup_fixed_width (GtkComboBox *combo_box);
|
gboolean gtk_combo_box_get_popup_fixed_width (GtkComboBox *combo_box);
|
||||||
|
|
||||||
/* programmatic control */
|
/* programmatic control */
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@ -60,8 +60,8 @@ typedef struct _GtkTreeMenuPrivate GtkTreeMenuPrivate;
|
|||||||
* item created for it in a submenu.
|
* item created for it in a submenu.
|
||||||
*/
|
*/
|
||||||
typedef gboolean (*GtkTreeMenuHeaderFunc) (GtkTreeModel *model,
|
typedef gboolean (*GtkTreeMenuHeaderFunc) (GtkTreeModel *model,
|
||||||
GtkTreeIter *iter,
|
GtkTreeIter *iter,
|
||||||
gpointer data);
|
gpointer data);
|
||||||
|
|
||||||
struct _GtkTreeMenu
|
struct _GtkTreeMenu
|
||||||
{
|
{
|
||||||
@ -90,38 +90,38 @@ GType _gtk_tree_menu_get_type (void) G_GNU
|
|||||||
GtkWidget *_gtk_tree_menu_new (void);
|
GtkWidget *_gtk_tree_menu_new (void);
|
||||||
GtkWidget *_gtk_tree_menu_new_with_area (GtkCellArea *area);
|
GtkWidget *_gtk_tree_menu_new_with_area (GtkCellArea *area);
|
||||||
GtkWidget *_gtk_tree_menu_new_full (GtkCellArea *area,
|
GtkWidget *_gtk_tree_menu_new_full (GtkCellArea *area,
|
||||||
GtkTreeModel *model,
|
GtkTreeModel *model,
|
||||||
GtkTreePath *root);
|
GtkTreePath *root);
|
||||||
void _gtk_tree_menu_set_model (GtkTreeMenu *menu,
|
void _gtk_tree_menu_set_model (GtkTreeMenu *menu,
|
||||||
GtkTreeModel *model);
|
GtkTreeModel *model);
|
||||||
GtkTreeModel *_gtk_tree_menu_get_model (GtkTreeMenu *menu);
|
GtkTreeModel *_gtk_tree_menu_get_model (GtkTreeMenu *menu);
|
||||||
void _gtk_tree_menu_set_root (GtkTreeMenu *menu,
|
void _gtk_tree_menu_set_root (GtkTreeMenu *menu,
|
||||||
GtkTreePath *path);
|
GtkTreePath *path);
|
||||||
GtkTreePath *_gtk_tree_menu_get_root (GtkTreeMenu *menu);
|
GtkTreePath *_gtk_tree_menu_get_root (GtkTreeMenu *menu);
|
||||||
gboolean _gtk_tree_menu_get_tearoff (GtkTreeMenu *menu);
|
gboolean _gtk_tree_menu_get_tearoff (GtkTreeMenu *menu);
|
||||||
void _gtk_tree_menu_set_tearoff (GtkTreeMenu *menu,
|
void _gtk_tree_menu_set_tearoff (GtkTreeMenu *menu,
|
||||||
gboolean tearoff);
|
gboolean tearoff);
|
||||||
gint _gtk_tree_menu_get_wrap_width (GtkTreeMenu *menu);
|
gint _gtk_tree_menu_get_wrap_width (GtkTreeMenu *menu);
|
||||||
void _gtk_tree_menu_set_wrap_width (GtkTreeMenu *menu,
|
void _gtk_tree_menu_set_wrap_width (GtkTreeMenu *menu,
|
||||||
gint width);
|
gint width);
|
||||||
gint _gtk_tree_menu_get_row_span_column (GtkTreeMenu *menu);
|
gint _gtk_tree_menu_get_row_span_column (GtkTreeMenu *menu);
|
||||||
void _gtk_tree_menu_set_row_span_column (GtkTreeMenu *menu,
|
void _gtk_tree_menu_set_row_span_column (GtkTreeMenu *menu,
|
||||||
gint row_span);
|
gint row_span);
|
||||||
gint _gtk_tree_menu_get_column_span_column (GtkTreeMenu *menu);
|
gint _gtk_tree_menu_get_column_span_column (GtkTreeMenu *menu);
|
||||||
void _gtk_tree_menu_set_column_span_column (GtkTreeMenu *menu,
|
void _gtk_tree_menu_set_column_span_column (GtkTreeMenu *menu,
|
||||||
gint column_span);
|
gint column_span);
|
||||||
|
|
||||||
GtkTreeViewRowSeparatorFunc _gtk_tree_menu_get_row_separator_func (GtkTreeMenu *menu);
|
GtkTreeViewRowSeparatorFunc _gtk_tree_menu_get_row_separator_func (GtkTreeMenu *menu);
|
||||||
void _gtk_tree_menu_set_row_separator_func (GtkTreeMenu *menu,
|
void _gtk_tree_menu_set_row_separator_func (GtkTreeMenu *menu,
|
||||||
GtkTreeViewRowSeparatorFunc func,
|
GtkTreeViewRowSeparatorFunc func,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
GDestroyNotify destroy);
|
GDestroyNotify destroy);
|
||||||
|
|
||||||
GtkTreeMenuHeaderFunc _gtk_tree_menu_get_header_func (GtkTreeMenu *menu);
|
GtkTreeMenuHeaderFunc _gtk_tree_menu_get_header_func (GtkTreeMenu *menu);
|
||||||
void _gtk_tree_menu_set_header_func (GtkTreeMenu *menu,
|
void _gtk_tree_menu_set_header_func (GtkTreeMenu *menu,
|
||||||
GtkTreeMenuHeaderFunc func,
|
GtkTreeMenuHeaderFunc func,
|
||||||
gpointer data,
|
gpointer data,
|
||||||
GDestroyNotify destroy);
|
GDestroyNotify destroy);
|
||||||
|
|
||||||
G_END_DECLS
|
G_END_DECLS
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user