~ubuntu-branches/ubuntu/hardy/gnome-commander/hardy

« back to all changes in this revision

Viewing changes to src/gnome-cmd-clist.h

  • Committer: Bazaar Package Importer
  • Author(s): Michael Vogt
  • Date: 2006-06-13 15:39:48 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060613153948-gvrt3mb2ddk5u62o
Tags: 1.2.0-3
added --disable-scrollkeeper on build

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
    GNOME Commander - A GNOME based file manager 
 
2
    GNOME Commander - A GNOME based file manager
3
3
    Copyright (C) 2001-2006 Marcus Bjurman
4
4
 
5
5
    This program is free software; you can redistribute it and/or modify
15
15
    You should have received a copy of the GNU General Public License
16
16
    along with this program; if not, write to the Free Software
17
17
    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
18
 
*/ 
 
18
*/
19
19
#ifndef __GNOME_CMD_CLIST_H__
20
20
#define __GNOME_CMD_CLIST_H__
21
21
 
22
22
 
23
23
#define GNOME_CMD_CLIST(obj) \
24
 
        GTK_CHECK_CAST (obj, gnome_cmd_clist_get_type (), GnomeCmdCList)
 
24
    GTK_CHECK_CAST (obj, gnome_cmd_clist_get_type (), GnomeCmdCList)
25
25
#define GNOME_CMD_CLIST_CLASS(klass) \
26
 
        GTK_CHECK_CLASS_CAST (klass, gnome_cmd_clist_get_type (), GnomeCmdCListClass)
 
26
    GTK_CHECK_CLASS_CAST (klass, gnome_cmd_clist_get_type (), GnomeCmdCListClass)
27
27
#define GNOME_CMD_IS_CLIST(obj) \
28
 
        GTK_CHECK_TYPE (obj, gnome_cmd_clist_get_type ())
 
28
    GTK_CHECK_TYPE (obj, gnome_cmd_clist_get_type ())
29
29
 
30
30
 
31
31
typedef struct _GnomeCmdCList GnomeCmdCList;
36
36
 
37
37
struct _GnomeCmdCList
38
38
{
39
 
        GtkCList parent;
40
 
 
41
 
        gint drag_motion_row;
42
 
        
43
 
        GnomeCmdCListPrivate *priv;
 
39
    GtkCList parent;
 
40
 
 
41
    gint drag_motion_row;
 
42
 
 
43
    GnomeCmdCListPrivate *priv;
44
44
};
45
45
 
46
46
 
47
47
struct _GnomeCmdCListClass
48
48
{
49
 
        GtkCListClass parent_class;
 
49
    GtkCListClass parent_class;
50
50
};
51
51
 
52
52