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

« back to all changes in this revision

Viewing changes to src/gnome-cmd-mkdir-dialog.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_MKDIR_DIALOG_H__
20
20
#define __GNOME_CMD_MKDIR_DIALOG_H__
21
21
 
22
22
#include "gnome-cmd-dir.h"
23
23
 
24
24
#define GNOME_CMD_MKDIR_DIALOG(obj) \
25
 
        GTK_CHECK_CAST (obj, gnome_cmd_mkdir_dialog_get_type (), GnomeCmdMkdirDialog)
 
25
    GTK_CHECK_CAST (obj, gnome_cmd_mkdir_dialog_get_type (), GnomeCmdMkdirDialog)
26
26
#define GNOME_CMD_MKDIR_DIALOG_CLASS(klass) \
27
 
        GTK_CHECK_CLASS_CAST (klass, gnome_cmd_mkdir_dialog_get_type (), GnomeCmdMkdirDialogClass)
 
27
    GTK_CHECK_CLASS_CAST (klass, gnome_cmd_mkdir_dialog_get_type (), GnomeCmdMkdirDialogClass)
28
28
#define GNOME_CMD_IS_MKDIR_DIALOG(obj) \
29
 
        GTK_CHECK_TYPE (obj, gnome_cmd_mkdir_dialog_get_type ())
 
29
    GTK_CHECK_TYPE (obj, gnome_cmd_mkdir_dialog_get_type ())
30
30
 
31
31
 
32
32
typedef struct _GnomeCmdMkdirDialog GnomeCmdMkdirDialog;
37
37
 
38
38
struct _GnomeCmdMkdirDialog
39
39
{
40
 
        GnomeCmdStringDialog parent;
41
 
        GnomeCmdMkdirDialogPrivate *priv;
 
40
    GnomeCmdStringDialog parent;
 
41
    GnomeCmdMkdirDialogPrivate *priv;
42
42
};
43
43
 
44
44
 
45
45
struct _GnomeCmdMkdirDialogClass
46
46
{
47
 
        GnomeCmdStringDialogClass parent_class;
 
47
    GnomeCmdStringDialogClass parent_class;
48
48
};
49
49
 
50
50