mc/gnome/gtools.c
Miguel de Icaza b3bb157ad5 These are a bunch of changes to fix CORBA and session management. They
are almost complete (i.e. to handle all nitty gritty cases), but they
seem to be working OK right now.  SM should be much more stable now.
Please tell me if you find any weird behavior - Federico

1999-03-30  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* gdesktop-icon.c (desktop_icon_realize): Remove the
	WM_CLIENT_LEADER property from icon windows so that window
	managers will not store SM information for them.

	* gnome-open-dialog.c: Added missing #includes.

	* gdesktop-init.c (desktop_init_at): Removed an unused variable.

	* gdesktop.h: Added some missing prototypes.

	* gmain.h: Added some missing prototypes.

	* Makefile.in: Added gsession.[ch] to the list of sources.

	* gmain.c (create_panels): Consider whether we have a CORBA server
	and session management.

	* gdesktop.c: #include "gdesktop-init.h"
	* gdesktop.c: Added a missing cast to GNOME_DIALOG.

	* gmain.c (create_panels): Removed the run_desktop global
	variable.

	* glayout.c (create_container): Set the wmclass of the panel to
	include its unique ID.

	* gsession.[ch]: New file with the functions that deal with
	session management.

	* glayout.c (gnome_exit): Use session_set_restart().

	* gcorba.c (corba_init): Now returns an int with an error value.
	(corba_init_server): Initialize the server properly.
	Fixed all the object implementation code.
	(corba_create_window): New function used to create a window with
	the CORBA server.

	* gmain.c (gnome_check_super_user): Now the check for running as
	root is done here.  There should be no GUI code in src/.

1999-03-30  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* dlg.c (dlg_run_done): Do not call the callback of a NULL current
	widget.

	* setup.h: Added missing prototype for setup_init().

	* filegui.c (check_progress_buttons): Added a missing return
	value.

	* dlg.c (remove_widget): Added a missing return value.

	* main.c: Removed the global directory_list variable.
	Removed the main_corba_register_server() function.

	* main.h: Removed the global run_desktop variable.

	* panel.h: Now the panel structure has a unique numerical ID used
	for session management.

	* screen.c (panel_new): Maintain a unique ID for each panel.

	* main.c (maybe_display_linksdir): Handle display of the desktop
	init dir here.
	(main): Call gnome_check_super_user().
	(init_corba_with_args): Call corba_init_server().

	* main.c (init_corba_with_args): Do CORBA initialization here.  Also
	removed the global force_activation option.

1999-03-30  Federico Mena Quintero  <federico@nuclecu.unam.mx>

	* vfs.c (vfs_add_current_stamps): Only do stamping of the panels
	if they exist.

	* mcserv.c: #include <sys/wait.h>
	(get_client): Put `#ifdef __EMX__' around an otherwise-unused
	variable.

	* utilvfs.c (vfs_split_url): Fix NULL <-> 0 confusion when
	comparing characters.

	* ftpfs.c (retrieve_dir): Removed unused variable dot_dot_found.

	* extfs.c (extfs_init): Assign `key' to c, not `&key'.
1999-03-30 06:09:56 +00:00

237 lines
4.2 KiB
C

/*
* (C) 1998 the Free Software Foundation
*
* Written by Miguel de Icaza
*/
#include <config.h>
#include "global.h"
#include <gnome.h>
#include <gdk/gdkkeysyms.h>
#include <string.h>
#include "gconf.h"
#include "dlg.h"
#undef HAVE_LIBGPM
#include "mouse.h"
#include "key.h"
#include "myslang.h"
#include "widget.h"
#include "wtools.h"
#include "dialog.h"
#include "color.h"
#include "gmain.h"
#include "gwidget.h"
Dlg_head *last_query_dlg;
static int sel_pos;
void
query_set_sel (int new_sel)
{
sel_pos = new_sel;
}
int
query_dialog (char *header, char *text, int flags, int count, ...)
{
va_list ap;
GtkWidget *dialog;
int i, result = -1;
const gchar **buttons;
char *stock;
GSList *allocated = NULL;
char *h;
if (header == MSG_ERROR){
h = GNOME_MESSAGE_BOX_ERROR;
header = _("Error");
} else {
h = GNOME_MESSAGE_BOX_ERROR;
}
/* extract the buttons from the args */
buttons = g_malloc (sizeof (char *) * (count+1));
va_start (ap, count);
for (i = 0; i < count; i++){
char *text;
char *clean_text;
char *sign;
text = va_arg (ap, char *);
clean_text = g_strdup (text);
allocated = g_slist_append (allocated, clean_text);
sign = strchr (clean_text, '&');
if (sign && sign [1] != 0)
strcpy (sign, sign+1);
stock = stock_from_text (clean_text);
if (stock)
buttons [i] = stock;
else
buttons [i] = clean_text;
}
va_end (ap);
buttons[i] = NULL;
dialog = gnome_message_box_newv (text, h, buttons);
gtk_window_set_title (GTK_WINDOW (dialog), header);
gtk_window_set_position (GTK_WINDOW (dialog), GTK_WIN_POS_MOUSE);
result = gnome_dialog_run_and_close (GNOME_DIALOG (dialog));
g_slist_foreach (allocated, (GFunc) g_free, NULL);
g_slist_free (allocated);
g_free (buttons);
return result;
}
/* To show nice messages to the users */
Dlg_head *
message (int error, char *header, char *text, ...)
{
va_list args;
char buffer [4096];
Dlg_head *d;
/* Setup the display information */
strcpy (buffer, "\n");
va_start (args, text);
vsprintf (&buffer [1], text, args);
strcat (buffer, "\n");
va_end (args);
query_dialog (header, buffer, error, 1, _("&Ok"));
d = last_query_dlg;
if (error & D_INSERT){
x_flush_events ();
return d;
}
return d;
}
int
translate_gdk_keysym_to_curses (GdkEventKey *event)
{
int keyval = event->keyval;
switch (keyval){
case GDK_BackSpace:
return KEY_BACKSPACE;
case GDK_Tab:
if (event->state & GDK_SHIFT_MASK)
return '\t'; /* return KEY_BTAB */
return '\t';
case GDK_KP_Enter:
case GDK_Return:
return '\n';
case GDK_Escape:
return 27;
case GDK_Delete:
case GDK_KP_Delete:
return KEY_DC;
case GDK_KP_Home:
case GDK_Home:
return KEY_HOME;
case GDK_KP_End:
case GDK_End:
return KEY_END;
case GDK_KP_Left:
case GDK_Left:
return KEY_LEFT;
case GDK_KP_Right:
case GDK_Right:
return KEY_RIGHT;
case GDK_KP_Up:
case GDK_Up:
return KEY_UP;
case GDK_KP_Down:
case GDK_Down:
return KEY_DOWN;
case GDK_KP_Page_Up:
case GDK_Page_Up:
return KEY_PPAGE;
case GDK_KP_Page_Down:
case GDK_Page_Down:
return KEY_NPAGE;
case GDK_KP_Insert:
case GDK_Insert:
return KEY_IC;
case GDK_Menu:
return KEY_F(9);
case GDK_F1:
return KEY_F(1);
case GDK_F2:
return KEY_F(2);
case GDK_F3:
return KEY_F(3);
case GDK_F4:
return KEY_F(4);
case GDK_F5:
return KEY_F(5);
case GDK_F6:
return KEY_F(6);
case GDK_F7:
return KEY_F(7);
case GDK_F8:
return KEY_F(8);
case GDK_F9:
return KEY_F(9);
case GDK_F10:
return KEY_F(10);
case GDK_F11:
return KEY_F(11);
case GDK_F12:
return KEY_F(12);
case GDK_F13:
return KEY_F(13);
case GDK_F14:
return KEY_F(14);
case GDK_F15:
return KEY_F(15);
case GDK_F16:
return KEY_F(16);
case GDK_F17:
return KEY_F(17);
case GDK_F18:
return KEY_F(18);
case GDK_F19:
return KEY_F(19);
case GDK_F20:
return KEY_F(20);
/* The keys we ignore */
case GDK_Control_L:
case GDK_Control_R:
case GDK_Meta_L:
case GDK_Meta_R:
case GDK_Alt_L:
case GDK_Alt_R:
case GDK_Shift_L:
case GDK_Shift_R:
return -1;
default:
if ((event->keyval >= 0x20) && (event->keyval <= 0xff)){
int key = event->keyval;
if (event->state & GDK_CONTROL_MASK){
return key - 'a' + 1;
}
if (event->state & GDK_MOD1_MASK){
return ALT (key);
}
return key;
}
}
return -1;
}