2005-09-06 09:21:05 -07:00
|
|
|
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4; coding: utf-8 -*-
|
2005-08-25 02:29:01 -07:00
|
|
|
* moofileview-dialogs.h
|
|
|
|
*
|
2006-02-23 06:03:17 -08:00
|
|
|
* Copyright (C) 2004-2006 by Yevgen Muntyan <muntyan@math.tamu.edu>
|
2005-08-25 02:29:01 -07:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* See COPYING file that comes with this distribution.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MOO_FILE_VIEW_DIALOGS_H__
|
|
|
|
#define __MOO_FILE_VIEW_DIALOGS_H__
|
|
|
|
|
2005-11-15 11:57:34 -08:00
|
|
|
#include "mooutils/moofileview/moofile.h"
|
|
|
|
#include "mooutils/mooglade.h"
|
|
|
|
#include <gtk/gtkdialog.h>
|
2005-08-25 02:29:01 -07:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
|
2005-11-15 11:57:34 -08:00
|
|
|
#define MOO_TYPE_FILE_PROPS_DIALOG (moo_file_props_dialog_get_type ())
|
|
|
|
#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 02:29:01 -07:00
|
|
|
|
2005-11-15 11:57:34 -08:00
|
|
|
|
|
|
|
typedef struct _MooFilePropsDialog MooFilePropsDialog;
|
|
|
|
typedef struct _MooFilePropsDialogClass MooFilePropsDialogClass;
|
|
|
|
|
|
|
|
struct _MooFilePropsDialog
|
|
|
|
{
|
|
|
|
GtkDialog base;
|
|
|
|
MooGladeXML *xml;
|
|
|
|
GtkWidget *notebook;
|
|
|
|
GtkWidget *icon;
|
|
|
|
GtkWidget *entry;
|
|
|
|
GtkWidget *table;
|
|
|
|
MooFile *file;
|
|
|
|
MooFolder *folder;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct _MooFilePropsDialogClass
|
|
|
|
{
|
|
|
|
GtkDialogClass base_class;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
GType moo_file_props_dialog_get_type (void) G_GNUC_CONST;
|
|
|
|
|
|
|
|
GtkWidget *moo_file_props_dialog_new (GtkWidget *parent);
|
|
|
|
void moo_file_props_dialog_set_file (MooFilePropsDialog *dialog,
|
|
|
|
MooFile *file,
|
|
|
|
MooFolder *folder);
|
|
|
|
|
|
|
|
char *moo_create_folder_dialog (GtkWidget *parent,
|
|
|
|
MooFolder *folder);
|
2005-08-25 02:29:01 -07:00
|
|
|
|
2005-11-27 07:45:12 -08:00
|
|
|
char *moo_file_view_save_drop_dialog (GtkWidget *parent,
|
2005-11-28 10:31:04 -08:00
|
|
|
const char *dirname);
|
2005-11-27 07:45:12 -08:00
|
|
|
|
2005-08-25 02:29:01 -07:00
|
|
|
|
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __MOO_FILE_VIEW_DIALOGS_H__ */
|