Blame src/nautilus-toolbar.h

Packit a189e0
Packit a189e0
/*
Packit a189e0
 * Nautilus
Packit a189e0
 *
Packit a189e0
 * Copyright (C) 2011, Red Hat, Inc.
Packit a189e0
 *
Packit a189e0
 * Nautilus is free software; you can redistribute it and/or
Packit a189e0
 * modify it under the terms of the GNU General Public License as
Packit a189e0
 * published by the Free Software Foundation; either version 2 of the
Packit a189e0
 * License, or (at your option) any later version.
Packit a189e0
 *
Packit a189e0
 * Nautilus is distributed in the hope that it will be useful,
Packit a189e0
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit a189e0
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit a189e0
 * General Public License for more details.
Packit a189e0
 *
Packit a189e0
 * You should have received a copy of the GNU General Public License
Packit a189e0
 * along with this program; if not, see <http://www.gnu.org/licenses/>.
Packit a189e0
 *
Packit a189e0
 * Author: Cosimo Cecchi <cosimoc@redhat.com>
Packit a189e0
 *
Packit a189e0
 */
Packit a189e0
Packit a189e0
#ifndef __NAUTILUS_TOOLBAR_H__
Packit a189e0
#define __NAUTILUS_TOOLBAR_H__
Packit a189e0
Packit a189e0
#include <gtk/gtk.h>
Packit a189e0
Packit a189e0
#include "nautilus-window-slot.h"
Packit a189e0
Packit a189e0
G_BEGIN_DECLS
Packit a189e0
Packit a189e0
#define NAUTILUS_TYPE_TOOLBAR nautilus_toolbar_get_type()
Packit a189e0
Packit a189e0
G_DECLARE_FINAL_TYPE (NautilusToolbar, nautilus_toolbar, NAUTILUS, TOOLBAR, GtkHeaderBar)
Packit a189e0
Packit a189e0
GtkWidget *nautilus_toolbar_new (void);
Packit a189e0
Packit a189e0
GtkWidget *nautilus_toolbar_get_path_bar (NautilusToolbar *self);
Packit a189e0
GtkWidget *nautilus_toolbar_get_location_entry (NautilusToolbar *self);
Packit a189e0
Packit a189e0
void       nautilus_toolbar_set_show_location_entry (NautilusToolbar *self,
Packit a189e0
                                                     gboolean show_location_entry);
Packit a189e0
Packit a189e0
void       nautilus_toolbar_set_active_slot    (NautilusToolbar    *toolbar,
Packit a189e0
                                                NautilusWindowSlot *slot);
Packit a189e0
Packit a189e0
gboolean   nautilus_toolbar_is_menu_visible    (NautilusToolbar *toolbar);
Packit a189e0
Packit a189e0
gboolean   nautilus_toolbar_is_operations_button_active (NautilusToolbar *toolbar);
Packit a189e0
Packit a189e0
void       nautilus_toolbar_on_window_constructed       (NautilusToolbar *toolbar);
Packit a189e0
Packit a189e0
G_END_DECLS
Packit a189e0
Packit a189e0
#endif /* __NAUTILUS_TOOLBAR_H__ */