source: trunk/third/nautilus/src/nautilus-search-bar.h @ 16900

Revision 16900, 1.8 KB checked in by amb, 22 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r16899, which included commits to RCS files with non-trunk default branches.
Line 
1/* -*- Mode: C; indent-tabs-mode: t; c-basic-offset: 8; tab-width: 8 -*- */
2
3/*
4 * Nautilus
5 *
6 * Copyright (C) 2000 Eazel, Inc.
7 *
8 * Nautilus is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of the
11 * License, or (at your option) any later version.
12 *
13 * Nautilus is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16 * General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public
19 * License along with this program; see the file COPYING.  If not,
20 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
21 * Boston, MA 02111-1307, USA.
22 *
23 * Authors: Maciej Stachowiak <mjs@eazel.com>
24 *          Rebecca Schulman <rebecka@eazel.com>
25 */
26
27/* nautilus-search-bar.h - Search bar for Nautilus
28 */
29
30#ifndef NAUTILUS_SEARCH_BAR_H
31#define NAUTILUS_SEARCH_BAR_H
32
33#include "nautilus-navigation-bar.h"
34
35#include <gtk/gtkhbox.h>
36#include <gtk/gtkentry.h>
37#include <gtk/gtklabel.h>
38
39#include <libnautilus-private/nautilus-global-preferences.h>
40
41#define NAUTILUS_TYPE_SEARCH_BAR (nautilus_search_bar_get_type ())
42#define NAUTILUS_SEARCH_BAR(obj) \
43        GTK_CHECK_CAST (obj, NAUTILUS_TYPE_SEARCH_BAR, NautilusSearchBar)
44#define NAUTILUS_SEARCH_BAR_CLASS(klass) \
45        GTK_CHECK_CLASS_CAST (klass, NAUTILUS_TYPE_SEARCH_BAR, NautilusSearchBarClass)
46#define NAUTILUS_IS_SEARCH_BAR(obj) \
47        GTK_CHECK_TYPE (obj, NAUTILUS_TYPE_SEARCH_BAR)
48
49typedef struct {
50        NautilusNavigationBar parent;
51} NautilusSearchBar;
52
53typedef struct {
54        NautilusNavigationBarClass parent_class;
55} NautilusSearchBarClass;
56
57GtkType nautilus_search_bar_get_type (void);
58
59#endif /* NAUTILUS_SEARCH_BAR_H */
Note: See TracBrowser for help on using the repository browser.