mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-23 12:56:51 +03:00
ca1437548b
This is a semi-big slew of changes to integrate the DESKTOP_BRANCH into the main trunk. Now the gdesktop code creates a temprary WPanel structure and passes it on to the core file management functions. Also, the menu code is improved (we now use gpopup2; gpopup should go away shortly and gpopup2 should replace it). This makes the desktop act consistently with the file panels. Thanks to Jonathan for his help with this branch. * gdnd.c (perform_action): Use mc_lstat(), not mc_stat(). * glayout.c (update_panels): Do not update the panels that are desktop panels. * gdesktop.c (icon_is_in_area): An icon is not considered to be in a 0x0 area. * gpopup2.c (handle_open): Fetch the desktop icon from the filename and call desktop_icon_info_open(). * gdesktop.c (desktop_icon_info_get_by_filename): New function to look up a desktop icon by its filename. * glayout.c (create_new_menu_from): Test for the ".desktop" suffix correctly. * gpopup2.c (handle_properties): If the file comes from a desktop panel, always allow edition of the icon image. 1999-03-10 Federico Mena Quintero <federico@nuclecu.unam.mx> * file.c (erase_dir): Erase metadata for directories as well. (erase_dir_iff_empty): Likewise. (copy_file_file): Delete/copy the metadata even for char/block/sock/fifo files. Same thing for when copying symlinks. (copy_dir_dir): Delete/copy the metadata. (move_dir_dir): Delete/move the metadata. (recursive_erase): Delete the metadata.
67 lines
2.4 KiB
C
67 lines
2.4 KiB
C
#ifndef __GMC_MAIN_H
|
|
#define __GMC_MAIN_H
|
|
#include "dlg.h"
|
|
#include "panel.h"
|
|
#include "widget.h"
|
|
#include "info.h"
|
|
|
|
int xtoolkit_init (int *argc, char *argv []);
|
|
void xtoolkit_end (void);
|
|
|
|
extern Dlg_head *desktop_dlg;
|
|
extern int nowindows;
|
|
|
|
/* Required by the standard code */
|
|
widget_data xtoolkit_create_dialog (Dlg_head *h, int with_grid);
|
|
widget_data xtoolkit_get_main_dialog (Dlg_head *h);
|
|
void x_dlg_set_window (Dlg_head *h, GtkWidget *win);
|
|
widget_data x_create_panel_container (int which);
|
|
void x_panel_container_show (widget_data wdata);
|
|
void x_destroy_cmd (void *);
|
|
int x_create_radio (Dlg_head *h, widget_data parent, WRadio *r);
|
|
int x_create_check (Dlg_head *h, widget_data parent, WCheck *c);
|
|
int x_create_label (Dlg_head *h, widget_data parent, WLabel *l);
|
|
int x_create_input (Dlg_head *h, widget_data parent, WInput *in);
|
|
int x_create_listbox (Dlg_head *h, widget_data parent, WListbox *l);
|
|
int x_create_buttonbar (Dlg_head *h, widget_data parent, WButtonBar *bb);
|
|
void x_filter_changed (WPanel *panel);
|
|
void x_list_insert (WListbox *l, WLEntry *p, WLEntry *e);
|
|
void x_redefine_label (WButtonBar *bb, int idx);
|
|
void x_add_widget (Dlg_head *h, Widget_Item *w);
|
|
int translate_gdk_keysym_to_curses (GdkEventKey *event);
|
|
void gnome_init_panels ();
|
|
void bind_gtk_keys (GtkWidget *w, Dlg_head *h);
|
|
WPanel *new_panel_at (char *dir);
|
|
WPanel *new_panel_with_geometry_at (char *dir, char *geometry);
|
|
void set_current_panel (WPanel *panel);
|
|
void layout_panel_gone (WPanel *panel);
|
|
void gtkrundlg_event (Dlg_head *h);
|
|
int gmc_open (file_entry *fe);
|
|
int gmc_open_with (char *filename);
|
|
int gmc_open_filename (char *fname, GList *args);
|
|
int gmc_edit (char *fname);
|
|
int gmc_can_view_file (char *filename);
|
|
int gmc_view (char *filename, int start_line);
|
|
void x_show_info (WInfo *info, struct my_statfs *s, struct stat *b);
|
|
void x_create_info (Dlg_head *h, widget_data parent, WInfo *info);
|
|
|
|
/*
|
|
* stuff from gaction.c
|
|
*/
|
|
int gmc_open (file_entry *fe);
|
|
int gmc_open_filename (char *fname, GList *args);
|
|
int gmc_edit_filename (char *fname);
|
|
int gmc_view (char *filename, int start_line);
|
|
|
|
void gmc_window_setup_from_panel (GnomeDialog *dialog, WPanel *panel);
|
|
|
|
struct gmc_color_pairs_s {
|
|
GdkColor *fore, *back;
|
|
};
|
|
|
|
void gmc_do_quit (void);
|
|
extern GnomeClient *session_client;
|
|
|
|
extern struct gmc_color_pairs_s gmc_color_pairs [];
|
|
#endif
|