mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
83 lines
2.6 KiB
C
83 lines
2.6 KiB
C
|
/* gnome-file-property-dialog.h
|
||
|
* Copyright (C) 1999 J. Arthur Random
|
||
|
*
|
||
|
* This library is free software; you can redistribute it and/or
|
||
|
* modify it under the terms of the GNU Library General Public
|
||
|
* License as published by the Free Software Foundation; either
|
||
|
* version 2 of the License, or (at your option) any later version.
|
||
|
*
|
||
|
* This library is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
|
* Library General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU Library General Public
|
||
|
* License along with this library; if not, write to the
|
||
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||
|
* Boston, MA 02111-1307, USA.
|
||
|
*/
|
||
|
#ifndef __GNOME_FILE_PROPERTY_DIALOG_H__
|
||
|
#define __GNOME_FILE_PROPERTY_DIALOG_H__
|
||
|
|
||
|
#include <gnome.h>
|
||
|
#include "gdesktop.h"
|
||
|
#include <sys/stat.h>
|
||
|
#include <unistd.h>
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#pragma }
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
#define GNOME_TYPE_FILE_PROPERTY_DIALOG (gnome_file_property_dialog_get_type ())
|
||
|
#define GNOME_FILE_PROPERTY_DIALOG(obj) (GTK_CHECK_CAST ((obj), GNOME_TYPE_FILE_PROPERTY_DIALOG, GnomeFilePropertyDialog))
|
||
|
#define GNOME_FILE_PROPERTY_DIALOG_CLASS(klass) (GTK_CHECK_CLASS_CAST ((klass), GNOME_TYPE_FILE_PROPERTY_DIALOG, GnomeFilePropertyDialogClass))
|
||
|
#define GNOME_IS_FILE_PROPERTY_DIALOG(obj) (GTK_CHECK_TYPE ((obj), GNOME_TYPE_FILE_PROPERTY_DIALOG))
|
||
|
#define GNOME_IS_FILE_PROPERTY_DIALOG_CLASS(klass) (GTK_CHECK_CLASS_TYPE ((obj), GNOME_TYPE_FILE_PROPERTY_DIALOG))
|
||
|
|
||
|
|
||
|
typedef struct _GnomeFilePropertyDialog GnomeFilePropertyDialog;
|
||
|
typedef struct _GnomeFilePropertyDialogClass GnomeFilePropertyDialogClass;
|
||
|
|
||
|
struct _GnomeFilePropertyDialog
|
||
|
{
|
||
|
GnomeDialog parent;
|
||
|
|
||
|
gchar *file_name;
|
||
|
gchar *user_name;
|
||
|
gchar *group_name;
|
||
|
gchar *mode_name;
|
||
|
|
||
|
struct stat st;
|
||
|
/* Regular Stuff */
|
||
|
GtkWidget *file_entry;
|
||
|
|
||
|
/* Permissions stuff */
|
||
|
GtkWidget *mode_label;
|
||
|
|
||
|
GtkWidget *suid, *sgid, *svtx;
|
||
|
GtkWidget *rusr, *wusr, *xusr;
|
||
|
GtkWidget *rgrp, *wgrp, *xgrp;
|
||
|
GtkWidget *roth, *woth, *xoth;
|
||
|
|
||
|
GtkWidget *owner_entry;
|
||
|
GtkWidget *group_entry;
|
||
|
gint euid;
|
||
|
};
|
||
|
struct _GnomeFilePropertyDialogClass
|
||
|
{
|
||
|
GnomeDialogClass parent_class;
|
||
|
};
|
||
|
|
||
|
|
||
|
GtkType gnome_file_property_dialog_get_type (void);
|
||
|
GtkWidget *gnome_file_property_dialog_new (gchar *file_name);
|
||
|
gint gnome_file_property_dialog_make_changes (GnomeFilePropertyDialog *file_property_dialog);
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
|
||
|
#endif /* __GNOME_FILE_PROPERTY_DIALOG_H__ */
|
||
|
|