Removed TABs and trailing whitespace from GtkComboBox and GtkTreeMenu
This commit is contained in:
1623
gtk/gtkcombobox.c
1623
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);
|
||||
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);
|
||||
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);
|
||||
void gtk_combo_box_set_focus_on_click (GtkComboBox *combo,
|
||||
gboolean focus_on_click);
|
||||
gboolean focus_on_click);
|
||||
|
||||
/* get/set active item */
|
||||
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);
|
||||
void gtk_combo_box_set_row_separator_func (GtkComboBox *combo_box,
|
||||
GtkTreeViewRowSeparatorFunc func,
|
||||
gpointer data,
|
||||
GDestroyNotify destroy);
|
||||
GtkTreeViewRowSeparatorFunc func,
|
||||
gpointer data,
|
||||
GDestroyNotify destroy);
|
||||
|
||||
void gtk_combo_box_set_button_sensitivity (GtkComboBox *combo_box,
|
||||
GtkSensitivityType sensitivity);
|
||||
GtkSensitivityType sensitivity);
|
||||
GtkSensitivityType gtk_combo_box_get_button_sensitivity (GtkComboBox *combo_box);
|
||||
|
||||
gboolean gtk_combo_box_get_has_entry (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);
|
||||
|
||||
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);
|
||||
|
||||
/* programmatic control */
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -52,16 +52,16 @@ typedef struct _GtkTreeMenuPrivate GtkTreeMenuPrivate;
|
||||
* @iter: the #GtkTreeIter pointing at a row in @model
|
||||
* @data: user data
|
||||
*
|
||||
* Function type for determining whether the row pointed to by @iter
|
||||
* Function type for determining whether the row pointed to by @iter
|
||||
* which has children should be replicated as a header item in the
|
||||
* child menu.
|
||||
*
|
||||
* Return value: %TRUE if @iter should have an activatable header menu
|
||||
*
|
||||
* Return value: %TRUE if @iter should have an activatable header menu
|
||||
* item created for it in a submenu.
|
||||
*/
|
||||
typedef gboolean (*GtkTreeMenuHeaderFunc) (GtkTreeModel *model,
|
||||
GtkTreeIter *iter,
|
||||
gpointer data);
|
||||
GtkTreeIter *iter,
|
||||
gpointer data);
|
||||
|
||||
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_with_area (GtkCellArea *area);
|
||||
GtkWidget *_gtk_tree_menu_new_full (GtkCellArea *area,
|
||||
GtkTreeModel *model,
|
||||
GtkTreePath *root);
|
||||
GtkTreeModel *model,
|
||||
GtkTreePath *root);
|
||||
void _gtk_tree_menu_set_model (GtkTreeMenu *menu,
|
||||
GtkTreeModel *model);
|
||||
GtkTreeModel *model);
|
||||
GtkTreeModel *_gtk_tree_menu_get_model (GtkTreeMenu *menu);
|
||||
void _gtk_tree_menu_set_root (GtkTreeMenu *menu,
|
||||
GtkTreePath *path);
|
||||
GtkTreePath *path);
|
||||
GtkTreePath *_gtk_tree_menu_get_root (GtkTreeMenu *menu);
|
||||
gboolean _gtk_tree_menu_get_tearoff (GtkTreeMenu *menu);
|
||||
void _gtk_tree_menu_set_tearoff (GtkTreeMenu *menu,
|
||||
gboolean tearoff);
|
||||
gboolean tearoff);
|
||||
gint _gtk_tree_menu_get_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);
|
||||
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);
|
||||
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);
|
||||
void _gtk_tree_menu_set_row_separator_func (GtkTreeMenu *menu,
|
||||
GtkTreeViewRowSeparatorFunc func,
|
||||
gpointer data,
|
||||
GDestroyNotify destroy);
|
||||
GtkTreeViewRowSeparatorFunc func,
|
||||
gpointer data,
|
||||
GDestroyNotify destroy);
|
||||
|
||||
GtkTreeMenuHeaderFunc _gtk_tree_menu_get_header_func (GtkTreeMenu *menu);
|
||||
void _gtk_tree_menu_set_header_func (GtkTreeMenu *menu,
|
||||
GtkTreeMenuHeaderFunc func,
|
||||
gpointer data,
|
||||
GDestroyNotify destroy);
|
||||
GtkTreeMenuHeaderFunc func,
|
||||
gpointer data,
|
||||
GDestroyNotify destroy);
|
||||
|
||||
G_END_DECLS
|
||||
|
||||
|
||||
Reference in New Issue
Block a user