~ubuntu-branches/ubuntu/edgy/gnome-system-tools/edgy-proposed

« back to all changes in this revision

Viewing changes to src/services/table.h

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2004-10-14 18:49:22 UTC
  • Revision ID: james.westby@ubuntu.com-20041014184922-efvh7u8kpyy67a3z
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
 
2
/* table.h: this file is part of services-admin, a gnome-system-tool frontend 
 
3
 * for run level services administration.
 
4
 * 
 
5
 * Copyright (C) 2002 Ximian, Inc.
 
6
 *
 
7
 * This program is free software; you can redistribute it and/or modify
 
8
 * it under the terms of the GNU General Public License as
 
9
 * published by the Free Software Foundation; either version 2 of the
 
10
 * License, or (at your option) any later version.
 
11
 *
 
12
 * This program is distributed in the hope that it will be useful,
 
13
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
 * GNU General Public License for more details.
 
16
 *
 
17
 * You should have received a copy of the GNU General Public License
 
18
 * along with this program; if not, write to the Free Software
 
19
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
 
20
 *
 
21
 * Authors: Carlos Garnacho <garparr@teleline.es>.
 
22
 */
 
23
 
 
24
#ifndef _TABLE_H
 
25
#define _TABLE_H
 
26
 
 
27
#include <gtk/gtk.h>
 
28
 
 
29
enum {
 
30
        COL_ACTIVE,
 
31
        COL_SERVICE,
 
32
        COL_PRIORITY,
 
33
        COL_POINTER,
 
34
        COL_LAST
 
35
};
 
36
 
 
37
enum {
 
38
        POPUP_SETTINGS
 
39
};
 
40
 
 
41
void                    table_create                            (void);
 
42
void                    table_populate                          (xmlNodePtr, gchar*);
 
43
void                    table_empty                             (void);
 
44
 
 
45
#endif /* _TABLE_H */