2006-05-13 16:09:46 -05:00
|
|
|
/*
|
2005-08-25 09:29:01 +00:00
|
|
|
* moofileview-dialogs.h
|
|
|
|
*
|
2010-12-21 20:15:45 -08:00
|
|
|
* Copyright (C) 2004-2010 by Yevgen Muntyan <emuntyan@users.sourceforge.net>
|
2005-08-25 09:29:01 +00:00
|
|
|
*
|
2008-09-05 17:20:50 -05:00
|
|
|
* This file is part of medit. medit is free software; you can
|
|
|
|
* redistribute it and/or modify it under the terms of the
|
|
|
|
* GNU Lesser General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2.1 of the License,
|
|
|
|
* or (at your option) any later version.
|
2005-08-25 09:29:01 +00:00
|
|
|
*
|
2008-09-05 17:20:50 -05:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with medit. If not, see <http://www.gnu.org/licenses/>.
|
2005-08-25 09:29:01 +00:00
|
|
|
*/
|
|
|
|
|
2006-08-13 04:00:15 -05:00
|
|
|
#ifndef MOO_FILE_VIEW_COMPILATION
|
|
|
|
#error "This file may not be included"
|
|
|
|
#endif
|
|
|
|
|
2007-06-10 04:06:03 -05:00
|
|
|
#ifndef MOO_FILE_VIEW_DIALOGS_H
|
|
|
|
#define MOO_FILE_VIEW_DIALOGS_H
|
2005-08-25 09:29:01 +00:00
|
|
|
|
2006-04-16 11:40:46 -05:00
|
|
|
#include "moofileview/moofile.h"
|
2005-11-15 19:57:34 +00:00
|
|
|
#include <gtk/gtkdialog.h>
|
2005-08-25 09:29:01 +00:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
2006-05-13 16:09:46 -05:00
|
|
|
#define MOO_TYPE_FILE_PROPS_DIALOG (_moo_file_props_dialog_get_type ())
|
2005-11-15 19:57:34 +00:00
|
|
|
#define MOO_FILE_PROPS_DIALOG(object) (G_TYPE_CHECK_INSTANCE_CAST ((object), MOO_TYPE_FILE_PROPS_DIALOG, MooFilePropsDialog))
|
|
|
|
#define MOO_FILE_PROPS_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_CAST ((klass), MOO_TYPE_FILE_PROPS_DIALOG, MooFilePropsDialogClass))
|
|
|
|
#define MOO_IS_FILE_PROPS_DIALOG(object) (G_TYPE_CHECK_INSTANCE_TYPE ((object), MOO_TYPE_FILE_PROPS_DIALOG))
|
|
|
|
#define MOO_IS_FILE_PROPS_DIALOG_CLASS(klass) (G_TYPE_CHECK_CLASS_TYPE ((klass), MOO_TYPE_FILE_PROPS_DIALOG))
|
|
|
|
#define MOO_FILE_PROPS_DIALOG_GET_CLASS(obj) (G_TYPE_INSTANCE_GET_CLASS ((obj), MOO_TYPE_FILE_PROPS_DIALOG, MooFilePropsDialogClass))
|
2005-08-25 09:29:01 +00:00
|
|
|
|
2005-11-15 19:57:34 +00:00
|
|
|
|
|
|
|
typedef struct _MooFilePropsDialog MooFilePropsDialog;
|
|
|
|
typedef struct _MooFilePropsDialogClass MooFilePropsDialogClass;
|
|
|
|
|
|
|
|
struct _MooFilePropsDialog
|
|
|
|
{
|
|
|
|
GtkDialog base;
|
2008-08-24 04:06:24 -05:00
|
|
|
struct MooFilePropsXml *xml;
|
2005-11-15 19:57:34 +00:00
|
|
|
GtkWidget *notebook;
|
|
|
|
GtkWidget *icon;
|
|
|
|
GtkWidget *entry;
|
|
|
|
GtkWidget *table;
|
|
|
|
MooFile *file;
|
|
|
|
MooFolder *folder;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _MooFilePropsDialogClass
|
|
|
|
{
|
|
|
|
GtkDialogClass base_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-06-24 01:03:04 -05:00
|
|
|
GType _moo_file_props_dialog_get_type (void) G_GNUC_CONST;
|
2005-11-15 19:57:34 +00:00
|
|
|
|
2006-06-24 01:03:04 -05:00
|
|
|
GtkWidget *_moo_file_props_dialog_new (GtkWidget *parent);
|
|
|
|
void _moo_file_props_dialog_set_file (MooFilePropsDialog *dialog,
|
|
|
|
MooFile *file,
|
|
|
|
MooFolder *folder);
|
2005-11-15 19:57:34 +00:00
|
|
|
|
2006-06-24 01:03:04 -05:00
|
|
|
char *_moo_file_view_create_folder_dialog (GtkWidget *parent,
|
|
|
|
MooFolder *folder);
|
|
|
|
char *_moo_file_view_save_drop_dialog (GtkWidget *parent,
|
|
|
|
const char *dirname);
|
2005-11-27 15:45:12 +00:00
|
|
|
|
2005-08-25 09:29:01 +00:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
2007-06-10 04:06:03 -05:00
|
|
|
#endif /* MOO_FILE_VIEW_DIALOGS_H */
|