mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-28 09:58:30 +01:00
96 lines
2.8 KiB
C
96 lines
2.8 KiB
C
/* -*- compile-command: "make MEMDEBUG=TRUE -j3"; -*- */
|
|
/*
|
|
* Copyright 2000 - 2016 by Eric House (xwords@eehouse.org). All rights
|
|
* reserved.
|
|
*
|
|
* 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.
|
|
*
|
|
* This program 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 General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
#ifdef PLATFORM_GTK
|
|
|
|
#include "gtkpasswdask.h"
|
|
#include <gtk/gtk.h>
|
|
|
|
static void
|
|
button_event( GtkWidget* XP_UNUSED(widget), void* closure )
|
|
{
|
|
XP_Bool* okptr = (XP_Bool*)closure;
|
|
*okptr = XP_TRUE;
|
|
gtk_main_quit();
|
|
} /* ok_button_event */
|
|
|
|
XP_Bool
|
|
gtkpasswdask( const char* name, char* outbuf, XP_U16* buflen )
|
|
{
|
|
XP_Bool ok = XP_FALSE;
|
|
XP_Bool ignore;
|
|
char buf[64];
|
|
short i;
|
|
|
|
GtkWidget* entry;
|
|
GtkWidget* vbox;
|
|
GtkWidget* hbox;
|
|
GtkWidget* dialog;
|
|
GtkWidget* label;
|
|
|
|
char* labels[] = { "Ok", "Cancel" };
|
|
XP_Bool* boolps[] = { &ok, &ignore };
|
|
|
|
dialog = gtk_dialog_new();
|
|
gtk_window_set_modal( GTK_WINDOW( dialog ), TRUE );
|
|
|
|
snprintf( buf, sizeof(buf), "Password for player \"%s\"", name );
|
|
label = gtk_label_new( buf );
|
|
|
|
gtk_container_add( GTK_CONTAINER(gtk_dialog_get_content_area(GTK_DIALOG(dialog))),
|
|
label);
|
|
|
|
/* we need a text field and two buttons as well */
|
|
vbox = gtk_box_new( GTK_ORIENTATION_VERTICAL, 0 );
|
|
|
|
entry = gtk_entry_new();
|
|
gtk_widget_show( entry );
|
|
gtk_box_pack_start( GTK_BOX(vbox), entry, FALSE, TRUE, 0 );
|
|
|
|
hbox = gtk_box_new( GTK_ORIENTATION_HORIZONTAL, 0);
|
|
|
|
for ( i = 0; i < 2; ++i ) {
|
|
GtkWidget* button = gtk_button_new_with_label( labels[i] );
|
|
g_signal_connect( button, "clicked",
|
|
G_CALLBACK(button_event),
|
|
boolps[i] );
|
|
gtk_box_pack_start( GTK_BOX(hbox), button, FALSE, TRUE, 0 );
|
|
gtk_widget_show( button );
|
|
}
|
|
|
|
gtk_box_pack_start( GTK_BOX(vbox), hbox, FALSE, TRUE, 0 );
|
|
|
|
gtk_dialog_add_action_widget( GTK_DIALOG(dialog), vbox, 0 );
|
|
|
|
gtk_widget_show_all( dialog );
|
|
|
|
gtk_main();
|
|
|
|
if ( ok ) {
|
|
const char* text = gtk_entry_get_text( GTK_ENTRY(entry) );
|
|
strncpy( outbuf, text, *buflen );
|
|
*buflen = strlen(outbuf);
|
|
}
|
|
|
|
gtk_widget_destroy( dialog );
|
|
|
|
return ok;
|
|
} /* gtkpasswdask */
|
|
|
|
#endif /* PLATFORM_GTK */
|