1
1
mc/gnome/gprefs.c
Jonathan Blandford 9d69629866 1999-01-08 Jonathan Blandford <jrb@redhat.com>
* glayout.c: now open the new (non-functional) dialog box.  If you
	want functionality, I suppose you could put the old one back in.
	I'll work on it more this weekend, though, so hopefully it can get
	back to the old state relatively quickly.
	* gprefs.c (gnome_configure_box): New function, new file, first
	start at unified properties box.
1999-01-09 00:24:03 +00:00

70 строки
1.7 KiB
C

#include <config.h>
#include "x.h"
#include <stdio.h>
#include <sys/stat.h>
#include "dir.h"
#include "panel.h"
#include "gscreen.h"
#include "main.h"
#include "gmain.h"
#include "cmd.h"
#include "boxes.h"
#include "profile.h"
#include "setup.h"
#include "panelize.h"
#include "dialog.h"
#include "layout.h"
#include "../vfs/vfs.h"
#include "gprefs.h"
static GtkWidget *
file_display_pane (WPanel *panel)
{
return gtk_frame_new (NULL);
}
static GtkWidget *
confirmation_pane (WPanel *panel)
{
return gtk_frame_new (NULL);
}
static GtkWidget *
custom_view_pane (WPanel *panel)
{
return gtk_frame_new (NULL);
}
static GtkWidget *
vfs_pane (WPanel *panel)
{
return gtk_frame_new (NULL);
}
static GtkWidget *
caching_and_optimizations_pane (WPanel *panel)
{
return gtk_frame_new (NULL);
}
void
gnome_configure_box (GtkWidget *widget, WPanel *panel)
{
GtkWidget *prefs_dlg;
prefs_dlg = gnome_property_box_new ();
gnome_property_box_append_page (GNOME_PROPERTY_BOX (prefs_dlg),
file_display_pane (panel),
gtk_label_new (_("File Display")));
gnome_property_box_append_page (GNOME_PROPERTY_BOX (prefs_dlg),
confirmation_pane (panel),
gtk_label_new (_("Confirmation")));
gnome_property_box_append_page (GNOME_PROPERTY_BOX (prefs_dlg),
custom_view_pane (panel),
gtk_label_new (_("Custom View")));
gnome_property_box_append_page (GNOME_PROPERTY_BOX (prefs_dlg),
vfs_pane (panel),
gtk_label_new (_("Caching and Optimizations")));
gnome_property_box_append_page (GNOME_PROPERTY_BOX (prefs_dlg),
caching_and_optimizations_pane (panel),
gtk_label_new (_("VFS")));
gtk_widget_show_all (GNOME_PROPERTY_BOX (prefs_dlg)->notebook);
gnome_dialog_run_and_close (GNOME_DIALOG (prefs_dlg));
}