1997-11-24 22:37:52 +00:00
/* GTK - The GIMP Toolkit
* Copyright ( C ) 1995 - 1997 Peter Mattis , Spencer Kimball and Josh MacDonald
*
* 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
1998-04-13 02:02:47 +00:00
* License along with this library ; if not , write to the
* Free Software Foundation , Inc . , 59 Temple Place - Suite 330 ,
* Boston , MA 02111 - 1307 , USA .
1997-11-24 22:37:52 +00:00
*/
1999-02-24 07:37:18 +00:00
/*
* Modified by the GTK + Team and others 1997 - 1999. See the AUTHORS
* file for a list of people on the GTK + Team . See the ChangeLog
* files for a list of changes . These files are distributed with
* GTK + at ftp : //ftp.gtk.org/pub/gtk/.
*/
1998-08-16 21:15:11 +00:00
# undef G_LOG_DOMAIN
1998-07-26 14:45:40 +00:00
1997-11-24 22:37:52 +00:00
# include <stdio.h>
# include <stdlib.h>
1998-05-13 00:24:57 +00:00
# include <string.h>
1998-06-08 03:38:24 +00:00
# include <math.h>
1998-06-28 06:24:49 +00:00
# include <time.h>
1997-11-24 22:37:52 +00:00
# include "gtk.h"
Merge in Win32 version: Define macro GDKVAR for declaring gdk variables
* gdk/gdktypes.h: Merge in Win32 version: Define macro GDKVAR for
declaring gdk variables exported/imported from the DLL. New image
type enum, GDK_IMAGE_SHARED_PIXMAP, for gdk_imlib. New drag and
drop protocol enums, GDK_DRAG_PROTO_WIN32_DROPFILES and
GDK_DRAG_PROTO_OLE2.
* gdk/gdk.h: Merge in Win32 version: Two new functions,
gdk_pixmap_create_on_shared_image and gdk_image_bitmap_new. So far
declared only for the Win32 version, but could be in the X11
version as well. (Needed for a Xlib-less gdk_imlib.)
gdk_color_hash should have only one parameter. Declare
gdk_threads_mutex with GDKVAR.
* gdk/gdkcolor.c (gdk_color_hash): As a hash function should have
just one parameter.
* gdk/gdkimage.c (gdk_image_get): Initialize bpp correctly. Bytes
per pixel, not bits.
* gdk/gdkrgb.c: Mingle includes somewhat. (gdk_rgb_select_conv):
Fetch bpp (which means bits-per-pixel here) from another place on
Win32. Accept also depth==32 (which we might get on Win32) with
bpp==32.
* gtk/{gtkclist,gtkctree,gtkdnd,gtkditable,gtkfontsel,
gtkhandlebox,gtklayout,gtkmain,gtkplug,gtkpreview,gtkrc,
gtkselection,gtksocket,gtkstyle,gtkwidget,gtkwindow}.c:
Include gdx.h from "gdkx.h", not "gdk/gdkx.h", as gdkx.h will be
in the backend-dependent directory, not in the common gdk
directory.
* gtk/testgtk.c: Ditto. Also, don't use ../gdk patchs to gdk
headers.
1999-03-17 23:02:10 +00:00
# include "gdk/gdk.h"
# include "gdk/gdkkeysyms.h"
# include "gdkx.h"
1997-11-24 22:37:52 +00:00
1998-02-27 06:13:22 +00:00
# include "circles.xbm"
1998-07-26 14:45:40 +00:00
typedef struct _OptionMenuItem
{
gchar * name ;
GtkSignalFunc func ;
} OptionMenuItem ;
GtkWidget *
shape_create_icon ( char * xpm_file ,
gint x ,
gint y ,
gint px ,
gint py ,
gint window_type ) ;
static GtkWidget *
build_option_menu ( OptionMenuItem items [ ] ,
gint num_items ,
gint history ,
gpointer data ) ;
1998-03-02 00:32:52 +00:00
/* macro, structure and variables used by tree window demos */
# define DEFAULT_NUMBER_OF_ITEM 3
# define DEFAULT_RECURSION_LEVEL 3
struct {
GSList * selection_mode_group ;
GtkWidget * single_button ;
GtkWidget * browse_button ;
GtkWidget * multiple_button ;
GtkWidget * draw_line_button ;
GtkWidget * view_line_button ;
GtkWidget * no_root_item_button ;
GtkWidget * nb_item_spinner ;
GtkWidget * recursion_spinner ;
} sTreeSampleSelection ;
typedef struct sTreeButtons {
guint nb_item_add ;
GtkWidget * add_button ;
GtkWidget * remove_button ;
1998-05-01 04:23:59 +00:00
GtkWidget * subtree_button ;
1998-03-02 00:32:52 +00:00
} sTreeButtons ;
/* end of tree section */
1998-07-26 14:45:40 +00:00
static GtkWidget *
build_option_menu ( OptionMenuItem items [ ] ,
gint num_items ,
gint history ,
gpointer data )
{
GtkWidget * omenu ;
GtkWidget * menu ;
GtkWidget * menu_item ;
GSList * group ;
gint i ;
omenu = gtk_option_menu_new ( ) ;
menu = gtk_menu_new ( ) ;
group = NULL ;
for ( i = 0 ; i < num_items ; i + + )
{
menu_item = gtk_radio_menu_item_new_with_label ( group , items [ i ] . name ) ;
gtk_signal_connect ( GTK_OBJECT ( menu_item ) , " activate " ,
( GtkSignalFunc ) items [ i ] . func , data ) ;
group = gtk_radio_menu_item_group ( GTK_RADIO_MENU_ITEM ( menu_item ) ) ;
gtk_menu_append ( GTK_MENU ( menu ) , menu_item ) ;
if ( i = = history )
1999-01-17 14:52:22 +00:00
gtk_check_menu_item_set_active ( GTK_CHECK_MENU_ITEM ( menu_item ) , TRUE ) ;
1998-07-26 14:45:40 +00:00
gtk_widget_show ( menu_item ) ;
}
gtk_option_menu_set_menu ( GTK_OPTION_MENU ( omenu ) , menu ) ;
gtk_option_menu_set_history ( GTK_OPTION_MENU ( omenu ) , history ) ;
return omenu ;
}
1998-02-19 05:13:46 +00:00
static void
1998-01-30 23:47:09 +00:00
destroy_tooltips ( GtkWidget * widget , GtkWindow * * window )
{
GtkTooltips * tt = gtk_object_get_data ( GTK_OBJECT ( * window ) , " tooltips " ) ;
gtk_object_unref ( GTK_OBJECT ( tt ) ) ;
* window = NULL ;
}
1998-07-26 14:45:40 +00:00
/*
* GtkButton
*/
1998-02-19 05:13:46 +00:00
static void
1997-11-24 22:37:52 +00:00
button_window ( GtkWidget * widget ,
GtkWidget * button )
{
if ( ! GTK_WIDGET_VISIBLE ( button ) )
gtk_widget_show ( button ) ;
else
gtk_widget_hide ( button ) ;
}
1998-02-19 05:13:46 +00:00
static void
1998-05-03 22:41:32 +00:00
create_buttons ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * table ;
GtkWidget * button [ 10 ] ;
GtkWidget * separator ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
1998-07-26 14:45:40 +00:00
gtk_window_set_title ( GTK_WINDOW ( window ) , " GtkButton " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
table = gtk_table_new ( 3 , 3 , FALSE ) ;
gtk_table_set_row_spacings ( GTK_TABLE ( table ) , 5 ) ;
gtk_table_set_col_spacings ( GTK_TABLE ( table ) , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( table ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , table , TRUE , TRUE , 0 ) ;
button [ 0 ] = gtk_button_new_with_label ( " button1 " ) ;
button [ 1 ] = gtk_button_new_with_label ( " button2 " ) ;
button [ 2 ] = gtk_button_new_with_label ( " button3 " ) ;
button [ 3 ] = gtk_button_new_with_label ( " button4 " ) ;
button [ 4 ] = gtk_button_new_with_label ( " button5 " ) ;
button [ 5 ] = gtk_button_new_with_label ( " button6 " ) ;
button [ 6 ] = gtk_button_new_with_label ( " button7 " ) ;
button [ 7 ] = gtk_button_new_with_label ( " button8 " ) ;
button [ 8 ] = gtk_button_new_with_label ( " button9 " ) ;
gtk_signal_connect ( GTK_OBJECT ( button [ 0 ] ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( button_window ) ,
1997-11-24 22:37:52 +00:00
button [ 1 ] ) ;
gtk_table_attach ( GTK_TABLE ( table ) , button [ 0 ] , 0 , 1 , 0 , 1 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL , 0 , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( button [ 1 ] ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( button_window ) ,
1997-11-24 22:37:52 +00:00
button [ 2 ] ) ;
gtk_table_attach ( GTK_TABLE ( table ) , button [ 1 ] , 1 , 2 , 1 , 2 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL , 0 , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( button [ 2 ] ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( button_window ) ,
1997-11-24 22:37:52 +00:00
button [ 3 ] ) ;
gtk_table_attach ( GTK_TABLE ( table ) , button [ 2 ] , 2 , 3 , 2 , 3 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL , 0 , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( button [ 3 ] ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( button_window ) ,
1997-11-24 22:37:52 +00:00
button [ 4 ] ) ;
gtk_table_attach ( GTK_TABLE ( table ) , button [ 3 ] , 0 , 1 , 2 , 3 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL , 0 , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( button [ 4 ] ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( button_window ) ,
1997-11-24 22:37:52 +00:00
button [ 5 ] ) ;
gtk_table_attach ( GTK_TABLE ( table ) , button [ 4 ] , 2 , 3 , 0 , 1 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL , 0 , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( button [ 5 ] ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( button_window ) ,
1997-11-24 22:37:52 +00:00
button [ 6 ] ) ;
gtk_table_attach ( GTK_TABLE ( table ) , button [ 5 ] , 1 , 2 , 2 , 3 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL , 0 , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( button [ 6 ] ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( button_window ) ,
1997-11-24 22:37:52 +00:00
button [ 7 ] ) ;
gtk_table_attach ( GTK_TABLE ( table ) , button [ 6 ] , 1 , 2 , 0 , 1 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL , 0 , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( button [ 7 ] ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( button_window ) ,
1997-11-24 22:37:52 +00:00
button [ 8 ] ) ;
gtk_table_attach ( GTK_TABLE ( table ) , button [ 7 ] , 2 , 3 , 1 , 2 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL , 0 , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( button [ 8 ] ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( button_window ) ,
1997-11-24 22:37:52 +00:00
button [ 0 ] ) ;
gtk_table_attach ( GTK_TABLE ( table ) , button [ 8 ] , 0 , 1 , 1 , 2 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL , 0 , 0 ) ;
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
button [ 9 ] = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button [ 9 ] ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button [ 9 ] , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button [ 9 ] , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button [ 9 ] ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1997-11-24 22:37:52 +00:00
else
gtk_widget_destroy ( window ) ;
}
1998-07-26 14:45:40 +00:00
/*
* GtkToggleButton
*/
1998-02-19 05:13:46 +00:00
static void
1998-05-03 22:41:32 +00:00
create_toggle_buttons ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * button ;
GtkWidget * separator ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
1998-07-26 14:45:40 +00:00
gtk_window_set_title ( GTK_WINDOW ( window ) , " GtkToggleButton " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , TRUE , TRUE , 0 ) ;
button = gtk_toggle_button_new_with_label ( " button1 " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
button = gtk_toggle_button_new_with_label ( " button2 " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
button = gtk_toggle_button_new_with_label ( " button3 " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1997-11-24 22:37:52 +00:00
else
gtk_widget_destroy ( window ) ;
}
1998-07-26 14:45:40 +00:00
/*
* GtkCheckButton
*/
1998-02-19 05:13:46 +00:00
static void
1998-05-03 22:41:32 +00:00
create_check_buttons ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * button ;
GtkWidget * separator ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
1998-07-26 14:45:40 +00:00
gtk_window_set_title ( GTK_WINDOW ( window ) , " GtkCheckButton " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , TRUE , TRUE , 0 ) ;
button = gtk_check_button_new_with_label ( " button1 " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
button = gtk_check_button_new_with_label ( " button2 " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
button = gtk_check_button_new_with_label ( " button3 " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1997-11-24 22:37:52 +00:00
else
gtk_widget_destroy ( window ) ;
}
1998-07-26 14:45:40 +00:00
/*
* GtkRadioButton
*/
1998-02-19 05:13:46 +00:00
static void
1998-05-03 22:41:32 +00:00
create_radio_buttons ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * button ;
GtkWidget * separator ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " radio buttons " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , TRUE , TRUE , 0 ) ;
button = gtk_radio_button_new_with_label ( NULL , " button1 " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
button = gtk_radio_button_new_with_label (
gtk_radio_button_group ( GTK_RADIO_BUTTON ( button ) ) ,
" button2 " ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( button ) , TRUE ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
button = gtk_radio_button_new_with_label (
gtk_radio_button_group ( GTK_RADIO_BUTTON ( button ) ) ,
" button3 " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1997-11-24 22:37:52 +00:00
else
gtk_widget_destroy ( window ) ;
}
1998-07-26 14:45:40 +00:00
/*
* GtkButtonBox
*/
1997-11-24 22:37:52 +00:00
1998-07-26 14:45:40 +00:00
static GtkWidget *
create_bbox ( gint horizontal ,
char * title ,
gint spacing ,
gint child_w ,
gint child_h ,
gint layout )
1997-11-24 22:37:52 +00:00
{
1998-07-26 14:45:40 +00:00
GtkWidget * frame ;
GtkWidget * bbox ;
GtkWidget * button ;
1997-11-24 22:37:52 +00:00
1998-07-26 14:45:40 +00:00
frame = gtk_frame_new ( title ) ;
1997-11-24 22:37:52 +00:00
if ( horizontal )
1998-07-26 14:45:40 +00:00
bbox = gtk_hbutton_box_new ( ) ;
1997-11-24 22:37:52 +00:00
else
1998-07-26 14:45:40 +00:00
bbox = gtk_vbutton_box_new ( ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( bbox ) , 5 ) ;
1998-07-26 14:45:40 +00:00
gtk_container_add ( GTK_CONTAINER ( frame ) , bbox ) ;
1997-11-24 22:37:52 +00:00
gtk_button_box_set_layout ( GTK_BUTTON_BOX ( bbox ) , layout ) ;
gtk_button_box_set_spacing ( GTK_BUTTON_BOX ( bbox ) , spacing ) ;
gtk_button_box_set_child_size ( GTK_BUTTON_BOX ( bbox ) , child_w , child_h ) ;
button = gtk_button_new_with_label ( " OK " ) ;
1998-07-26 14:45:40 +00:00
gtk_container_add ( GTK_CONTAINER ( bbox ) , button ) ;
1997-11-24 22:37:52 +00:00
button = gtk_button_new_with_label ( " Cancel " ) ;
1998-07-26 14:45:40 +00:00
gtk_container_add ( GTK_CONTAINER ( bbox ) , button ) ;
1997-11-24 22:37:52 +00:00
button = gtk_button_new_with_label ( " Help " ) ;
1998-07-26 14:45:40 +00:00
gtk_container_add ( GTK_CONTAINER ( bbox ) , button ) ;
1997-11-24 22:37:52 +00:00
1998-07-26 14:45:40 +00:00
return frame ;
1997-11-24 22:37:52 +00:00
}
1998-02-19 05:13:46 +00:00
static void
1998-05-03 22:41:32 +00:00
create_button_box ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
1998-07-26 14:45:40 +00:00
GtkWidget * main_vbox ;
GtkWidget * vbox ;
GtkWidget * hbox ;
GtkWidget * frame_horz ;
GtkWidget * frame_vert ;
1997-11-24 22:37:52 +00:00
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
1998-07-26 14:45:40 +00:00
gtk_window_set_title ( GTK_WINDOW ( window ) , " Button Boxes " ) ;
1997-11-24 22:37:52 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& window ) ;
1997-11-24 22:37:52 +00:00
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 10 ) ;
1998-07-26 14:45:40 +00:00
main_vbox = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , main_vbox ) ;
1997-11-24 22:37:52 +00:00
1998-07-26 14:45:40 +00:00
frame_horz = gtk_frame_new ( " Horizontal Button Boxes " ) ;
gtk_box_pack_start ( GTK_BOX ( main_vbox ) , frame_horz , TRUE , TRUE , 10 ) ;
1997-11-24 22:37:52 +00:00
1998-07-26 14:45:40 +00:00
vbox = gtk_vbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( vbox ) , 10 ) ;
1998-07-26 14:45:40 +00:00
gtk_container_add ( GTK_CONTAINER ( frame_horz ) , vbox ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) ,
create_bbox ( TRUE , " Spread " , 40 , 85 , 20 , GTK_BUTTONBOX_SPREAD ) ,
TRUE , TRUE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) ,
create_bbox ( TRUE , " Edge " , 40 , 85 , 20 , GTK_BUTTONBOX_EDGE ) ,
TRUE , TRUE , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) ,
create_bbox ( TRUE , " Start " , 40 , 85 , 20 , GTK_BUTTONBOX_START ) ,
TRUE , TRUE , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) ,
create_bbox ( TRUE , " End " , 40 , 85 , 20 , GTK_BUTTONBOX_END ) ,
TRUE , TRUE , 5 ) ;
frame_vert = gtk_frame_new ( " Vertical Button Boxes " ) ;
gtk_box_pack_start ( GTK_BOX ( main_vbox ) , frame_vert , TRUE , TRUE , 10 ) ;
1997-11-24 22:37:52 +00:00
1998-07-26 14:45:40 +00:00
hbox = gtk_hbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( hbox ) , 10 ) ;
1998-07-26 14:45:40 +00:00
gtk_container_add ( GTK_CONTAINER ( frame_vert ) , hbox ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) ,
create_bbox ( FALSE , " Spread " , 30 , 85 , 20 , GTK_BUTTONBOX_SPREAD ) ,
TRUE , TRUE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) ,
create_bbox ( FALSE , " Edge " , 30 , 85 , 20 , GTK_BUTTONBOX_EDGE ) ,
TRUE , TRUE , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) ,
create_bbox ( FALSE , " Start " , 30 , 85 , 20 , GTK_BUTTONBOX_START ) ,
TRUE , TRUE , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) ,
create_bbox ( FALSE , " End " , 30 , 85 , 20 , GTK_BUTTONBOX_END ) ,
TRUE , TRUE , 5 ) ;
1997-11-24 22:37:52 +00:00
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1997-11-24 22:37:52 +00:00
else
gtk_widget_destroy ( window ) ;
}
1998-07-26 14:45:40 +00:00
/*
* GtkToolBar
*/
1998-02-19 05:13:46 +00:00
static GtkWidget *
1997-12-23 06:11:36 +00:00
new_pixmap ( char * filename ,
GdkWindow * window ,
GdkColor * background )
1997-12-23 00:35:48 +00:00
{
GtkWidget * wpixmap ;
GdkPixmap * pixmap ;
GdkBitmap * mask ;
pixmap = gdk_pixmap_create_from_xpm ( window , & mask ,
background ,
1998-03-12 18:57:46 +00:00
filename ) ;
1997-12-23 00:35:48 +00:00
wpixmap = gtk_pixmap_new ( pixmap , mask ) ;
return wpixmap ;
}
1998-02-19 05:13:46 +00:00
static void
1997-12-23 06:11:36 +00:00
set_toolbar_horizontal ( GtkWidget * widget ,
gpointer data )
{
gtk_toolbar_set_orientation ( GTK_TOOLBAR ( data ) , GTK_ORIENTATION_HORIZONTAL ) ;
}
1998-02-19 05:13:46 +00:00
static void
1997-12-23 06:11:36 +00:00
set_toolbar_vertical ( GtkWidget * widget ,
gpointer data )
{
gtk_toolbar_set_orientation ( GTK_TOOLBAR ( data ) , GTK_ORIENTATION_VERTICAL ) ;
}
1998-02-19 05:13:46 +00:00
static void
1997-12-23 06:11:36 +00:00
set_toolbar_icons ( GtkWidget * widget ,
gpointer data )
{
gtk_toolbar_set_style ( GTK_TOOLBAR ( data ) , GTK_TOOLBAR_ICONS ) ;
}
1998-02-19 05:13:46 +00:00
static void
1997-12-23 06:11:36 +00:00
set_toolbar_text ( GtkWidget * widget ,
gpointer data )
{
gtk_toolbar_set_style ( GTK_TOOLBAR ( data ) , GTK_TOOLBAR_TEXT ) ;
}
1998-02-19 05:13:46 +00:00
static void
1997-12-23 06:11:36 +00:00
set_toolbar_both ( GtkWidget * widget ,
gpointer data )
{
gtk_toolbar_set_style ( GTK_TOOLBAR ( data ) , GTK_TOOLBAR_BOTH ) ;
}
1999-10-02 17:13:09 +00:00
static void
set_toolbar_both_horiz ( GtkWidget * widget ,
gpointer data )
{
gtk_toolbar_set_style ( GTK_TOOLBAR ( data ) , GTK_TOOLBAR_BOTH_HORIZ ) ;
}
1998-02-19 05:13:46 +00:00
static void
1997-12-23 06:11:36 +00:00
set_toolbar_small_space ( GtkWidget * widget ,
gpointer data )
{
gtk_toolbar_set_space_size ( GTK_TOOLBAR ( data ) , 5 ) ;
}
1998-02-19 05:13:46 +00:00
static void
1997-12-23 06:11:36 +00:00
set_toolbar_big_space ( GtkWidget * widget ,
gpointer data )
{
gtk_toolbar_set_space_size ( GTK_TOOLBAR ( data ) , 10 ) ;
}
1998-02-19 05:13:46 +00:00
static void
1997-12-23 06:11:36 +00:00
set_toolbar_enable ( GtkWidget * widget ,
gpointer data )
{
gtk_toolbar_set_tooltips ( GTK_TOOLBAR ( data ) , TRUE ) ;
}
1998-02-19 05:13:46 +00:00
static void
1997-12-23 06:11:36 +00:00
set_toolbar_disable ( GtkWidget * widget ,
gpointer data )
{
gtk_toolbar_set_tooltips ( GTK_TOOLBAR ( data ) , FALSE ) ;
}
1998-05-12 21:30:52 +00:00
static void
set_toolbar_borders ( GtkWidget * widget ,
gpointer data )
{
gtk_toolbar_set_button_relief ( GTK_TOOLBAR ( data ) , GTK_RELIEF_NORMAL ) ;
}
static void
set_toolbar_borderless ( GtkWidget * widget ,
gpointer data )
{
gtk_toolbar_set_button_relief ( GTK_TOOLBAR ( data ) , GTK_RELIEF_NONE ) ;
}
1998-12-08 13:25:35 +00:00
static void
set_toolbar_space_style_empty ( GtkWidget * widget ,
gpointer data )
{
gtk_toolbar_set_space_style ( GTK_TOOLBAR ( data ) , GTK_TOOLBAR_SPACE_EMPTY ) ;
}
static void
set_toolbar_space_style_line ( GtkWidget * widget ,
gpointer data )
{
gtk_toolbar_set_space_style ( GTK_TOOLBAR ( data ) , GTK_TOOLBAR_SPACE_LINE ) ;
}
1998-02-19 05:13:46 +00:00
static void
1997-12-23 00:35:48 +00:00
create_toolbar ( void )
{
static GtkWidget * window = NULL ;
GtkWidget * toolbar ;
1998-01-13 06:14:52 +00:00
GtkWidget * entry ;
1997-12-23 00:35:48 +00:00
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " Toolbar test " ) ;
1998-01-13 06:14:52 +00:00
gtk_window_set_policy ( GTK_WINDOW ( window ) , FALSE , TRUE , TRUE ) ;
1997-12-23 00:35:48 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-12-23 00:35:48 +00:00
& window ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-12-23 00:35:48 +00:00
gtk_widget_realize ( window ) ;
toolbar = gtk_toolbar_new ( GTK_ORIENTATION_HORIZONTAL , GTK_TOOLBAR_BOTH ) ;
1998-05-12 21:30:52 +00:00
gtk_toolbar_set_button_relief ( GTK_TOOLBAR ( toolbar ) , GTK_RELIEF_NONE ) ;
1997-12-23 00:35:48 +00:00
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Horizontal " , " Horizontal toolbar layout " , " Toolbar/Horizontal " ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_horizontal , toolbar ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Vertical " , " Vertical toolbar layout " , " Toolbar/Vertical " ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_vertical , toolbar ) ;
gtk_toolbar_append_space ( GTK_TOOLBAR ( toolbar ) ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Icons " , " Only show toolbar icons " , " Toolbar/IconsOnly " ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_icons , toolbar ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Text " , " Only show toolbar text " , " Toolbar/TextOnly " ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_text , toolbar ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Both " , " Show toolbar icons and text " , " Toolbar/Both " ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_both , toolbar ) ;
1999-10-02 17:13:09 +00:00
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
" Both (horizontal) " ,
" Show toolbar icons and text in a horizontal fashion " ,
" Toolbar/BothHoriz " ,
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
( GtkSignalFunc ) set_toolbar_both_horiz , toolbar ) ;
1997-12-23 06:11:36 +00:00
gtk_toolbar_append_space ( GTK_TOOLBAR ( toolbar ) ) ;
1998-01-13 06:14:52 +00:00
entry = gtk_entry_new ( ) ;
1998-07-26 14:45:40 +00:00
1998-02-21 04:46:21 +00:00
gtk_toolbar_append_widget ( GTK_TOOLBAR ( toolbar ) , entry , " This is an unusable GtkEntry ;) " , " Hey don't click me!!! " ) ;
1998-01-13 06:14:52 +00:00
gtk_toolbar_append_space ( GTK_TOOLBAR ( toolbar ) ) ;
1997-12-23 00:35:48 +00:00
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Small " , " Use small spaces " , " Toolbar/Small " ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_small_space , toolbar ) ;
1997-12-23 00:35:48 +00:00
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Big " , " Use big spaces " , " Toolbar/Big " ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_big_space , toolbar ) ;
1997-12-23 00:35:48 +00:00
gtk_toolbar_append_space ( GTK_TOOLBAR ( toolbar ) ) ;
1997-12-23 06:11:36 +00:00
1997-12-23 00:35:48 +00:00
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Enable " , " Enable tooltips " , NULL ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_enable , toolbar ) ;
1997-12-23 00:35:48 +00:00
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Disable " , " Disable tooltips " , NULL ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_disable , toolbar ) ;
1997-12-23 00:35:48 +00:00
1998-05-12 21:30:52 +00:00
gtk_toolbar_append_space ( GTK_TOOLBAR ( toolbar ) ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
" Borders " , " Show Borders " , NULL ,
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
( GtkSignalFunc ) set_toolbar_borders , toolbar ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
" Borderless " , " Hide Borders " , NULL ,
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
( GtkSignalFunc ) set_toolbar_borderless , toolbar ) ;
1998-12-08 13:25:35 +00:00
gtk_toolbar_append_space ( GTK_TOOLBAR ( toolbar ) ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
" Empty " , " Empty spaces " , NULL ,
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
( GtkSignalFunc ) set_toolbar_space_style_empty , toolbar ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
" Lines " , " Lines in spaces " , NULL ,
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
( GtkSignalFunc ) set_toolbar_space_style_line , toolbar ) ;
1997-12-23 00:35:48 +00:00
gtk_container_add ( GTK_CONTAINER ( window ) , toolbar ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1997-12-23 00:35:48 +00:00
else
gtk_widget_destroy ( window ) ;
}
1998-02-19 05:13:46 +00:00
static GtkWidget *
1997-12-23 06:11:36 +00:00
make_toolbar ( GtkWidget * window )
{
GtkWidget * toolbar ;
if ( ! GTK_WIDGET_REALIZED ( window ) )
gtk_widget_realize ( window ) ;
toolbar = gtk_toolbar_new ( GTK_ORIENTATION_HORIZONTAL , GTK_TOOLBAR_BOTH ) ;
1998-05-12 21:30:52 +00:00
gtk_toolbar_set_button_relief ( GTK_TOOLBAR ( toolbar ) , GTK_RELIEF_NONE ) ;
1997-12-23 06:11:36 +00:00
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Horizontal " , " Horizontal toolbar layout " , NULL ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_horizontal , toolbar ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Vertical " , " Vertical toolbar layout " , NULL ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_vertical , toolbar ) ;
gtk_toolbar_append_space ( GTK_TOOLBAR ( toolbar ) ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Icons " , " Only show toolbar icons " , NULL ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_icons , toolbar ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Text " , " Only show toolbar text " , NULL ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_text , toolbar ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Both " , " Show toolbar icons and text " , NULL ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_both , toolbar ) ;
gtk_toolbar_append_space ( GTK_TOOLBAR ( toolbar ) ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Small " , " Use small spaces " , NULL ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_small_space , toolbar ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Big " , " Use big spaces " , " Toolbar/Big " ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_big_space , toolbar ) ;
gtk_toolbar_append_space ( GTK_TOOLBAR ( toolbar ) ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Enable " , " Enable tooltips " , NULL ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_enable , toolbar ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
1998-02-21 04:46:21 +00:00
" Disable " , " Disable tooltips " , NULL ,
1998-01-19 22:38:22 +00:00
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
1997-12-23 06:11:36 +00:00
( GtkSignalFunc ) set_toolbar_disable , toolbar ) ;
1998-05-12 21:30:52 +00:00
gtk_toolbar_append_space ( GTK_TOOLBAR ( toolbar ) ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
" Borders " , " Show Borders " , NULL ,
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
( GtkSignalFunc ) set_toolbar_borders , toolbar ) ;
gtk_toolbar_append_item ( GTK_TOOLBAR ( toolbar ) ,
" Borderless " , " Hide Borders " , NULL ,
new_pixmap ( " test.xpm " , window - > window , & window - > style - > bg [ GTK_STATE_NORMAL ] ) ,
( GtkSignalFunc ) set_toolbar_borderless , toolbar ) ;
1997-12-23 06:11:36 +00:00
return toolbar ;
}
1998-07-26 14:45:40 +00:00
/*
* GtkStatusBar
*/
1998-02-23 15:13:03 +00:00
static guint statusbar_counter = 1 ;
static void
statusbar_push ( GtkWidget * button ,
GtkStatusbar * statusbar )
{
gchar text [ 1024 ] ;
sprintf ( text , " something %d " , statusbar_counter + + ) ;
1998-03-01 23:29:40 +00:00
gtk_statusbar_push ( statusbar , 1 , text ) ;
1998-02-23 15:13:03 +00:00
}
static void
statusbar_pop ( GtkWidget * button ,
GtkStatusbar * statusbar )
{
1998-03-01 23:29:40 +00:00
gtk_statusbar_pop ( statusbar , 1 ) ;
1998-02-23 15:13:03 +00:00
}
static void
statusbar_steal ( GtkWidget * button ,
GtkStatusbar * statusbar )
{
1998-03-01 23:29:40 +00:00
gtk_statusbar_remove ( statusbar , 1 , 4 ) ;
1998-02-23 15:13:03 +00:00
}
static void
statusbar_popped ( GtkStatusbar * statusbar ,
1998-03-01 23:29:40 +00:00
guint context_id ,
1998-02-23 15:13:03 +00:00
const gchar * text )
{
if ( ! statusbar - > messages )
statusbar_counter = 1 ;
}
1998-03-01 23:29:40 +00:00
static void
deleted most of the argument handling code, since that is now implemented
Fri Jul 10 00:02:04 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: deleted most of the argument handling code, since
that is now implemented in gtkarg.c. similar to gtk_object_args_collect,
we now export a new function gtk_container_child_args_collect().
for consistency with the object arguments, a few functions got renamed:
gtk_container_child_arg_get -> gtk_container_child_get,
gtk_container_child_arg_set -> gtk_container_child_set,
gtk_container_child_arg_getv -> gtk_container_child_getv,
gtk_container_child_arg_setv -> gtk_container_child_setv,
gtk_container_add_with_argv -> gtk_container_addv.
note, gtk_container_add_with_args() remained, because its equivalent
would be gtk_container_add(,, ...) which would break all existing code.
(gtk_container_add_child_arg_type): similar to gtk_object_add_arg_type,
we expect the `arg_name' argument to be a const static string now.
(gtk_container_get_child_arg_type): function removed.
Thu Jul 9 07:03:04 1998 Tim Janik <timj@gtk.org>
* gtk/gtkargcollector.c: new file which holds gtk_arg_collect_value().
this is a static inline function that collects command line arguments
from a va_list. this file can just be included in all places that
need this functionality.
* gtk/gtkarg.h:
* gtk/gtkarg.c: new files which implement most of the argument
handling stuff from gtkobject.c. also collected a few more
gtk_arg_* utility functions from else places.
* gtk/gtkobject.h:
* gtk/gtkobject.c: moved most of the argument handling code into
gtkarg.c. we now export gtk_object_args_collect() as a non-public
method with a blind va_list pointer.
(gtk_object_add_arg_type): the `arg_name' argument is required to be a
const static string now.
(gtk_object_get_arg_type): function got removed.
* gtk/gtkwidget.c:
(gtk_widget_set):
(gtk_widget_new): adaptions for gtk_object_args_collect().
* gtk/gtktypeutils.c (gtk_type_init_builtin_types): changed the internal
fundamental type name so as to have a valid prefix, e.g. "bool"->
"gboolean", "string"->"GtkString" and somesuch, left "void" as is,
though that should probably be something like GtkNone since the
type itself is called GTK_TYPE_NONE.
even the internal type names need to avoid name clashes and must live
in their own namespace, several code portions rely on that.
we should relly have typedefs such as typedef gchar* GtkString; so the
fundamental type names can be used for code dumpers just like with all
the Gtk/Gdk types.
1998-07-09 23:00:34 +00:00
statusbar_contexts ( GtkStatusbar * statusbar )
1998-03-01 23:29:40 +00:00
{
gchar * string ;
string = " any context " ;
g_print ( " GtkStatusBar: context= \" %s \" , context_id=%d \n " ,
string ,
gtk_statusbar_get_context_id ( statusbar , string ) ) ;
string = " idle messages " ;
g_print ( " GtkStatusBar: context= \" %s \" , context_id=%d \n " ,
string ,
gtk_statusbar_get_context_id ( statusbar , string ) ) ;
string = " some text " ;
g_print ( " GtkStatusBar: context= \" %s \" , context_id=%d \n " ,
string ,
gtk_statusbar_get_context_id ( statusbar , string ) ) ;
string = " hit the mouse " ;
g_print ( " GtkStatusBar: context= \" %s \" , context_id=%d \n " ,
string ,
gtk_statusbar_get_context_id ( statusbar , string ) ) ;
string = " hit the mouse2 " ;
g_print ( " GtkStatusBar: context= \" %s \" , context_id=%d \n " ,
string ,
gtk_statusbar_get_context_id ( statusbar , string ) ) ;
}
1998-02-23 15:13:03 +00:00
static void
deleted most of the argument handling code, since that is now implemented
Fri Jul 10 00:02:04 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: deleted most of the argument handling code, since
that is now implemented in gtkarg.c. similar to gtk_object_args_collect,
we now export a new function gtk_container_child_args_collect().
for consistency with the object arguments, a few functions got renamed:
gtk_container_child_arg_get -> gtk_container_child_get,
gtk_container_child_arg_set -> gtk_container_child_set,
gtk_container_child_arg_getv -> gtk_container_child_getv,
gtk_container_child_arg_setv -> gtk_container_child_setv,
gtk_container_add_with_argv -> gtk_container_addv.
note, gtk_container_add_with_args() remained, because its equivalent
would be gtk_container_add(,, ...) which would break all existing code.
(gtk_container_add_child_arg_type): similar to gtk_object_add_arg_type,
we expect the `arg_name' argument to be a const static string now.
(gtk_container_get_child_arg_type): function removed.
Thu Jul 9 07:03:04 1998 Tim Janik <timj@gtk.org>
* gtk/gtkargcollector.c: new file which holds gtk_arg_collect_value().
this is a static inline function that collects command line arguments
from a va_list. this file can just be included in all places that
need this functionality.
* gtk/gtkarg.h:
* gtk/gtkarg.c: new files which implement most of the argument
handling stuff from gtkobject.c. also collected a few more
gtk_arg_* utility functions from else places.
* gtk/gtkobject.h:
* gtk/gtkobject.c: moved most of the argument handling code into
gtkarg.c. we now export gtk_object_args_collect() as a non-public
method with a blind va_list pointer.
(gtk_object_add_arg_type): the `arg_name' argument is required to be a
const static string now.
(gtk_object_get_arg_type): function got removed.
* gtk/gtkwidget.c:
(gtk_widget_set):
(gtk_widget_new): adaptions for gtk_object_args_collect().
* gtk/gtktypeutils.c (gtk_type_init_builtin_types): changed the internal
fundamental type name so as to have a valid prefix, e.g. "bool"->
"gboolean", "string"->"GtkString" and somesuch, left "void" as is,
though that should probably be something like GtkNone since the
type itself is called GTK_TYPE_NONE.
even the internal type names need to avoid name clashes and must live
in their own namespace, several code portions rely on that.
we should relly have typedefs such as typedef gchar* GtkString; so the
fundamental type names can be used for code dumpers just like with all
the Gtk/Gdk types.
1998-07-09 23:00:34 +00:00
statusbar_dump_stack ( GtkStatusbar * statusbar )
1998-02-23 15:13:03 +00:00
{
1998-03-02 23:16:39 +00:00
GSList * list ;
1998-02-23 15:13:03 +00:00
for ( list = statusbar - > messages ; list ; list = list - > next )
{
GtkStatusbarMsg * msg ;
msg = list - > data ;
1998-03-01 23:29:40 +00:00
g_print ( " context_id: %d, message_id: %d, status_text: \" %s \" \n " ,
msg - > context_id ,
msg - > message_id ,
msg - > text ) ;
1998-02-23 15:13:03 +00:00
}
}
static void
1998-05-03 22:41:32 +00:00
create_statusbar ( void )
1998-02-23 15:13:03 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * button ;
GtkWidget * separator ;
GtkWidget * statusbar ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " statusbar " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1998-02-23 15:13:03 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1998-02-23 15:13:03 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , TRUE , TRUE , 0 ) ;
statusbar = gtk_statusbar_new ( ) ;
gtk_box_pack_end ( GTK_BOX ( box1 ) , statusbar , TRUE , TRUE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( statusbar ) ,
" text_popped " ,
GTK_SIGNAL_FUNC ( statusbar_popped ) ,
NULL ) ;
button = gtk_widget_new ( gtk_button_get_type ( ) ,
deleted most of the argument handling code, since that is now implemented
Fri Jul 10 00:02:04 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: deleted most of the argument handling code, since
that is now implemented in gtkarg.c. similar to gtk_object_args_collect,
we now export a new function gtk_container_child_args_collect().
for consistency with the object arguments, a few functions got renamed:
gtk_container_child_arg_get -> gtk_container_child_get,
gtk_container_child_arg_set -> gtk_container_child_set,
gtk_container_child_arg_getv -> gtk_container_child_getv,
gtk_container_child_arg_setv -> gtk_container_child_setv,
gtk_container_add_with_argv -> gtk_container_addv.
note, gtk_container_add_with_args() remained, because its equivalent
would be gtk_container_add(,, ...) which would break all existing code.
(gtk_container_add_child_arg_type): similar to gtk_object_add_arg_type,
we expect the `arg_name' argument to be a const static string now.
(gtk_container_get_child_arg_type): function removed.
Thu Jul 9 07:03:04 1998 Tim Janik <timj@gtk.org>
* gtk/gtkargcollector.c: new file which holds gtk_arg_collect_value().
this is a static inline function that collects command line arguments
from a va_list. this file can just be included in all places that
need this functionality.
* gtk/gtkarg.h:
* gtk/gtkarg.c: new files which implement most of the argument
handling stuff from gtkobject.c. also collected a few more
gtk_arg_* utility functions from else places.
* gtk/gtkobject.h:
* gtk/gtkobject.c: moved most of the argument handling code into
gtkarg.c. we now export gtk_object_args_collect() as a non-public
method with a blind va_list pointer.
(gtk_object_add_arg_type): the `arg_name' argument is required to be a
const static string now.
(gtk_object_get_arg_type): function got removed.
* gtk/gtkwidget.c:
(gtk_widget_set):
(gtk_widget_new): adaptions for gtk_object_args_collect().
* gtk/gtktypeutils.c (gtk_type_init_builtin_types): changed the internal
fundamental type name so as to have a valid prefix, e.g. "bool"->
"gboolean", "string"->"GtkString" and somesuch, left "void" as is,
though that should probably be something like GtkNone since the
type itself is called GTK_TYPE_NONE.
even the internal type names need to avoid name clashes and must live
in their own namespace, several code portions rely on that.
we should relly have typedefs such as typedef gchar* GtkString; so the
fundamental type names can be used for code dumpers just like with all
the Gtk/Gdk types.
1998-07-09 23:00:34 +00:00
" label " , " push something " ,
" visible " , TRUE ,
" parent " , box2 ,
" signal::clicked " , statusbar_push , statusbar ,
1998-02-23 15:13:03 +00:00
NULL ) ;
button = gtk_widget_new ( gtk_button_get_type ( ) ,
deleted most of the argument handling code, since that is now implemented
Fri Jul 10 00:02:04 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: deleted most of the argument handling code, since
that is now implemented in gtkarg.c. similar to gtk_object_args_collect,
we now export a new function gtk_container_child_args_collect().
for consistency with the object arguments, a few functions got renamed:
gtk_container_child_arg_get -> gtk_container_child_get,
gtk_container_child_arg_set -> gtk_container_child_set,
gtk_container_child_arg_getv -> gtk_container_child_getv,
gtk_container_child_arg_setv -> gtk_container_child_setv,
gtk_container_add_with_argv -> gtk_container_addv.
note, gtk_container_add_with_args() remained, because its equivalent
would be gtk_container_add(,, ...) which would break all existing code.
(gtk_container_add_child_arg_type): similar to gtk_object_add_arg_type,
we expect the `arg_name' argument to be a const static string now.
(gtk_container_get_child_arg_type): function removed.
Thu Jul 9 07:03:04 1998 Tim Janik <timj@gtk.org>
* gtk/gtkargcollector.c: new file which holds gtk_arg_collect_value().
this is a static inline function that collects command line arguments
from a va_list. this file can just be included in all places that
need this functionality.
* gtk/gtkarg.h:
* gtk/gtkarg.c: new files which implement most of the argument
handling stuff from gtkobject.c. also collected a few more
gtk_arg_* utility functions from else places.
* gtk/gtkobject.h:
* gtk/gtkobject.c: moved most of the argument handling code into
gtkarg.c. we now export gtk_object_args_collect() as a non-public
method with a blind va_list pointer.
(gtk_object_add_arg_type): the `arg_name' argument is required to be a
const static string now.
(gtk_object_get_arg_type): function got removed.
* gtk/gtkwidget.c:
(gtk_widget_set):
(gtk_widget_new): adaptions for gtk_object_args_collect().
* gtk/gtktypeutils.c (gtk_type_init_builtin_types): changed the internal
fundamental type name so as to have a valid prefix, e.g. "bool"->
"gboolean", "string"->"GtkString" and somesuch, left "void" as is,
though that should probably be something like GtkNone since the
type itself is called GTK_TYPE_NONE.
even the internal type names need to avoid name clashes and must live
in their own namespace, several code portions rely on that.
we should relly have typedefs such as typedef gchar* GtkString; so the
fundamental type names can be used for code dumpers just like with all
the Gtk/Gdk types.
1998-07-09 23:00:34 +00:00
" label " , " pop " ,
" visible " , TRUE ,
" parent " , box2 ,
" signal_after::clicked " , statusbar_pop , statusbar ,
1998-02-23 15:13:03 +00:00
NULL ) ;
button = gtk_widget_new ( gtk_button_get_type ( ) ,
deleted most of the argument handling code, since that is now implemented
Fri Jul 10 00:02:04 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: deleted most of the argument handling code, since
that is now implemented in gtkarg.c. similar to gtk_object_args_collect,
we now export a new function gtk_container_child_args_collect().
for consistency with the object arguments, a few functions got renamed:
gtk_container_child_arg_get -> gtk_container_child_get,
gtk_container_child_arg_set -> gtk_container_child_set,
gtk_container_child_arg_getv -> gtk_container_child_getv,
gtk_container_child_arg_setv -> gtk_container_child_setv,
gtk_container_add_with_argv -> gtk_container_addv.
note, gtk_container_add_with_args() remained, because its equivalent
would be gtk_container_add(,, ...) which would break all existing code.
(gtk_container_add_child_arg_type): similar to gtk_object_add_arg_type,
we expect the `arg_name' argument to be a const static string now.
(gtk_container_get_child_arg_type): function removed.
Thu Jul 9 07:03:04 1998 Tim Janik <timj@gtk.org>
* gtk/gtkargcollector.c: new file which holds gtk_arg_collect_value().
this is a static inline function that collects command line arguments
from a va_list. this file can just be included in all places that
need this functionality.
* gtk/gtkarg.h:
* gtk/gtkarg.c: new files which implement most of the argument
handling stuff from gtkobject.c. also collected a few more
gtk_arg_* utility functions from else places.
* gtk/gtkobject.h:
* gtk/gtkobject.c: moved most of the argument handling code into
gtkarg.c. we now export gtk_object_args_collect() as a non-public
method with a blind va_list pointer.
(gtk_object_add_arg_type): the `arg_name' argument is required to be a
const static string now.
(gtk_object_get_arg_type): function got removed.
* gtk/gtkwidget.c:
(gtk_widget_set):
(gtk_widget_new): adaptions for gtk_object_args_collect().
* gtk/gtktypeutils.c (gtk_type_init_builtin_types): changed the internal
fundamental type name so as to have a valid prefix, e.g. "bool"->
"gboolean", "string"->"GtkString" and somesuch, left "void" as is,
though that should probably be something like GtkNone since the
type itself is called GTK_TYPE_NONE.
even the internal type names need to avoid name clashes and must live
in their own namespace, several code portions rely on that.
we should relly have typedefs such as typedef gchar* GtkString; so the
fundamental type names can be used for code dumpers just like with all
the Gtk/Gdk types.
1998-07-09 23:00:34 +00:00
" label " , " steal #4 " ,
" visible " , TRUE ,
" parent " , box2 ,
" signal_after::clicked " , statusbar_steal , statusbar ,
1998-02-23 15:13:03 +00:00
NULL ) ;
button = gtk_widget_new ( gtk_button_get_type ( ) ,
deleted most of the argument handling code, since that is now implemented
Fri Jul 10 00:02:04 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: deleted most of the argument handling code, since
that is now implemented in gtkarg.c. similar to gtk_object_args_collect,
we now export a new function gtk_container_child_args_collect().
for consistency with the object arguments, a few functions got renamed:
gtk_container_child_arg_get -> gtk_container_child_get,
gtk_container_child_arg_set -> gtk_container_child_set,
gtk_container_child_arg_getv -> gtk_container_child_getv,
gtk_container_child_arg_setv -> gtk_container_child_setv,
gtk_container_add_with_argv -> gtk_container_addv.
note, gtk_container_add_with_args() remained, because its equivalent
would be gtk_container_add(,, ...) which would break all existing code.
(gtk_container_add_child_arg_type): similar to gtk_object_add_arg_type,
we expect the `arg_name' argument to be a const static string now.
(gtk_container_get_child_arg_type): function removed.
Thu Jul 9 07:03:04 1998 Tim Janik <timj@gtk.org>
* gtk/gtkargcollector.c: new file which holds gtk_arg_collect_value().
this is a static inline function that collects command line arguments
from a va_list. this file can just be included in all places that
need this functionality.
* gtk/gtkarg.h:
* gtk/gtkarg.c: new files which implement most of the argument
handling stuff from gtkobject.c. also collected a few more
gtk_arg_* utility functions from else places.
* gtk/gtkobject.h:
* gtk/gtkobject.c: moved most of the argument handling code into
gtkarg.c. we now export gtk_object_args_collect() as a non-public
method with a blind va_list pointer.
(gtk_object_add_arg_type): the `arg_name' argument is required to be a
const static string now.
(gtk_object_get_arg_type): function got removed.
* gtk/gtkwidget.c:
(gtk_widget_set):
(gtk_widget_new): adaptions for gtk_object_args_collect().
* gtk/gtktypeutils.c (gtk_type_init_builtin_types): changed the internal
fundamental type name so as to have a valid prefix, e.g. "bool"->
"gboolean", "string"->"GtkString" and somesuch, left "void" as is,
though that should probably be something like GtkNone since the
type itself is called GTK_TYPE_NONE.
even the internal type names need to avoid name clashes and must live
in their own namespace, several code portions rely on that.
we should relly have typedefs such as typedef gchar* GtkString; so the
fundamental type names can be used for code dumpers just like with all
the Gtk/Gdk types.
1998-07-09 23:00:34 +00:00
" label " , " dump stack " ,
" visible " , TRUE ,
" parent " , box2 ,
" object_signal::clicked " , statusbar_dump_stack , statusbar ,
1998-02-23 15:13:03 +00:00
NULL ) ;
1998-03-01 23:29:40 +00:00
button = gtk_widget_new ( gtk_button_get_type ( ) ,
deleted most of the argument handling code, since that is now implemented
Fri Jul 10 00:02:04 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.h:
* gtk/gtkcontainer.c: deleted most of the argument handling code, since
that is now implemented in gtkarg.c. similar to gtk_object_args_collect,
we now export a new function gtk_container_child_args_collect().
for consistency with the object arguments, a few functions got renamed:
gtk_container_child_arg_get -> gtk_container_child_get,
gtk_container_child_arg_set -> gtk_container_child_set,
gtk_container_child_arg_getv -> gtk_container_child_getv,
gtk_container_child_arg_setv -> gtk_container_child_setv,
gtk_container_add_with_argv -> gtk_container_addv.
note, gtk_container_add_with_args() remained, because its equivalent
would be gtk_container_add(,, ...) which would break all existing code.
(gtk_container_add_child_arg_type): similar to gtk_object_add_arg_type,
we expect the `arg_name' argument to be a const static string now.
(gtk_container_get_child_arg_type): function removed.
Thu Jul 9 07:03:04 1998 Tim Janik <timj@gtk.org>
* gtk/gtkargcollector.c: new file which holds gtk_arg_collect_value().
this is a static inline function that collects command line arguments
from a va_list. this file can just be included in all places that
need this functionality.
* gtk/gtkarg.h:
* gtk/gtkarg.c: new files which implement most of the argument
handling stuff from gtkobject.c. also collected a few more
gtk_arg_* utility functions from else places.
* gtk/gtkobject.h:
* gtk/gtkobject.c: moved most of the argument handling code into
gtkarg.c. we now export gtk_object_args_collect() as a non-public
method with a blind va_list pointer.
(gtk_object_add_arg_type): the `arg_name' argument is required to be a
const static string now.
(gtk_object_get_arg_type): function got removed.
* gtk/gtkwidget.c:
(gtk_widget_set):
(gtk_widget_new): adaptions for gtk_object_args_collect().
* gtk/gtktypeutils.c (gtk_type_init_builtin_types): changed the internal
fundamental type name so as to have a valid prefix, e.g. "bool"->
"gboolean", "string"->"GtkString" and somesuch, left "void" as is,
though that should probably be something like GtkNone since the
type itself is called GTK_TYPE_NONE.
even the internal type names need to avoid name clashes and must live
in their own namespace, several code portions rely on that.
we should relly have typedefs such as typedef gchar* GtkString; so the
fundamental type names can be used for code dumpers just like with all
the Gtk/Gdk types.
1998-07-09 23:00:34 +00:00
" label " , " test contexts " ,
" visible " , TRUE ,
" parent " , box2 ,
" object_signal_after::clicked " , statusbar_contexts , statusbar ,
1998-03-01 23:29:40 +00:00
NULL ) ;
1998-02-23 15:13:03 +00:00
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1998-02-23 15:13:03 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1998-02-23 15:13:03 +00:00
else
gtk_widget_destroy ( window ) ;
}
1998-07-26 14:45:40 +00:00
/*
* GtkTree
*/
1998-02-28 19:09:20 +00:00
1998-03-02 00:32:52 +00:00
static void
cb_tree_destroy_event ( GtkWidget * w )
{
sTreeButtons * tree_buttons ;
/* free buttons structure associate at this tree */
1998-10-06 12:36:17 +00:00
tree_buttons = gtk_object_get_user_data ( GTK_OBJECT ( w ) ) ;
g_free ( tree_buttons ) ;
1998-03-02 00:32:52 +00:00
}
1998-07-26 14:45:40 +00:00
1998-03-02 00:32:52 +00:00
static void
cb_add_new_item ( GtkWidget * w , GtkTree * tree )
{
sTreeButtons * tree_buttons ;
GList * selected_list ;
GtkWidget * selected_item ;
GtkWidget * subtree ;
GtkWidget * item_new ;
char buffer [ 255 ] ;
tree_buttons = gtk_object_get_user_data ( GTK_OBJECT ( tree ) ) ;
selected_list = GTK_TREE_SELECTION ( tree ) ;
if ( selected_list = = NULL )
{
/* there is no item in tree */
subtree = GTK_WIDGET ( tree ) ;
}
else
{
/* list can have only one element */
selected_item = GTK_WIDGET ( selected_list - > data ) ;
subtree = GTK_TREE_ITEM_SUBTREE ( selected_item ) ;
if ( subtree = = NULL )
{
/* current selected item have not subtree ... create it */
subtree = gtk_tree_new ( ) ;
gtk_tree_item_set_subtree ( GTK_TREE_ITEM ( selected_item ) ,
subtree ) ;
}
}
/* at this point, we know which subtree will be used to add new item */
/* create a new item */
sprintf ( buffer , " item add %d " , tree_buttons - > nb_item_add ) ;
item_new = gtk_tree_item_new_with_label ( buffer ) ;
gtk_tree_append ( GTK_TREE ( subtree ) , item_new ) ;
gtk_widget_show ( item_new ) ;
tree_buttons - > nb_item_add + + ;
}
static void
cb_remove_item ( GtkWidget * w , GtkTree * tree )
{
GList * selected_list ;
GList * clear_list ;
selected_list = GTK_TREE_SELECTION ( tree ) ;
clear_list = NULL ;
while ( selected_list )
{
clear_list = g_list_prepend ( clear_list , selected_list - > data ) ;
selected_list = selected_list - > next ;
}
clear_list = g_list_reverse ( clear_list ) ;
gtk_tree_remove_items ( tree , clear_list ) ;
g_list_free ( clear_list ) ;
}
1998-05-01 04:23:59 +00:00
static void
cb_remove_subtree ( GtkWidget * w , GtkTree * tree )
{
GList * selected_list ;
GtkTreeItem * item ;
selected_list = GTK_TREE_SELECTION ( tree ) ;
if ( selected_list )
{
item = GTK_TREE_ITEM ( selected_list - > data ) ;
if ( item - > subtree )
gtk_tree_item_remove_subtree ( item ) ;
}
}
1998-03-02 00:32:52 +00:00
static void
cb_tree_changed ( GtkTree * tree )
{
sTreeButtons * tree_buttons ;
GList * selected_list ;
guint nb_selected ;
tree_buttons = gtk_object_get_user_data ( GTK_OBJECT ( tree ) ) ;
selected_list = GTK_TREE_SELECTION ( tree ) ;
nb_selected = g_list_length ( selected_list ) ;
if ( nb_selected = = 0 )
{
if ( tree - > children = = NULL )
gtk_widget_set_sensitive ( tree_buttons - > add_button , TRUE ) ;
else
gtk_widget_set_sensitive ( tree_buttons - > add_button , FALSE ) ;
gtk_widget_set_sensitive ( tree_buttons - > remove_button , FALSE ) ;
1998-05-01 04:23:59 +00:00
gtk_widget_set_sensitive ( tree_buttons - > subtree_button , FALSE ) ;
1998-03-02 00:32:52 +00:00
}
else
{
gtk_widget_set_sensitive ( tree_buttons - > remove_button , TRUE ) ;
gtk_widget_set_sensitive ( tree_buttons - > add_button , ( nb_selected = = 1 ) ) ;
1998-05-01 04:23:59 +00:00
gtk_widget_set_sensitive ( tree_buttons - > subtree_button , ( nb_selected = = 1 ) ) ;
1998-03-02 00:32:52 +00:00
}
}
static void
create_subtree ( GtkWidget * item , guint level , guint nb_item_max , guint recursion_level_max )
{
GtkWidget * item_subtree ;
GtkWidget * item_new ;
guint nb_item ;
char buffer [ 255 ] ;
int no_root_item ;
if ( level = = recursion_level_max ) return ;
if ( level = = - 1 )
{
/* query with no root item */
level = 0 ;
item_subtree = item ;
no_root_item = 1 ;
}
else
{
/* query with no root item */
/* create subtree and associate it with current item */
item_subtree = gtk_tree_new ( ) ;
no_root_item = 0 ;
}
for ( nb_item = 0 ; nb_item < nb_item_max ; nb_item + + )
{
sprintf ( buffer , " item %d-%d " , level , nb_item ) ;
item_new = gtk_tree_item_new_with_label ( buffer ) ;
gtk_tree_append ( GTK_TREE ( item_subtree ) , item_new ) ;
create_subtree ( item_new , level + 1 , nb_item_max , recursion_level_max ) ;
gtk_widget_show ( item_new ) ;
}
if ( ! no_root_item )
gtk_tree_item_set_subtree ( GTK_TREE_ITEM ( item ) , item_subtree ) ;
}
static void
create_tree_sample ( guint selection_mode ,
guint draw_line , guint view_line , guint no_root_item ,
guint nb_item_max , guint recursion_level_max )
{
GtkWidget * window ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * separator ;
GtkWidget * button ;
GtkWidget * scrolled_win ;
GtkWidget * root_tree ;
GtkWidget * root_item ;
sTreeButtons * tree_buttons ;
/* create tree buttons struct */
1998-10-06 12:36:17 +00:00
if ( ( tree_buttons = g_malloc ( sizeof ( sTreeButtons ) ) ) = = NULL )
1998-03-02 00:32:52 +00:00
{
g_error ( " can't allocate memory for tree structure ! \n " ) ;
return ;
}
tree_buttons - > nb_item_add = 0 ;
/* create top level window */
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " Tree Sample " ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
( GtkSignalFunc ) cb_tree_destroy_event , NULL ) ;
gtk_object_set_user_data ( GTK_OBJECT ( window ) , tree_buttons ) ;
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
gtk_widget_show ( box1 ) ;
/* create tree box */
box2 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , TRUE , TRUE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 5 ) ;
1998-03-02 00:32:52 +00:00
gtk_widget_show ( box2 ) ;
/* create scrolled window */
scrolled_win = gtk_scrolled_window_new ( NULL , NULL ) ;
gtk_scrolled_window_set_policy ( GTK_SCROLLED_WINDOW ( scrolled_win ) ,
GTK_POLICY_AUTOMATIC , GTK_POLICY_AUTOMATIC ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , scrolled_win , TRUE , TRUE , 0 ) ;
gtk_widget_set_usize ( scrolled_win , 200 , 200 ) ;
gtk_widget_show ( scrolled_win ) ;
/* create root tree widget */
root_tree = gtk_tree_new ( ) ;
gtk_signal_connect ( GTK_OBJECT ( root_tree ) , " selection_changed " ,
( GtkSignalFunc ) cb_tree_changed ,
( gpointer ) NULL ) ;
gtk_object_set_user_data ( GTK_OBJECT ( root_tree ) , tree_buttons ) ;
added args ::show_text, ::text_xalign, ::text_yalign, ::activity_mode.
Sun Nov 22 16:21:28 1998 Tim Janik <timj@gtk.org>
* gtk/gtkprogress.c: added args ::show_text, ::text_xalign,
::text_yalign, ::activity_mode.
* gtk/gtkprogressbar.c: added construct arg ::adjustment. added args
::bar_style, ::orientation, ::discrete_blocks, ::activity_step,
::activity_blocks.
(gtk_progress_bar_new):
(gtk_progress_bar_new_with_adjustment): use gtk_widget_new().
(gtk_progress_bar_construct): deprecated.
* gtk/gtkvscrollbar.c:
(gtk_vscrollbar_draw_step_back):
(gtk_vscrollbar_draw_step_forw): use "vscrollbar" as detail for
gtk_paint_arrow, to be consistent with hscrollbar.
* gtk/gtktext.c
added construct args ::hadjustment, ::vadjustment.
added args ::line_wrap, ::word_wrap.
(gtk_text_class_init): added scroll_adjustments signal.
(gtk_text_new): use gtk_widget_new.
(gtk_text_disconnect): remove adjustement with gtk_text_set_adjustments,
so we don't screw the reference counts and don't leave signals connected.
(gtk_text_destroy): disconnect adjustments signals.
(gtk_text_finalize): unref adjustments.
* gtk/gtkctree.c: added construct args ::n_columns and ::tree_column.
added args ::indent, ::spacing, ::show_stub, ::reorderable,
::use_drag_icons, ::line_style and ::expander_style.
(gtk_ctree_set_show_stub): renamed from gtk_ctree_show_stub, which is
deprecated now.
* gtk/gtkclist.h: remove GTK_CLIST_CONSTRUCT flag.
* gtk/gtkclist.c:
removed ::vadjustment and ::hadjustment args, introduced
::scroll_adjustments signal.
added ::shadow_type, ::selection_mode and ::row_height args.
added n_columns construct arg.
(gtk_clist_construct): call gtk_object_constructed().
(gtk_clist_set_row_height): if height is passed as 0,
revert to automatic height calculation.
(gtk_clist_destroy): before unrefing the adjustments, disconnect our
signal handlers.
Fri Nov 21 22:34:58 1998 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_new): call gtk_object_default_construct
like gtk_object_new.
(gtk_widget_destroy): assert that we only destroy constructed widgets.
* gtk/gtkobject.h (enum GtkArgFlags): new flag GTK_ARG_CONSTRUCT_ONLY
to identify args that may only be used for construction.
GTK_ARG_CONSTRUCT maybe used as normal arguments besides construction
time.
* gtk/gtkobject.c (gtk_object_new): invoke gtk_object_default_construct
at the end if the object is not fully constructed.
(gtk_object_newv): likewise.
(gtk_object_destroy): assert that we only destroy constructed objects.
(gtk_object_init): setup GTK_CONSTRUCTED from the
objects real klass.
(gtk_object_default_construct): new function to complete default
construction of an object by applying missing construtor args with
default values of 0, 0.0 or NULL.
(gtk_object_constructed): new function to mark an object as being
constructed (used from within constructors).
* gtk/gtkarg.c (gtk_arg_type_new_static): return the args info pointer
so it is immediatedly available for the caller.
* gtk/gtktypeutils.c (gtk_type_new): pass an object's real class to
the object initilizer (GtkObjectInitFunc takes a second arg now, the
real klass), and asure that object initializers may temporarily alter
the class pointer.
Fri Nov 20 08:00:30 1998 Tim Janik <timj@gtk.org>
* gtk/testgtk.c: change all occourances of gtk_container_add (
scrolled_window, widget) to gtk_scrolled_window_add_with_viewport (...)
for widget!=(clist, ctree, text, viewport).
* gtk/gtkcombo.c:
(gtk_combo_init): use gtk_scrolled_window_add_with_viewport()
to add children to the scrolled window.
* gtk/gtkscrolledwindow.h:
* gtk/gtkscrolledwindow.c:
changed scrolled_window->viewport to scrolled_window->child, and use
gtk_widget_scroll_adjustements() to set the scroll adjustments for the
widget, we do not create an additional viewport anymore.
added ::hadjustment and ::vadjustment constructor args.
(gtk_scrolled_window_new): use gtk_widget_new() to create the widget.
(gtk_scrolled_window_set_hadjustment):
(gtk_scrolled_window_set_vadjustment): new functions that superceed
gtk_scrolled_window_construct.
(gtk_scrolled_window_construct): deprecated this function.
* gtk/gtkhscrollbar.c:
* gtk/gtkvscrollbar.c:
* gtk/gtkhscale.c:
* gtk/gtkvscale.c:
support a constructor arg "::adjustment", and use gtk_widget_new() for
the widget creation.
* gtk/gtkrange.c: added ::update_policy arg.
(gtk_range_set_adjustment): if adjustment is passed in as NULL, create
a default adjustment so this function can be used for derived widgets
that depend on the adjustment's existance.
(gtk_range_destroy): disconnect the adjustment signal, so we don't
get called after we got destroyed, we don't destroy the adjustment
in here, because it might have been provided from another widget.
* gtk/gtkviewport.c: introduced ::scroll_adjustments signal.
(gtk_viewport_destroy): same as gtk_range_destroy.
* gtk/gtkprogress.c (gtk_progress_destroy): same as gtk_range_destroy.
* gtk/gtkwidget.h:
* gtk/gtkwidget.c: changed gtk_widget_activate() to return a
gboolean, indicating whether this widget supports activation.
added gtk_widget_scroll_adjustements() to set the scrolling
adjustments of a widget.
Wed Nov 19 01:22:42 1998 Tim Janik <timj@gtk.org>
* gtk/gtkoptionmenu.c:
(gtk_option_menu_remove_contents):
(gtk_option_menu_update_contents): removed
gtk_container_[un]block_resize() pairs.
* gtk/gtknotebook.h:
* gtk/gtknotebook.c: removed the tab_border field, since it shouldn't
be used outside of gtknotebook.c anyways. made ARG_TAB_BORDER a
wrtie-only argument.
* *.c: made deprecated functions issue a message:
gtk_clist_set_border, gtk_container_block_resize,
gtk_container_unblock_resize, gtk_container_need_resize,
gtk_object_class_add_user_signal, gtk_spin_button_construct,
gtk_scrolled_window_construct.
removed non-functional functions:
gtk_container_disable_resize, gtk_container_enable_resize,
gtk_clist_set_policy.
Wed Nov 18 22:54:36 1998 Tim Janik <timj@gtk.org>
* gtk/gtkbox.c (gtk_box_init):
* gtk/gtkdrawingarea.c (gtk_drawing_area_init):
* gtk/gtkeventbox.c (gtk_event_box_init):
* gtk/gtkfixed.c (gtk_fixed_init):
* gtk/gtkframe.c (gtk_frame_init):
* gtk/gtkhandlebox.c (gtk_handle_box_init):
* gtk/gtkpacker.c (gtk_packer_init):
* gtk/gtkmisc.c (gtk_misc_init):
* gtk/gtkpreview.c (gtk_preview_init):
* gtk/gtkprogress.c (gtk_progress_init):
* gtk/gtkprogressbar.c (gtk_progress_bar_init):
* gtk/gtkseparator.c (gtk_separator_init):
* gtk/gtktable.c (gtk_table_init):
* gtk/gtkviewport.c (gtk_viewport_init):
* gtk/gtkalignment.c (gtk_alignment_init):
removed setting of the GTK_BASIC flag.
* gtk/gtkwidget.h:
* gtk/gtkwidget.c:
removed GTK_BASIC, GTK_WIDGET_BASIC and gtk_widget_basic.
* miscellaneous GtkType and macro fixups.
1998-11-23 01:54:45 +00:00
gtk_scrolled_window_add_with_viewport ( GTK_SCROLLED_WINDOW ( scrolled_win ) , root_tree ) ;
1998-03-02 00:32:52 +00:00
gtk_tree_set_selection_mode ( GTK_TREE ( root_tree ) , selection_mode ) ;
gtk_tree_set_view_lines ( GTK_TREE ( root_tree ) , draw_line ) ;
gtk_tree_set_view_mode ( GTK_TREE ( root_tree ) , ! view_line ) ;
gtk_widget_show ( root_tree ) ;
if ( no_root_item )
{
/* set root tree to subtree function with root item variable */
root_item = GTK_WIDGET ( root_tree ) ;
}
else
{
/* create root tree item widget */
root_item = gtk_tree_item_new_with_label ( " root item " ) ;
gtk_tree_append ( GTK_TREE ( root_tree ) , root_item ) ;
gtk_widget_show ( root_item ) ;
}
create_subtree ( root_item , - no_root_item , nb_item_max , recursion_level_max ) ;
box2 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 5 ) ;
1998-03-02 00:32:52 +00:00
gtk_widget_show ( box2 ) ;
button = gtk_button_new_with_label ( " Add Item " ) ;
gtk_widget_set_sensitive ( button , FALSE ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
( GtkSignalFunc ) cb_add_new_item ,
( gpointer ) root_tree ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
tree_buttons - > add_button = button ;
button = gtk_button_new_with_label ( " Remove Item(s) " ) ;
gtk_widget_set_sensitive ( button , FALSE ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
( GtkSignalFunc ) cb_remove_item ,
( gpointer ) root_tree ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
tree_buttons - > remove_button = button ;
1998-05-01 04:23:59 +00:00
button = gtk_button_new_with_label ( " Remove Subtree " ) ;
gtk_widget_set_sensitive ( button , FALSE ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
( GtkSignalFunc ) cb_remove_subtree ,
( gpointer ) root_tree ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
tree_buttons - > subtree_button = button ;
1998-03-02 00:32:52 +00:00
/* create separator */
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , FALSE , 0 ) ;
gtk_widget_show ( separator ) ;
/* create button box */
box2 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 5 ) ;
1998-03-02 00:32:52 +00:00
gtk_widget_show ( box2 ) ;
button = gtk_button_new_with_label ( " Close " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
( GtkSignalFunc ) gtk_widget_destroy ,
GTK_OBJECT ( window ) ) ;
gtk_widget_show ( button ) ;
gtk_widget_show ( window ) ;
}
static void
cb_create_tree ( GtkWidget * w )
{
1998-03-11 04:05:15 +00:00
guint selection_mode = GTK_SELECTION_SINGLE ;
1998-03-02 00:32:52 +00:00
guint view_line ;
guint draw_line ;
guint no_root_item ;
guint nb_item ;
guint recursion_level ;
/* get selection mode choice */
if ( GTK_TOGGLE_BUTTON ( sTreeSampleSelection . single_button ) - > active )
selection_mode = GTK_SELECTION_SINGLE ;
else
if ( GTK_TOGGLE_BUTTON ( sTreeSampleSelection . browse_button ) - > active )
selection_mode = GTK_SELECTION_BROWSE ;
else
1998-03-11 22:49:40 +00:00
selection_mode = GTK_SELECTION_MULTIPLE ;
1998-03-02 00:32:52 +00:00
/* get options choice */
draw_line = GTK_TOGGLE_BUTTON ( sTreeSampleSelection . draw_line_button ) - > active ;
view_line = GTK_TOGGLE_BUTTON ( sTreeSampleSelection . view_line_button ) - > active ;
no_root_item = GTK_TOGGLE_BUTTON ( sTreeSampleSelection . no_root_item_button ) - > active ;
/* get levels */
nb_item = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON ( sTreeSampleSelection . nb_item_spinner ) ) ;
recursion_level = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON ( sTreeSampleSelection . recursion_spinner ) ) ;
1998-03-18 21:11:04 +00:00
if ( pow ( nb_item , recursion_level ) > 10000 )
{
g_print ( " %g total items? That will take a very long time. Try less \n " ,
pow ( nb_item , recursion_level ) ) ;
return ;
}
1998-03-02 00:32:52 +00:00
create_tree_sample ( selection_mode , draw_line , view_line , no_root_item , nb_item , recursion_level ) ;
}
void
create_tree_mode_window ( void )
{
static GtkWidget * window ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * box3 ;
GtkWidget * box4 ;
GtkWidget * box5 ;
GtkWidget * button ;
GtkWidget * frame ;
GtkWidget * separator ;
GtkWidget * label ;
GtkWidget * spinner ;
GtkAdjustment * adj ;
if ( ! window )
{
/* create toplevel window */
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
1998-07-26 14:45:40 +00:00
gtk_window_set_title ( GTK_WINDOW ( window ) , " Set Tree Parameters " ) ;
1998-03-02 00:32:52 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& window ) ;
1998-03-02 00:32:52 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
1998-07-26 14:45:40 +00:00
/* create upper box - selection box */
1998-03-02 00:32:52 +00:00
box2 = gtk_vbox_new ( FALSE , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , TRUE , TRUE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 5 ) ;
1998-03-02 00:32:52 +00:00
box3 = gtk_hbox_new ( FALSE , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , box3 , TRUE , TRUE , 0 ) ;
/* create selection mode frame */
frame = gtk_frame_new ( " Selection Mode " ) ;
gtk_box_pack_start ( GTK_BOX ( box3 ) , frame , TRUE , TRUE , 0 ) ;
box4 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , box4 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box4 ) , 5 ) ;
1998-03-02 00:32:52 +00:00
/* create radio button */
button = gtk_radio_button_new_with_label ( NULL , " SINGLE " ) ;
gtk_box_pack_start ( GTK_BOX ( box4 ) , button , TRUE , TRUE , 0 ) ;
sTreeSampleSelection . single_button = button ;
button = gtk_radio_button_new_with_label ( gtk_radio_button_group ( GTK_RADIO_BUTTON ( button ) ) ,
" BROWSE " ) ;
gtk_box_pack_start ( GTK_BOX ( box4 ) , button , TRUE , TRUE , 0 ) ;
sTreeSampleSelection . browse_button = button ;
button = gtk_radio_button_new_with_label ( gtk_radio_button_group ( GTK_RADIO_BUTTON ( button ) ) ,
" MULTIPLE " ) ;
gtk_box_pack_start ( GTK_BOX ( box4 ) , button , TRUE , TRUE , 0 ) ;
sTreeSampleSelection . multiple_button = button ;
sTreeSampleSelection . selection_mode_group = gtk_radio_button_group ( GTK_RADIO_BUTTON ( button ) ) ;
/* create option mode frame */
frame = gtk_frame_new ( " Options " ) ;
gtk_box_pack_start ( GTK_BOX ( box3 ) , frame , TRUE , TRUE , 0 ) ;
box4 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , box4 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box4 ) , 5 ) ;
1998-03-02 00:32:52 +00:00
/* create check button */
button = gtk_check_button_new_with_label ( " Draw line " ) ;
gtk_box_pack_start ( GTK_BOX ( box4 ) , button , TRUE , TRUE , 0 ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( button ) , TRUE ) ;
1998-03-02 00:32:52 +00:00
sTreeSampleSelection . draw_line_button = button ;
button = gtk_check_button_new_with_label ( " View Line mode " ) ;
gtk_box_pack_start ( GTK_BOX ( box4 ) , button , TRUE , TRUE , 0 ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( button ) , TRUE ) ;
1998-03-02 00:32:52 +00:00
sTreeSampleSelection . view_line_button = button ;
button = gtk_check_button_new_with_label ( " Without Root item " ) ;
gtk_box_pack_start ( GTK_BOX ( box4 ) , button , TRUE , TRUE , 0 ) ;
sTreeSampleSelection . no_root_item_button = button ;
/* create recursion parameter */
frame = gtk_frame_new ( " Size Parameters " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , frame , TRUE , TRUE , 0 ) ;
box4 = gtk_hbox_new ( FALSE , 5 ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , box4 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box4 ) , 5 ) ;
1998-03-02 00:32:52 +00:00
/* create number of item spin button */
box5 = gtk_hbox_new ( FALSE , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( box4 ) , box5 , FALSE , FALSE , 0 ) ;
1998-07-26 14:45:40 +00:00
label = gtk_label_new ( " Number of items : " ) ;
1998-03-02 00:32:52 +00:00
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0 , 0.5 ) ;
gtk_box_pack_start ( GTK_BOX ( box5 ) , label , FALSE , TRUE , 0 ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( ( gfloat ) DEFAULT_NUMBER_OF_ITEM , 1.0 , 255.0 , 1.0 ,
5.0 , 0.0 ) ;
spinner = gtk_spin_button_new ( adj , 0 , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( box5 ) , spinner , FALSE , TRUE , 0 ) ;
sTreeSampleSelection . nb_item_spinner = spinner ;
/* create recursion level spin button */
box5 = gtk_hbox_new ( FALSE , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( box4 ) , box5 , FALSE , FALSE , 0 ) ;
1998-07-26 14:45:40 +00:00
label = gtk_label_new ( " Depth : " ) ;
1998-03-02 00:32:52 +00:00
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0 , 0.5 ) ;
gtk_box_pack_start ( GTK_BOX ( box5 ) , label , FALSE , TRUE , 0 ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( ( gfloat ) DEFAULT_RECURSION_LEVEL , 0.0 , 255.0 , 1.0 ,
5.0 , 0.0 ) ;
spinner = gtk_spin_button_new ( adj , 0 , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( box5 ) , spinner , FALSE , TRUE , 0 ) ;
sTreeSampleSelection . recursion_spinner = spinner ;
/* create horizontal separator */
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , FALSE , 0 ) ;
/* create bottom button box */
1998-07-26 14:45:40 +00:00
box2 = gtk_hbox_new ( TRUE , 10 ) ;
1998-03-02 00:32:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 5 ) ;
1998-03-02 00:32:52 +00:00
1998-07-26 14:45:40 +00:00
button = gtk_button_new_with_label ( " Create Tree " ) ;
1998-03-02 00:32:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
( GtkSignalFunc ) cb_create_tree , NULL ) ;
button = gtk_button_new_with_label ( " Close " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1998-03-02 00:32:52 +00:00
else
gtk_widget_destroy ( window ) ;
}
1998-07-26 14:45:40 +00:00
/*
* GtkHandleBox
*/
static void
handle_box_child_signal ( GtkHandleBox * hb ,
GtkWidget * child ,
const gchar * action )
{
printf ( " %s: child <%s> %sed \n " ,
gtk_type_name ( GTK_OBJECT_TYPE ( hb ) ) ,
gtk_type_name ( GTK_OBJECT_TYPE ( child ) ) ,
action ) ;
}
1998-03-02 00:32:52 +00:00
1998-02-19 05:13:46 +00:00
static void
1998-05-03 22:41:32 +00:00
create_handle_box ( void )
1997-12-19 19:17:45 +00:00
{
static GtkWidget * window = NULL ;
1998-03-12 09:14:03 +00:00
GtkWidget * handle_box ;
1998-03-21 22:11:26 +00:00
GtkWidget * handle_box2 ;
1998-03-24 14:04:07 +00:00
GtkWidget * vbox ;
1998-01-16 23:43:10 +00:00
GtkWidget * hbox ;
GtkWidget * toolbar ;
1998-03-12 09:14:03 +00:00
GtkWidget * label ;
1998-03-24 14:04:07 +00:00
GtkWidget * separator ;
1997-12-19 19:17:45 +00:00
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) ,
" Handle Box Test " ) ;
1998-03-24 14:04:07 +00:00
gtk_window_set_policy ( GTK_WINDOW ( window ) ,
TRUE ,
TRUE ,
FALSE ) ;
1997-12-19 19:17:45 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& window ) ;
1997-12-19 19:17:45 +00:00
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 20 ) ;
1998-03-12 09:14:03 +00:00
1998-03-24 14:04:07 +00:00
vbox = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , vbox ) ;
gtk_widget_show ( vbox ) ;
label = gtk_label_new ( " Above " ) ;
gtk_container_add ( GTK_CONTAINER ( vbox ) , label ) ;
gtk_widget_show ( label ) ;
separator = gtk_hseparator_new ( ) ;
gtk_container_add ( GTK_CONTAINER ( vbox ) , separator ) ;
gtk_widget_show ( separator ) ;
1998-03-12 09:14:03 +00:00
hbox = gtk_hbox_new ( FALSE , 10 ) ;
1998-03-24 14:04:07 +00:00
gtk_container_add ( GTK_CONTAINER ( vbox ) , hbox ) ;
1998-03-12 09:14:03 +00:00
gtk_widget_show ( hbox ) ;
1998-03-24 14:04:07 +00:00
separator = gtk_hseparator_new ( ) ;
gtk_container_add ( GTK_CONTAINER ( vbox ) , separator ) ;
gtk_widget_show ( separator ) ;
label = gtk_label_new ( " Below " ) ;
gtk_container_add ( GTK_CONTAINER ( vbox ) , label ) ;
gtk_widget_show ( label ) ;
1998-03-12 09:14:03 +00:00
handle_box = gtk_handle_box_new ( ) ;
1999-02-10 02:35:09 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , handle_box , FALSE , FALSE , 0 ) ;
1998-03-12 09:14:03 +00:00
gtk_signal_connect ( GTK_OBJECT ( handle_box ) ,
1998-02-28 19:09:20 +00:00
" child_attached " ,
GTK_SIGNAL_FUNC ( handle_box_child_signal ) ,
" attached " ) ;
1998-03-12 09:14:03 +00:00
gtk_signal_connect ( GTK_OBJECT ( handle_box ) ,
1998-02-28 19:09:20 +00:00
" child_detached " ,
GTK_SIGNAL_FUNC ( handle_box_child_signal ) ,
" detached " ) ;
1998-03-12 09:14:03 +00:00
gtk_widget_show ( handle_box ) ;
1998-01-16 23:43:10 +00:00
toolbar = make_toolbar ( window ) ;
1998-05-12 21:30:52 +00:00
gtk_toolbar_set_button_relief ( GTK_TOOLBAR ( toolbar ) , GTK_RELIEF_NORMAL ) ;
1998-03-12 09:14:03 +00:00
gtk_container_add ( GTK_CONTAINER ( handle_box ) , toolbar ) ;
1998-01-16 23:43:10 +00:00
gtk_widget_show ( toolbar ) ;
1998-03-12 09:14:03 +00:00
handle_box = gtk_handle_box_new ( ) ;
1999-02-10 02:35:09 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , handle_box , FALSE , FALSE , 0 ) ;
1998-03-12 09:14:03 +00:00
gtk_signal_connect ( GTK_OBJECT ( handle_box ) ,
" child_attached " ,
GTK_SIGNAL_FUNC ( handle_box_child_signal ) ,
" attached " ) ;
gtk_signal_connect ( GTK_OBJECT ( handle_box ) ,
" child_detached " ,
GTK_SIGNAL_FUNC ( handle_box_child_signal ) ,
" detached " ) ;
gtk_widget_show ( handle_box ) ;
1998-03-21 22:11:26 +00:00
handle_box2 = gtk_handle_box_new ( ) ;
gtk_container_add ( GTK_CONTAINER ( handle_box ) , handle_box2 ) ;
gtk_signal_connect ( GTK_OBJECT ( handle_box2 ) ,
" child_attached " ,
GTK_SIGNAL_FUNC ( handle_box_child_signal ) ,
" attached " ) ;
gtk_signal_connect ( GTK_OBJECT ( handle_box2 ) ,
" child_detached " ,
GTK_SIGNAL_FUNC ( handle_box_child_signal ) ,
" detached " ) ;
gtk_widget_show ( handle_box2 ) ;
1998-03-12 09:14:03 +00:00
label = gtk_label_new ( " Fooo! " ) ;
1998-03-21 22:11:26 +00:00
gtk_container_add ( GTK_CONTAINER ( handle_box2 ) , label ) ;
1998-03-12 09:14:03 +00:00
gtk_widget_show ( label ) ;
1997-12-19 19:17:45 +00:00
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
1998-12-15 20:31:26 +00:00
/*
* Label Demo
*/
void create_labels ( void )
{
static GtkWidget * window = NULL ;
GtkWidget * hbox ;
GtkWidget * vbox ;
GtkWidget * frame ;
GtkWidget * label ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " Label " ) ;
vbox = gtk_vbox_new ( FALSE , 5 ) ;
hbox = gtk_hbox_new ( FALSE , 5 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , hbox ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , vbox , FALSE , FALSE , 0 ) ;
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 5 ) ;
frame = gtk_frame_new ( " Normal Label " ) ;
label = gtk_label_new ( " This is a Normal label " ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , label ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , frame , FALSE , FALSE , 0 ) ;
frame = gtk_frame_new ( " Multi-line Label " ) ;
label = gtk_label_new ( " This is a Multi-line label. \n Second line \n Third line " ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , label ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , frame , FALSE , FALSE , 0 ) ;
frame = gtk_frame_new ( " Left Justified Label " ) ;
label = gtk_label_new ( " This is a Left-Justified \n Multi-line label. \n Third line " ) ;
gtk_label_set_justify ( GTK_LABEL ( label ) , GTK_JUSTIFY_LEFT ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , label ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , frame , FALSE , FALSE , 0 ) ;
frame = gtk_frame_new ( " Right Justified Label " ) ;
label = gtk_label_new ( " This is a Right-Justified \n Multi-line label. \n Fourth line, (j/k) " ) ;
gtk_label_set_justify ( GTK_LABEL ( label ) , GTK_JUSTIFY_RIGHT ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , label ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , frame , FALSE , FALSE , 0 ) ;
vbox = gtk_vbox_new ( FALSE , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , vbox , FALSE , FALSE , 0 ) ;
frame = gtk_frame_new ( " Line wrapped label " ) ;
label = gtk_label_new ( " This is an example of a line-wrapped label. It should not be taking " \
" up the entire " /* big space to test spacing */ \
" width allocated to it, but automatically wraps the words to fit. " \
" The time has come, for all good men, to come to the aid of their party. " \
" The sixth sheik's six sheep's sick. \n " \
" It supports multiple paragraphs correctly, and correctly adds " \
" many extra spaces. " ) ;
gtk_label_set_line_wrap ( GTK_LABEL ( label ) , TRUE ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , label ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , frame , FALSE , FALSE , 0 ) ;
frame = gtk_frame_new ( " Filled, wrapped label " ) ;
label = gtk_label_new ( " This is an example of a line-wrapped, filled label. It should be taking " \
" up the entire width allocated to it. Here is a seneance to prove " \
" my point. Here is another sentence. " \
" Here comes the sun, do de do de do. \n " \
" This is a new paragraph. \n " \
" This is another newer, longer, better paragraph. It is coming to an end, " \
" unfortunately. " ) ;
gtk_label_set_justify ( GTK_LABEL ( label ) , GTK_JUSTIFY_FILL ) ;
gtk_label_set_line_wrap ( GTK_LABEL ( label ) , TRUE ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , label ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , frame , FALSE , FALSE , 0 ) ;
frame = gtk_frame_new ( " Underlined label " ) ;
label = gtk_label_new ( " This label is underlined! \n "
" This one is underlined in <20> <> <EFBFBD> ܸ<EFBFBD> <DCB8> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> <EFBFBD> quite a funky fashion " ) ;
gtk_label_set_justify ( GTK_LABEL ( label ) , GTK_JUSTIFY_LEFT ) ;
gtk_label_set_pattern ( GTK_LABEL ( label ) , " _________________________ _ _________ _ _____ _ __ __ ___ ____ _____ " ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , label ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , frame , FALSE , FALSE , 0 ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show_all ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
1998-07-26 14:45:40 +00:00
/*
* Reparent demo
*/
1997-11-24 22:37:52 +00:00
1998-02-19 05:13:46 +00:00
static void
1997-11-24 22:37:52 +00:00
reparent_label ( GtkWidget * widget ,
GtkWidget * new_parent )
{
GtkWidget * label ;
label = gtk_object_get_user_data ( GTK_OBJECT ( widget ) ) ;
gtk_widget_reparent ( label , new_parent ) ;
}
1998-02-19 05:13:46 +00:00
static void
set_parent_signal ( GtkWidget * child ,
GtkWidget * old_parent ,
gpointer func_data )
{
g_print ( " set_parent for \" %s \" : new parent: \" %s \" , old parent: \" %s \" , data: %d \n " ,
gtk_type_name ( GTK_OBJECT_TYPE ( child ) ) ,
child - > parent ? gtk_type_name ( GTK_OBJECT_TYPE ( child - > parent ) ) : " NULL " ,
old_parent ? gtk_type_name ( GTK_OBJECT_TYPE ( old_parent ) ) : " NULL " ,
1998-05-13 00:24:57 +00:00
GPOINTER_TO_INT ( func_data ) ) ;
1998-02-19 05:13:46 +00:00
}
static void
1998-05-03 22:41:32 +00:00
create_reparent ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * box3 ;
GtkWidget * frame ;
GtkWidget * button ;
GtkWidget * label ;
GtkWidget * separator ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
1998-07-26 14:45:40 +00:00
gtk_window_set_title ( GTK_WINDOW ( window ) , " reparent " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
box2 = gtk_hbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , TRUE , TRUE , 0 ) ;
label = gtk_label_new ( " Hello World " ) ;
frame = gtk_frame_new ( " Frame 1 " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , frame , TRUE , TRUE , 0 ) ;
box3 = gtk_vbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box3 ) , 5 ) ;
1997-11-24 22:37:52 +00:00
gtk_container_add ( GTK_CONTAINER ( frame ) , box3 ) ;
button = gtk_button_new_with_label ( " switch " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( reparent_label ) ,
1997-11-24 22:37:52 +00:00
box3 ) ;
gtk_object_set_user_data ( GTK_OBJECT ( button ) , label ) ;
gtk_box_pack_start ( GTK_BOX ( box3 ) , button , FALSE , TRUE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( box3 ) , label , FALSE , TRUE , 0 ) ;
1998-02-19 05:13:46 +00:00
gtk_signal_connect ( GTK_OBJECT ( label ) ,
1998-02-28 19:09:20 +00:00
" parent_set " ,
1998-02-19 05:13:46 +00:00
GTK_SIGNAL_FUNC ( set_parent_signal ) ,
1998-05-13 00:24:57 +00:00
GINT_TO_POINTER ( 42 ) ) ;
1997-11-24 22:37:52 +00:00
frame = gtk_frame_new ( " Frame 2 " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , frame , TRUE , TRUE , 0 ) ;
box3 = gtk_vbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box3 ) , 5 ) ;
1997-11-24 22:37:52 +00:00
gtk_container_add ( GTK_CONTAINER ( frame ) , box3 ) ;
button = gtk_button_new_with_label ( " switch " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( reparent_label ) ,
1997-11-24 22:37:52 +00:00
box3 ) ;
gtk_object_set_user_data ( GTK_OBJECT ( button ) , label ) ;
gtk_box_pack_start ( GTK_BOX ( box3 ) , button , FALSE , TRUE , 0 ) ;
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1997-11-24 22:37:52 +00:00
else
gtk_widget_destroy ( window ) ;
}
new function to get the *real* geometry position of a window, taken
Sat Sep 25 23:33:55 1998 Tim Janik <timj@gtk.org>
* gdk/gdkwindow.c (gdk_window_get_root_origin): new function to get
the *real* geometry position of a window, taken possible window
manager offsets into account.
this has been succesfully tested with fvwm, fvwm-2, bowman, olwm,
olvwm, twm, ctwm, mlvwm, windowmaker and enlightenment.
it does fail though for amiwm which adds windows to a pseudo root
window, and for icewm by a small offset because it defines the
geometry position whithin its border.
* gtk/testgtk.c: added "saved position" test to figure how
gdk_window_get_root_origin() interacts with window managers (repopup
this window to figure ;).
1998-09-25 23:04:32 +00:00
/*
* Saved Position
*/
gint upositionx = 0 ;
gint upositiony = 0 ;
static gint
uposition_configure ( GtkWidget * window )
{
GtkLabel * lx ;
GtkLabel * ly ;
gchar buffer [ 64 ] ;
lx = gtk_object_get_data ( GTK_OBJECT ( window ) , " x " ) ;
ly = gtk_object_get_data ( GTK_OBJECT ( window ) , " y " ) ;
gdk_window_get_root_origin ( window - > window , & upositionx , & upositiony ) ;
sprintf ( buffer , " %d " , upositionx ) ;
1998-12-15 20:31:26 +00:00
gtk_label_set_text ( lx , buffer ) ;
new function to get the *real* geometry position of a window, taken
Sat Sep 25 23:33:55 1998 Tim Janik <timj@gtk.org>
* gdk/gdkwindow.c (gdk_window_get_root_origin): new function to get
the *real* geometry position of a window, taken possible window
manager offsets into account.
this has been succesfully tested with fvwm, fvwm-2, bowman, olwm,
olvwm, twm, ctwm, mlvwm, windowmaker and enlightenment.
it does fail though for amiwm which adds windows to a pseudo root
window, and for icewm by a small offset because it defines the
geometry position whithin its border.
* gtk/testgtk.c: added "saved position" test to figure how
gdk_window_get_root_origin() interacts with window managers (repopup
this window to figure ;).
1998-09-25 23:04:32 +00:00
sprintf ( buffer , " %d " , upositiony ) ;
1998-12-15 20:31:26 +00:00
gtk_label_set_text ( ly , buffer ) ;
new function to get the *real* geometry position of a window, taken
Sat Sep 25 23:33:55 1998 Tim Janik <timj@gtk.org>
* gdk/gdkwindow.c (gdk_window_get_root_origin): new function to get
the *real* geometry position of a window, taken possible window
manager offsets into account.
this has been succesfully tested with fvwm, fvwm-2, bowman, olwm,
olvwm, twm, ctwm, mlvwm, windowmaker and enlightenment.
it does fail though for amiwm which adds windows to a pseudo root
window, and for icewm by a small offset because it defines the
geometry position whithin its border.
* gtk/testgtk.c: added "saved position" test to figure how
gdk_window_get_root_origin() interacts with window managers (repopup
this window to figure ;).
1998-09-25 23:04:32 +00:00
return FALSE ;
}
static void
create_saved_position ( void )
{
static GtkWidget * window = NULL ;
if ( ! window )
{
GtkWidget * hbox ;
GtkWidget * main_vbox ;
GtkWidget * vbox ;
GtkWidget * x_label ;
GtkWidget * y_label ;
GtkWidget * button ;
GtkWidget * label ;
GtkWidget * any ;
window = gtk_widget_new ( GTK_TYPE_WINDOW ,
" type " , GTK_WINDOW_TOPLEVEL ,
" signal::configure_event " , uposition_configure , NULL ,
" x " , upositionx ,
" y " , upositiony ,
" title " , " Saved Position " ,
NULL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& window ) ;
main_vbox = gtk_vbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( main_vbox ) , 0 ) ;
new function to get the *real* geometry position of a window, taken
Sat Sep 25 23:33:55 1998 Tim Janik <timj@gtk.org>
* gdk/gdkwindow.c (gdk_window_get_root_origin): new function to get
the *real* geometry position of a window, taken possible window
manager offsets into account.
this has been succesfully tested with fvwm, fvwm-2, bowman, olwm,
olvwm, twm, ctwm, mlvwm, windowmaker and enlightenment.
it does fail though for amiwm which adds windows to a pseudo root
window, and for icewm by a small offset because it defines the
geometry position whithin its border.
* gtk/testgtk.c: added "saved position" test to figure how
gdk_window_get_root_origin() interacts with window managers (repopup
this window to figure ;).
1998-09-25 23:04:32 +00:00
gtk_container_add ( GTK_CONTAINER ( window ) , main_vbox ) ;
vbox =
gtk_widget_new ( gtk_vbox_get_type ( ) ,
" GtkBox::homogeneous " , FALSE ,
" GtkBox::spacing " , 5 ,
" GtkContainer::border_width " , 10 ,
" GtkWidget::parent " , main_vbox ,
" GtkWidget::visible " , TRUE ,
NULL ) ;
hbox = gtk_hbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( hbox ) , 5 ) ;
new function to get the *real* geometry position of a window, taken
Sat Sep 25 23:33:55 1998 Tim Janik <timj@gtk.org>
* gdk/gdkwindow.c (gdk_window_get_root_origin): new function to get
the *real* geometry position of a window, taken possible window
manager offsets into account.
this has been succesfully tested with fvwm, fvwm-2, bowman, olwm,
olvwm, twm, ctwm, mlvwm, windowmaker and enlightenment.
it does fail though for amiwm which adds windows to a pseudo root
window, and for icewm by a small offset because it defines the
geometry position whithin its border.
* gtk/testgtk.c: added "saved position" test to figure how
gdk_window_get_root_origin() interacts with window managers (repopup
this window to figure ;).
1998-09-25 23:04:32 +00:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , TRUE , 0 ) ;
label = gtk_label_new ( " X Origin : " ) ;
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0 , 0.5 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , TRUE , 0 ) ;
x_label = gtk_label_new ( " " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , x_label , TRUE , TRUE , 0 ) ;
gtk_object_set_data ( GTK_OBJECT ( window ) , " x " , x_label ) ;
hbox = gtk_hbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( hbox ) , 5 ) ;
new function to get the *real* geometry position of a window, taken
Sat Sep 25 23:33:55 1998 Tim Janik <timj@gtk.org>
* gdk/gdkwindow.c (gdk_window_get_root_origin): new function to get
the *real* geometry position of a window, taken possible window
manager offsets into account.
this has been succesfully tested with fvwm, fvwm-2, bowman, olwm,
olvwm, twm, ctwm, mlvwm, windowmaker and enlightenment.
it does fail though for amiwm which adds windows to a pseudo root
window, and for icewm by a small offset because it defines the
geometry position whithin its border.
* gtk/testgtk.c: added "saved position" test to figure how
gdk_window_get_root_origin() interacts with window managers (repopup
this window to figure ;).
1998-09-25 23:04:32 +00:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , TRUE , 0 ) ;
label = gtk_label_new ( " Y Origin : " ) ;
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0 , 0.5 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , TRUE , 0 ) ;
y_label = gtk_label_new ( " " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , y_label , TRUE , TRUE , 0 ) ;
gtk_object_set_data ( GTK_OBJECT ( window ) , " y " , y_label ) ;
any =
gtk_widget_new ( gtk_hseparator_get_type ( ) ,
" GtkWidget::visible " , TRUE ,
NULL ) ;
gtk_box_pack_start ( GTK_BOX ( main_vbox ) , any , FALSE , TRUE , 0 ) ;
hbox = gtk_hbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( hbox ) , 10 ) ;
new function to get the *real* geometry position of a window, taken
Sat Sep 25 23:33:55 1998 Tim Janik <timj@gtk.org>
* gdk/gdkwindow.c (gdk_window_get_root_origin): new function to get
the *real* geometry position of a window, taken possible window
manager offsets into account.
this has been succesfully tested with fvwm, fvwm-2, bowman, olwm,
olvwm, twm, ctwm, mlvwm, windowmaker and enlightenment.
it does fail though for amiwm which adds windows to a pseudo root
window, and for icewm by a small offset because it defines the
geometry position whithin its border.
* gtk/testgtk.c: added "saved position" test to figure how
gdk_window_get_root_origin() interacts with window managers (repopup
this window to figure ;).
1998-09-25 23:04:32 +00:00
gtk_box_pack_start ( GTK_BOX ( main_vbox ) , hbox , FALSE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " Close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 5 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show_all ( window ) ;
}
else
gtk_widget_destroy ( window ) ;
}
1998-07-26 14:45:40 +00:00
/*
* GtkPixmap
*/
1998-02-19 05:13:46 +00:00
static void
1998-05-03 22:41:32 +00:00
create_pixmap ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * box3 ;
GtkWidget * button ;
GtkWidget * label ;
GtkWidget * separator ;
GtkWidget * pixmapwid ;
GdkPixmap * pixmap ;
GdkBitmap * mask ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
1998-07-26 14:45:40 +00:00
gtk_window_set_title ( GTK_WINDOW ( window ) , " GtkPixmap " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
gtk_widget_realize ( window ) ;
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , TRUE , TRUE , 0 ) ;
button = gtk_button_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , FALSE , FALSE , 0 ) ;
1998-11-06 22:05:02 +00:00
pixmap = gdk_pixmap_create_from_xpm ( window - > window , & mask , NULL ,
1997-11-24 22:37:52 +00:00
" test.xpm " ) ;
pixmapwid = gtk_pixmap_new ( pixmap , mask ) ;
1998-08-25 00:06:38 +00:00
gdk_pixmap_unref ( pixmap ) ;
gdk_pixmap_unref ( mask ) ;
1997-11-24 22:37:52 +00:00
label = gtk_label_new ( " Pixmap \n test " ) ;
box3 = gtk_hbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box3 ) , 2 ) ;
1997-11-24 22:37:52 +00:00
gtk_container_add ( GTK_CONTAINER ( box3 ) , pixmapwid ) ;
gtk_container_add ( GTK_CONTAINER ( box3 ) , label ) ;
gtk_container_add ( GTK_CONTAINER ( button ) , box3 ) ;
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1997-11-24 22:37:52 +00:00
else
gtk_widget_destroy ( window ) ;
}
1998-03-15 08:53:59 +00:00
static void
tips_query_widget_entered ( GtkTipsQuery * tips_query ,
GtkWidget * widget ,
const gchar * tip_text ,
const gchar * tip_private ,
GtkWidget * toggle )
{
if ( GTK_TOGGLE_BUTTON ( toggle ) - > active )
{
1998-12-15 20:31:26 +00:00
gtk_label_set_text ( GTK_LABEL ( tips_query ) , tip_text ? " There is a Tip! " : " There is no Tip! " ) ;
1998-03-15 08:53:59 +00:00
/* don't let GtkTipsQuery reset it's label */
gtk_signal_emit_stop_by_name ( GTK_OBJECT ( tips_query ) , " widget_entered " ) ;
}
}
1998-02-20 05:46:48 +00:00
static gint
1998-03-15 08:53:59 +00:00
tips_query_widget_selected ( GtkWidget * tips_query ,
1998-02-20 05:46:48 +00:00
GtkWidget * widget ,
const gchar * tip_text ,
const gchar * tip_private ,
GdkEventButton * event ,
gpointer func_data )
{
if ( widget )
g_print ( " Help \" %s \" requested for <%s> \n " ,
tip_private ? tip_private : " None " ,
1998-03-15 08:53:59 +00:00
gtk_type_name ( GTK_OBJECT_TYPE ( widget ) ) ) ;
1998-02-20 05:46:48 +00:00
return TRUE ;
}
1998-02-19 05:13:46 +00:00
static void
1998-05-03 22:41:32 +00:00
create_tooltips ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * box1 ;
GtkWidget * box2 ;
1998-02-20 05:46:48 +00:00
GtkWidget * box3 ;
1997-11-24 22:37:52 +00:00
GtkWidget * button ;
1998-03-15 08:53:59 +00:00
GtkWidget * toggle ;
1998-02-20 05:46:48 +00:00
GtkWidget * frame ;
GtkWidget * tips_query ;
1997-11-24 22:37:52 +00:00
GtkWidget * separator ;
GtkTooltips * tooltips ;
if ( ! window )
{
1998-02-20 05:46:48 +00:00
window =
gtk_widget_new ( gtk_window_get_type ( ) ,
" GtkWindow::type " , GTK_WINDOW_TOPLEVEL ,
" GtkContainer::border_width " , 0 ,
" GtkWindow::title " , " Tooltips " ,
" GtkWindow::allow_shrink " , TRUE ,
" GtkWindow::allow_grow " , FALSE ,
" GtkWindow::auto_shrink " , TRUE ,
" GtkWidget::width " , 200 ,
NULL ) ;
1997-11-24 22:37:52 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-01-30 23:47:09 +00:00
GTK_SIGNAL_FUNC ( destroy_tooltips ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
tooltips = gtk_tooltips_new ( ) ;
1998-01-30 23:47:09 +00:00
gtk_object_set_data ( GTK_OBJECT ( window ) , " tooltips " , tooltips ) ;
1997-11-24 22:37:52 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , TRUE , TRUE , 0 ) ;
button = gtk_toggle_button_new_with_label ( " button1 " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
1998-02-20 05:46:48 +00:00
gtk_tooltips_set_tip ( tooltips , button , " This is button 1 " , " ContextHelp/buttons/1 " ) ;
1997-11-24 22:37:52 +00:00
button = gtk_toggle_button_new_with_label ( " button2 " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
1998-02-20 05:46:48 +00:00
gtk_tooltips_set_tip ( tooltips ,
button ,
1998-03-15 08:53:59 +00:00
" This is button 2. This is also a really long tooltip which probably won't fit on a single line and will therefore need to be wrapped. Hopefully the wrapping will work correctly. " ,
" ContextHelp/buttons/2_long " ) ;
toggle = gtk_toggle_button_new_with_label ( " Override TipsQuery Label " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , toggle , TRUE , TRUE , 0 ) ;
gtk_tooltips_set_tip ( tooltips , toggle , " Toggle TipsQuery view. " , " Hi msw! ;) " ) ;
1998-02-20 05:46:48 +00:00
box3 =
gtk_widget_new ( gtk_vbox_get_type ( ) ,
" GtkBox::homogeneous " , FALSE ,
" GtkBox::spacing " , 5 ,
" GtkContainer::border_width " , 5 ,
" GtkWidget::visible " , TRUE ,
NULL ) ;
tips_query = gtk_tips_query_new ( ) ;
button =
gtk_widget_new ( gtk_button_get_type ( ) ,
" GtkButton::label " , " [?] " ,
" GtkWidget::visible " , TRUE ,
" GtkWidget::parent " , box3 ,
" GtkObject::object_signal::clicked " , gtk_tips_query_start_query , tips_query ,
NULL ) ;
gtk_box_set_child_packing ( GTK_BOX ( box3 ) , button , FALSE , FALSE , 0 , GTK_PACK_START ) ;
gtk_tooltips_set_tip ( tooltips ,
button ,
1998-02-27 16:31:06 +00:00
" Start the Tooltips Inspector " ,
1998-02-20 05:46:48 +00:00
" ContextHelp/buttons/? " ) ;
gtk_widget_set ( tips_query ,
" GtkWidget::visible " , TRUE ,
" GtkWidget::parent " , box3 ,
" GtkTipsQuery::caller " , button ,
1998-03-15 08:53:59 +00:00
" GtkObject::signal::widget_entered " , tips_query_widget_entered , toggle ,
1998-02-20 05:46:48 +00:00
" GtkObject::signal::widget_selected " , tips_query_widget_selected , NULL ,
NULL ) ;
frame =
gtk_widget_new ( gtk_frame_get_type ( ) ,
" GtkFrame::label " , " ToolTips Inspector " ,
" GtkFrame::label_xalign " , ( double ) 0.5 ,
" GtkContainer::border_width " , 0 ,
" GtkWidget::visible " , TRUE ,
" GtkWidget::parent " , box2 ,
" GtkContainer::child " , box3 ,
NULL ) ;
gtk_box_set_child_packing ( GTK_BOX ( box2 ) , frame , TRUE , TRUE , 10 , GTK_PACK_START ) ;
1997-11-24 22:37:52 +00:00
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
1998-02-20 05:46:48 +00:00
gtk_tooltips_set_tip ( tooltips , button , " Push this button to close window " , " ContextHelp/buttons/Close " ) ;
1997-11-24 22:37:52 +00:00
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1997-11-24 22:37:52 +00:00
else
gtk_widget_destroy ( window ) ;
}
1998-07-26 14:45:40 +00:00
/*
* Menu demo
*/
1998-02-19 05:13:46 +00:00
static GtkWidget *
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
create_menu ( gint depth , gboolean tearoff )
1997-11-24 22:37:52 +00:00
{
GtkWidget * menu ;
GtkWidget * menuitem ;
GSList * group ;
char buf [ 32 ] ;
int i , j ;
if ( depth < 1 )
return NULL ;
menu = gtk_menu_new ( ) ;
group = NULL ;
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
if ( tearoff )
{
menuitem = gtk_tearoff_menu_item_new ( ) ;
gtk_menu_append ( GTK_MENU ( menu ) , menuitem ) ;
gtk_widget_show ( menuitem ) ;
}
1997-11-24 22:37:52 +00:00
for ( i = 0 , j = 1 ; i < 5 ; i + + , j + + )
{
sprintf ( buf , " item %2d - %d " , depth , j ) ;
menuitem = gtk_radio_menu_item_new_with_label ( group , buf ) ;
group = gtk_radio_menu_item_group ( GTK_RADIO_MENU_ITEM ( menuitem ) ) ;
1997-12-07 02:34:38 +00:00
if ( depth % 2 )
gtk_check_menu_item_set_show_toggle ( GTK_CHECK_MENU_ITEM ( menuitem ) , TRUE ) ;
1997-11-24 22:37:52 +00:00
gtk_menu_append ( GTK_MENU ( menu ) , menuitem ) ;
gtk_widget_show ( menuitem ) ;
1998-03-15 13:33:54 +00:00
if ( i = = 3 )
gtk_widget_set_sensitive ( menuitem , FALSE ) ;
1997-11-24 22:37:52 +00:00
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
gtk_menu_item_set_submenu ( GTK_MENU_ITEM ( menuitem ) , create_menu ( depth - 1 , TRUE ) ) ;
1997-11-24 22:37:52 +00:00
}
return menu ;
}
1998-02-19 05:13:46 +00:00
static void
1998-05-03 22:41:32 +00:00
create_menus ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * button ;
GtkWidget * optionmenu ;
GtkWidget * separator ;
1998-06-18 03:22:09 +00:00
1997-11-24 22:37:52 +00:00
if ( ! window )
{
1998-06-18 03:22:09 +00:00
GtkWidget * menubar ;
GtkWidget * menu ;
GtkWidget * menuitem ;
GtkAccelGroup * accel_group ;
1997-11-24 22:37:52 +00:00
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
1998-06-18 03:22:09 +00:00
1997-11-24 22:37:52 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
1998-05-07 17:08:58 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " delete-event " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_true ) ,
NULL ) ;
1998-06-18 03:22:09 +00:00
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
accel_group = gtk_accel_group_new ( ) ;
gtk_accel_group_attach ( accel_group , GTK_OBJECT ( window ) ) ;
1997-11-24 22:37:52 +00:00
gtk_window_set_title ( GTK_WINDOW ( window ) , " menus " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1998-06-18 03:22:09 +00:00
1997-11-24 22:37:52 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
gtk_widget_show ( box1 ) ;
1998-06-18 03:22:09 +00:00
1997-11-24 22:37:52 +00:00
menubar = gtk_menu_bar_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , menubar , FALSE , TRUE , 0 ) ;
gtk_widget_show ( menubar ) ;
1998-06-18 03:22:09 +00:00
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
menu = create_menu ( 2 , TRUE ) ;
1998-06-18 03:22:09 +00:00
1997-11-24 22:37:52 +00:00
menuitem = gtk_menu_item_new_with_label ( " test \n line2 " ) ;
gtk_menu_item_set_submenu ( GTK_MENU_ITEM ( menuitem ) , menu ) ;
gtk_menu_bar_append ( GTK_MENU_BAR ( menubar ) , menuitem ) ;
gtk_widget_show ( menuitem ) ;
1998-06-18 03:22:09 +00:00
1997-11-24 22:37:52 +00:00
menuitem = gtk_menu_item_new_with_label ( " foo " ) ;
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
gtk_menu_item_set_submenu ( GTK_MENU_ITEM ( menuitem ) , create_menu ( 3 , TRUE ) ) ;
1997-11-24 22:37:52 +00:00
gtk_menu_bar_append ( GTK_MENU_BAR ( menubar ) , menuitem ) ;
gtk_widget_show ( menuitem ) ;
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
1997-11-24 22:37:52 +00:00
menuitem = gtk_menu_item_new_with_label ( " bar " ) ;
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
gtk_menu_item_set_submenu ( GTK_MENU_ITEM ( menuitem ) , create_menu ( 4 , TRUE ) ) ;
1997-11-24 22:37:52 +00:00
gtk_menu_item_right_justify ( GTK_MENU_ITEM ( menuitem ) ) ;
gtk_menu_bar_append ( GTK_MENU_BAR ( menubar ) , menuitem ) ;
gtk_widget_show ( menuitem ) ;
1998-06-18 03:22:09 +00:00
1997-11-24 22:37:52 +00:00
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , TRUE , TRUE , 0 ) ;
gtk_widget_show ( box2 ) ;
1998-06-18 03:22:09 +00:00
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
menu = create_menu ( 1 , FALSE ) ;
1998-06-18 03:22:09 +00:00
gtk_menu_set_accel_group ( GTK_MENU ( menu ) , accel_group ) ;
1997-11-24 22:37:52 +00:00
1998-06-18 03:22:09 +00:00
menuitem = gtk_check_menu_item_new_with_label ( " Accelerate Me " ) ;
gtk_menu_append ( GTK_MENU ( menu ) , menuitem ) ;
gtk_widget_show ( menuitem ) ;
gtk_widget_add_accelerator ( menuitem ,
" activate " ,
accel_group ,
GDK_F1 ,
0 ,
GTK_ACCEL_VISIBLE | GTK_ACCEL_SIGNAL_VISIBLE ) ;
menuitem = gtk_check_menu_item_new_with_label ( " Accelerator Locked " ) ;
gtk_menu_append ( GTK_MENU ( menu ) , menuitem ) ;
gtk_widget_show ( menuitem ) ;
gtk_widget_add_accelerator ( menuitem ,
" activate " ,
accel_group ,
GDK_F2 ,
0 ,
GTK_ACCEL_VISIBLE | GTK_ACCEL_LOCKED ) ;
menuitem = gtk_check_menu_item_new_with_label ( " Accelerators Frozen " ) ;
gtk_menu_append ( GTK_MENU ( menu ) , menuitem ) ;
gtk_widget_show ( menuitem ) ;
gtk_widget_add_accelerator ( menuitem ,
" activate " ,
accel_group ,
GDK_F2 ,
0 ,
GTK_ACCEL_VISIBLE ) ;
gtk_widget_add_accelerator ( menuitem ,
" activate " ,
accel_group ,
GDK_F3 ,
0 ,
GTK_ACCEL_VISIBLE ) ;
1998-11-28 07:42:37 +00:00
gtk_widget_lock_accelerators ( menuitem ) ;
1998-06-18 03:22:09 +00:00
1997-11-24 22:37:52 +00:00
optionmenu = gtk_option_menu_new ( ) ;
1998-06-18 03:22:09 +00:00
gtk_option_menu_set_menu ( GTK_OPTION_MENU ( optionmenu ) , menu ) ;
gtk_option_menu_set_history ( GTK_OPTION_MENU ( optionmenu ) , 3 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box2 ) , optionmenu , TRUE , TRUE , 0 ) ;
gtk_widget_show ( optionmenu ) ;
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
gtk_widget_show ( separator ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
gtk_widget_show ( box2 ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
1998-08-16 21:15:11 +00:00
static void
gtk_ifactory_cb ( gpointer callback_data ,
guint callback_action ,
GtkWidget * widget )
{
g_message ( " ItemFactory: activated \" %s \" " , gtk_item_factory_path_from_widget ( widget ) ) ;
}
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
static GtkItemFactoryEntry menu_items [ ] =
{
1998-11-07 00:33:22 +00:00
{ " /_File " , NULL , 0 , 0 , " <Branch> " } ,
1998-08-16 21:15:11 +00:00
{ " /File/tearoff1 " , NULL , gtk_ifactory_cb , 0 , " <Tearoff> " } ,
{ " /File/_New " , " <control>N " , gtk_ifactory_cb , 0 } ,
{ " /File/_Open " , " <control>O " , gtk_ifactory_cb , 0 } ,
{ " /File/_Save " , " <control>S " , gtk_ifactory_cb , 0 } ,
{ " /File/Save _As... " , NULL , gtk_ifactory_cb , 0 } ,
{ " /File/sep1 " , NULL , gtk_ifactory_cb , 0 , " <Separator> " } ,
{ " /File/_Quit " , " <control>Q " , gtk_ifactory_cb , 0 } ,
1998-11-07 00:33:22 +00:00
{ " /_Preferences " , NULL , 0 , 0 , " <Branch> " } ,
{ " /_Preferences/_Color " , NULL , 0 , 0 , " <Branch> " } ,
1998-08-16 21:15:11 +00:00
{ " /_Preferences/Color/_Red " , NULL , gtk_ifactory_cb , 0 , " <RadioItem> " } ,
{ " /_Preferences/Color/_Green " , NULL , gtk_ifactory_cb , 0 , " <RadioItem> " } ,
{ " /_Preferences/Color/_Blue " , NULL , gtk_ifactory_cb , 0 , " <RadioItem> " } ,
1998-11-07 00:33:22 +00:00
{ " /_Preferences/_Shape " , NULL , 0 , 0 , " <Branch> " } ,
1998-08-16 21:15:11 +00:00
{ " /_Preferences/Shape/_Square " , NULL , gtk_ifactory_cb , 0 , " <RadioItem> " } ,
{ " /_Preferences/Shape/_Rectangle " , NULL , gtk_ifactory_cb , 0 , " <RadioItem> " } ,
{ " /_Preferences/Shape/_Oval " , NULL , gtk_ifactory_cb , 0 , " <RadioItem> " } ,
1998-11-07 00:33:22 +00:00
{ " /_Help " , NULL , 0 , 0 , " <LastBranch> " } ,
1998-08-16 21:15:11 +00:00
{ " /Help/_About " , NULL , gtk_ifactory_cb , 0 } ,
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
} ;
static int nmenu_items = sizeof ( menu_items ) / sizeof ( menu_items [ 0 ] ) ;
static void
create_item_factory ( void )
{
static GtkWidget * window = NULL ;
if ( ! window )
{
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * separator ;
GtkWidget * label ;
GtkWidget * button ;
GtkAccelGroup * accel_group ;
GtkItemFactory * item_factory ;
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& window ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " delete-event " ,
GTK_SIGNAL_FUNC ( gtk_true ) ,
NULL ) ;
accel_group = gtk_accel_group_new ( ) ;
item_factory = gtk_item_factory_new ( GTK_TYPE_MENU_BAR , " <main> " , accel_group ) ;
Tue Mar 16 17:43:33 1999 Tim Janik <timj@gtk.org>
Wed Mar 17 01:46:28 1999 Tim Janik <timj@gtk.org>
* merges from gtk-1-2:
Tue Mar 16 17:43:33 1999 Tim Janik <timj@gtk.org>
* gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_string): ensure the
item factory class has been created.
(gtk_item_factory_parse_rc): likewise.
* gtk/gtkmenu.c:
keep proper references for old_active_menu_item.
(gtk_menu_reparent): unset the usize of the new parent,
so the menu can sanely be size requested and we don't get nasty screen
artefacts upon next reparentation.
(gtk_menu_motion_notify): set send_event to TRUE if we synthesize an
enter notify. only synthesize enter notifies if the pointer really is
inside the event window.
(gtk_menu_popdown): use gtk_menu_shell_deselect().
(gtk_menu_popup): move the background setting stuff into
gtk_menu_tearoff_bg_copy() so it can be called from other places as well.
* gtk/gtkmenushell.c (gtk_menu_shell_button_press): use
gtk_menu_shell_select_item() to select the new item.
(gtk_menu_shell_deselect): export this function, so gtkmenu.c can
do the right thing for deselection as well.
Sat Mar 15 20:10:33 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.[hc]:
(gtk_widget_accelerators_locked): return whether a widget's accelerators
are locked.
* gtk/gtkmenu.c (gtk_menu_key_press): don't remove or install new or
existing accelerators if the widget's accelerators are locked.
Sat Mar 14 19:44:05 1999 Tim Janik <timj@gtk.org>
* gtk/gtkitemfactory.[hc]: allow managing of foreign menu items.
* gtk/gtkmenu.c: truely forward key press and key release events to
the menu widget from the toplevel or tearoff window. we can't simply
connect to that, we need to stop further processing of the events as
well.
Sat Mar 13 13:14:17 1999 Tim Janik <timj@gtk.org>
* gtk/gtkmenu.c:
(gtk_menu_key_press): pass event->keyval, event->state to
gtk_accelerator_valid, instead of event->keyval twice.
refuse to install single letter accelerators for menus that use
single letter shortcuts.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): use
gtk_menu_ensure_uline_accel_group().
* gtk/gtkmenu.[hc]: added gtk_menu_ensure_uline_accel_group()
which will always return an uline accel group, made
gtk_menu_get_uline_accel_group() return NULL if the group isn't
yet created.
Mon Mar 15 01:03:27 1999 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.h (struct _GtkCListColumn): added button_passive flag.
* gtk/gtkclist.c (gtk_clist_column_title_passive):
Leave button sensitive, trap button_press, button_release,
motion_notify, enter_notify and leave_notify events instead.
(gtk_clist_column_title_active): disconnect event handler.
(gtk_clist_drag_data_get): fixed memory leak. Reported by
Guillaume Laurent <glaurent@worldnet.fr>
Wed Mar 10 23:49:55 1999 Lars Hamann <lars@gtk.org>
* gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few
width/height mixups.
* gtk/gtkctree.c (tree_delete): emit an tree_unselect_row signal
if needed.
Wed Mar 10 00:11:32 1999 Tim Janik <timj@gtk.org>
* gtk/testgtk.c (create_item_factory): unref the item factory after
window's destruction.
* gtk/gtkmenushell.c (gtk_menu_shell_activate_item): keep a reference
count on the menu shell around the menu item's activation, since the
signal emission may cause menu shell destruction.
* gtk/gtkitemfactory.c:
the previous code leaked one accel group per menu. we use
gtk_menu_get_uline_accel_group() now to fix that, and with that
also create the underline accelerator group of the menus only if
required (i.e. an underline accelerator has been specified).
(gtk_item_factory_construct):
(gtk_item_factory_create_item): removed code that would create an
extra accel group for the menu (and leak references).
(gtk_item_factory_create_item): adapted the underline accelerator
installation code to properly feature gtk_menu_get_uline_accel_group().
* gtk/gtkmenu.[hc]: added gtk_menu_get_accel_group() to retrive
menu->accel_group, this may return NULL if the accelerator group
hasn't been set yet.
added gtk_menu_get_uline_accel_group() to retrive the underline
accelerator group of the menu, this will be created on demand
and proper care is taken about its reference count.
* gtk/gtkitemfactory.h:
* gtk/gtkitemfactory.c:
dumped the approach of keeping a widgets by action list on the
factory since the factory<->widget destroy negotiation didn't work
and would be hard to get going at all. instead we keep a list of
GtkItemFactoryItem items on the factory (GtkItemFactoryItems are
persistant throughout a program's life time).
also, i removed the static const gchar *key_* variables, and made
them inline strings (they weren't actually used anyways).
(gtk_item_factory_add_item): update ifactory->items.
(gtk_item_factory_destroy): destroy ifactory->items (and remove
the item factory pointer from the remaining ifactory widgets).
(gtk_item_factory_get_widget_by_action): walk the GtkItemFactoryItem
list to find the widget.
(gtk_item_factory_get_item): new function that works around
gtk_item_factory_get_widget() limitations, this function will only
return menu items, even for <Branch> entries.
Tue Mar 9 01:01:28 1999 Tim Janik <timj@gtk.org>
* gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
font hash table, if we have a GdkFontPrivate entry for this font
already, simply increment its reference count, provided by Olaf Dietsche
<olaf.dietsche+list.gtk@netcologne.de>.
* gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
Sun Mar 7 06:13:29 1999 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c:
(gtk_container_add_with_args):
(gtk_container_addv):
(gtk_container_add): before adding a child to a conatiner, make sure
it is (default) constructed, this is neccessary because under certain
circumstances the child will get relized and mapped immediatedly, in
which case it has to be constructed already.
Mon Mar 1 17:58:21 1999 Tim Janik <timj@gtk.org>
* gtk/gtksignal.c (gtk_signal_connect_by_type): count object_signal
values > 1 as TRUE also.
1999-03-17 01:39:42 +00:00
gtk_object_set_data_full ( GTK_OBJECT ( window ) ,
" <main> " ,
item_factory ,
( GtkDestroyNotify ) gtk_object_unref ) ;
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
gtk_accel_group_attach ( accel_group , GTK_OBJECT ( window ) ) ;
Tue Mar 16 17:43:33 1999 Tim Janik <timj@gtk.org>
Wed Mar 17 01:46:28 1999 Tim Janik <timj@gtk.org>
* merges from gtk-1-2:
Tue Mar 16 17:43:33 1999 Tim Janik <timj@gtk.org>
* gtk/gtkitemfactory.c (gtk_item_factory_parse_rc_string): ensure the
item factory class has been created.
(gtk_item_factory_parse_rc): likewise.
* gtk/gtkmenu.c:
keep proper references for old_active_menu_item.
(gtk_menu_reparent): unset the usize of the new parent,
so the menu can sanely be size requested and we don't get nasty screen
artefacts upon next reparentation.
(gtk_menu_motion_notify): set send_event to TRUE if we synthesize an
enter notify. only synthesize enter notifies if the pointer really is
inside the event window.
(gtk_menu_popdown): use gtk_menu_shell_deselect().
(gtk_menu_popup): move the background setting stuff into
gtk_menu_tearoff_bg_copy() so it can be called from other places as well.
* gtk/gtkmenushell.c (gtk_menu_shell_button_press): use
gtk_menu_shell_select_item() to select the new item.
(gtk_menu_shell_deselect): export this function, so gtkmenu.c can
do the right thing for deselection as well.
Sat Mar 15 20:10:33 1999 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.[hc]:
(gtk_widget_accelerators_locked): return whether a widget's accelerators
are locked.
* gtk/gtkmenu.c (gtk_menu_key_press): don't remove or install new or
existing accelerators if the widget's accelerators are locked.
Sat Mar 14 19:44:05 1999 Tim Janik <timj@gtk.org>
* gtk/gtkitemfactory.[hc]: allow managing of foreign menu items.
* gtk/gtkmenu.c: truely forward key press and key release events to
the menu widget from the toplevel or tearoff window. we can't simply
connect to that, we need to stop further processing of the events as
well.
Sat Mar 13 13:14:17 1999 Tim Janik <timj@gtk.org>
* gtk/gtkmenu.c:
(gtk_menu_key_press): pass event->keyval, event->state to
gtk_accelerator_valid, instead of event->keyval twice.
refuse to install single letter accelerators for menus that use
single letter shortcuts.
* gtk/gtkitemfactory.c (gtk_item_factory_create_item): use
gtk_menu_ensure_uline_accel_group().
* gtk/gtkmenu.[hc]: added gtk_menu_ensure_uline_accel_group()
which will always return an uline accel group, made
gtk_menu_get_uline_accel_group() return NULL if the group isn't
yet created.
Mon Mar 15 01:03:27 1999 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.h (struct _GtkCListColumn): added button_passive flag.
* gtk/gtkclist.c (gtk_clist_column_title_passive):
Leave button sensitive, trap button_press, button_release,
motion_notify, enter_notify and leave_notify events instead.
(gtk_clist_column_title_active): disconnect event handler.
(gtk_clist_drag_data_get): fixed memory leak. Reported by
Guillaume Laurent <glaurent@worldnet.fr>
Wed Mar 10 23:49:55 1999 Lars Hamann <lars@gtk.org>
* gtk/gtklayout.c (gtk_layout_adjustment_changed): fixed a few
width/height mixups.
* gtk/gtkctree.c (tree_delete): emit an tree_unselect_row signal
if needed.
Wed Mar 10 00:11:32 1999 Tim Janik <timj@gtk.org>
* gtk/testgtk.c (create_item_factory): unref the item factory after
window's destruction.
* gtk/gtkmenushell.c (gtk_menu_shell_activate_item): keep a reference
count on the menu shell around the menu item's activation, since the
signal emission may cause menu shell destruction.
* gtk/gtkitemfactory.c:
the previous code leaked one accel group per menu. we use
gtk_menu_get_uline_accel_group() now to fix that, and with that
also create the underline accelerator group of the menus only if
required (i.e. an underline accelerator has been specified).
(gtk_item_factory_construct):
(gtk_item_factory_create_item): removed code that would create an
extra accel group for the menu (and leak references).
(gtk_item_factory_create_item): adapted the underline accelerator
installation code to properly feature gtk_menu_get_uline_accel_group().
* gtk/gtkmenu.[hc]: added gtk_menu_get_accel_group() to retrive
menu->accel_group, this may return NULL if the accelerator group
hasn't been set yet.
added gtk_menu_get_uline_accel_group() to retrive the underline
accelerator group of the menu, this will be created on demand
and proper care is taken about its reference count.
* gtk/gtkitemfactory.h:
* gtk/gtkitemfactory.c:
dumped the approach of keeping a widgets by action list on the
factory since the factory<->widget destroy negotiation didn't work
and would be hard to get going at all. instead we keep a list of
GtkItemFactoryItem items on the factory (GtkItemFactoryItems are
persistant throughout a program's life time).
also, i removed the static const gchar *key_* variables, and made
them inline strings (they weren't actually used anyways).
(gtk_item_factory_add_item): update ifactory->items.
(gtk_item_factory_destroy): destroy ifactory->items (and remove
the item factory pointer from the remaining ifactory widgets).
(gtk_item_factory_get_widget_by_action): walk the GtkItemFactoryItem
list to find the widget.
(gtk_item_factory_get_item): new function that works around
gtk_item_factory_get_widget() limitations, this function will only
return menu items, even for <Branch> entries.
Tue Mar 9 01:01:28 1999 Tim Janik <timj@gtk.org>
* gdk/gdkfont.c (gdk_font_load): first lookup the xfont ID in our
font hash table, if we have a GdkFontPrivate entry for this font
already, simply increment its reference count, provided by Olaf Dietsche
<olaf.dietsche+list.gtk@netcologne.de>.
* gtk/gtkstyle.c (gtk_style_copy): plug a GdkFont reference leak, fix
provided by Olaf Dietsche <olaf.dietsche+list.gtk@netcologne.de>.
Sun Mar 7 06:13:29 1999 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c:
(gtk_container_add_with_args):
(gtk_container_addv):
(gtk_container_add): before adding a child to a conatiner, make sure
it is (default) constructed, this is neccessary because under certain
circumstances the child will get relized and mapped immediatedly, in
which case it has to be constructed already.
Mon Mar 1 17:58:21 1999 Tim Janik <timj@gtk.org>
* gtk/gtksignal.c (gtk_signal_connect_by_type): count object_signal
values > 1 as TRUE also.
1999-03-17 01:39:42 +00:00
gtk_item_factory_create_items ( item_factory , nmenu_items , menu_items , NULL ) ;
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
gtk_window_set_title ( GTK_WINDOW ( window ) , " Item Factory " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) ,
gtk_item_factory_get_widget ( item_factory , " <main> " ) ,
FALSE , FALSE , 0 ) ;
label = gtk_label_new ( " Type \n <alt> \n to start " ) ;
gtk_widget_set_usize ( label , 200 , 200 ) ;
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0.5 , 0.5 ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , label , TRUE , TRUE , 0 ) ;
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show_all ( window ) ;
}
else
gtk_widget_destroy ( window ) ;
}
1998-05-01 04:23:59 +00:00
/*
* GtkScrolledWindow
*/
1998-07-26 14:45:40 +00:00
1998-05-01 04:23:59 +00:00
static void
scrolled_windows_remove ( GtkWidget * widget , GtkWidget * scrollwin )
{
static GtkWidget * parent = NULL ;
static GtkWidget * float_parent ;
if ( parent )
{
gtk_widget_reparent ( scrollwin , parent ) ;
gtk_widget_destroy ( float_parent ) ;
float_parent = NULL ;
parent = NULL ;
}
else
{
parent = widget - > parent ;
float_parent = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_widget_reparent ( scrollwin , float_parent ) ;
gtk_widget_show ( float_parent ) ;
}
}
1998-08-11 19:06:18 +00:00
/*
create_modal_window
*/
static gboolean
cmw_destroy_cb ( GtkWidget * widget )
{
/* This is needed to get out of gtk_main */
gtk_main_quit ( ) ;
return FALSE ;
}
static void
1998-12-07 06:37:27 +00:00
cmw_color ( GtkWidget * widget , GtkWidget * parent )
1998-08-11 19:06:18 +00:00
{
GtkWidget * csd ;
csd = gtk_color_selection_dialog_new ( " This is a modal color selection dialog " ) ;
/* Set as modal */
gtk_window_set_modal ( GTK_WINDOW ( csd ) , TRUE ) ;
1998-12-07 06:37:27 +00:00
/* And mark it as a transient dialog */
gtk_window_set_transient_for ( GTK_WINDOW ( csd ) , GTK_WINDOW ( parent ) ) ;
1998-08-11 19:06:18 +00:00
gtk_signal_connect ( GTK_OBJECT ( csd ) , " destroy " ,
GTK_SIGNAL_FUNC ( cmw_destroy_cb ) , NULL ) ;
gtk_signal_connect_object ( GTK_OBJECT ( GTK_COLOR_SELECTION_DIALOG ( csd ) - > ok_button ) ,
" clicked " , GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( csd ) ) ;
gtk_signal_connect_object ( GTK_OBJECT ( GTK_COLOR_SELECTION_DIALOG ( csd ) - > cancel_button ) ,
" clicked " , GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( csd ) ) ;
/* wait until destroy calls gtk_main_quit */
gtk_widget_show ( csd ) ;
gtk_main ( ) ;
}
static void
1998-12-07 06:37:27 +00:00
cmw_file ( GtkWidget * widget , GtkWidget * parent )
1998-08-11 19:06:18 +00:00
{
GtkWidget * fs ;
fs = gtk_file_selection_new ( " This is a modal file selection dialog " ) ;
/* Set as modal */
gtk_window_set_modal ( GTK_WINDOW ( fs ) , TRUE ) ;
1998-12-07 06:37:27 +00:00
/* And mark it as a transient dialog */
gtk_window_set_transient_for ( GTK_WINDOW ( fs ) , GTK_WINDOW ( parent ) ) ;
1998-08-11 19:06:18 +00:00
gtk_signal_connect ( GTK_OBJECT ( fs ) , " destroy " ,
GTK_SIGNAL_FUNC ( cmw_destroy_cb ) , NULL ) ;
gtk_signal_connect_object ( GTK_OBJECT ( GTK_FILE_SELECTION ( fs ) - > ok_button ) ,
" clicked " , GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( fs ) ) ;
gtk_signal_connect_object ( GTK_OBJECT ( GTK_FILE_SELECTION ( fs ) - > cancel_button ) ,
" clicked " , GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( fs ) ) ;
/* wait until destroy calls gtk_main_quit */
gtk_widget_show ( fs ) ;
gtk_main ( ) ;
}
static void
create_modal_window ( void )
{
GtkWidget * window = NULL ;
GtkWidget * box1 , * box2 ;
GtkWidget * frame1 ;
GtkWidget * btnColor , * btnFile , * btnClose ;
/* Create modal window (Here you can use any window descendent )*/
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " This window is modal " ) ;
/* Set window as modal */
gtk_window_set_modal ( GTK_WINDOW ( window ) , TRUE ) ;
/* Create widgets */
box1 = gtk_vbox_new ( FALSE , 5 ) ;
frame1 = gtk_frame_new ( " Standard dialogs in modal form " ) ;
box2 = gtk_vbox_new ( TRUE , 5 ) ;
btnColor = gtk_button_new_with_label ( " Color " ) ;
btnFile = gtk_button_new_with_label ( " File Selection " ) ;
btnClose = gtk_button_new_with_label ( " Close " ) ;
/* Init widgets */
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box1 ) , 3 ) ;
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 3 ) ;
1998-08-11 19:06:18 +00:00
/* Pack widgets */
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , frame1 , TRUE , TRUE , 4 ) ;
gtk_container_add ( GTK_CONTAINER ( frame1 ) , box2 ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , btnColor , FALSE , FALSE , 4 ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , btnFile , FALSE , FALSE , 4 ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , gtk_hseparator_new ( ) , FALSE , FALSE , 4 ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , btnClose , FALSE , FALSE , 4 ) ;
/* connect signals */
gtk_signal_connect_object ( GTK_OBJECT ( btnClose ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
GTK_SIGNAL_FUNC ( cmw_destroy_cb ) , NULL ) ;
gtk_signal_connect ( GTK_OBJECT ( btnColor ) , " clicked " ,
1998-12-07 06:37:27 +00:00
GTK_SIGNAL_FUNC ( cmw_color ) , window ) ;
1998-08-11 19:06:18 +00:00
gtk_signal_connect ( GTK_OBJECT ( btnFile ) , " clicked " ,
1998-12-07 06:37:27 +00:00
GTK_SIGNAL_FUNC ( cmw_file ) , window ) ;
1998-08-11 19:06:18 +00:00
/* Show widgets */
gtk_widget_show_all ( window ) ;
/* wait until dialog get destroyed */
gtk_main ( ) ;
}
1998-01-03 23:28:28 +00:00
/*
* GtkScrolledWindow
*/
1998-07-26 14:45:40 +00:00
1998-02-19 05:13:46 +00:00
static void
1998-05-03 22:41:32 +00:00
create_scrolled_windows ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window ;
GtkWidget * scrolled_window ;
GtkWidget * table ;
GtkWidget * button ;
char buffer [ 32 ] ;
int i , j ;
if ( ! window )
{
window = gtk_dialog_new ( ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " dialog " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
scrolled_window = gtk_scrolled_window_new ( NULL , NULL ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( scrolled_window ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_scrolled_window_set_policy ( GTK_SCROLLED_WINDOW ( scrolled_window ) ,
GTK_POLICY_AUTOMATIC ,
GTK_POLICY_AUTOMATIC ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > vbox ) ,
scrolled_window , TRUE , TRUE , 0 ) ;
gtk_widget_show ( scrolled_window ) ;
table = gtk_table_new ( 20 , 20 , FALSE ) ;
gtk_table_set_row_spacings ( GTK_TABLE ( table ) , 10 ) ;
gtk_table_set_col_spacings ( GTK_TABLE ( table ) , 10 ) ;
added args ::show_text, ::text_xalign, ::text_yalign, ::activity_mode.
Sun Nov 22 16:21:28 1998 Tim Janik <timj@gtk.org>
* gtk/gtkprogress.c: added args ::show_text, ::text_xalign,
::text_yalign, ::activity_mode.
* gtk/gtkprogressbar.c: added construct arg ::adjustment. added args
::bar_style, ::orientation, ::discrete_blocks, ::activity_step,
::activity_blocks.
(gtk_progress_bar_new):
(gtk_progress_bar_new_with_adjustment): use gtk_widget_new().
(gtk_progress_bar_construct): deprecated.
* gtk/gtkvscrollbar.c:
(gtk_vscrollbar_draw_step_back):
(gtk_vscrollbar_draw_step_forw): use "vscrollbar" as detail for
gtk_paint_arrow, to be consistent with hscrollbar.
* gtk/gtktext.c
added construct args ::hadjustment, ::vadjustment.
added args ::line_wrap, ::word_wrap.
(gtk_text_class_init): added scroll_adjustments signal.
(gtk_text_new): use gtk_widget_new.
(gtk_text_disconnect): remove adjustement with gtk_text_set_adjustments,
so we don't screw the reference counts and don't leave signals connected.
(gtk_text_destroy): disconnect adjustments signals.
(gtk_text_finalize): unref adjustments.
* gtk/gtkctree.c: added construct args ::n_columns and ::tree_column.
added args ::indent, ::spacing, ::show_stub, ::reorderable,
::use_drag_icons, ::line_style and ::expander_style.
(gtk_ctree_set_show_stub): renamed from gtk_ctree_show_stub, which is
deprecated now.
* gtk/gtkclist.h: remove GTK_CLIST_CONSTRUCT flag.
* gtk/gtkclist.c:
removed ::vadjustment and ::hadjustment args, introduced
::scroll_adjustments signal.
added ::shadow_type, ::selection_mode and ::row_height args.
added n_columns construct arg.
(gtk_clist_construct): call gtk_object_constructed().
(gtk_clist_set_row_height): if height is passed as 0,
revert to automatic height calculation.
(gtk_clist_destroy): before unrefing the adjustments, disconnect our
signal handlers.
Fri Nov 21 22:34:58 1998 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_new): call gtk_object_default_construct
like gtk_object_new.
(gtk_widget_destroy): assert that we only destroy constructed widgets.
* gtk/gtkobject.h (enum GtkArgFlags): new flag GTK_ARG_CONSTRUCT_ONLY
to identify args that may only be used for construction.
GTK_ARG_CONSTRUCT maybe used as normal arguments besides construction
time.
* gtk/gtkobject.c (gtk_object_new): invoke gtk_object_default_construct
at the end if the object is not fully constructed.
(gtk_object_newv): likewise.
(gtk_object_destroy): assert that we only destroy constructed objects.
(gtk_object_init): setup GTK_CONSTRUCTED from the
objects real klass.
(gtk_object_default_construct): new function to complete default
construction of an object by applying missing construtor args with
default values of 0, 0.0 or NULL.
(gtk_object_constructed): new function to mark an object as being
constructed (used from within constructors).
* gtk/gtkarg.c (gtk_arg_type_new_static): return the args info pointer
so it is immediatedly available for the caller.
* gtk/gtktypeutils.c (gtk_type_new): pass an object's real class to
the object initilizer (GtkObjectInitFunc takes a second arg now, the
real klass), and asure that object initializers may temporarily alter
the class pointer.
Fri Nov 20 08:00:30 1998 Tim Janik <timj@gtk.org>
* gtk/testgtk.c: change all occourances of gtk_container_add (
scrolled_window, widget) to gtk_scrolled_window_add_with_viewport (...)
for widget!=(clist, ctree, text, viewport).
* gtk/gtkcombo.c:
(gtk_combo_init): use gtk_scrolled_window_add_with_viewport()
to add children to the scrolled window.
* gtk/gtkscrolledwindow.h:
* gtk/gtkscrolledwindow.c:
changed scrolled_window->viewport to scrolled_window->child, and use
gtk_widget_scroll_adjustements() to set the scroll adjustments for the
widget, we do not create an additional viewport anymore.
added ::hadjustment and ::vadjustment constructor args.
(gtk_scrolled_window_new): use gtk_widget_new() to create the widget.
(gtk_scrolled_window_set_hadjustment):
(gtk_scrolled_window_set_vadjustment): new functions that superceed
gtk_scrolled_window_construct.
(gtk_scrolled_window_construct): deprecated this function.
* gtk/gtkhscrollbar.c:
* gtk/gtkvscrollbar.c:
* gtk/gtkhscale.c:
* gtk/gtkvscale.c:
support a constructor arg "::adjustment", and use gtk_widget_new() for
the widget creation.
* gtk/gtkrange.c: added ::update_policy arg.
(gtk_range_set_adjustment): if adjustment is passed in as NULL, create
a default adjustment so this function can be used for derived widgets
that depend on the adjustment's existance.
(gtk_range_destroy): disconnect the adjustment signal, so we don't
get called after we got destroyed, we don't destroy the adjustment
in here, because it might have been provided from another widget.
* gtk/gtkviewport.c: introduced ::scroll_adjustments signal.
(gtk_viewport_destroy): same as gtk_range_destroy.
* gtk/gtkprogress.c (gtk_progress_destroy): same as gtk_range_destroy.
* gtk/gtkwidget.h:
* gtk/gtkwidget.c: changed gtk_widget_activate() to return a
gboolean, indicating whether this widget supports activation.
added gtk_widget_scroll_adjustements() to set the scrolling
adjustments of a widget.
Wed Nov 19 01:22:42 1998 Tim Janik <timj@gtk.org>
* gtk/gtkoptionmenu.c:
(gtk_option_menu_remove_contents):
(gtk_option_menu_update_contents): removed
gtk_container_[un]block_resize() pairs.
* gtk/gtknotebook.h:
* gtk/gtknotebook.c: removed the tab_border field, since it shouldn't
be used outside of gtknotebook.c anyways. made ARG_TAB_BORDER a
wrtie-only argument.
* *.c: made deprecated functions issue a message:
gtk_clist_set_border, gtk_container_block_resize,
gtk_container_unblock_resize, gtk_container_need_resize,
gtk_object_class_add_user_signal, gtk_spin_button_construct,
gtk_scrolled_window_construct.
removed non-functional functions:
gtk_container_disable_resize, gtk_container_enable_resize,
gtk_clist_set_policy.
Wed Nov 18 22:54:36 1998 Tim Janik <timj@gtk.org>
* gtk/gtkbox.c (gtk_box_init):
* gtk/gtkdrawingarea.c (gtk_drawing_area_init):
* gtk/gtkeventbox.c (gtk_event_box_init):
* gtk/gtkfixed.c (gtk_fixed_init):
* gtk/gtkframe.c (gtk_frame_init):
* gtk/gtkhandlebox.c (gtk_handle_box_init):
* gtk/gtkpacker.c (gtk_packer_init):
* gtk/gtkmisc.c (gtk_misc_init):
* gtk/gtkpreview.c (gtk_preview_init):
* gtk/gtkprogress.c (gtk_progress_init):
* gtk/gtkprogressbar.c (gtk_progress_bar_init):
* gtk/gtkseparator.c (gtk_separator_init):
* gtk/gtktable.c (gtk_table_init):
* gtk/gtkviewport.c (gtk_viewport_init):
* gtk/gtkalignment.c (gtk_alignment_init):
removed setting of the GTK_BASIC flag.
* gtk/gtkwidget.h:
* gtk/gtkwidget.c:
removed GTK_BASIC, GTK_WIDGET_BASIC and gtk_widget_basic.
* miscellaneous GtkType and macro fixups.
1998-11-23 01:54:45 +00:00
gtk_scrolled_window_add_with_viewport ( GTK_SCROLLED_WINDOW ( scrolled_window ) , table ) ;
1998-05-01 04:23:59 +00:00
gtk_container_set_focus_hadjustment ( GTK_CONTAINER ( table ) ,
gtk_scrolled_window_get_hadjustment ( GTK_SCROLLED_WINDOW ( scrolled_window ) ) ) ;
gtk_container_set_focus_vadjustment ( GTK_CONTAINER ( table ) ,
gtk_scrolled_window_get_vadjustment ( GTK_SCROLLED_WINDOW ( scrolled_window ) ) ) ;
1997-11-24 22:37:52 +00:00
gtk_widget_show ( table ) ;
for ( i = 0 ; i < 20 ; i + + )
for ( j = 0 ; j < 20 ; j + + )
{
sprintf ( buffer , " button (%d,%d) \n " , i , j ) ;
button = gtk_toggle_button_new_with_label ( buffer ) ;
gtk_table_attach_defaults ( GTK_TABLE ( table ) , button ,
i , i + 1 , j , j + 1 ) ;
gtk_widget_show ( button ) ;
}
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
1998-05-01 04:23:59 +00:00
button = gtk_button_new_with_label ( " remove " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( scrolled_windows_remove ) ,
GTK_OBJECT ( scrolled_window ) ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
1998-12-07 06:37:27 +00:00
gtk_window_set_default_size ( GTK_WINDOW ( window ) , 300 , 300 ) ;
1997-11-24 22:37:52 +00:00
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
1998-01-03 23:28:28 +00:00
/*
* GtkEntry
*/
1998-01-07 00:04:19 +00:00
1998-02-19 05:13:46 +00:00
static void
entry_toggle_editable ( GtkWidget * checkbutton ,
GtkWidget * entry )
1998-01-07 00:04:19 +00:00
{
gtk_entry_set_editable ( GTK_ENTRY ( entry ) ,
GTK_TOGGLE_BUTTON ( checkbutton ) - > active ) ;
}
new function gtk_container_child_arg_set, similar to
Wed Jun 24 14:14:32 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c: new function gtk_container_child_arg_set, similar
to gtk_container_child_arg_setv, but takes a variable argument list.
new function gtk_container_get_child_arg_type, which is needed by
gtk_object_collect_args.
* gtk/gtkobject.c: changed prototype for gtk_object_collect_args, to
take a function pointer to figure the argument type.
adapted callers to pass gtk_object_get_arg_type.
* gtk/gtkwidget.c: adapted gtk_object_collect_args callers to pass
gtk_object_get_arg_type..
* gtk/gtkpacker.h:
* gtk/gtkpacker.c:
(gtk_packer_reorder_child): new function to change the packing order
of a child.
(gtk_packer_size_request):
(gtk_packer_size_allocate): take container->border_width into acount.
* gtk/gtkpacker.c: implemented widget arguments:
"GtkPacker::spacing", "GtkPacker::border_width", "GtkPacker::pad_x",
"GtkPacker::pad_y", "GtkPacker::ipad_x", "GtkPacker::ipad_y".
implemented child arguments:
"GtkPacker::side", "GtkPacker::anchor", "GtkPacker::expand",
"GtkPacker::fill_x", "GtkPacker::fill_y", "GtkPacker::use_default",
"GtkPacker::border_width", "GtkPacker::pad_x", "GtkPacker::pad_y",
"GtkPacker::ipad_x", "GtkPacker::ipad_y", "GtkPacker::position".
* gtk/gtkmisc.c (gtk_misc_set_arg): for padding args, set the padding,
not the alignment.
* gtk/gtkeventbox.h:
* gtk/gtkeventbox.c: GtkType and macro fixups.
* gtk/testgtk.c (entry_toggle_sensitive): new function to toggle
sensitivity of an entry.
* gtk/gtkstyle.c (gtk_style_new): support normal grey as default color
for insensitive base.
* gtk/gtkentry.c (gtk_entry_realize): set the window backgrounds
widget state dependent.
(gtk_entry_style_set): likewise.
(gtk_entry_state_changed): set background color on state changes.
(gtk_entry_draw_text): for non selected text, use state dependent
colors.
* gtk/gtktogglebutton.c: support for widget arguments
"GtkToggleButton::active" and "GtkToggleButton::draw_indicator".
1998-06-24 12:22:23 +00:00
static void
entry_toggle_sensitive ( GtkWidget * checkbutton ,
GtkWidget * entry )
{
gtk_widget_set_sensitive ( entry , GTK_TOGGLE_BUTTON ( checkbutton ) - > active ) ;
}
1998-05-22 07:07:11 +00:00
static void
entry_toggle_visibility ( GtkWidget * checkbutton ,
GtkWidget * entry )
{
gtk_entry_set_visibility ( GTK_ENTRY ( entry ) ,
GTK_TOGGLE_BUTTON ( checkbutton ) - > active ) ;
}
1998-02-19 05:13:46 +00:00
static void
1998-05-03 22:41:32 +00:00
create_entry ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * box1 ;
GtkWidget * box2 ;
1998-01-07 00:04:19 +00:00
GtkWidget * editable_check ;
new function gtk_container_child_arg_set, similar to
Wed Jun 24 14:14:32 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c: new function gtk_container_child_arg_set, similar
to gtk_container_child_arg_setv, but takes a variable argument list.
new function gtk_container_get_child_arg_type, which is needed by
gtk_object_collect_args.
* gtk/gtkobject.c: changed prototype for gtk_object_collect_args, to
take a function pointer to figure the argument type.
adapted callers to pass gtk_object_get_arg_type.
* gtk/gtkwidget.c: adapted gtk_object_collect_args callers to pass
gtk_object_get_arg_type..
* gtk/gtkpacker.h:
* gtk/gtkpacker.c:
(gtk_packer_reorder_child): new function to change the packing order
of a child.
(gtk_packer_size_request):
(gtk_packer_size_allocate): take container->border_width into acount.
* gtk/gtkpacker.c: implemented widget arguments:
"GtkPacker::spacing", "GtkPacker::border_width", "GtkPacker::pad_x",
"GtkPacker::pad_y", "GtkPacker::ipad_x", "GtkPacker::ipad_y".
implemented child arguments:
"GtkPacker::side", "GtkPacker::anchor", "GtkPacker::expand",
"GtkPacker::fill_x", "GtkPacker::fill_y", "GtkPacker::use_default",
"GtkPacker::border_width", "GtkPacker::pad_x", "GtkPacker::pad_y",
"GtkPacker::ipad_x", "GtkPacker::ipad_y", "GtkPacker::position".
* gtk/gtkmisc.c (gtk_misc_set_arg): for padding args, set the padding,
not the alignment.
* gtk/gtkeventbox.h:
* gtk/gtkeventbox.c: GtkType and macro fixups.
* gtk/testgtk.c (entry_toggle_sensitive): new function to toggle
sensitivity of an entry.
* gtk/gtkstyle.c (gtk_style_new): support normal grey as default color
for insensitive base.
* gtk/gtkentry.c (gtk_entry_realize): set the window backgrounds
widget state dependent.
(gtk_entry_style_set): likewise.
(gtk_entry_state_changed): set background color on state changes.
(gtk_entry_draw_text): for non selected text, use state dependent
colors.
* gtk/gtktogglebutton.c: support for widget arguments
"GtkToggleButton::active" and "GtkToggleButton::draw_indicator".
1998-06-24 12:22:23 +00:00
GtkWidget * sensitive_check ;
1998-01-08 04:13:13 +00:00
GtkWidget * entry , * cb ;
1997-11-24 22:37:52 +00:00
GtkWidget * button ;
GtkWidget * separator ;
1998-01-08 04:13:13 +00:00
GList * cbitems = NULL ;
1997-11-24 22:37:52 +00:00
1998-01-08 04:13:13 +00:00
if ( ! window )
1997-11-24 22:37:52 +00:00
{
1998-03-13 17:45:16 +00:00
cbitems = g_list_append ( cbitems , " item0 " ) ;
cbitems = g_list_append ( cbitems , " item1 item1 " ) ;
cbitems = g_list_append ( cbitems , " item2 item2 item2 " ) ;
cbitems = g_list_append ( cbitems , " item3 item3 item3 item3 " ) ;
cbitems = g_list_append ( cbitems , " item4 item4 item4 item4 item4 " ) ;
cbitems = g_list_append ( cbitems , " item5 item5 item5 item5 item5 item5 " ) ;
cbitems = g_list_append ( cbitems , " item6 item6 item6 item6 item6 " ) ;
cbitems = g_list_append ( cbitems , " item7 item7 item7 item7 " ) ;
cbitems = g_list_append ( cbitems , " item8 item8 item8 " ) ;
cbitems = g_list_append ( cbitems , " item9 item9 " ) ;
1997-11-24 22:37:52 +00:00
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " entry " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
gtk_widget_show ( box1 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , TRUE , TRUE , 0 ) ;
gtk_widget_show ( box2 ) ;
entry = gtk_entry_new ( ) ;
gtk_entry_set_text ( GTK_ENTRY ( entry ) , " hello world " ) ;
new function gtk_container_child_arg_set, similar to
Wed Jun 24 14:14:32 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c: new function gtk_container_child_arg_set, similar
to gtk_container_child_arg_setv, but takes a variable argument list.
new function gtk_container_get_child_arg_type, which is needed by
gtk_object_collect_args.
* gtk/gtkobject.c: changed prototype for gtk_object_collect_args, to
take a function pointer to figure the argument type.
adapted callers to pass gtk_object_get_arg_type.
* gtk/gtkwidget.c: adapted gtk_object_collect_args callers to pass
gtk_object_get_arg_type..
* gtk/gtkpacker.h:
* gtk/gtkpacker.c:
(gtk_packer_reorder_child): new function to change the packing order
of a child.
(gtk_packer_size_request):
(gtk_packer_size_allocate): take container->border_width into acount.
* gtk/gtkpacker.c: implemented widget arguments:
"GtkPacker::spacing", "GtkPacker::border_width", "GtkPacker::pad_x",
"GtkPacker::pad_y", "GtkPacker::ipad_x", "GtkPacker::ipad_y".
implemented child arguments:
"GtkPacker::side", "GtkPacker::anchor", "GtkPacker::expand",
"GtkPacker::fill_x", "GtkPacker::fill_y", "GtkPacker::use_default",
"GtkPacker::border_width", "GtkPacker::pad_x", "GtkPacker::pad_y",
"GtkPacker::ipad_x", "GtkPacker::ipad_y", "GtkPacker::position".
* gtk/gtkmisc.c (gtk_misc_set_arg): for padding args, set the padding,
not the alignment.
* gtk/gtkeventbox.h:
* gtk/gtkeventbox.c: GtkType and macro fixups.
* gtk/testgtk.c (entry_toggle_sensitive): new function to toggle
sensitivity of an entry.
* gtk/gtkstyle.c (gtk_style_new): support normal grey as default color
for insensitive base.
* gtk/gtkentry.c (gtk_entry_realize): set the window backgrounds
widget state dependent.
(gtk_entry_style_set): likewise.
(gtk_entry_state_changed): set background color on state changes.
(gtk_entry_draw_text): for non selected text, use state dependent
colors.
* gtk/gtktogglebutton.c: support for widget arguments
"GtkToggleButton::active" and "GtkToggleButton::draw_indicator".
1998-06-24 12:22:23 +00:00
gtk_editable_select_region ( GTK_EDITABLE ( entry ) , 0 , 5 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box2 ) , entry , TRUE , TRUE , 0 ) ;
gtk_widget_show ( entry ) ;
1998-01-20 21:40:38 +00:00
cb = gtk_combo_new ( ) ;
gtk_combo_set_popdown_strings ( GTK_COMBO ( cb ) , cbitems ) ;
gtk_entry_set_text ( GTK_ENTRY ( GTK_COMBO ( cb ) - > entry ) , " hello world " ) ;
1998-03-01 08:47:36 +00:00
gtk_editable_select_region ( GTK_EDITABLE ( GTK_COMBO ( cb ) - > entry ) ,
0 , - 1 ) ;
1998-01-08 04:13:13 +00:00
gtk_box_pack_start ( GTK_BOX ( box2 ) , cb , TRUE , TRUE , 0 ) ;
gtk_widget_show ( cb ) ;
1998-01-07 00:04:19 +00:00
editable_check = gtk_check_button_new_with_label ( " Editable " ) ;
1998-03-07 03:05:36 +00:00
gtk_box_pack_start ( GTK_BOX ( box2 ) , editable_check , FALSE , TRUE , 0 ) ;
1998-01-07 00:04:19 +00:00
gtk_signal_connect ( GTK_OBJECT ( editable_check ) , " toggled " ,
GTK_SIGNAL_FUNC ( entry_toggle_editable ) , entry ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( editable_check ) , TRUE ) ;
1998-01-07 00:04:19 +00:00
gtk_widget_show ( editable_check ) ;
1997-11-24 22:37:52 +00:00
1998-05-22 07:07:11 +00:00
editable_check = gtk_check_button_new_with_label ( " Visible " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , editable_check , FALSE , TRUE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( editable_check ) , " toggled " ,
GTK_SIGNAL_FUNC ( entry_toggle_visibility ) , entry ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( editable_check ) , TRUE ) ;
1998-05-22 07:07:11 +00:00
gtk_widget_show ( editable_check ) ;
new function gtk_container_child_arg_set, similar to
Wed Jun 24 14:14:32 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c: new function gtk_container_child_arg_set, similar
to gtk_container_child_arg_setv, but takes a variable argument list.
new function gtk_container_get_child_arg_type, which is needed by
gtk_object_collect_args.
* gtk/gtkobject.c: changed prototype for gtk_object_collect_args, to
take a function pointer to figure the argument type.
adapted callers to pass gtk_object_get_arg_type.
* gtk/gtkwidget.c: adapted gtk_object_collect_args callers to pass
gtk_object_get_arg_type..
* gtk/gtkpacker.h:
* gtk/gtkpacker.c:
(gtk_packer_reorder_child): new function to change the packing order
of a child.
(gtk_packer_size_request):
(gtk_packer_size_allocate): take container->border_width into acount.
* gtk/gtkpacker.c: implemented widget arguments:
"GtkPacker::spacing", "GtkPacker::border_width", "GtkPacker::pad_x",
"GtkPacker::pad_y", "GtkPacker::ipad_x", "GtkPacker::ipad_y".
implemented child arguments:
"GtkPacker::side", "GtkPacker::anchor", "GtkPacker::expand",
"GtkPacker::fill_x", "GtkPacker::fill_y", "GtkPacker::use_default",
"GtkPacker::border_width", "GtkPacker::pad_x", "GtkPacker::pad_y",
"GtkPacker::ipad_x", "GtkPacker::ipad_y", "GtkPacker::position".
* gtk/gtkmisc.c (gtk_misc_set_arg): for padding args, set the padding,
not the alignment.
* gtk/gtkeventbox.h:
* gtk/gtkeventbox.c: GtkType and macro fixups.
* gtk/testgtk.c (entry_toggle_sensitive): new function to toggle
sensitivity of an entry.
* gtk/gtkstyle.c (gtk_style_new): support normal grey as default color
for insensitive base.
* gtk/gtkentry.c (gtk_entry_realize): set the window backgrounds
widget state dependent.
(gtk_entry_style_set): likewise.
(gtk_entry_state_changed): set background color on state changes.
(gtk_entry_draw_text): for non selected text, use state dependent
colors.
* gtk/gtktogglebutton.c: support for widget arguments
"GtkToggleButton::active" and "GtkToggleButton::draw_indicator".
1998-06-24 12:22:23 +00:00
sensitive_check = gtk_check_button_new_with_label ( " Sensitive " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , sensitive_check , FALSE , TRUE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( sensitive_check ) , " toggled " ,
GTK_SIGNAL_FUNC ( entry_toggle_sensitive ) , entry ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( sensitive_check ) , TRUE ) ;
new function gtk_container_child_arg_set, similar to
Wed Jun 24 14:14:32 1998 Tim Janik <timj@gtk.org>
* gtk/gtkcontainer.c: new function gtk_container_child_arg_set, similar
to gtk_container_child_arg_setv, but takes a variable argument list.
new function gtk_container_get_child_arg_type, which is needed by
gtk_object_collect_args.
* gtk/gtkobject.c: changed prototype for gtk_object_collect_args, to
take a function pointer to figure the argument type.
adapted callers to pass gtk_object_get_arg_type.
* gtk/gtkwidget.c: adapted gtk_object_collect_args callers to pass
gtk_object_get_arg_type..
* gtk/gtkpacker.h:
* gtk/gtkpacker.c:
(gtk_packer_reorder_child): new function to change the packing order
of a child.
(gtk_packer_size_request):
(gtk_packer_size_allocate): take container->border_width into acount.
* gtk/gtkpacker.c: implemented widget arguments:
"GtkPacker::spacing", "GtkPacker::border_width", "GtkPacker::pad_x",
"GtkPacker::pad_y", "GtkPacker::ipad_x", "GtkPacker::ipad_y".
implemented child arguments:
"GtkPacker::side", "GtkPacker::anchor", "GtkPacker::expand",
"GtkPacker::fill_x", "GtkPacker::fill_y", "GtkPacker::use_default",
"GtkPacker::border_width", "GtkPacker::pad_x", "GtkPacker::pad_y",
"GtkPacker::ipad_x", "GtkPacker::ipad_y", "GtkPacker::position".
* gtk/gtkmisc.c (gtk_misc_set_arg): for padding args, set the padding,
not the alignment.
* gtk/gtkeventbox.h:
* gtk/gtkeventbox.c: GtkType and macro fixups.
* gtk/testgtk.c (entry_toggle_sensitive): new function to toggle
sensitivity of an entry.
* gtk/gtkstyle.c (gtk_style_new): support normal grey as default color
for insensitive base.
* gtk/gtkentry.c (gtk_entry_realize): set the window backgrounds
widget state dependent.
(gtk_entry_style_set): likewise.
(gtk_entry_state_changed): set background color on state changes.
(gtk_entry_draw_text): for non selected text, use state dependent
colors.
* gtk/gtktogglebutton.c: support for widget arguments
"GtkToggleButton::active" and "GtkToggleButton::draw_indicator".
1998-06-24 12:22:23 +00:00
gtk_widget_show ( sensitive_check ) ;
1997-11-24 22:37:52 +00:00
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
gtk_widget_show ( separator ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
gtk_widget_show ( box2 ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
1998-02-25 22:03:10 +00:00
else
gtk_widget_destroy ( window ) ;
}
1998-03-11 06:11:52 +00:00
/*
* GtkSpinButton
*/
static GtkWidget * spinner1 ;
1998-02-25 22:03:10 +00:00
static void
toggle_snap ( GtkWidget * widget , GtkSpinButton * spin )
{
1998-06-17 20:07:31 +00:00
gtk_spin_button_set_snap_to_ticks ( spin , GTK_TOGGLE_BUTTON ( widget ) - > active ) ;
1998-02-25 22:03:10 +00:00
}
1998-03-11 06:11:52 +00:00
static void
toggle_numeric ( GtkWidget * widget , GtkSpinButton * spin )
{
gtk_spin_button_set_numeric ( spin , GTK_TOGGLE_BUTTON ( widget ) - > active ) ;
}
1998-02-25 22:03:10 +00:00
static void
change_digits ( GtkWidget * widget , GtkSpinButton * spin )
{
1998-03-11 06:11:52 +00:00
gtk_spin_button_set_digits ( GTK_SPIN_BUTTON ( spinner1 ) ,
1998-02-25 22:03:10 +00:00
gtk_spin_button_get_value_as_int ( spin ) ) ;
}
1998-03-11 06:11:52 +00:00
static void
1998-06-17 20:07:31 +00:00
get_value ( GtkWidget * widget , gpointer data )
1998-03-11 06:11:52 +00:00
{
gchar buf [ 32 ] ;
GtkLabel * label ;
GtkSpinButton * spin ;
spin = GTK_SPIN_BUTTON ( spinner1 ) ;
label = GTK_LABEL ( gtk_object_get_user_data ( GTK_OBJECT ( widget ) ) ) ;
1998-06-17 20:07:31 +00:00
if ( GPOINTER_TO_INT ( data ) = = 1 )
1998-03-11 06:11:52 +00:00
sprintf ( buf , " %d " , gtk_spin_button_get_value_as_int ( spin ) ) ;
else
sprintf ( buf , " %0.*f " , spin - > digits ,
gtk_spin_button_get_value_as_float ( spin ) ) ;
1998-12-15 20:31:26 +00:00
gtk_label_set_text ( label , buf ) ;
1998-03-11 06:11:52 +00:00
}
1999-02-28 16:04:47 +00:00
static gint
spin_button_time_output_func ( GtkSpinButton * spin_button )
{
static gchar buf [ 6 ] ;
gfloat hours ;
gfloat minutes ;
hours = spin_button - > adjustment - > value / 60.0 ;
minutes = ( fabs ( floor ( hours ) - hours ) < 1e-5 ) ? 0.0 : 30 ;
sprintf ( buf , " %02.0f:%02.0f " , floor ( hours ) , minutes ) ;
if ( strcmp ( buf , gtk_entry_get_text ( GTK_ENTRY ( spin_button ) ) ) )
gtk_entry_set_text ( GTK_ENTRY ( spin_button ) , buf ) ;
return TRUE ;
}
static gint
spin_button_month_input_func ( GtkSpinButton * spin_button ,
gfloat * new_val )
{
gint i ;
static gchar * month [ 12 ] = { " January " , " February " , " March " , " April " ,
" May " , " June " , " July " , " August " ,
" September " , " October " , " November " , " December " } ;
gchar * tmp1 , * tmp2 ;
gboolean found = FALSE ;
for ( i = 1 ; i < = 12 ; i + + )
{
tmp1 = g_strdup ( month [ i - 1 ] ) ;
g_strup ( tmp1 ) ;
tmp2 = g_strdup ( gtk_entry_get_text ( GTK_ENTRY ( spin_button ) ) ) ;
g_strup ( tmp2 ) ;
if ( strstr ( tmp1 , tmp2 ) = = tmp1 )
found = TRUE ;
g_free ( tmp1 ) ;
g_free ( tmp2 ) ;
if ( found )
break ;
}
if ( ! found )
{
* new_val = 0.0 ;
return INPUT_ERROR ;
}
* new_val = ( gfloat ) i ;
return TRUE ;
}
static gint
spin_button_month_output_func ( GtkSpinButton * spin_button )
{
gint i ;
static gchar * month [ 12 ] = { " January " , " February " , " March " , " April " ,
" May " , " June " , " July " , " August " , " September " ,
" October " , " November " , " December " } ;
for ( i = 1 ; i < = 12 ; i + + )
if ( fabs ( spin_button - > adjustment - > value - ( double ) i ) < 1e-5 )
{
if ( strcmp ( month [ i - 1 ] , gtk_entry_get_text ( GTK_ENTRY ( spin_button ) ) ) )
gtk_entry_set_text ( GTK_ENTRY ( spin_button ) , month [ i - 1 ] ) ;
}
return TRUE ;
}
static gint
spin_button_hex_input_func ( GtkSpinButton * spin_button ,
gfloat * new_val )
{
gchar * buf ;
gchar * err ;
gfloat res ;
buf = gtk_entry_get_text ( GTK_ENTRY ( spin_button ) ) ;
res = ( gfloat ) ( strtol ( buf , & err , 16 ) ) ;
* new_val = res ;
if ( * err )
return INPUT_ERROR ;
else
return TRUE ;
}
static gint
spin_button_hex_output_func ( GtkSpinButton * spin_button )
{
static gchar buf [ 7 ] ;
gint val ;
val = ( gint ) spin_button - > adjustment - > value ;
if ( fabs ( val ) < 1e-5 )
sprintf ( buf , " 0x00 " ) ;
else
sprintf ( buf , " 0x%.2X " , val ) ;
if ( strcmp ( buf , gtk_entry_get_text ( GTK_ENTRY ( spin_button ) ) ) )
gtk_entry_set_text ( GTK_ENTRY ( spin_button ) , buf ) ;
return TRUE ;
}
1998-02-25 22:03:10 +00:00
static void
1998-05-03 22:41:32 +00:00
create_spins ( void )
1998-02-25 22:03:10 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * frame ;
GtkWidget * hbox ;
GtkWidget * main_vbox ;
GtkWidget * vbox ;
GtkWidget * vbox2 ;
GtkWidget * spinner2 ;
GtkWidget * spinner ;
GtkWidget * button ;
GtkWidget * label ;
1998-03-11 06:11:52 +00:00
GtkWidget * val_label ;
1998-02-25 22:03:10 +00:00
GtkAdjustment * adj ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1998-02-25 22:03:10 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " GtkSpinButton " ) ;
main_vbox = gtk_vbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( main_vbox ) , 10 ) ;
1998-02-25 22:03:10 +00:00
gtk_container_add ( GTK_CONTAINER ( window ) , main_vbox ) ;
frame = gtk_frame_new ( " Not accelerated " ) ;
gtk_box_pack_start ( GTK_BOX ( main_vbox ) , frame , TRUE , TRUE , 0 ) ;
vbox = gtk_vbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( vbox ) , 5 ) ;
1998-02-25 22:03:10 +00:00
gtk_container_add ( GTK_CONTAINER ( frame ) , vbox ) ;
1999-02-28 16:04:47 +00:00
/* Time, month, hex spinners */
1998-02-25 22:03:10 +00:00
hbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , TRUE , TRUE , 5 ) ;
vbox2 = gtk_vbox_new ( FALSE , 0 ) ;
1998-03-11 06:11:52 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , vbox2 , TRUE , TRUE , 5 ) ;
1998-02-25 22:03:10 +00:00
1999-02-28 16:04:47 +00:00
label = gtk_label_new ( " Time : " ) ;
1998-02-25 22:03:10 +00:00
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0 , 0.5 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , label , FALSE , TRUE , 0 ) ;
1999-02-28 16:04:47 +00:00
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 0 , 0 , 1410 , 30 , 60 , 0 ) ;
1998-02-25 22:03:10 +00:00
spinner = gtk_spin_button_new ( adj , 0 , 0 ) ;
1999-02-28 16:04:47 +00:00
gtk_editable_set_editable ( GTK_EDITABLE ( spinner ) , FALSE ) ;
gtk_signal_connect ( GTK_OBJECT ( spinner ) ,
" output " ,
GTK_SIGNAL_FUNC ( spin_button_time_output_func ) ,
NULL ) ;
1998-03-29 20:40:10 +00:00
gtk_spin_button_set_wrap ( GTK_SPIN_BUTTON ( spinner ) , TRUE ) ;
1999-02-28 16:04:47 +00:00
gtk_widget_set_usize ( spinner , 55 , - 1 ) ;
1998-02-25 22:03:10 +00:00
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , spinner , FALSE , TRUE , 0 ) ;
vbox2 = gtk_vbox_new ( FALSE , 0 ) ;
1998-03-11 06:11:52 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , vbox2 , TRUE , TRUE , 5 ) ;
1998-02-25 22:03:10 +00:00
label = gtk_label_new ( " Month : " ) ;
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0 , 0.5 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , label , FALSE , TRUE , 0 ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 1.0 , 1.0 , 12.0 , 1.0 ,
5.0 , 0.0 ) ;
spinner = gtk_spin_button_new ( adj , 0 , 0 ) ;
1999-02-28 16:04:47 +00:00
gtk_spin_button_set_update_policy ( GTK_SPIN_BUTTON ( spinner ) ,
GTK_UPDATE_IF_VALID ) ;
gtk_signal_connect ( GTK_OBJECT ( spinner ) ,
" input " ,
GTK_SIGNAL_FUNC ( spin_button_month_input_func ) ,
NULL ) ;
gtk_signal_connect ( GTK_OBJECT ( spinner ) ,
" output " ,
GTK_SIGNAL_FUNC ( spin_button_month_output_func ) ,
NULL ) ;
1998-03-29 20:40:10 +00:00
gtk_spin_button_set_wrap ( GTK_SPIN_BUTTON ( spinner ) , TRUE ) ;
1999-02-28 16:04:47 +00:00
gtk_widget_set_usize ( spinner , 85 , - 1 ) ;
1998-02-25 22:03:10 +00:00
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , spinner , FALSE , TRUE , 0 ) ;
vbox2 = gtk_vbox_new ( FALSE , 0 ) ;
1998-03-11 06:11:52 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , vbox2 , TRUE , TRUE , 5 ) ;
1998-02-25 22:03:10 +00:00
1999-02-28 16:04:47 +00:00
label = gtk_label_new ( " Hex : " ) ;
1998-02-25 22:03:10 +00:00
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0 , 0.5 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , label , FALSE , TRUE , 0 ) ;
1999-02-28 16:04:47 +00:00
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 0 , 0 , 255 , 1 , 16 , 0 ) ;
1998-02-25 22:03:10 +00:00
spinner = gtk_spin_button_new ( adj , 0 , 0 ) ;
1999-02-28 16:04:47 +00:00
gtk_editable_set_editable ( GTK_EDITABLE ( spinner ) , TRUE ) ;
gtk_signal_connect ( GTK_OBJECT ( spinner ) ,
" input " ,
GTK_SIGNAL_FUNC ( spin_button_hex_input_func ) ,
NULL ) ;
gtk_signal_connect ( GTK_OBJECT ( spinner ) ,
" output " ,
GTK_SIGNAL_FUNC ( spin_button_hex_output_func ) ,
NULL ) ;
1998-03-29 20:40:10 +00:00
gtk_spin_button_set_wrap ( GTK_SPIN_BUTTON ( spinner ) , TRUE ) ;
1998-02-25 22:03:10 +00:00
gtk_widget_set_usize ( spinner , 55 , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , spinner , FALSE , TRUE , 0 ) ;
frame = gtk_frame_new ( " Accelerated " ) ;
gtk_box_pack_start ( GTK_BOX ( main_vbox ) , frame , TRUE , TRUE , 0 ) ;
vbox = gtk_vbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( vbox ) , 5 ) ;
1998-02-25 22:03:10 +00:00
gtk_container_add ( GTK_CONTAINER ( frame ) , vbox ) ;
hbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , TRUE , 5 ) ;
vbox2 = gtk_vbox_new ( FALSE , 0 ) ;
1998-03-11 06:11:52 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , vbox2 , TRUE , TRUE , 5 ) ;
1998-02-25 22:03:10 +00:00
label = gtk_label_new ( " Value : " ) ;
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0 , 0.5 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , label , FALSE , TRUE , 0 ) ;
1998-03-11 06:11:52 +00:00
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 0.0 , - 10000.0 , 10000.0 ,
0.5 , 100.0 , 0.0 ) ;
spinner1 = gtk_spin_button_new ( adj , 1.0 , 2 ) ;
1998-03-29 20:40:10 +00:00
gtk_spin_button_set_wrap ( GTK_SPIN_BUTTON ( spinner1 ) , TRUE ) ;
1998-03-11 06:11:52 +00:00
gtk_widget_set_usize ( spinner1 , 100 , 0 ) ;
1998-02-25 22:03:10 +00:00
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , spinner1 , FALSE , TRUE , 0 ) ;
vbox2 = gtk_vbox_new ( FALSE , 0 ) ;
1998-03-11 06:11:52 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , vbox2 , TRUE , TRUE , 5 ) ;
1998-02-25 22:03:10 +00:00
label = gtk_label_new ( " Digits : " ) ;
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0 , 0.5 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , label , FALSE , TRUE , 0 ) ;
1998-03-11 06:11:52 +00:00
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 2 , 1 , 5 , 1 , 1 , 0 ) ;
1998-02-25 22:03:10 +00:00
spinner2 = gtk_spin_button_new ( adj , 0.0 , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( adj ) , " value_changed " ,
GTK_SIGNAL_FUNC ( change_digits ) ,
( gpointer ) spinner2 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , spinner2 , FALSE , TRUE , 0 ) ;
1998-03-11 22:49:40 +00:00
hbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , TRUE , 5 ) ;
1998-03-11 06:11:52 +00:00
button = gtk_check_button_new_with_label ( " Snap to 0.5-ticks " ) ;
1998-02-25 22:03:10 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( toggle_snap ) ,
spinner1 ) ;
1998-03-11 06:11:52 +00:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , button , TRUE , TRUE , 0 ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( button ) , TRUE ) ;
1998-02-25 22:03:10 +00:00
1998-03-11 06:11:52 +00:00
button = gtk_check_button_new_with_label ( " Numeric only input mode " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( toggle_numeric ) ,
spinner1 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , button , TRUE , TRUE , 0 ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( button ) , TRUE ) ;
1998-03-11 06:11:52 +00:00
val_label = gtk_label_new ( " " ) ;
hbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , TRUE , 5 ) ;
button = gtk_button_new_with_label ( " Value as Int " ) ;
gtk_object_set_user_data ( GTK_OBJECT ( button ) , val_label ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( get_value ) ,
1998-06-17 20:07:31 +00:00
GINT_TO_POINTER ( 1 ) ) ;
1998-03-11 06:11:52 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 5 ) ;
button = gtk_button_new_with_label ( " Value as Float " ) ;
gtk_object_set_user_data ( GTK_OBJECT ( button ) , val_label ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( get_value ) ,
1998-06-17 20:07:31 +00:00
GINT_TO_POINTER ( 2 ) ) ;
1998-03-11 06:11:52 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , val_label , TRUE , TRUE , 0 ) ;
1998-12-15 20:31:26 +00:00
gtk_label_set_text ( GTK_LABEL ( val_label ) , " 0 " ) ;
1998-03-11 06:11:52 +00:00
1998-02-25 22:03:10 +00:00
hbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( main_vbox ) , hbox , FALSE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " Close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 5 ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show_all ( window ) ;
else
gtk_widget_destroy ( window ) ;
1997-11-24 22:37:52 +00:00
}
1999-02-28 16:04:47 +00:00
1998-03-17 03:16:11 +00:00
/*
* Cursors
*/
static gint
cursor_expose_event ( GtkWidget * widget ,
GdkEvent * event ,
gpointer user_data )
{
GtkDrawingArea * darea ;
GdkDrawable * drawable ;
GdkGC * black_gc ;
GdkGC * gray_gc ;
GdkGC * white_gc ;
guint max_width ;
guint max_height ;
g_return_val_if_fail ( widget ! = NULL , TRUE ) ;
g_return_val_if_fail ( GTK_IS_DRAWING_AREA ( widget ) , TRUE ) ;
darea = GTK_DRAWING_AREA ( widget ) ;
drawable = widget - > window ;
white_gc = widget - > style - > white_gc ;
gray_gc = widget - > style - > bg_gc [ GTK_STATE_NORMAL ] ;
black_gc = widget - > style - > black_gc ;
max_width = widget - > allocation . width ;
max_height = widget - > allocation . height ;
gdk_draw_rectangle ( drawable , white_gc ,
TRUE ,
0 ,
0 ,
max_width ,
max_height / 2 ) ;
gdk_draw_rectangle ( drawable , black_gc ,
TRUE ,
0 ,
max_height / 2 ,
max_width ,
max_height / 2 ) ;
gdk_draw_rectangle ( drawable , gray_gc ,
TRUE ,
max_width / 3 ,
max_height / 3 ,
max_width / 3 ,
max_height / 3 ) ;
return TRUE ;
}
static void
set_cursor ( GtkWidget * spinner ,
GtkWidget * widget )
{
guint c ;
GdkCursor * cursor ;
1998-07-14 07:40:15 +00:00
GtkWidget * label ;
GtkFlagValue * vals ;
1998-03-17 03:16:11 +00:00
c = CLAMP ( gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON ( spinner ) ) , 0 , 152 ) ;
c & = 0xfe ;
1998-07-14 07:40:15 +00:00
label = gtk_object_get_user_data ( GTK_OBJECT ( spinner ) ) ;
vals = gtk_type_enum_get_values ( GTK_TYPE_GDK_CURSOR_TYPE ) ;
while ( vals & & vals - > value ! = c )
vals + + ;
if ( vals )
1998-12-15 20:31:26 +00:00
gtk_label_set_text ( GTK_LABEL ( label ) , vals - > value_nick ) ;
1998-07-14 07:40:15 +00:00
else
1998-12-15 20:31:26 +00:00
gtk_label_set_text ( GTK_LABEL ( label ) , " <unknown> " ) ;
1998-07-14 07:40:15 +00:00
1998-03-17 03:16:11 +00:00
cursor = gdk_cursor_new ( c ) ;
gdk_window_set_cursor ( widget - > window , cursor ) ;
gdk_cursor_destroy ( cursor ) ;
}
static gint
cursor_event ( GtkWidget * widget ,
GdkEvent * event ,
GtkSpinButton * spinner )
{
if ( ( event - > type = = GDK_BUTTON_PRESS ) & &
( ( event - > button . button = = 1 ) | |
( event - > button . button = = 3 ) ) )
{
1998-06-19 17:33:51 +00:00
gtk_spin_button_spin ( spinner , event - > button . button = = 1 ?
GTK_SPIN_STEP_FORWARD : GTK_SPIN_STEP_BACKWARD , 0 ) ;
1998-03-17 03:16:11 +00:00
return TRUE ;
}
return FALSE ;
}
static void
1998-05-03 22:41:32 +00:00
create_cursors ( void )
1998-03-17 03:16:11 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * frame ;
GtkWidget * hbox ;
GtkWidget * main_vbox ;
GtkWidget * vbox ;
GtkWidget * darea ;
GtkWidget * spinner ;
GtkWidget * button ;
GtkWidget * label ;
GtkWidget * any ;
GtkAdjustment * adj ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " Cursors " ) ;
main_vbox = gtk_vbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( main_vbox ) , 0 ) ;
1998-03-17 03:16:11 +00:00
gtk_container_add ( GTK_CONTAINER ( window ) , main_vbox ) ;
vbox =
gtk_widget_new ( gtk_vbox_get_type ( ) ,
" GtkBox::homogeneous " , FALSE ,
" GtkBox::spacing " , 5 ,
" GtkContainer::border_width " , 10 ,
" GtkWidget::parent " , main_vbox ,
" GtkWidget::visible " , TRUE ,
NULL ) ;
hbox = gtk_hbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( hbox ) , 5 ) ;
1998-03-17 03:16:11 +00:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , TRUE , 0 ) ;
1998-07-26 14:45:40 +00:00
label = gtk_label_new ( " Cursor Value : " ) ;
1998-03-17 03:16:11 +00:00
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0 , 0.5 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , TRUE , 0 ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 0 ,
0 , 152 ,
2 ,
10 , 0 ) ;
spinner = gtk_spin_button_new ( adj , 0 , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , spinner , TRUE , TRUE , 0 ) ;
frame =
gtk_widget_new ( gtk_frame_get_type ( ) ,
" GtkFrame::shadow " , GTK_SHADOW_ETCHED_IN ,
" GtkFrame::label_xalign " , 0.5 ,
" GtkFrame::label " , " Cursor Area " ,
" GtkContainer::border_width " , 10 ,
" GtkWidget::parent " , vbox ,
" GtkWidget::visible " , TRUE ,
NULL ) ;
darea = gtk_drawing_area_new ( ) ;
gtk_widget_set_usize ( darea , 80 , 80 ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , darea ) ;
gtk_signal_connect ( GTK_OBJECT ( darea ) ,
" expose_event " ,
GTK_SIGNAL_FUNC ( cursor_expose_event ) ,
NULL ) ;
gtk_widget_set_events ( darea , GDK_EXPOSURE_MASK | GDK_BUTTON_PRESS_MASK ) ;
gtk_signal_connect ( GTK_OBJECT ( darea ) ,
" button_press_event " ,
GTK_SIGNAL_FUNC ( cursor_event ) ,
spinner ) ;
gtk_widget_show ( darea ) ;
gtk_signal_connect ( GTK_OBJECT ( spinner ) , " changed " ,
GTK_SIGNAL_FUNC ( set_cursor ) ,
darea ) ;
1998-07-14 07:40:15 +00:00
label = gtk_widget_new ( GTK_TYPE_LABEL ,
" visible " , TRUE ,
" label " , " XXX " ,
" parent " , vbox ,
NULL ) ;
gtk_container_child_set ( GTK_CONTAINER ( vbox ) , label ,
" expand " , FALSE ,
NULL ) ;
gtk_object_set_user_data ( GTK_OBJECT ( spinner ) , label ) ;
1998-03-17 03:16:11 +00:00
any =
gtk_widget_new ( gtk_hseparator_get_type ( ) ,
" GtkWidget::visible " , TRUE ,
NULL ) ;
gtk_box_pack_start ( GTK_BOX ( main_vbox ) , any , FALSE , TRUE , 0 ) ;
hbox = gtk_hbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( hbox ) , 10 ) ;
1998-03-17 03:16:11 +00:00
gtk_box_pack_start ( GTK_BOX ( main_vbox ) , hbox , FALSE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " Close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 5 ) ;
1998-03-31 04:39:57 +00:00
gtk_widget_show_all ( window ) ;
set_cursor ( spinner , darea ) ;
}
1998-03-17 03:16:11 +00:00
else
gtk_widget_destroy ( window ) ;
}
1998-01-03 23:28:28 +00:00
/*
* GtkList
*/
1998-07-26 14:45:40 +00:00
1998-02-19 05:13:46 +00:00
static void
1997-11-24 22:37:52 +00:00
list_add ( GtkWidget * widget ,
GtkWidget * list )
{
static int i = 1 ;
gchar buffer [ 64 ] ;
GtkWidget * list_item ;
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
GtkContainer * container ;
container = GTK_CONTAINER ( list ) ;
1997-11-24 22:37:52 +00:00
sprintf ( buffer , " added item %d " , i + + ) ;
list_item = gtk_list_item_new_with_label ( buffer ) ;
gtk_widget_show ( list_item ) ;
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
gtk_container_add ( container , list_item ) ;
1997-11-24 22:37:52 +00:00
}
1998-02-19 05:13:46 +00:00
static void
1997-11-24 22:37:52 +00:00
list_remove ( GtkWidget * widget ,
1999-02-11 23:47:48 +00:00
GtkList * list )
1997-11-24 22:37:52 +00:00
{
1999-02-11 23:47:48 +00:00
GList * clear_list = NULL ;
GList * sel_row = NULL ;
GList * work = NULL ;
1997-11-24 22:37:52 +00:00
1999-02-11 23:47:48 +00:00
if ( list - > selection_mode = = GTK_SELECTION_EXTENDED )
1997-11-24 22:37:52 +00:00
{
1999-02-11 23:47:48 +00:00
GtkWidget * item ;
item = GTK_CONTAINER ( list ) - > focus_child ;
if ( ! item & & list - > selection )
item = list - > selection - > data ;
if ( item )
{
work = g_list_find ( list - > children , item ) ;
for ( sel_row = work ; sel_row ; sel_row = sel_row - > next )
if ( GTK_WIDGET ( sel_row - > data ) - > state ! = GTK_STATE_SELECTED )
break ;
if ( ! sel_row )
{
for ( sel_row = work ; sel_row ; sel_row = sel_row - > prev )
if ( GTK_WIDGET ( sel_row - > data ) - > state ! = GTK_STATE_SELECTED )
break ;
}
}
1997-11-24 22:37:52 +00:00
}
1999-02-11 23:47:48 +00:00
for ( work = list - > selection ; work ; work = work - > next )
clear_list = g_list_prepend ( clear_list , work - > data ) ;
1997-11-24 22:37:52 +00:00
1999-02-11 23:47:48 +00:00
clear_list = g_list_reverse ( clear_list ) ;
1997-11-24 22:37:52 +00:00
gtk_list_remove_items ( GTK_LIST ( list ) , clear_list ) ;
g_list_free ( clear_list ) ;
1999-02-11 23:47:48 +00:00
if ( list - > selection_mode = = GTK_SELECTION_EXTENDED & & sel_row )
gtk_list_select_child ( list , GTK_WIDGET ( sel_row - > data ) ) ;
1997-11-24 22:37:52 +00:00
}
1998-02-28 20:19:20 +00:00
static void
list_clear ( GtkWidget * widget ,
GtkWidget * list )
{
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
gtk_list_clear_items ( GTK_LIST ( list ) , 0 , - 1 ) ;
}
# define RADIOMENUTOGGLED(_rmi_, __i) { \
GSList * __g ; \
__i = 0 ; \
__g = gtk_radio_menu_item_group ( _rmi_ ) ; \
while ( __g & & ! ( ( GtkCheckMenuItem * ) ( __g - > data ) ) - > active ) { \
__g = __g - > next ; \
__i + + ; \
} \
}
static GtkWidget * list_omenu ;
static void
list_toggle_sel_mode ( GtkWidget * widget , GtkList * list )
{
gint i ;
if ( ! GTK_WIDGET_MAPPED ( widget ) )
return ;
RADIOMENUTOGGLED ( ( GtkRadioMenuItem * )
( ( ( GtkOptionMenu * ) list_omenu ) - > menu_item ) , i ) ;
gtk_list_set_selection_mode ( list , ( GtkSelectionMode ) ( 3 - i ) ) ;
1998-02-28 20:19:20 +00:00
}
1998-02-19 05:13:46 +00:00
static void
1998-05-03 22:41:32 +00:00
create_list ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
1999-02-11 23:47:48 +00:00
static OptionMenuItem items [ ] =
{
{ " Single " , list_toggle_sel_mode } ,
{ " Browse " , list_toggle_sel_mode } ,
{ " Multiple " , list_toggle_sel_mode } ,
{ " Extended " , list_toggle_sel_mode }
} ;
1997-11-24 22:37:52 +00:00
if ( ! window )
{
1999-02-11 23:47:48 +00:00
GtkWidget * cbox ;
GtkWidget * vbox ;
GtkWidget * hbox ;
GtkWidget * label ;
GtkWidget * scrolled_win ;
GtkWidget * list ;
GtkWidget * button ;
GtkWidget * separator ;
FILE * infile ;
1997-11-24 22:37:52 +00:00
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " list " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
1999-02-11 23:47:48 +00:00
vbox = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , vbox ) ;
1997-11-24 22:37:52 +00:00
scrolled_win = gtk_scrolled_window_new ( NULL , NULL ) ;
1999-02-11 23:47:48 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( scrolled_win ) , 5 ) ;
gtk_widget_set_usize ( scrolled_win , - 1 , 300 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , scrolled_win , TRUE , TRUE , 0 ) ;
1997-11-24 22:37:52 +00:00
gtk_scrolled_window_set_policy ( GTK_SCROLLED_WINDOW ( scrolled_win ) ,
1998-11-05 15:44:22 +00:00
GTK_POLICY_AUTOMATIC ,
1997-11-24 22:37:52 +00:00
GTK_POLICY_AUTOMATIC ) ;
list = gtk_list_new ( ) ;
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
gtk_list_set_selection_mode ( GTK_LIST ( list ) , GTK_SELECTION_EXTENDED ) ;
1999-02-11 23:47:48 +00:00
gtk_scrolled_window_add_with_viewport
( GTK_SCROLLED_WINDOW ( scrolled_win ) , list ) ;
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
gtk_container_set_focus_vadjustment
( GTK_CONTAINER ( list ) ,
gtk_scrolled_window_get_vadjustment
( GTK_SCROLLED_WINDOW ( scrolled_win ) ) ) ;
gtk_container_set_focus_hadjustment
( GTK_CONTAINER ( list ) ,
gtk_scrolled_window_get_hadjustment
( GTK_SCROLLED_WINDOW ( scrolled_win ) ) ) ;
if ( ( infile = fopen ( " gtkenums.h " , " r " ) ) )
1997-11-24 22:37:52 +00:00
{
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
char buffer [ 256 ] ;
char * pos ;
GtkWidget * item ;
while ( fgets ( buffer , 256 , infile ) )
{
if ( ( pos = strchr ( buffer , ' \n ' ) ) )
* pos = 0 ;
item = gtk_list_item_new_with_label ( buffer ) ;
gtk_container_add ( GTK_CONTAINER ( list ) , item ) ;
}
fclose ( infile ) ;
1997-11-24 22:37:52 +00:00
}
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
1999-02-11 23:47:48 +00:00
hbox = gtk_hbox_new ( TRUE , 5 ) ;
gtk_container_set_border_width ( GTK_CONTAINER ( hbox ) , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , TRUE , 0 ) ;
1997-11-24 22:37:52 +00:00
1999-02-11 23:47:48 +00:00
button = gtk_button_new_with_label ( " Insert Row " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-02-28 20:19:20 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1999-02-11 23:47:48 +00:00
GTK_SIGNAL_FUNC ( list_add ) ,
1998-02-28 20:19:20 +00:00
list ) ;
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
button = gtk_button_new_with_label ( " Clear List " ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( list_clear ) ,
list ) ;
1999-02-11 23:47:48 +00:00
button = gtk_button_new_with_label ( " Remove Selection " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1999-02-11 23:47:48 +00:00
GTK_SIGNAL_FUNC ( list_remove ) ,
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
list ) ;
1999-02-11 23:47:48 +00:00
cbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , cbox , FALSE , TRUE , 0 ) ;
hbox = gtk_hbox_new ( FALSE , 5 ) ;
gtk_container_set_border_width ( GTK_CONTAINER ( hbox ) , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( cbox ) , hbox , TRUE , FALSE , 0 ) ;
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
label = gtk_label_new ( " Selection Mode : " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , TRUE , 0 ) ;
1997-11-24 22:37:52 +00:00
1999-02-11 23:47:48 +00:00
list_omenu = build_option_menu ( items , 4 , 3 , list ) ;
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , list_omenu , FALSE , TRUE , 0 ) ;
1997-11-24 22:37:52 +00:00
separator = gtk_hseparator_new ( ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , separator , FALSE , TRUE , 0 ) ;
1997-11-24 22:37:52 +00:00
1999-02-11 23:47:48 +00:00
cbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , cbox , FALSE , TRUE , 0 ) ;
1997-11-24 22:37:52 +00:00
button = gtk_button_new_with_label ( " close " ) ;
1999-02-11 23:47:48 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( button ) , 10 ) ;
gtk_box_pack_start ( GTK_BOX ( cbox ) , button , TRUE , TRUE , 0 ) ;
1997-11-24 22:37:52 +00:00
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
1997-11-24 22:37:52 +00:00
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
gtk_widget_show_all ( window ) ;
1997-11-24 22:37:52 +00:00
else
gtk_widget_destroy ( window ) ;
}
1998-01-03 23:28:28 +00:00
/*
* GtkCList
*/
1998-07-15 23:40:00 +00:00
1998-07-19 22:42:21 +00:00
static char * book_open_xpm [ ] = {
" 16 16 4 1 " ,
" c None s None " ,
" . c black " ,
" X c #808080 " ,
" o c white " ,
" " ,
" .. " ,
" .Xo. ... " ,
" .Xoo. ..oo. " ,
" .Xooo.Xooo... " ,
" .Xooo.oooo.X. " ,
" .Xooo.Xooo.X. " ,
" .Xooo.oooo.X. " ,
" .Xooo.Xooo.X. " ,
" .Xooo.oooo.X. " ,
" .Xoo.Xoo..X. " ,
" .Xo.o..ooX. " ,
" .X..XXXXX. " ,
" ..X....... " ,
" .. " ,
" " } ;
static char * book_closed_xpm [ ] = {
" 16 16 6 1 " ,
" c None s None " ,
" . c black " ,
" X c red " ,
" o c yellow " ,
" O c #808080 " ,
" # c white " ,
" " ,
" .. " ,
" ..XX. " ,
" ..XXXXX. " ,
" ..XXXXXXXX. " ,
" .ooXXXXXXXXX. " ,
" ..ooXXXXXXXXX. " ,
" .X.ooXXXXXXXXX. " ,
" .XX.ooXXXXXX.. " ,
" .XX.ooXXX..#O " ,
" .XX.oo..##OO. " ,
" .XX..##OO.. " ,
" .X.#OO.. " ,
" ..O.. " ,
" .. " ,
" " } ;
static char * mini_page_xpm [ ] = {
" 16 16 4 1 " ,
" c None s None " ,
" . c black " ,
" X c white " ,
" o c #808080 " ,
" " ,
" ....... " ,
" .XXXXX.. " ,
" .XoooX.X. " ,
" .XXXXX.... " ,
" .XooooXoo.o " ,
" .XXXXXXXX.o " ,
" .XooooooX.o " ,
" .XXXXXXXX.o " ,
" .XooooooX.o " ,
" .XXXXXXXX.o " ,
" .XooooooX.o " ,
" .XXXXXXXX.o " ,
" ..........o " ,
" oooooooooo " ,
" " } ;
1998-10-16 15:00:05 +00:00
static char * gtk_mini_xpm [ ] = {
" 15 20 17 1 " ,
" c None " ,
" . c #14121F " ,
" + c #278828 " ,
" @ c #9B3334 " ,
" # c #284C72 " ,
" $ c #24692A " ,
" % c #69282E " ,
" & c #37C539 " ,
" * c #1D2F4D " ,
" = c #6D7076 " ,
" - c #7D8482 " ,
" ; c #E24A49 " ,
" > c #515357 " ,
" , c #9B9C9B " ,
" ' c #2FA232 " ,
" ) c #3CE23D " ,
" ! c #3B6CCB " ,
" " ,
" ***> " ,
" >.*!!!* " ,
" ***....#*= " ,
" *!*.!!!**!!# " ,
" .!!#*!#*!!!!# " ,
" @%#!.##.*!!$& " ,
" @;%*!*.#!#')) " ,
" @;;@%!!*$&)'' " ,
" @%.%@%$'&)$+' " ,
" @;...@$'*'*)+ " ,
" @;%..@$+*.')$ " ,
" @;%%;;$+..$)# " ,
" @;%%;@$$$'.$# " ,
" %;@@;;$$+))&* " ,
" %;;;@+$&)&* " ,
" %;;@'))+> " ,
" %;@'&# " ,
" >%$$ " ,
" >= " } ;
1999-02-10 23:15:26 +00:00
# define TESTGTK_CLIST_COLUMNS 12
1998-01-03 23:28:28 +00:00
static gint clist_rows = 0 ;
1998-07-15 23:40:00 +00:00
static GtkWidget * clist_omenu ;
1998-01-03 23:28:28 +00:00
1998-02-19 05:13:46 +00:00
static void
1998-01-03 23:28:28 +00:00
add1000_clist ( GtkWidget * widget , gpointer data )
{
1998-02-08 07:55:11 +00:00
gint i , row ;
1998-01-03 23:28:28 +00:00
char text [ TESTGTK_CLIST_COLUMNS ] [ 50 ] ;
char * texts [ TESTGTK_CLIST_COLUMNS ] ;
1998-02-08 07:55:11 +00:00
GdkBitmap * mask ;
GdkPixmap * pixmap ;
1998-10-16 15:00:05 +00:00
GtkCList * clist ;
clist = GTK_CLIST ( data ) ;
pixmap = gdk_pixmap_create_from_xpm_d ( clist - > clist_window ,
1998-07-19 22:42:21 +00:00
& mask ,
& GTK_WIDGET ( data ) - > style - > white ,
1998-10-16 15:00:05 +00:00
gtk_mini_xpm ) ;
1998-01-03 23:28:28 +00:00
for ( i = 0 ; i < TESTGTK_CLIST_COLUMNS ; i + + )
{
texts [ i ] = text [ i ] ;
sprintf ( text [ i ] , " Column %d " , i ) ;
}
1998-02-08 07:55:11 +00:00
texts [ 3 ] = NULL ;
1998-01-03 23:28:28 +00:00
sprintf ( text [ 1 ] , " Right " ) ;
sprintf ( text [ 2 ] , " Center " ) ;
gtk_clist_freeze ( GTK_CLIST ( data ) ) ;
for ( i = 0 ; i < 1000 ; i + + )
{
1998-10-19 22:46:38 +00:00
sprintf ( text [ 0 ] , " CListRow %d " , rand ( ) % 10000 ) ;
1998-10-16 15:00:05 +00:00
row = gtk_clist_append ( clist , texts ) ;
gtk_clist_set_pixtext ( clist , row , 3 , " gtk+ " , 5 , pixmap , mask ) ;
1998-01-03 23:28:28 +00:00
}
1998-08-05 20:02:32 +00:00
1998-01-03 23:28:28 +00:00
gtk_clist_thaw ( GTK_CLIST ( data ) ) ;
1998-02-08 07:55:11 +00:00
gdk_pixmap_unref ( pixmap ) ;
gdk_bitmap_unref ( mask ) ;
1998-01-03 23:28:28 +00:00
}
1998-02-19 05:13:46 +00:00
static void
1998-01-03 23:28:28 +00:00
add10000_clist ( GtkWidget * widget , gpointer data )
{
gint i ;
char text [ TESTGTK_CLIST_COLUMNS ] [ 50 ] ;
char * texts [ TESTGTK_CLIST_COLUMNS ] ;
for ( i = 0 ; i < TESTGTK_CLIST_COLUMNS ; i + + )
{
texts [ i ] = text [ i ] ;
sprintf ( text [ i ] , " Column %d " , i ) ;
}
sprintf ( text [ 1 ] , " Right " ) ;
sprintf ( text [ 2 ] , " Center " ) ;
gtk_clist_freeze ( GTK_CLIST ( data ) ) ;
for ( i = 0 ; i < 10000 ; i + + )
{
1998-10-19 22:46:38 +00:00
sprintf ( text [ 0 ] , " CListRow %d " , rand ( ) % 10000 ) ;
1998-01-03 23:28:28 +00:00
gtk_clist_append ( GTK_CLIST ( data ) , texts ) ;
}
gtk_clist_thaw ( GTK_CLIST ( data ) ) ;
}
void
clear_clist ( GtkWidget * widget , gpointer data )
{
gtk_clist_clear ( GTK_CLIST ( data ) ) ;
clist_rows = 0 ;
}
1999-02-10 23:15:26 +00:00
void clist_remove_selection ( GtkWidget * widget , GtkCList * clist )
1998-01-03 23:28:28 +00:00
{
1999-02-10 23:15:26 +00:00
gtk_clist_freeze ( clist ) ;
1998-01-03 23:28:28 +00:00
1999-02-10 23:15:26 +00:00
while ( clist - > selection )
1998-02-08 07:55:11 +00:00
{
1999-02-10 23:15:26 +00:00
gint row ;
1998-02-08 07:55:11 +00:00
1999-02-10 23:15:26 +00:00
clist_rows - - ;
row = GPOINTER_TO_INT ( clist - > selection - > data ) ;
1998-02-08 07:55:11 +00:00
1999-02-10 23:15:26 +00:00
gtk_clist_remove ( clist , row ) ;
1998-02-08 07:55:11 +00:00
1999-02-10 23:15:26 +00:00
if ( clist - > selection_mode = = GTK_SELECTION_BROWSE )
break ;
1998-02-08 07:55:11 +00:00
}
1999-02-10 23:15:26 +00:00
if ( clist - > selection_mode = = GTK_SELECTION_EXTENDED & & ! clist - > selection & &
clist - > focus_row > = 0 )
gtk_clist_select_row ( clist , clist - > focus_row , - 1 ) ;
1998-03-08 20:44:01 +00:00
1999-02-10 23:15:26 +00:00
gtk_clist_thaw ( clist ) ;
1998-01-03 23:28:28 +00:00
}
1999-02-10 23:15:26 +00:00
void toggle_title_buttons ( GtkWidget * widget , GtkCList * clist )
1998-01-13 15:14:54 +00:00
{
1999-02-10 23:15:26 +00:00
if ( GTK_TOGGLE_BUTTON ( widget ) - > active )
gtk_clist_column_titles_show ( clist ) ;
else
gtk_clist_column_titles_hide ( clist ) ;
}
1998-03-08 20:44:01 +00:00
1999-02-10 23:15:26 +00:00
void toggle_reorderable ( GtkWidget * widget , GtkCList * clist )
{
gtk_clist_set_reorderable ( clist , GTK_TOGGLE_BUTTON ( widget ) - > active ) ;
1998-03-08 20:44:01 +00:00
}
1998-03-23 03:31:11 +00:00
static void
1998-03-08 20:44:01 +00:00
insert_row_clist ( GtkWidget * widget , gpointer data )
{
static char * text [ ] =
{
1999-02-10 23:15:26 +00:00
" This " , " is an " , " inserted " , " row. " ,
" This " , " is an " , " inserted " , " row. " ,
" This " , " is an " , " inserted " , " row. "
1998-03-08 20:44:01 +00:00
} ;
1998-10-16 15:00:05 +00:00
static GtkStyle * style1 = NULL ;
static GtkStyle * style2 = NULL ;
static GtkStyle * style3 = NULL ;
gint row ;
1998-08-05 20:02:32 +00:00
if ( GTK_CLIST ( data ) - > focus_row > = 0 )
1998-10-16 15:00:05 +00:00
row = gtk_clist_insert ( GTK_CLIST ( data ) , GTK_CLIST ( data ) - > focus_row ,
text ) ;
1998-08-05 20:02:32 +00:00
else
1998-10-16 15:00:05 +00:00
row = gtk_clist_prepend ( GTK_CLIST ( data ) , text ) ;
if ( ! style1 )
{
GdkColor col1 ;
GdkColor col2 ;
col1 . red = 0 ;
col1 . green = 56000 ;
col1 . blue = 0 ;
col2 . red = 32000 ;
col2 . green = 0 ;
col2 . blue = 56000 ;
style1 = gtk_style_copy ( GTK_WIDGET ( data ) - > style ) ;
1998-12-16 00:52:46 +00:00
style1 - > base [ GTK_STATE_NORMAL ] = col1 ;
style1 - > base [ GTK_STATE_SELECTED ] = col2 ;
1998-10-16 15:00:05 +00:00
style2 = gtk_style_copy ( GTK_WIDGET ( data ) - > style ) ;
1998-12-16 00:52:46 +00:00
style2 - > fg [ GTK_STATE_NORMAL ] = col1 ;
1998-10-16 15:00:05 +00:00
style2 - > fg [ GTK_STATE_SELECTED ] = col2 ;
style3 = gtk_style_copy ( GTK_WIDGET ( data ) - > style ) ;
1998-12-16 00:52:46 +00:00
style3 - > fg [ GTK_STATE_NORMAL ] = col1 ;
style3 - > base [ GTK_STATE_NORMAL ] = col2 ;
1998-10-16 15:00:05 +00:00
gdk_font_unref ( style3 - > font ) ;
style3 - > font =
gdk_font_load ( " -*-courier-medium-*-*-*-*-120-*-*-*-*-*-* " ) ;
}
gtk_clist_set_cell_style ( GTK_CLIST ( data ) , row , 3 , style1 ) ;
gtk_clist_set_cell_style ( GTK_CLIST ( data ) , row , 4 , style2 ) ;
gtk_clist_set_cell_style ( GTK_CLIST ( data ) , row , 0 , style3 ) ;
1998-07-15 23:40:00 +00:00
1998-03-08 20:44:01 +00:00
clist_rows + + ;
1998-01-13 15:14:54 +00:00
}
1998-03-23 03:31:11 +00:00
static void
clist_warning_test ( GtkWidget * button ,
GtkWidget * clist )
{
GtkWidget * child ;
static gboolean add_remove = FALSE ;
add_remove = ! add_remove ;
1998-04-09 19:12:12 +00:00
1998-03-23 03:31:11 +00:00
child = gtk_label_new ( " Test " ) ;
1998-04-09 19:12:12 +00:00
gtk_widget_ref ( child ) ;
1998-04-10 00:44:35 +00:00
gtk_object_sink ( GTK_OBJECT ( child ) ) ;
1998-04-09 19:12:12 +00:00
1998-03-23 03:31:11 +00:00
if ( add_remove )
gtk_container_add ( GTK_CONTAINER ( clist ) , child ) ;
else
{
child - > parent = clist ;
gtk_container_remove ( GTK_CONTAINER ( clist ) , child ) ;
child - > parent = NULL ;
}
1998-04-09 19:12:12 +00:00
1998-03-23 03:31:11 +00:00
gtk_widget_destroy ( child ) ;
1998-04-09 19:12:12 +00:00
gtk_widget_unref ( child ) ;
1998-03-23 03:31:11 +00:00
}
1998-07-15 23:40:00 +00:00
static void
undo_selection ( GtkWidget * button , GtkCList * clist )
{
gtk_clist_undo_selection ( clist ) ;
}
static void
clist_toggle_sel_mode ( GtkWidget * widget , GtkCList * clist )
{
gint i ;
if ( ! GTK_WIDGET_MAPPED ( widget ) )
return ;
RADIOMENUTOGGLED ( ( GtkRadioMenuItem * )
( ( ( GtkOptionMenu * ) clist_omenu ) - > menu_item ) , i ) ;
gtk_clist_set_selection_mode ( clist , ( GtkSelectionMode ) ( 3 - i ) ) ;
}
1998-08-05 20:02:32 +00:00
static void
clist_click_column ( GtkCList * clist , gint column , gpointer data )
{
1998-10-19 22:46:38 +00:00
if ( column = = 4 )
1998-10-16 15:00:05 +00:00
gtk_clist_set_column_visibility ( clist , column , FALSE ) ;
else if ( column = = clist - > sort_column )
1998-08-05 20:02:32 +00:00
{
if ( clist - > sort_type = = GTK_SORT_ASCENDING )
clist - > sort_type = GTK_SORT_DESCENDING ;
else
clist - > sort_type = GTK_SORT_ASCENDING ;
}
else
gtk_clist_set_sort_column ( clist , column ) ;
gtk_clist_sort ( clist ) ;
}
1998-03-23 03:31:11 +00:00
static void
1998-05-03 22:41:32 +00:00
create_clist ( void )
1998-01-03 03:31:03 +00:00
{
gint i ;
static GtkWidget * window = NULL ;
static char * titles [ ] =
{
1998-10-19 22:46:38 +00:00
" auto resize " , " not resizeable " , " max width 100 " , " min width 50 " ,
" hide column " , " Title 5 " , " Title 6 " , " Title 7 " ,
1999-02-10 23:15:26 +00:00
" Title 8 " , " Title 9 " , " Title 10 " , " Title 11 "
1998-07-26 14:45:40 +00:00
} ;
static OptionMenuItem items [ ] =
{
{ " Single " , clist_toggle_sel_mode } ,
{ " Browse " , clist_toggle_sel_mode } ,
{ " Multiple " , clist_toggle_sel_mode } ,
{ " Extended " , clist_toggle_sel_mode }
1998-01-03 03:31:03 +00:00
} ;
1998-01-03 23:28:28 +00:00
char text [ TESTGTK_CLIST_COLUMNS ] [ 50 ] ;
char * texts [ TESTGTK_CLIST_COLUMNS ] ;
1998-01-03 03:31:03 +00:00
1999-02-11 23:47:48 +00:00
GtkWidget * vbox ;
GtkWidget * hbox ;
1998-01-03 03:31:03 +00:00
GtkWidget * clist ;
GtkWidget * button ;
GtkWidget * separator ;
1998-11-05 15:44:22 +00:00
GtkWidget * scrolled_win ;
removed clist flag : GTK_CLIST_DRAG_SELECTION added flags :
Tue Dec 15 22:30:44 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.h :
removed clist flag : GTK_CLIST_DRAG_SELECTION
added flags : GTK_CLIST_REORDERABLE, GTK_CLIST_USE_DRAG_ICONS,
GTK_CLIST_DRAW_DRAG_LINE, GTK_CLIST_DRAW_DRAG_RECT
(GtkCListDragPos) : new enum for DND
(GtkButtonAction) : new enum of possible mouse button actions
(struct _GtkCList): added button_actions array.
Added drag_button and click_cell struct, to store cell and
mouse button of last button_press_event
(struct _GtkCListClass): new class method draw_drag_highlight.
(gtk_clist_set_reorderable) (gtk_clist_set_use_drag_icons) :
new functions. Moved from gtkctree.h. Now clist is reorderable
as well.
(gtk_clist_set_button_actions) new function to customize mouse
button actions.
* gtk/gtkclist.c:
(gtk_clist_drag_begin)
(gtk_clist_drag_motion)
(gtk_clist_drag_leave)
(gtk_clist_drag_end)
(gtk_clist_drag_drop)
(gtk_clist_drag_data_get)
(gtk_clist_drag_data_received) : new dnd widget methods to
implement clists reorderability via DND
(remove_grab) : new function. remove mouse grab if necessary.
(draw_drag_highlight) : new method. Draw dnd highlight depending
on clist flags GTK_CLIST_DRAW_DRAG_LINE and GTK_CLIST_DRAW_DRAG_RECT
(gtk_clist_class_init): added object args "reorderable" and
"use_drag_icons"
(gtk_clist_button_press) (gtk_clist_button_release) :
use button_actions array to decide which action to perform.
(gtk_clist_motion) : start reorder operation if necessary.
* gtk/gtkctree.h :
(struct _GtkCTree): removed drag_icon, icon_widht, icon_height,
drag_row, drag_source, drag_target, reorderable, use_icons,
in_drag, drag_rect
(gtk_ctree_set_reorderable) : deprecated function.
use gtk_clist_set_reorderable instead.
(gtk_ctree_set_use_drag_icons) : deprecated function.
use gtk_clist_set_use_drag_icons instead.
* gtk/gtkctree.c :
(gtk_ctree_class_init): removed object args "reorderable" and
and "use_drag_icons"
(draw_xor_line) (draw_xor_rect) (create_drag_icon) (check_cursor)
(tree_toggle_selection) (set_mouse_cursor) : removed
(draw_drag_highlight) : new clist method. replacement for
draw_xor_line and draw_xor_rect functions
(check_drag) renamed check_cursor function
(gtk_ctree_drag_begin)
(gtk_ctree_drag_motion)
(gtk_ctree_drag_data_received) : new dnd methods to implement ctrees
reorderability via DND
(gtk_ctree_button_release)
(gtk_ctree_button_motion) : removed.
* gtk/testgtk.c:
(create_clist) : added new reorderable toggle button
1998-12-16 01:28:31 +00:00
GtkWidget * check ;
1998-01-03 03:31:03 +00:00
1998-07-15 23:40:00 +00:00
GtkWidget * undo_button ;
GtkWidget * label ;
1998-01-03 03:31:03 +00:00
1998-10-16 15:00:05 +00:00
GtkStyle * style ;
GdkColor col1 ;
GdkColor col2 ;
1998-01-03 03:31:03 +00:00
if ( ! window )
{
1998-07-15 23:40:00 +00:00
clist_rows = 0 ;
1998-01-03 03:31:03 +00:00
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-10-16 15:00:05 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) , & window ) ;
1998-01-03 03:31:03 +00:00
gtk_window_set_title ( GTK_WINDOW ( window ) , " clist " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1998-01-03 03:31:03 +00:00
1999-02-11 23:47:48 +00:00
vbox = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , vbox ) ;
1998-01-03 03:31:03 +00:00
1998-11-05 15:44:22 +00:00
scrolled_win = gtk_scrolled_window_new ( NULL , NULL ) ;
1999-02-10 23:15:26 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( scrolled_win ) , 5 ) ;
1998-11-05 15:44:22 +00:00
gtk_scrolled_window_set_policy ( GTK_SCROLLED_WINDOW ( scrolled_win ) ,
GTK_POLICY_AUTOMATIC ,
GTK_POLICY_AUTOMATIC ) ;
1998-01-03 23:28:28 +00:00
1999-02-10 23:15:26 +00:00
/* create GtkCList here so we have a pointer to throw at the
* button callbacks - - more is done with it later */
clist = gtk_clist_new_with_titles ( TESTGTK_CLIST_COLUMNS , titles ) ;
gtk_container_add ( GTK_CONTAINER ( scrolled_win ) , clist ) ;
1998-08-05 20:02:32 +00:00
gtk_signal_connect ( GTK_OBJECT ( clist ) , " click_column " ,
1998-10-16 15:00:05 +00:00
( GtkSignalFunc ) clist_click_column , NULL ) ;
1998-08-05 20:02:32 +00:00
1998-01-19 09:59:20 +00:00
/* control buttons */
1999-02-11 23:47:48 +00:00
hbox = gtk_hbox_new ( FALSE , 5 ) ;
gtk_container_set_border_width ( GTK_CONTAINER ( hbox ) , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , FALSE , 0 ) ;
1998-01-03 23:28:28 +00:00
1999-02-10 23:15:26 +00:00
button = gtk_button_new_with_label ( " Insert Row " ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-10-16 15:00:05 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1999-02-10 23:15:26 +00:00
( GtkSignalFunc ) insert_row_clist , ( gpointer ) clist ) ;
1998-01-03 23:28:28 +00:00
1999-02-10 23:15:26 +00:00
button = gtk_button_new_with_label ( " Add 1,000 Rows With Pixmaps " ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-10-16 15:00:05 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1999-02-10 23:15:26 +00:00
( GtkSignalFunc ) add1000_clist , ( gpointer ) clist ) ;
1998-01-03 23:28:28 +00:00
1999-02-10 23:15:26 +00:00
button = gtk_button_new_with_label ( " Add 10,000 Rows " ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-10-16 15:00:05 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1999-02-10 23:15:26 +00:00
( GtkSignalFunc ) add10000_clist , ( gpointer ) clist ) ;
1998-01-03 23:28:28 +00:00
1998-01-19 09:59:20 +00:00
/* second layer of buttons */
1999-02-11 23:47:48 +00:00
hbox = gtk_hbox_new ( FALSE , 5 ) ;
gtk_container_set_border_width ( GTK_CONTAINER ( hbox ) , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , FALSE , 0 ) ;
1998-01-19 09:59:20 +00:00
1999-02-10 23:15:26 +00:00
button = gtk_button_new_with_label ( " Clear List " ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-10-16 15:00:05 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1999-02-10 23:15:26 +00:00
( GtkSignalFunc ) clear_clist , ( gpointer ) clist ) ;
1998-03-08 20:44:01 +00:00
1999-02-10 23:15:26 +00:00
button = gtk_button_new_with_label ( " Remove Selection " ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-10-16 15:00:05 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1999-02-10 23:15:26 +00:00
( GtkSignalFunc ) clist_remove_selection ,
( gpointer ) clist ) ;
1998-01-19 09:59:20 +00:00
1999-02-10 23:15:26 +00:00
undo_button = gtk_button_new_with_label ( " Undo Selection " ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , undo_button , TRUE , TRUE , 0 ) ;
1999-02-10 23:15:26 +00:00
gtk_signal_connect ( GTK_OBJECT ( undo_button ) , " clicked " ,
( GtkSignalFunc ) undo_selection , ( gpointer ) clist ) ;
1998-01-19 09:59:20 +00:00
1998-03-23 03:31:11 +00:00
button = gtk_button_new_with_label ( " Warning Test " ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-10-16 15:00:05 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
( GtkSignalFunc ) clist_warning_test , ( gpointer ) clist ) ;
1998-03-23 03:31:11 +00:00
1999-02-10 23:15:26 +00:00
/* third layer of buttons */
1999-02-11 23:47:48 +00:00
hbox = gtk_hbox_new ( FALSE , 5 ) ;
gtk_container_set_border_width ( GTK_CONTAINER ( hbox ) , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , FALSE , 0 ) ;
1998-07-15 23:40:00 +00:00
1999-02-10 23:15:26 +00:00
check = gtk_check_button_new_with_label ( " Show Title Buttons " ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , check , FALSE , TRUE , 0 ) ;
1999-02-10 23:15:26 +00:00
gtk_signal_connect ( GTK_OBJECT ( check ) , " clicked " ,
GTK_SIGNAL_FUNC ( toggle_title_buttons ) , clist ) ;
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( check ) , TRUE ) ;
1998-07-15 23:40:00 +00:00
removed clist flag : GTK_CLIST_DRAG_SELECTION added flags :
Tue Dec 15 22:30:44 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.h :
removed clist flag : GTK_CLIST_DRAG_SELECTION
added flags : GTK_CLIST_REORDERABLE, GTK_CLIST_USE_DRAG_ICONS,
GTK_CLIST_DRAW_DRAG_LINE, GTK_CLIST_DRAW_DRAG_RECT
(GtkCListDragPos) : new enum for DND
(GtkButtonAction) : new enum of possible mouse button actions
(struct _GtkCList): added button_actions array.
Added drag_button and click_cell struct, to store cell and
mouse button of last button_press_event
(struct _GtkCListClass): new class method draw_drag_highlight.
(gtk_clist_set_reorderable) (gtk_clist_set_use_drag_icons) :
new functions. Moved from gtkctree.h. Now clist is reorderable
as well.
(gtk_clist_set_button_actions) new function to customize mouse
button actions.
* gtk/gtkclist.c:
(gtk_clist_drag_begin)
(gtk_clist_drag_motion)
(gtk_clist_drag_leave)
(gtk_clist_drag_end)
(gtk_clist_drag_drop)
(gtk_clist_drag_data_get)
(gtk_clist_drag_data_received) : new dnd widget methods to
implement clists reorderability via DND
(remove_grab) : new function. remove mouse grab if necessary.
(draw_drag_highlight) : new method. Draw dnd highlight depending
on clist flags GTK_CLIST_DRAW_DRAG_LINE and GTK_CLIST_DRAW_DRAG_RECT
(gtk_clist_class_init): added object args "reorderable" and
"use_drag_icons"
(gtk_clist_button_press) (gtk_clist_button_release) :
use button_actions array to decide which action to perform.
(gtk_clist_motion) : start reorder operation if necessary.
* gtk/gtkctree.h :
(struct _GtkCTree): removed drag_icon, icon_widht, icon_height,
drag_row, drag_source, drag_target, reorderable, use_icons,
in_drag, drag_rect
(gtk_ctree_set_reorderable) : deprecated function.
use gtk_clist_set_reorderable instead.
(gtk_ctree_set_use_drag_icons) : deprecated function.
use gtk_clist_set_use_drag_icons instead.
* gtk/gtkctree.c :
(gtk_ctree_class_init): removed object args "reorderable" and
and "use_drag_icons"
(draw_xor_line) (draw_xor_rect) (create_drag_icon) (check_cursor)
(tree_toggle_selection) (set_mouse_cursor) : removed
(draw_drag_highlight) : new clist method. replacement for
draw_xor_line and draw_xor_rect functions
(check_drag) renamed check_cursor function
(gtk_ctree_drag_begin)
(gtk_ctree_drag_motion)
(gtk_ctree_drag_data_received) : new dnd methods to implement ctrees
reorderability via DND
(gtk_ctree_button_release)
(gtk_ctree_button_motion) : removed.
* gtk/testgtk.c:
(create_clist) : added new reorderable toggle button
1998-12-16 01:28:31 +00:00
check = gtk_check_button_new_with_label ( " Reorderable " ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , check , FALSE , TRUE , 0 ) ;
removed clist flag : GTK_CLIST_DRAG_SELECTION added flags :
Tue Dec 15 22:30:44 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.h :
removed clist flag : GTK_CLIST_DRAG_SELECTION
added flags : GTK_CLIST_REORDERABLE, GTK_CLIST_USE_DRAG_ICONS,
GTK_CLIST_DRAW_DRAG_LINE, GTK_CLIST_DRAW_DRAG_RECT
(GtkCListDragPos) : new enum for DND
(GtkButtonAction) : new enum of possible mouse button actions
(struct _GtkCList): added button_actions array.
Added drag_button and click_cell struct, to store cell and
mouse button of last button_press_event
(struct _GtkCListClass): new class method draw_drag_highlight.
(gtk_clist_set_reorderable) (gtk_clist_set_use_drag_icons) :
new functions. Moved from gtkctree.h. Now clist is reorderable
as well.
(gtk_clist_set_button_actions) new function to customize mouse
button actions.
* gtk/gtkclist.c:
(gtk_clist_drag_begin)
(gtk_clist_drag_motion)
(gtk_clist_drag_leave)
(gtk_clist_drag_end)
(gtk_clist_drag_drop)
(gtk_clist_drag_data_get)
(gtk_clist_drag_data_received) : new dnd widget methods to
implement clists reorderability via DND
(remove_grab) : new function. remove mouse grab if necessary.
(draw_drag_highlight) : new method. Draw dnd highlight depending
on clist flags GTK_CLIST_DRAW_DRAG_LINE and GTK_CLIST_DRAW_DRAG_RECT
(gtk_clist_class_init): added object args "reorderable" and
"use_drag_icons"
(gtk_clist_button_press) (gtk_clist_button_release) :
use button_actions array to decide which action to perform.
(gtk_clist_motion) : start reorder operation if necessary.
* gtk/gtkctree.h :
(struct _GtkCTree): removed drag_icon, icon_widht, icon_height,
drag_row, drag_source, drag_target, reorderable, use_icons,
in_drag, drag_rect
(gtk_ctree_set_reorderable) : deprecated function.
use gtk_clist_set_reorderable instead.
(gtk_ctree_set_use_drag_icons) : deprecated function.
use gtk_clist_set_use_drag_icons instead.
* gtk/gtkctree.c :
(gtk_ctree_class_init): removed object args "reorderable" and
and "use_drag_icons"
(draw_xor_line) (draw_xor_rect) (create_drag_icon) (check_cursor)
(tree_toggle_selection) (set_mouse_cursor) : removed
(draw_drag_highlight) : new clist method. replacement for
draw_xor_line and draw_xor_rect functions
(check_drag) renamed check_cursor function
(gtk_ctree_drag_begin)
(gtk_ctree_drag_motion)
(gtk_ctree_drag_data_received) : new dnd methods to implement ctrees
reorderability via DND
(gtk_ctree_button_release)
(gtk_ctree_button_motion) : removed.
* gtk/testgtk.c:
(create_clist) : added new reorderable toggle button
1998-12-16 01:28:31 +00:00
gtk_signal_connect ( GTK_OBJECT ( check ) , " clicked " ,
GTK_SIGNAL_FUNC ( toggle_reorderable ) , clist ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( check ) , TRUE ) ;
removed clist flag : GTK_CLIST_DRAG_SELECTION added flags :
Tue Dec 15 22:30:44 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.h :
removed clist flag : GTK_CLIST_DRAG_SELECTION
added flags : GTK_CLIST_REORDERABLE, GTK_CLIST_USE_DRAG_ICONS,
GTK_CLIST_DRAW_DRAG_LINE, GTK_CLIST_DRAW_DRAG_RECT
(GtkCListDragPos) : new enum for DND
(GtkButtonAction) : new enum of possible mouse button actions
(struct _GtkCList): added button_actions array.
Added drag_button and click_cell struct, to store cell and
mouse button of last button_press_event
(struct _GtkCListClass): new class method draw_drag_highlight.
(gtk_clist_set_reorderable) (gtk_clist_set_use_drag_icons) :
new functions. Moved from gtkctree.h. Now clist is reorderable
as well.
(gtk_clist_set_button_actions) new function to customize mouse
button actions.
* gtk/gtkclist.c:
(gtk_clist_drag_begin)
(gtk_clist_drag_motion)
(gtk_clist_drag_leave)
(gtk_clist_drag_end)
(gtk_clist_drag_drop)
(gtk_clist_drag_data_get)
(gtk_clist_drag_data_received) : new dnd widget methods to
implement clists reorderability via DND
(remove_grab) : new function. remove mouse grab if necessary.
(draw_drag_highlight) : new method. Draw dnd highlight depending
on clist flags GTK_CLIST_DRAW_DRAG_LINE and GTK_CLIST_DRAW_DRAG_RECT
(gtk_clist_class_init): added object args "reorderable" and
"use_drag_icons"
(gtk_clist_button_press) (gtk_clist_button_release) :
use button_actions array to decide which action to perform.
(gtk_clist_motion) : start reorder operation if necessary.
* gtk/gtkctree.h :
(struct _GtkCTree): removed drag_icon, icon_widht, icon_height,
drag_row, drag_source, drag_target, reorderable, use_icons,
in_drag, drag_rect
(gtk_ctree_set_reorderable) : deprecated function.
use gtk_clist_set_reorderable instead.
(gtk_ctree_set_use_drag_icons) : deprecated function.
use gtk_clist_set_use_drag_icons instead.
* gtk/gtkctree.c :
(gtk_ctree_class_init): removed object args "reorderable" and
and "use_drag_icons"
(draw_xor_line) (draw_xor_rect) (create_drag_icon) (check_cursor)
(tree_toggle_selection) (set_mouse_cursor) : removed
(draw_drag_highlight) : new clist method. replacement for
draw_xor_line and draw_xor_rect functions
(check_drag) renamed check_cursor function
(gtk_ctree_drag_begin)
(gtk_ctree_drag_motion)
(gtk_ctree_drag_data_received) : new dnd methods to implement ctrees
reorderability via DND
(gtk_ctree_button_release)
(gtk_ctree_button_motion) : removed.
* gtk/testgtk.c:
(create_clist) : added new reorderable toggle button
1998-12-16 01:28:31 +00:00
1998-07-15 23:40:00 +00:00
label = gtk_label_new ( " Selection Mode : " ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , TRUE , 0 ) ;
1998-07-15 23:40:00 +00:00
1998-07-26 14:45:40 +00:00
clist_omenu = build_option_menu ( items , 4 , 3 , clist ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , clist_omenu , FALSE , TRUE , 0 ) ;
1998-03-23 03:31:11 +00:00
1998-01-03 23:28:28 +00:00
/*
* the rest of the clist configuration
*/
1998-07-15 23:40:00 +00:00
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , scrolled_win , TRUE , TRUE , 0 ) ;
1998-07-15 23:40:00 +00:00
gtk_clist_set_row_height ( GTK_CLIST ( clist ) , 18 ) ;
gtk_widget_set_usize ( clist , - 1 , 300 ) ;
1998-03-08 20:44:01 +00:00
1998-01-03 23:28:28 +00:00
for ( i = 1 ; i < TESTGTK_CLIST_COLUMNS ; i + + )
gtk_clist_set_column_width ( GTK_CLIST ( clist ) , i , 80 ) ;
1998-01-03 03:31:03 +00:00
1998-10-19 22:46:38 +00:00
gtk_clist_set_column_auto_resize ( GTK_CLIST ( clist ) , 0 , TRUE ) ;
gtk_clist_set_column_resizeable ( GTK_CLIST ( clist ) , 1 , FALSE ) ;
gtk_clist_set_column_max_width ( GTK_CLIST ( clist ) , 2 , 100 ) ;
gtk_clist_set_column_min_width ( GTK_CLIST ( clist ) , 3 , 50 ) ;
1998-07-15 23:40:00 +00:00
gtk_clist_set_selection_mode ( GTK_CLIST ( clist ) , GTK_SELECTION_EXTENDED ) ;
gtk_clist_set_column_justification ( GTK_CLIST ( clist ) , 1 ,
GTK_JUSTIFY_RIGHT ) ;
gtk_clist_set_column_justification ( GTK_CLIST ( clist ) , 2 ,
GTK_JUSTIFY_CENTER ) ;
1998-01-03 23:28:28 +00:00
for ( i = 0 ; i < TESTGTK_CLIST_COLUMNS ; i + + )
{
texts [ i ] = text [ i ] ;
sprintf ( text [ i ] , " Column %d " , i ) ;
}
1998-01-03 03:31:03 +00:00
1998-01-03 23:28:28 +00:00
sprintf ( text [ 1 ] , " Right " ) ;
sprintf ( text [ 2 ] , " Center " ) ;
1998-01-03 03:31:03 +00:00
1998-10-16 15:00:05 +00:00
col1 . red = 56000 ;
col1 . green = 0 ;
col1 . blue = 0 ;
col2 . red = 0 ;
col2 . green = 56000 ;
col2 . blue = 32000 ;
style = gtk_style_new ( ) ;
1998-12-16 00:52:46 +00:00
style - > fg [ GTK_STATE_NORMAL ] = col1 ;
style - > base [ GTK_STATE_NORMAL ] = col2 ;
1998-10-16 15:00:05 +00:00
gdk_font_unref ( style - > font ) ;
style - > font =
gdk_font_load ( " -adobe-helvetica-bold-r-*-*-*-140-*-*-*-*-*-* " ) ;
1998-07-15 23:40:00 +00:00
for ( i = 0 ; i < 10 ; i + + )
1998-01-03 23:28:28 +00:00
{
1998-10-19 22:46:38 +00:00
sprintf ( text [ 0 ] , " CListRow %d " , clist_rows + + ) ;
1998-01-03 23:28:28 +00:00
gtk_clist_append ( GTK_CLIST ( clist ) , texts ) ;
1998-10-16 15:00:05 +00:00
switch ( i % 4 )
{
case 2 :
gtk_clist_set_row_style ( GTK_CLIST ( clist ) , i , style ) ;
break ;
default :
gtk_clist_set_cell_style ( GTK_CLIST ( clist ) , i , i % 4 , style ) ;
break ;
}
1998-01-03 23:28:28 +00:00
}
1998-01-03 03:31:03 +00:00
separator = gtk_hseparator_new ( ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , separator , FALSE , TRUE , 0 ) ;
hbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , TRUE , 0 ) ;
1998-01-03 03:31:03 +00:00
button = gtk_button_new_with_label ( " close " ) ;
1999-02-10 23:15:26 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( button ) , 10 ) ;
1999-02-11 23:47:48 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-01-03 03:31:03 +00:00
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-15 23:40:00 +00:00
gtk_widget_show_all ( window ) ;
1998-01-03 03:31:03 +00:00
else
1998-03-08 20:44:01 +00:00
{
clist_rows = 0 ;
gtk_widget_destroy ( window ) ;
}
1998-01-03 03:31:03 +00:00
}
1998-05-01 13:16:49 +00:00
/*
* GtkCTree
*/
GdkPixmap * pixmap1 ;
GdkPixmap * pixmap2 ;
GdkPixmap * pixmap3 ;
GdkBitmap * mask1 ;
GdkBitmap * mask2 ;
GdkBitmap * mask3 ;
static gint books = 0 ;
static gint pages = 0 ;
static GtkWidget * book_label ;
static GtkWidget * page_label ;
static GtkWidget * sel_label ;
static GtkWidget * vis_label ;
1998-07-26 14:45:40 +00:00
static GtkWidget * omenu1 ;
1998-05-01 13:16:49 +00:00
static GtkWidget * omenu2 ;
static GtkWidget * omenu3 ;
1998-10-16 15:00:05 +00:00
static GtkWidget * omenu4 ;
1998-05-01 13:16:49 +00:00
static GtkWidget * spin1 ;
static GtkWidget * spin2 ;
static GtkWidget * spin3 ;
1998-10-16 15:00:05 +00:00
static gint line_style ;
1998-05-01 13:16:49 +00:00
void after_press ( GtkCTree * ctree , gpointer data )
{
char buf [ 80 ] ;
sprintf ( buf , " %d " , g_list_length ( GTK_CLIST ( ctree ) - > selection ) ) ;
1998-12-15 20:31:26 +00:00
gtk_label_set_text ( GTK_LABEL ( sel_label ) , buf ) ;
1998-05-01 13:16:49 +00:00
sprintf ( buf , " %d " , g_list_length ( GTK_CLIST ( ctree ) - > row_list ) ) ;
1998-12-15 20:31:26 +00:00
gtk_label_set_text ( GTK_LABEL ( vis_label ) , buf ) ;
1998-05-01 13:16:49 +00:00
sprintf ( buf , " %d " , books ) ;
1998-12-15 20:31:26 +00:00
gtk_label_set_text ( GTK_LABEL ( book_label ) , buf ) ;
1998-05-01 13:16:49 +00:00
sprintf ( buf , " %d " , pages ) ;
1998-12-15 20:31:26 +00:00
gtk_label_set_text ( GTK_LABEL ( page_label ) , buf ) ;
1998-05-01 13:16:49 +00:00
}
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
void after_move ( GtkCTree * ctree , GtkCTreeNode * child , GtkCTreeNode * parent ,
GtkCTreeNode * sibling , gpointer data )
1998-05-01 13:16:49 +00:00
{
char * source ;
char * target1 ;
char * target2 ;
1998-05-01 23:45:18 +00:00
gtk_ctree_get_node_info ( ctree , child , & source ,
NULL , NULL , NULL , NULL , NULL , NULL , NULL ) ;
1998-05-01 13:16:49 +00:00
if ( parent )
1998-05-01 23:45:18 +00:00
gtk_ctree_get_node_info ( ctree , parent , & target1 ,
NULL , NULL , NULL , NULL , NULL , NULL , NULL ) ;
1998-05-01 13:16:49 +00:00
if ( sibling )
1998-05-01 23:45:18 +00:00
gtk_ctree_get_node_info ( ctree , sibling , & target2 ,
NULL , NULL , NULL , NULL , NULL , NULL , NULL ) ;
1998-05-01 13:16:49 +00:00
g_print ( " Moving \" %s \" to \" %s \" with sibling \" %s \" . \n " , source ,
( parent ) ? target1 : " nil " , ( sibling ) ? target2 : " nil " ) ;
}
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
void count_items ( GtkCTree * ctree , GtkCTreeNode * list )
1998-05-01 13:16:49 +00:00
{
if ( GTK_CTREE_ROW ( list ) - > is_leaf )
pages - - ;
else
books - - ;
}
void expand_all ( GtkWidget * widget , GtkCTree * ctree )
{
gtk_ctree_expand_recursive ( ctree , NULL ) ;
after_press ( ctree , NULL ) ;
}
void collapse_all ( GtkWidget * widget , GtkCTree * ctree )
{
gtk_ctree_collapse_recursive ( ctree , NULL ) ;
after_press ( ctree , NULL ) ;
}
void select_all ( GtkWidget * widget , GtkCTree * ctree )
{
gtk_ctree_select_recursive ( ctree , NULL ) ;
after_press ( ctree , NULL ) ;
}
1998-10-16 15:00:05 +00:00
void change_style ( GtkWidget * widget , GtkCTree * ctree )
{
static GtkStyle * style1 = NULL ;
static GtkStyle * style2 = NULL ;
GtkCTreeNode * node ;
GdkColor col1 ;
GdkColor col2 ;
if ( GTK_CLIST ( ctree ) - > focus_row > = 0 )
node = GTK_CTREE_NODE
( g_list_nth ( GTK_CLIST ( ctree ) - > row_list , GTK_CLIST ( ctree ) - > focus_row ) ) ;
else
node = GTK_CTREE_NODE ( GTK_CLIST ( ctree ) - > row_list ) ;
if ( ! node )
return ;
if ( ! style1 )
{
col1 . red = 0 ;
col1 . green = 56000 ;
col1 . blue = 0 ;
col2 . red = 32000 ;
col2 . green = 0 ;
col2 . blue = 56000 ;
style1 = gtk_style_new ( ) ;
1998-12-16 00:52:46 +00:00
style1 - > base [ GTK_STATE_NORMAL ] = col1 ;
1998-10-16 15:00:05 +00:00
style1 - > fg [ GTK_STATE_SELECTED ] = col2 ;
style2 = gtk_style_new ( ) ;
1998-12-16 00:52:46 +00:00
style2 - > base [ GTK_STATE_SELECTED ] = col2 ;
style2 - > fg [ GTK_STATE_NORMAL ] = col1 ;
style2 - > base [ GTK_STATE_NORMAL ] = col2 ;
1998-10-16 15:00:05 +00:00
gdk_font_unref ( style2 - > font ) ;
style2 - > font =
gdk_font_load ( " -*-courier-medium-*-*-*-*-300-*-*-*-*-*-* " ) ;
}
gtk_ctree_node_set_cell_style ( ctree , node , 1 , style1 ) ;
gtk_ctree_node_set_cell_style ( ctree , node , 0 , style2 ) ;
if ( GTK_CTREE_ROW ( node ) - > children )
gtk_ctree_node_set_row_style ( ctree , GTK_CTREE_ROW ( node ) - > children ,
style2 ) ;
}
1998-05-01 13:16:49 +00:00
void unselect_all ( GtkWidget * widget , GtkCTree * ctree )
{
1998-05-06 08:22:31 +00:00
gtk_ctree_unselect_recursive ( ctree , NULL ) ;
1998-05-01 13:16:49 +00:00
after_press ( ctree , NULL ) ;
}
void remove_selection ( GtkWidget * widget , GtkCTree * ctree )
{
1998-11-11 20:46:51 +00:00
GtkCList * clist ;
GtkCTreeNode * node ;
1998-05-01 13:16:49 +00:00
1998-11-11 20:46:51 +00:00
clist = GTK_CLIST ( ctree ) ;
1998-05-01 13:16:49 +00:00
1998-11-11 20:46:51 +00:00
gtk_clist_freeze ( clist ) ;
1999-02-10 23:15:26 +00:00
while ( clist - > selection )
1998-05-01 13:16:49 +00:00
{
1999-02-10 23:15:26 +00:00
node = clist - > selection - > data ;
1998-11-11 20:46:51 +00:00
if ( GTK_CTREE_ROW ( node ) - > is_leaf )
1998-05-01 13:16:49 +00:00
pages - - ;
else
1999-02-10 23:15:26 +00:00
gtk_ctree_post_recursive ( ctree , node ,
1998-05-01 13:16:49 +00:00
( GtkCTreeFunc ) count_items , NULL ) ;
1998-11-11 20:46:51 +00:00
gtk_ctree_remove_node ( ctree , node ) ;
1999-02-10 23:15:26 +00:00
if ( clist - > selection_mode = = GTK_SELECTION_BROWSE )
break ;
}
if ( clist - > selection_mode = = GTK_SELECTION_EXTENDED & & ! clist - > selection & &
clist - > focus_row > = 0 )
{
node = gtk_ctree_node_nth ( ctree , clist - > focus_row ) ;
if ( node )
gtk_ctree_select ( ctree , node ) ;
1998-05-01 13:16:49 +00:00
}
1999-02-10 23:15:26 +00:00
1998-11-11 20:46:51 +00:00
gtk_clist_thaw ( clist ) ;
1998-05-01 13:16:49 +00:00
after_press ( ctree , NULL ) ;
}
1998-08-17 23:48:04 +00:00
struct _ExportStruct {
gchar * tree ;
gchar * info ;
gboolean is_leaf ;
} ;
typedef struct _ExportStruct ExportStruct ;
gboolean
gnode2ctree ( GtkCTree * ctree ,
guint depth ,
GNode * gnode ,
GtkCTreeNode * cnode ,
gpointer data )
{
ExportStruct * es ;
GdkPixmap * pixmap_closed ;
GdkBitmap * mask_closed ;
GdkPixmap * pixmap_opened ;
GdkBitmap * mask_opened ;
if ( ! cnode | | ! gnode | | ( ! ( es = gnode - > data ) ) )
return FALSE ;
if ( es - > is_leaf )
{
pixmap_closed = pixmap3 ;
mask_closed = mask3 ;
pixmap_opened = NULL ;
mask_opened = NULL ;
}
else
{
pixmap_closed = pixmap1 ;
mask_closed = mask1 ;
pixmap_opened = pixmap2 ;
mask_opened = mask2 ;
}
gtk_ctree_set_node_info ( ctree , cnode , es - > tree , 2 , pixmap_closed ,
mask_closed , pixmap_opened , mask_opened ,
es - > is_leaf , ( depth < 3 ) ) ;
gtk_ctree_node_set_text ( ctree , cnode , 1 , es - > info ) ;
g_free ( es ) ;
gnode - > data = NULL ;
return TRUE ;
}
gboolean
ctree2gnode ( GtkCTree * ctree ,
guint depth ,
GNode * gnode ,
GtkCTreeNode * cnode ,
gpointer data )
{
ExportStruct * es ;
if ( ! cnode | | ! gnode )
return FALSE ;
es = g_new ( ExportStruct , 1 ) ;
gnode - > data = es ;
es - > is_leaf = GTK_CTREE_ROW ( cnode ) - > is_leaf ;
es - > tree = GTK_CELL_PIXTEXT ( GTK_CTREE_ROW ( cnode ) - > row . cell [ 0 ] ) - > text ;
es - > info = GTK_CELL_PIXTEXT ( GTK_CTREE_ROW ( cnode ) - > row . cell [ 1 ] ) - > text ;
return TRUE ;
}
void export_ctree ( GtkWidget * widget , GtkCTree * ctree )
{
char * title [ ] = { " Tree " , " Info " } ;
static GtkWidget * export_window = NULL ;
static GtkCTree * export_ctree ;
GtkWidget * vbox ;
1998-11-05 15:44:22 +00:00
GtkWidget * scrolled_win ;
1998-08-17 23:48:04 +00:00
GtkWidget * button ;
GtkWidget * sep ;
GNode * gnode ;
GtkCTreeNode * node ;
if ( ! export_window )
{
export_window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( export_window ) , " destroy " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& export_window ) ;
gtk_window_set_title ( GTK_WINDOW ( export_window ) , " exported ctree " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( export_window ) , 5 ) ;
1998-08-17 23:48:04 +00:00
vbox = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( export_window ) , vbox ) ;
button = gtk_button_new_with_label ( " Close " ) ;
gtk_box_pack_end ( GTK_BOX ( vbox ) , button , FALSE , TRUE , 0 ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
( GtkSignalFunc ) gtk_widget_destroy ,
GTK_OBJECT ( export_window ) ) ;
sep = gtk_hseparator_new ( ) ;
gtk_box_pack_end ( GTK_BOX ( vbox ) , sep , FALSE , TRUE , 10 ) ;
export_ctree = GTK_CTREE ( gtk_ctree_new_with_titles ( 2 , 0 , title ) ) ;
gtk_ctree_set_line_style ( export_ctree , GTK_CTREE_LINES_DOTTED ) ;
1998-11-05 15:44:22 +00:00
scrolled_win = gtk_scrolled_window_new ( NULL , NULL ) ;
gtk_container_add ( GTK_CONTAINER ( scrolled_win ) ,
GTK_WIDGET ( export_ctree ) ) ;
gtk_scrolled_window_set_policy ( GTK_SCROLLED_WINDOW ( scrolled_win ) ,
GTK_POLICY_AUTOMATIC ,
GTK_POLICY_AUTOMATIC ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , scrolled_win , TRUE , TRUE , 0 ) ;
1998-08-17 23:48:04 +00:00
gtk_clist_set_selection_mode ( GTK_CLIST ( export_ctree ) ,
GTK_SELECTION_EXTENDED ) ;
gtk_clist_set_column_width ( GTK_CLIST ( export_ctree ) , 0 , 200 ) ;
gtk_clist_set_column_width ( GTK_CLIST ( export_ctree ) , 1 , 200 ) ;
gtk_widget_set_usize ( GTK_WIDGET ( export_ctree ) , 300 , 200 ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( export_window ) )
gtk_widget_show_all ( export_window ) ;
gtk_clist_clear ( GTK_CLIST ( export_ctree ) ) ;
node = GTK_CTREE_NODE ( g_list_nth ( GTK_CLIST ( ctree ) - > row_list ,
GTK_CLIST ( ctree ) - > focus_row ) ) ;
if ( ! node )
return ;
gnode = gtk_ctree_export_to_gnode ( ctree , NULL , NULL , node ,
ctree2gnode , NULL ) ;
if ( gnode )
{
gtk_ctree_insert_gnode ( export_ctree , NULL , NULL , gnode ,
gnode2ctree , NULL ) ;
g_node_destroy ( gnode ) ;
}
}
1998-05-01 13:16:49 +00:00
void change_indent ( GtkWidget * widget , GtkCTree * ctree )
{
gtk_ctree_set_indent ( ctree , GTK_ADJUSTMENT ( widget ) - > value ) ;
}
1998-10-16 15:00:05 +00:00
void change_spacing ( GtkWidget * widget , GtkCTree * ctree )
{
gtk_ctree_set_spacing ( ctree , GTK_ADJUSTMENT ( widget ) - > value ) ;
}
1998-06-22 17:00:21 +00:00
void change_row_height ( GtkWidget * widget , GtkCList * clist )
{
gtk_clist_set_row_height ( clist , GTK_ADJUSTMENT ( widget ) - > value ) ;
}
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
void set_background ( GtkCTree * ctree , GtkCTreeNode * node , gpointer data )
1998-06-22 17:00:21 +00:00
{
1998-10-16 15:00:05 +00:00
GtkStyle * style = NULL ;
1998-06-22 17:00:21 +00:00
if ( ! node )
return ;
if ( ctree - > line_style ! = GTK_CTREE_LINES_TABBED )
{
1998-10-16 15:00:05 +00:00
if ( ! GTK_CTREE_ROW ( node ) - > is_leaf )
style = GTK_CTREE_ROW ( node ) - > row . data ;
else if ( GTK_CTREE_ROW ( node ) - > parent )
style = GTK_CTREE_ROW ( GTK_CTREE_ROW ( node ) - > parent ) - > row . data ;
1998-06-22 17:00:21 +00:00
}
1998-10-16 15:00:05 +00:00
gtk_ctree_node_set_row_style ( ctree , node , style ) ;
1998-06-22 17:00:21 +00:00
}
1998-07-26 14:45:40 +00:00
void ctree_toggle_line_style ( GtkWidget * widget , GtkCTree * ctree )
1998-05-01 13:16:49 +00:00
{
gint i ;
if ( ! GTK_WIDGET_MAPPED ( widget ) )
return ;
RADIOMENUTOGGLED ( ( GtkRadioMenuItem * )
1998-10-16 15:00:05 +00:00
( ( ( GtkOptionMenu * ) omenu1 ) - > menu_item ) , i ) ;
1998-06-22 17:00:21 +00:00
if ( ( ctree - > line_style = = GTK_CTREE_LINES_TABBED & &
1998-10-16 15:00:05 +00:00
( ( GtkCTreeLineStyle ) ( 3 - i ) ) ! = GTK_CTREE_LINES_TABBED ) | |
1998-06-22 17:00:21 +00:00
( ctree - > line_style ! = GTK_CTREE_LINES_TABBED & &
1998-10-16 15:00:05 +00:00
( ( GtkCTreeLineStyle ) ( 3 - i ) ) = = GTK_CTREE_LINES_TABBED ) )
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
gtk_ctree_pre_recursive ( ctree , NULL , set_background , NULL ) ;
1998-10-16 15:00:05 +00:00
gtk_ctree_set_line_style ( ctree , 3 - i ) ;
line_style = 3 - i ;
}
void ctree_toggle_expander_style ( GtkWidget * widget , GtkCTree * ctree )
{
gint i ;
if ( ! GTK_WIDGET_MAPPED ( widget ) )
return ;
RADIOMENUTOGGLED ( ( GtkRadioMenuItem * )
( ( ( GtkOptionMenu * ) omenu2 ) - > menu_item ) , i ) ;
gtk_ctree_set_expander_style ( ctree , ( GtkCTreeExpanderStyle ) ( 3 - i ) ) ;
1998-05-01 13:16:49 +00:00
}
1998-07-26 14:45:40 +00:00
void ctree_toggle_justify ( GtkWidget * widget , GtkCTree * ctree )
1998-05-01 13:16:49 +00:00
{
gint i ;
if ( ! GTK_WIDGET_MAPPED ( widget ) )
return ;
RADIOMENUTOGGLED ( ( GtkRadioMenuItem * )
1998-10-16 15:00:05 +00:00
( ( ( GtkOptionMenu * ) omenu3 ) - > menu_item ) , i ) ;
1998-05-01 13:16:49 +00:00
1998-06-22 17:00:21 +00:00
gtk_clist_set_column_justification ( GTK_CLIST ( ctree ) , ctree - > tree_column ,
1998-10-16 15:00:05 +00:00
( GtkJustification ) ( 1 - i ) ) ;
1998-05-01 13:16:49 +00:00
}
1998-07-26 14:45:40 +00:00
void ctree_toggle_sel_mode ( GtkWidget * widget , GtkCTree * ctree )
1998-05-01 13:16:49 +00:00
{
gint i ;
if ( ! GTK_WIDGET_MAPPED ( widget ) )
return ;
RADIOMENUTOGGLED ( ( GtkRadioMenuItem * )
1998-10-16 15:00:05 +00:00
( ( ( GtkOptionMenu * ) omenu4 ) - > menu_item ) , i ) ;
1998-05-01 13:16:49 +00:00
1998-10-16 15:00:05 +00:00
gtk_clist_set_selection_mode ( GTK_CLIST ( ctree ) , ( GtkSelectionMode ) ( 3 - i ) ) ;
1998-05-01 13:16:49 +00:00
after_press ( ctree , NULL ) ;
}
1998-10-16 15:00:05 +00:00
1998-05-01 13:16:49 +00:00
void build_recursive ( GtkCTree * ctree , gint cur_depth , gint depth ,
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
gint num_books , gint num_pages , GtkCTreeNode * parent )
1998-05-01 13:16:49 +00:00
{
1998-05-10 17:05:39 +00:00
gchar * text [ 2 ] ;
1998-05-01 13:16:49 +00:00
gchar buf1 [ 60 ] ;
gchar buf2 [ 60 ] ;
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
GtkCTreeNode * sibling ;
1998-05-01 13:16:49 +00:00
gint i ;
1998-06-22 17:00:21 +00:00
1998-05-01 13:16:49 +00:00
text [ 0 ] = buf1 ;
text [ 1 ] = buf2 ;
sibling = NULL ;
for ( i = num_pages + num_books ; i > num_books ; i - - )
{
pages + + ;
1998-06-28 06:24:49 +00:00
sprintf ( buf1 , " Page %02d " , ( gint ) rand ( ) % 100 ) ;
1998-05-01 13:16:49 +00:00
sprintf ( buf2 , " Item %d-%d " , cur_depth , i ) ;
1998-08-17 23:48:04 +00:00
sibling = gtk_ctree_insert_node ( ctree , parent , sibling , text , 5 ,
pixmap3 , mask3 , NULL , NULL ,
TRUE , FALSE ) ;
1998-06-22 17:00:21 +00:00
1998-10-16 15:00:05 +00:00
if ( parent & & ctree - > line_style = = GTK_CTREE_LINES_TABBED )
gtk_ctree_node_set_row_style ( ctree , sibling ,
GTK_CTREE_ROW ( parent ) - > row . style ) ;
1998-05-01 13:16:49 +00:00
}
if ( cur_depth = = depth )
return ;
for ( i = num_books ; i > 0 ; i - - )
{
1998-10-16 15:00:05 +00:00
GtkStyle * style ;
1998-05-01 13:16:49 +00:00
books + + ;
1998-06-28 06:24:49 +00:00
sprintf ( buf1 , " Book %02d " , ( gint ) rand ( ) % 100 ) ;
1998-05-01 13:16:49 +00:00
sprintf ( buf2 , " Item %d-%d " , cur_depth , i ) ;
1998-08-17 23:48:04 +00:00
sibling = gtk_ctree_insert_node ( ctree , parent , sibling , text , 5 ,
pixmap1 , mask1 , pixmap2 , mask2 ,
FALSE , FALSE ) ;
1998-06-22 17:00:21 +00:00
1998-11-09 00:23:37 +00:00
style = gtk_style_new ( ) ;
1998-10-16 15:00:05 +00:00
switch ( cur_depth % 3 )
1998-06-22 17:00:21 +00:00
{
1998-10-16 15:00:05 +00:00
case 0 :
1998-12-16 00:52:46 +00:00
style - > base [ GTK_STATE_NORMAL ] . red = 10000 * ( cur_depth % 6 ) ;
style - > base [ GTK_STATE_NORMAL ] . green = 0 ;
style - > base [ GTK_STATE_NORMAL ] . blue = 65535 - ( ( i * 10000 ) % 65535 ) ;
1998-10-16 15:00:05 +00:00
break ;
case 1 :
1998-12-16 00:52:46 +00:00
style - > base [ GTK_STATE_NORMAL ] . red = 10000 * ( cur_depth % 6 ) ;
style - > base [ GTK_STATE_NORMAL ] . green = 65535 - ( ( i * 10000 ) % 65535 ) ;
style - > base [ GTK_STATE_NORMAL ] . blue = 0 ;
1998-10-16 15:00:05 +00:00
break ;
default :
1998-12-16 00:52:46 +00:00
style - > base [ GTK_STATE_NORMAL ] . red = 65535 - ( ( i * 10000 ) % 65535 ) ;
style - > base [ GTK_STATE_NORMAL ] . green = 0 ;
style - > base [ GTK_STATE_NORMAL ] . blue = 10000 * ( cur_depth % 6 ) ;
1998-10-16 15:00:05 +00:00
break ;
1998-06-22 17:00:21 +00:00
}
1998-10-16 15:00:05 +00:00
gtk_ctree_node_set_row_data_full ( ctree , sibling , style ,
( GtkDestroyNotify ) gtk_style_unref ) ;
1998-06-22 17:00:21 +00:00
if ( ctree - > line_style = = GTK_CTREE_LINES_TABBED )
1998-10-16 15:00:05 +00:00
gtk_ctree_node_set_row_style ( ctree , sibling , style ) ;
1998-06-22 17:00:21 +00:00
build_recursive ( ctree , cur_depth + 1 , depth , num_books , num_pages ,
sibling ) ;
1998-05-01 13:16:49 +00:00
}
}
void rebuild_tree ( GtkWidget * widget , GtkCTree * ctree )
{
gchar * text [ 2 ] ;
gchar label1 [ ] = " Root " ;
gchar label2 [ ] = " " ;
Few fixes for column resize. Store resize column in clist->drag_pos.
Fri Jul 31 20:45:07 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkclist.c (gtk_clist_button_press) (gtk_clist_motion)
(gtk_clist_button_release) (new_column_width): Few fixes for
column resize. Store resize column in clist->drag_pos.
Thu Jul 31 15:18:36 1998 Lars Hamann <lars@gtk.org>
* gtk/gtkctree.h
* gtk/gtkctree.c
* gtk/testgtk.c : New typedef GtkCTreeNode, changed all GList *node
to GtkCTreeNode *node.
* gtk/gtklist.h : added extended selection mode and auto scrolling.
(struct _GtkList): removed unneeded variables timer, button,
selection_start_pos, selection_end_pos, scroll_direction, have_grab.
Added new variables undo_selection, undo_unselection, last_focus_child,
undo_focus_child, htimer, vtimer, anchor, drag_pos, anchor_state,
drag_selection, add_mode.
New functions :
(gtk_list_extend_selection), (gtk_list_start_selection),
(gtk_list_end_selection), (gtk_list_select_all),
(gtk_list_unselect_all), (gtk_list_scroll_horizontal),
(gtk_list_scroll_vertical), (gtk_list_toggle_add_mode),
(gtk_list_toggle_focus_row), (gtk_list_toggle_row),
(gtk_list_undo_selection), (gtk_list_end_drag_selection)
* gtk/gtklist.c :
(gtk_list_enter_notify): removed, because auto scrolling now works
with gtk_list_motion_notify
New functions, needed for auto scrolling :
(gtk_list_motion_notify) (gtk_list_move_focus_child)
New functions for extended selection support :
(gtk_list_set_anchor), (gtk_list_fake_unselect_all),
(gtk_list_fake_toggle_row), (gtk_list_update_extended_selection),
(gtk_list_focus_lost)
(gtk_list_set_focus_child): modified gtk_container_set_focus_child
function to support auto scrolling, and avoid out-of-sync errors in
case auf GTK_SELECTION_BROWSE
(gtk_list_focus): modified gtk_container_focus function to avoid out
off sync errors in case auf GTK_SELECTION_EXTENDED
* gtk/gtklistitem.h
* gtk/gtklistitem.c :
New signal functions for key binding support :
(toggle_focus_row), (select_all), (list_item), (unselect_all)
(list_item), (undo_selection), (start_selection), (end_selection)
(extend_selection), (scroll_horizontal), (scroll_vertical),
(toggle_add_mode)
(gtk_list_item_realize): added GDK_KEY_PRESS_MASK |
GDK_KEY_RELEASE_MASK
(gtk_list_item_draw_focus): modify gc if parent has add_mode set.
* gtk/gtkcombo.c :
(gtk_combo_popup_button_press): grab pointer for combo->list
(gtk_combo_button_release): ungrab only if combo->popwin HAS_GRAB
(gtk_combo_list_key_press): take care of which child HAS_GRAB
(gtk_comb_init): don't connect combo->button with button_release_event
1998-07-31 20:48:06 +00:00
GtkCTreeNode * parent ;
1998-10-16 15:00:05 +00:00
GtkStyle * style ;
1998-05-01 13:16:49 +00:00
guint b , d , p , n ;
text [ 0 ] = label1 ;
text [ 1 ] = label2 ;
d = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON ( spin1 ) ) ;
b = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON ( spin2 ) ) ;
p = gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON ( spin3 ) ) ;
n = ( ( pow ( b , d ) - 1 ) / ( b - 1 ) ) * ( p + 1 ) ;
1998-07-15 23:40:00 +00:00
if ( n > 100000 )
1998-05-01 13:16:49 +00:00
{
g_print ( " %d total items? Try less \n " , n ) ;
return ;
}
gtk_clist_freeze ( GTK_CLIST ( ctree ) ) ;
1998-07-15 23:40:00 +00:00
gtk_clist_clear ( GTK_CLIST ( ctree ) ) ;
1998-05-01 13:16:49 +00:00
books = 1 ;
pages = 0 ;
1998-08-17 23:48:04 +00:00
parent = gtk_ctree_insert_node ( ctree , NULL , NULL , text , 5 , pixmap1 ,
mask1 , pixmap2 , mask2 , FALSE , TRUE ) ;
1998-05-01 13:16:49 +00:00
1998-10-16 15:00:05 +00:00
style = gtk_style_new ( ) ;
1998-12-16 00:52:46 +00:00
style - > base [ GTK_STATE_NORMAL ] . red = 0 ;
style - > base [ GTK_STATE_NORMAL ] . green = 45000 ;
style - > base [ GTK_STATE_NORMAL ] . blue = 55000 ;
1998-10-16 15:00:05 +00:00
gtk_ctree_node_set_row_data_full ( ctree , parent , style ,
( GtkDestroyNotify ) gtk_style_unref ) ;
1998-06-22 17:00:21 +00:00
if ( ctree - > line_style = = GTK_CTREE_LINES_TABBED )
1998-10-16 15:00:05 +00:00
gtk_ctree_node_set_row_style ( ctree , parent , style ) ;
1998-06-22 17:00:21 +00:00
1998-05-01 13:16:49 +00:00
build_recursive ( ctree , 1 , d , b , p , parent ) ;
gtk_clist_thaw ( GTK_CLIST ( ctree ) ) ;
after_press ( ctree , NULL ) ;
}
1998-08-05 20:02:32 +00:00
static void
ctree_click_column ( GtkCTree * ctree , gint column , gpointer data )
{
GtkCList * clist ;
clist = GTK_CLIST ( ctree ) ;
if ( column = = clist - > sort_column )
{
if ( clist - > sort_type = = GTK_SORT_ASCENDING )
clist - > sort_type = GTK_SORT_DESCENDING ;
else
clist - > sort_type = GTK_SORT_ASCENDING ;
}
else
gtk_clist_set_sort_column ( clist , column ) ;
gtk_ctree_sort_recursive ( ctree , NULL ) ;
}
1998-05-03 22:41:32 +00:00
void create_ctree ( void )
1998-05-01 13:16:49 +00:00
{
static GtkWidget * window = NULL ;
GtkTooltips * tooltips ;
GtkCTree * ctree ;
1998-11-05 15:44:22 +00:00
GtkWidget * scrolled_win ;
1998-05-01 13:16:49 +00:00
GtkWidget * vbox ;
1998-10-16 15:00:05 +00:00
GtkWidget * bbox ;
GtkWidget * mbox ;
1998-05-01 13:16:49 +00:00
GtkWidget * hbox ;
GtkWidget * hbox2 ;
GtkWidget * frame ;
GtkWidget * label ;
GtkWidget * button ;
GtkWidget * check ;
GtkAdjustment * adj ;
GtkWidget * spinner ;
GdkColor transparent ;
char * title [ ] = { " Tree " , " Info " } ;
char buf [ 80 ] ;
1998-07-26 14:45:40 +00:00
static OptionMenuItem items1 [ ] =
{
1998-10-16 15:00:05 +00:00
{ " No lines " , ctree_toggle_line_style } ,
1998-07-26 14:45:40 +00:00
{ " Solid " , ctree_toggle_line_style } ,
{ " Dotted " , ctree_toggle_line_style } ,
1998-10-16 15:00:05 +00:00
{ " Tabbed " , ctree_toggle_line_style }
1998-07-26 14:45:40 +00:00
} ;
static OptionMenuItem items2 [ ] =
1998-10-16 15:00:05 +00:00
{
{ " None " , ctree_toggle_expander_style } ,
{ " Square " , ctree_toggle_expander_style } ,
{ " Triangle " , ctree_toggle_expander_style } ,
{ " Circular " , ctree_toggle_expander_style }
} ;
static OptionMenuItem items3 [ ] =
1998-07-26 14:45:40 +00:00
{
{ " Left " , ctree_toggle_justify } ,
{ " Right " , ctree_toggle_justify }
} ;
1998-10-16 15:00:05 +00:00
static OptionMenuItem items4 [ ] =
1998-07-26 14:45:40 +00:00
{
{ " Single " , ctree_toggle_sel_mode } ,
{ " Browse " , ctree_toggle_sel_mode } ,
{ " Multiple " , ctree_toggle_sel_mode } ,
{ " Extended " , ctree_toggle_sel_mode }
} ;
1998-05-01 13:16:49 +00:00
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " GtkCTree " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1998-05-01 13:16:49 +00:00
tooltips = gtk_tooltips_new ( ) ;
gtk_object_ref ( GTK_OBJECT ( tooltips ) ) ;
gtk_object_sink ( GTK_OBJECT ( tooltips ) ) ;
1998-06-22 17:00:21 +00:00
gtk_object_set_data_full ( GTK_OBJECT ( window ) , " tooltips " , tooltips ,
1998-05-01 13:16:49 +00:00
( GtkDestroyNotify ) gtk_object_unref ) ;
vbox = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , vbox ) ;
hbox = gtk_hbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( hbox ) , 5 ) ;
1998-05-01 13:16:49 +00:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , TRUE , 0 ) ;
label = gtk_label_new ( " Depth : " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , TRUE , 0 ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 4 , 1 , 10 , 1 , 5 , 0 ) ;
spin1 = gtk_spin_button_new ( adj , 0 , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , spin1 , FALSE , TRUE , 5 ) ;
label = gtk_label_new ( " Books : " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , TRUE , 0 ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 3 , 1 , 20 , 1 , 5 , 0 ) ;
spin2 = gtk_spin_button_new ( adj , 0 , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , spin2 , FALSE , TRUE , 5 ) ;
label = gtk_label_new ( " Pages : " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , TRUE , 0 ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 5 , 1 , 20 , 1 , 5 , 0 ) ;
spin3 = gtk_spin_button_new ( adj , 0 , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , spin3 , FALSE , TRUE , 5 ) ;
button = gtk_button_new_with_label ( " Close " ) ;
gtk_box_pack_end ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-06-22 17:00:21 +00:00
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
( GtkSignalFunc ) gtk_widget_destroy ,
GTK_OBJECT ( window ) ) ;
1998-05-01 13:16:49 +00:00
1999-02-10 23:15:26 +00:00
button = gtk_button_new_with_label ( " Rebuild Tree " ) ;
1998-05-01 13:16:49 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-10-19 22:46:38 +00:00
1999-02-10 23:15:26 +00:00
scrolled_win = gtk_scrolled_window_new ( NULL , NULL ) ;
gtk_container_set_border_width ( GTK_CONTAINER ( scrolled_win ) , 5 ) ;
gtk_scrolled_window_set_policy ( GTK_SCROLLED_WINDOW ( scrolled_win ) ,
GTK_POLICY_AUTOMATIC ,
GTK_POLICY_ALWAYS ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , scrolled_win , TRUE , TRUE , 0 ) ;
1998-05-01 13:16:49 +00:00
ctree = GTK_CTREE ( gtk_ctree_new_with_titles ( 2 , 0 , title ) ) ;
1999-02-10 23:15:26 +00:00
gtk_container_add ( GTK_CONTAINER ( scrolled_win ) , GTK_WIDGET ( ctree ) ) ;
gtk_clist_set_column_auto_resize ( GTK_CLIST ( ctree ) , 0 , TRUE ) ;
gtk_clist_set_column_width ( GTK_CLIST ( ctree ) , 1 , 200 ) ;
gtk_clist_set_selection_mode ( GTK_CLIST ( ctree ) , GTK_SELECTION_EXTENDED ) ;
1998-05-01 13:16:49 +00:00
gtk_ctree_set_line_style ( ctree , GTK_CTREE_LINES_DOTTED ) ;
1998-10-16 15:00:05 +00:00
line_style = GTK_CTREE_LINES_DOTTED ;
1999-02-10 23:15:26 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( rebuild_tree ) , ctree ) ;
1998-08-05 20:02:32 +00:00
gtk_signal_connect ( GTK_OBJECT ( ctree ) , " click_column " ,
1999-02-10 23:15:26 +00:00
( GtkSignalFunc ) ctree_click_column , NULL ) ;
1998-05-01 13:16:49 +00:00
gtk_signal_connect_after ( GTK_OBJECT ( ctree ) , " button_press_event " ,
GTK_SIGNAL_FUNC ( after_press ) , NULL ) ;
gtk_signal_connect_after ( GTK_OBJECT ( ctree ) , " button_release_event " ,
GTK_SIGNAL_FUNC ( after_press ) , NULL ) ;
gtk_signal_connect_after ( GTK_OBJECT ( ctree ) , " tree_move " ,
GTK_SIGNAL_FUNC ( after_move ) , NULL ) ;
1998-07-15 23:40:00 +00:00
gtk_signal_connect_after ( GTK_OBJECT ( ctree ) , " end_selection " ,
GTK_SIGNAL_FUNC ( after_press ) , NULL ) ;
gtk_signal_connect_after ( GTK_OBJECT ( ctree ) , " toggle_focus_row " ,
GTK_SIGNAL_FUNC ( after_press ) , NULL ) ;
gtk_signal_connect_after ( GTK_OBJECT ( ctree ) , " select_all " ,
GTK_SIGNAL_FUNC ( after_press ) , NULL ) ;
gtk_signal_connect_after ( GTK_OBJECT ( ctree ) , " unselect_all " ,
GTK_SIGNAL_FUNC ( after_press ) , NULL ) ;
gtk_signal_connect_after ( GTK_OBJECT ( ctree ) , " scroll_vertical " ,
GTK_SIGNAL_FUNC ( after_press ) , NULL ) ;
1998-05-01 13:16:49 +00:00
1998-10-16 15:00:05 +00:00
bbox = gtk_hbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( bbox ) , 5 ) ;
1998-10-16 15:00:05 +00:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , bbox , FALSE , TRUE , 0 ) ;
mbox = gtk_vbox_new ( TRUE , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( bbox ) , mbox , FALSE , TRUE , 0 ) ;
1999-02-10 23:15:26 +00:00
label = gtk_label_new ( " Row Height : " ) ;
1998-10-16 15:00:05 +00:00
gtk_box_pack_start ( GTK_BOX ( mbox ) , label , FALSE , FALSE , 0 ) ;
label = gtk_label_new ( " Indent : " ) ;
gtk_box_pack_start ( GTK_BOX ( mbox ) , label , FALSE , FALSE , 0 ) ;
label = gtk_label_new ( " Spacing : " ) ;
gtk_box_pack_start ( GTK_BOX ( mbox ) , label , FALSE , FALSE , 0 ) ;
mbox = gtk_vbox_new ( TRUE , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( bbox ) , mbox , FALSE , TRUE , 0 ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 20 , 12 , 100 , 1 , 10 , 0 ) ;
spinner = gtk_spin_button_new ( adj , 0 , 0 ) ;
1999-02-10 23:15:26 +00:00
gtk_box_pack_start ( GTK_BOX ( mbox ) , spinner , FALSE , FALSE , 5 ) ;
1998-10-16 15:00:05 +00:00
gtk_tooltips_set_tip ( tooltips , spinner ,
" Row height of list items " , NULL ) ;
gtk_signal_connect ( GTK_OBJECT ( adj ) , " value_changed " ,
GTK_SIGNAL_FUNC ( change_row_height ) , ctree ) ;
gtk_clist_set_row_height ( GTK_CLIST ( ctree ) , adj - > value ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 20 , 0 , 60 , 1 , 10 , 0 ) ;
spinner = gtk_spin_button_new ( adj , 0 , 0 ) ;
1999-02-10 23:15:26 +00:00
gtk_box_pack_start ( GTK_BOX ( mbox ) , spinner , FALSE , FALSE , 5 ) ;
gtk_tooltips_set_tip ( tooltips , spinner , " Tree Indentation. " , NULL ) ;
1998-10-16 15:00:05 +00:00
gtk_signal_connect ( GTK_OBJECT ( adj ) , " value_changed " ,
GTK_SIGNAL_FUNC ( change_indent ) , ctree ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 5 , 0 , 60 , 1 , 10 , 0 ) ;
spinner = gtk_spin_button_new ( adj , 0 , 0 ) ;
1999-02-10 23:15:26 +00:00
gtk_box_pack_start ( GTK_BOX ( mbox ) , spinner , FALSE , FALSE , 5 ) ;
gtk_tooltips_set_tip ( tooltips , spinner , " Tree Spacing. " , NULL ) ;
1998-10-16 15:00:05 +00:00
gtk_signal_connect ( GTK_OBJECT ( adj ) , " value_changed " ,
GTK_SIGNAL_FUNC ( change_spacing ) , ctree ) ;
mbox = gtk_vbox_new ( TRUE , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( bbox ) , mbox , FALSE , TRUE , 0 ) ;
1998-05-01 13:16:49 +00:00
hbox = gtk_hbox_new ( FALSE , 5 ) ;
1998-10-16 15:00:05 +00:00
gtk_box_pack_start ( GTK_BOX ( mbox ) , hbox , FALSE , FALSE , 0 ) ;
1998-05-01 13:16:49 +00:00
1999-02-10 23:15:26 +00:00
button = gtk_button_new_with_label ( " Expand All " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-05-01 13:16:49 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( expand_all ) , ctree ) ;
1999-02-10 23:15:26 +00:00
button = gtk_button_new_with_label ( " Collapse All " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-05-01 13:16:49 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( collapse_all ) , ctree ) ;
1998-10-16 15:00:05 +00:00
button = gtk_button_new_with_label ( " Change Style " ) ;
1999-02-10 23:15:26 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-05-01 13:16:49 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1998-10-16 15:00:05 +00:00
GTK_SIGNAL_FUNC ( change_style ) , ctree ) ;
1998-05-01 13:16:49 +00:00
1999-02-10 23:15:26 +00:00
button = gtk_button_new_with_label ( " Export Tree " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-08-17 23:48:04 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( export_ctree ) , ctree ) ;
1998-05-01 13:16:49 +00:00
hbox = gtk_hbox_new ( FALSE , 5 ) ;
1998-10-16 15:00:05 +00:00
gtk_box_pack_start ( GTK_BOX ( mbox ) , hbox , FALSE , FALSE , 0 ) ;
1998-06-22 17:00:21 +00:00
1999-02-10 23:15:26 +00:00
button = gtk_button_new_with_label ( " Select All " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-05-01 13:16:49 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( select_all ) , ctree ) ;
1999-02-10 23:15:26 +00:00
button = gtk_button_new_with_label ( " Unselect All " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-05-01 13:16:49 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( unselect_all ) , ctree ) ;
1999-02-10 23:15:26 +00:00
button = gtk_button_new_with_label ( " Remove Selection " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 0 ) ;
1998-05-01 13:16:49 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( remove_selection ) , ctree ) ;
check = gtk_check_button_new_with_label ( " Reorderable " ) ;
1999-02-10 23:15:26 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , check , FALSE , TRUE , 0 ) ;
1998-05-01 13:16:49 +00:00
gtk_tooltips_set_tip ( tooltips , check ,
" Tree items can be reordered by dragging. " , NULL ) ;
gtk_signal_connect ( GTK_OBJECT ( check ) , " clicked " ,
GTK_SIGNAL_FUNC ( toggle_reorderable ) , ctree ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( check ) , TRUE ) ;
1998-10-16 15:00:05 +00:00
hbox = gtk_hbox_new ( TRUE , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( mbox ) , hbox , FALSE , FALSE , 0 ) ;
1999-02-10 23:15:26 +00:00
1998-10-16 15:00:05 +00:00
omenu1 = build_option_menu ( items1 , 4 , 2 , ctree ) ;
1998-07-26 14:45:40 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , omenu1 , FALSE , TRUE , 0 ) ;
1999-02-10 23:15:26 +00:00
gtk_tooltips_set_tip ( tooltips , omenu1 , " The tree's line style. " , NULL ) ;
1998-10-16 15:00:05 +00:00
omenu2 = build_option_menu ( items2 , 4 , 1 , ctree ) ;
1999-02-10 23:15:26 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , omenu2 , FALSE , TRUE , 0 ) ;
1998-10-16 15:00:05 +00:00
gtk_tooltips_set_tip ( tooltips , omenu2 , " The tree's expander style. " ,
1998-07-26 14:45:40 +00:00
NULL ) ;
1998-10-16 15:00:05 +00:00
omenu3 = build_option_menu ( items3 , 2 , 0 , ctree ) ;
1999-02-10 23:15:26 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , omenu3 , FALSE , TRUE , 0 ) ;
1998-10-16 15:00:05 +00:00
gtk_tooltips_set_tip ( tooltips , omenu3 , " The tree's justification. " ,
1998-05-10 17:05:39 +00:00
NULL ) ;
1999-02-10 23:15:26 +00:00
1998-10-16 15:00:05 +00:00
omenu4 = build_option_menu ( items4 , 4 , 3 , ctree ) ;
1999-02-10 23:15:26 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , omenu4 , FALSE , TRUE , 0 ) ;
1998-10-16 15:00:05 +00:00
gtk_tooltips_set_tip ( tooltips , omenu4 , " The list's selection mode. " ,
NULL ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
gtk_widget_realize ( window ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
pixmap1 = gdk_pixmap_create_from_xpm_d ( window - > window , & mask1 ,
& transparent , book_closed_xpm ) ;
pixmap2 = gdk_pixmap_create_from_xpm_d ( window - > window , & mask2 ,
& transparent , book_open_xpm ) ;
pixmap3 = gdk_pixmap_create_from_xpm_d ( window - > window , & mask3 ,
& transparent , mini_page_xpm ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
gtk_widget_set_usize ( GTK_WIDGET ( ctree ) , 0 , 300 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
frame = gtk_frame_new ( NULL ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( frame ) , 0 ) ;
1998-05-01 13:16:49 +00:00
gtk_frame_set_shadow_type ( GTK_FRAME ( frame ) , GTK_SHADOW_OUT ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , frame , FALSE , TRUE , 0 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
hbox = gtk_hbox_new ( TRUE , 2 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( hbox ) , 2 ) ;
1998-05-01 13:16:49 +00:00
gtk_container_add ( GTK_CONTAINER ( frame ) , hbox ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
frame = gtk_frame_new ( NULL ) ;
gtk_frame_set_shadow_type ( GTK_FRAME ( frame ) , GTK_SHADOW_IN ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , frame , FALSE , TRUE , 0 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
hbox2 = gtk_hbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( hbox2 ) , 2 ) ;
1998-05-01 13:16:49 +00:00
gtk_container_add ( GTK_CONTAINER ( frame ) , hbox2 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
label = gtk_label_new ( " Books : " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox2 ) , label , FALSE , TRUE , 0 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
sprintf ( buf , " %d " , books ) ;
book_label = gtk_label_new ( buf ) ;
gtk_box_pack_end ( GTK_BOX ( hbox2 ) , book_label , FALSE , TRUE , 5 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
frame = gtk_frame_new ( NULL ) ;
gtk_frame_set_shadow_type ( GTK_FRAME ( frame ) , GTK_SHADOW_IN ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , frame , FALSE , TRUE , 0 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
hbox2 = gtk_hbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( hbox2 ) , 2 ) ;
1998-05-01 13:16:49 +00:00
gtk_container_add ( GTK_CONTAINER ( frame ) , hbox2 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
label = gtk_label_new ( " Pages : " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox2 ) , label , FALSE , TRUE , 0 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
sprintf ( buf , " %d " , pages ) ;
page_label = gtk_label_new ( buf ) ;
gtk_box_pack_end ( GTK_BOX ( hbox2 ) , page_label , FALSE , TRUE , 5 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
frame = gtk_frame_new ( NULL ) ;
gtk_frame_set_shadow_type ( GTK_FRAME ( frame ) , GTK_SHADOW_IN ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , frame , FALSE , TRUE , 0 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
hbox2 = gtk_hbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( hbox2 ) , 2 ) ;
1998-05-01 13:16:49 +00:00
gtk_container_add ( GTK_CONTAINER ( frame ) , hbox2 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
label = gtk_label_new ( " Selected : " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox2 ) , label , FALSE , TRUE , 0 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
sprintf ( buf , " %d " , g_list_length ( GTK_CLIST ( ctree ) - > selection ) ) ;
sel_label = gtk_label_new ( buf ) ;
gtk_box_pack_end ( GTK_BOX ( hbox2 ) , sel_label , FALSE , TRUE , 5 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
frame = gtk_frame_new ( NULL ) ;
gtk_frame_set_shadow_type ( GTK_FRAME ( frame ) , GTK_SHADOW_IN ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , frame , FALSE , TRUE , 0 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
hbox2 = gtk_hbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( hbox2 ) , 2 ) ;
1998-05-01 13:16:49 +00:00
gtk_container_add ( GTK_CONTAINER ( frame ) , hbox2 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
label = gtk_label_new ( " Visible : " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox2 ) , label , FALSE , TRUE , 0 ) ;
1999-02-10 23:15:26 +00:00
1998-05-01 13:16:49 +00:00
sprintf ( buf , " %d " , g_list_length ( GTK_CLIST ( ctree ) - > row_list ) ) ;
vis_label = gtk_label_new ( buf ) ;
gtk_box_pack_end ( GTK_BOX ( hbox2 ) , vis_label , FALSE , TRUE , 5 ) ;
rebuild_tree ( NULL , ctree ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show_all ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
1998-01-03 23:28:28 +00:00
/*
1998-07-26 14:45:40 +00:00
* GtkColorSelection
1998-01-03 23:28:28 +00:00
*/
1998-07-26 14:45:40 +00:00
1997-11-24 22:37:52 +00:00
void
color_selection_ok ( GtkWidget * w ,
GtkColorSelectionDialog * cs )
{
GtkColorSelection * colorsel ;
gdouble color [ 4 ] ;
colorsel = GTK_COLOR_SELECTION ( cs - > colorsel ) ;
gtk_color_selection_get_color ( colorsel , color ) ;
gtk_color_selection_set_color ( colorsel , color ) ;
}
void
color_selection_changed ( GtkWidget * w ,
GtkColorSelectionDialog * cs )
{
GtkColorSelection * colorsel ;
gdouble color [ 4 ] ;
colorsel = GTK_COLOR_SELECTION ( cs - > colorsel ) ;
gtk_color_selection_get_color ( colorsel , color ) ;
}
void
1998-05-03 22:41:32 +00:00
create_color_selection ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
if ( ! window )
{
window = gtk_color_selection_dialog_new ( " color selection dialog " ) ;
gtk_color_selection_set_opacity (
GTK_COLOR_SELECTION ( GTK_COLOR_SELECTION_DIALOG ( window ) - > colorsel ) ,
TRUE ) ;
gtk_color_selection_set_update_policy (
GTK_COLOR_SELECTION ( GTK_COLOR_SELECTION_DIALOG ( window ) - > colorsel ) ,
GTK_UPDATE_CONTINUOUS ) ;
1998-11-28 07:42:37 +00:00
gtk_window_set_position ( GTK_WINDOW ( window ) , GTK_WIN_POS_MOUSE ) ;
1997-11-24 22:37:52 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_signal_connect (
GTK_OBJECT ( GTK_COLOR_SELECTION_DIALOG ( window ) - > colorsel ) ,
" color_changed " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( color_selection_changed ) ,
1997-11-24 22:37:52 +00:00
window ) ;
gtk_signal_connect (
GTK_OBJECT ( GTK_COLOR_SELECTION_DIALOG ( window ) - > ok_button ) ,
" clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( color_selection_ok ) ,
1997-11-24 22:37:52 +00:00
window ) ;
gtk_signal_connect_object (
GTK_OBJECT ( GTK_COLOR_SELECTION_DIALOG ( window ) - > cancel_button ) ,
" clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
1998-07-26 14:45:40 +00:00
/*
* GtkFileSelection
*/
1998-03-06 05:03:15 +00:00
void
file_selection_hide_fileops ( GtkWidget * widget ,
GtkFileSelection * fs )
{
gtk_file_selection_hide_fileop_buttons ( fs ) ;
}
1997-11-24 22:37:52 +00:00
void
file_selection_ok ( GtkWidget * w ,
GtkFileSelection * fs )
{
1998-06-15 21:27:17 +00:00
g_print ( " %s \n " , gtk_file_selection_get_filename ( fs ) ) ;
1998-02-13 05:33:17 +00:00
gtk_widget_destroy ( GTK_WIDGET ( fs ) ) ;
1997-11-24 22:37:52 +00:00
}
void
1998-05-03 22:41:32 +00:00
create_file_selection ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
1998-03-06 05:03:15 +00:00
GtkWidget * button ;
1997-11-24 22:37:52 +00:00
if ( ! window )
{
window = gtk_file_selection_new ( " file selection dialog " ) ;
1998-03-06 05:03:15 +00:00
gtk_file_selection_hide_fileop_buttons ( GTK_FILE_SELECTION ( window ) ) ;
1998-11-28 07:42:37 +00:00
gtk_window_set_position ( GTK_WINDOW ( window ) , GTK_WIN_POS_MOUSE ) ;
1997-11-24 22:37:52 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_signal_connect ( GTK_OBJECT ( GTK_FILE_SELECTION ( window ) - > ok_button ) ,
1997-12-06 22:12:10 +00:00
" clicked " , GTK_SIGNAL_FUNC ( file_selection_ok ) ,
1997-11-24 22:37:52 +00:00
window ) ;
gtk_signal_connect_object ( GTK_OBJECT ( GTK_FILE_SELECTION ( window ) - > cancel_button ) ,
1997-12-06 22:12:10 +00:00
" clicked " , GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
1998-03-06 05:03:15 +00:00
button = gtk_button_new_with_label ( " Hide Fileops " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
( GtkSignalFunc ) file_selection_hide_fileops ,
( gpointer ) window ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_FILE_SELECTION ( window ) - > action_area ) ,
button , FALSE , FALSE , 0 ) ;
gtk_widget_show ( button ) ;
button = gtk_button_new_with_label ( " Show Fileops " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
( GtkSignalFunc ) gtk_file_selection_show_fileop_buttons ,
( gpointer ) window ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_FILE_SELECTION ( window ) - > action_area ) ,
button , FALSE , FALSE , 0 ) ;
gtk_widget_show ( button ) ;
}
1997-11-24 22:37:52 +00:00
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
1998-07-26 14:45:40 +00:00
/*
* GtkFontSelection
*/
1998-06-15 21:27:17 +00:00
void
1998-06-19 01:26:24 +00:00
font_selection_ok ( GtkWidget * w ,
GtkFontSelectionDialog * fs )
1998-06-15 21:27:17 +00:00
{
1998-06-19 01:26:24 +00:00
g_print ( " %s \n " , gtk_font_selection_dialog_get_font_name ( fs ) ) ;
1998-06-15 21:27:17 +00:00
gtk_widget_destroy ( GTK_WIDGET ( fs ) ) ;
}
void
create_font_selection ( void )
{
static GtkWidget * window = NULL ;
if ( ! window )
{
window = gtk_font_selection_dialog_new ( " Font Selection Dialog " ) ;
1998-11-28 07:42:37 +00:00
gtk_window_set_position ( GTK_WINDOW ( window ) , GTK_WIN_POS_MOUSE ) ;
1998-06-15 21:27:17 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& window ) ;
gtk_signal_connect ( GTK_OBJECT ( GTK_FONT_SELECTION_DIALOG ( window ) - > ok_button ) ,
" clicked " , GTK_SIGNAL_FUNC ( font_selection_ok ) ,
1998-06-19 01:26:24 +00:00
GTK_FONT_SELECTION_DIALOG ( window ) ) ;
1998-06-15 21:27:17 +00:00
gtk_signal_connect_object ( GTK_OBJECT ( GTK_FONT_SELECTION_DIALOG ( window ) - > cancel_button ) ,
" clicked " , GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
1997-11-24 22:37:52 +00:00
/*
* GtkDialog
*/
1998-07-26 14:45:40 +00:00
1997-11-24 22:37:52 +00:00
static GtkWidget * dialog_window = NULL ;
1998-11-30 07:09:36 +00:00
static void
1997-11-24 22:37:52 +00:00
label_toggle ( GtkWidget * widget ,
GtkWidget * * label )
{
if ( ! ( * label ) )
{
* label = gtk_label_new ( " Dialog Test " ) ;
1998-02-02 05:35:59 +00:00
gtk_signal_connect ( GTK_OBJECT ( * label ) ,
" destroy " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
label ) ;
1997-11-24 22:37:52 +00:00
gtk_misc_set_padding ( GTK_MISC ( * label ) , 10 , 10 ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( dialog_window ) - > vbox ) ,
* label , TRUE , TRUE , 0 ) ;
gtk_widget_show ( * label ) ;
}
else
1998-02-02 05:35:59 +00:00
gtk_widget_destroy ( * label ) ;
1997-11-24 22:37:52 +00:00
}
1998-11-30 07:09:36 +00:00
static void
1998-05-03 22:41:32 +00:00
create_dialog ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * label ;
GtkWidget * button ;
if ( ! dialog_window )
{
dialog_window = gtk_dialog_new ( ) ;
gtk_signal_connect ( GTK_OBJECT ( dialog_window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& dialog_window ) ;
1998-07-26 14:45:40 +00:00
gtk_window_set_title ( GTK_WINDOW ( dialog_window ) , " GtkDialog " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( dialog_window ) , 0 ) ;
1998-07-26 14:45:40 +00:00
gtk_widget_set_usize ( dialog_window , 200 , 110 ) ;
1997-11-24 22:37:52 +00:00
button = gtk_button_new_with_label ( " OK " ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( dialog_window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
button = gtk_button_new_with_label ( " Toggle " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1998-02-02 05:35:59 +00:00
GTK_SIGNAL_FUNC ( label_toggle ) ,
1997-11-24 22:37:52 +00:00
& label ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( dialog_window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
label = NULL ;
}
if ( ! GTK_WIDGET_VISIBLE ( dialog_window ) )
gtk_widget_show ( dialog_window ) ;
else
gtk_widget_destroy ( dialog_window ) ;
}
1998-11-30 07:09:36 +00:00
/* Event Watcher
*/
static gboolean event_watcher_enter_id = 0 ;
static gboolean event_watcher_leave_id = 0 ;
static gboolean
event_watcher ( GtkObject * object ,
guint signal_id ,
reverted marius change to expose the type systems internal type info data
Mon Dec 7 03:08:39 1998 Tim Janik <timj@gtk.org>
* gtk/gtktypeutils.h:
* gtk/gtktypeutils.c: reverted marius change to expose the type systems
internal type info data to the user. if such functionality is required
we should provide wrapped accessors, ala gtk_signal_query().
* gtk/gtksignal.c (gtk_signal_connect_by_type): reverted marius change,
since it destroys the possibility to implement automatic marshaller
lookups some day, and it also disables third party code's ability to
connect to any signal. also the GtkTypeInfo structures are dynamically
allocated memory portions, so only the type system is really allowed
to access that stuff.
Mon Dec 7 01:32:18 1998 Tim Janik <timj@gtk.org>
* gtk/gtkfilesel.c (gtk_file_selection_key_press): always intercept the
Tab key on the entry. the focus shouldn't get lost even if completion
is attempted from an empty entry, since an empty entry string does
indeed have a valid completion meaning (complete all).
(gtk_file_selection_init): cast the gchar array parameter in calls to
gtk_clist_new_with_titles() to quit compiler warnings.
(check_dir): the no_stat_dirs struct must not be const, since we do
indeed modify its contents.
* gtk/testgtk.c (event_watcher): adapted prototype to fit new emission
hook semantics.
* gtk/gtksignal.h:
* gtk/gtksignal.c:
changed emission allocation, so we don't use a doubly linked list
but link ourselfs (singly linked).
changed emission hooks, they get the emision parameters passed as
well now and are emitted during the actuall signal emission (after
the RUN_FIRST class method, but prior to RUN_FIRST handlers).
the existing restrictions do still apply to signal emission hooks,
i.e. an emission may not be stopped or restarted from an emission hook.
due to possibly huge perfomance impacts, frequent use of emision hooks
is also not recommended.
(gtk_signal_next_and_invalidate): added an
assertments which explicits what the code assumes anyways: a
maximum amount of 65535 signals.
* gtk/gtkcontainer.h: deprecated gtk_container_foreach_interp(),
gtk_container_foreach_full() should be used instead.
* gtk/gtkmain.h:
deprecated gtk_timeout_add_interp and gtk_idle_add_interp, since
we provide _full variants.
* gtk/gtksignal.h: deprecated gtk_signal_connect_interp(), we provide
gtk_signal_connect_full() for long enough now.
1998-12-07 02:31:19 +00:00
guint n_params ,
GtkArg * params ,
1998-11-30 07:09:36 +00:00
gpointer data )
{
g_print ( " Watch: \" %s \" emitted for %s \n " ,
gtk_signal_name ( signal_id ) ,
gtk_type_name ( GTK_OBJECT_TYPE ( object ) ) ) ;
return TRUE ;
}
static void
event_watcher_down ( void )
{
if ( event_watcher_enter_id )
{
guint signal_id ;
signal_id = gtk_signal_lookup ( " enter_notify_event " , GTK_TYPE_WIDGET ) ;
gtk_signal_remove_emission_hook ( signal_id , event_watcher_enter_id ) ;
event_watcher_enter_id = 0 ;
signal_id = gtk_signal_lookup ( " leave_notify_event " , GTK_TYPE_WIDGET ) ;
gtk_signal_remove_emission_hook ( signal_id , event_watcher_leave_id ) ;
event_watcher_leave_id = 0 ;
}
}
static void
event_watcher_toggle ( void )
{
if ( event_watcher_enter_id )
event_watcher_down ( ) ;
else
{
guint signal_id ;
signal_id = gtk_signal_lookup ( " enter_notify_event " , GTK_TYPE_WIDGET ) ;
event_watcher_enter_id = gtk_signal_add_emission_hook ( signal_id , event_watcher , NULL ) ;
signal_id = gtk_signal_lookup ( " leave_notify_event " , GTK_TYPE_WIDGET ) ;
event_watcher_leave_id = gtk_signal_add_emission_hook ( signal_id , event_watcher , NULL ) ;
}
}
static void
create_event_watcher ( void )
{
GtkWidget * button ;
if ( ! dialog_window )
{
dialog_window = gtk_dialog_new ( ) ;
gtk_signal_connect ( GTK_OBJECT ( dialog_window ) , " destroy " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& dialog_window ) ;
gtk_signal_connect ( GTK_OBJECT ( dialog_window ) ,
" destroy " ,
GTK_SIGNAL_FUNC ( event_watcher_down ) ,
NULL ) ;
gtk_window_set_title ( GTK_WINDOW ( dialog_window ) , " Event Watcher " ) ;
gtk_container_set_border_width ( GTK_CONTAINER ( dialog_window ) , 0 ) ;
gtk_widget_set_usize ( dialog_window , 200 , 110 ) ;
button = gtk_toggle_button_new_with_label ( " Activate Watch " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( event_watcher_toggle ) ,
NULL ) ;
gtk_container_set_border_width ( GTK_CONTAINER ( button ) , 10 ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( dialog_window ) - > vbox ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
button = gtk_button_new_with_label ( " Close " ) ;
reverted marius change to expose the type systems internal type info data
Mon Dec 7 03:08:39 1998 Tim Janik <timj@gtk.org>
* gtk/gtktypeutils.h:
* gtk/gtktypeutils.c: reverted marius change to expose the type systems
internal type info data to the user. if such functionality is required
we should provide wrapped accessors, ala gtk_signal_query().
* gtk/gtksignal.c (gtk_signal_connect_by_type): reverted marius change,
since it destroys the possibility to implement automatic marshaller
lookups some day, and it also disables third party code's ability to
connect to any signal. also the GtkTypeInfo structures are dynamically
allocated memory portions, so only the type system is really allowed
to access that stuff.
Mon Dec 7 01:32:18 1998 Tim Janik <timj@gtk.org>
* gtk/gtkfilesel.c (gtk_file_selection_key_press): always intercept the
Tab key on the entry. the focus shouldn't get lost even if completion
is attempted from an empty entry, since an empty entry string does
indeed have a valid completion meaning (complete all).
(gtk_file_selection_init): cast the gchar array parameter in calls to
gtk_clist_new_with_titles() to quit compiler warnings.
(check_dir): the no_stat_dirs struct must not be const, since we do
indeed modify its contents.
* gtk/testgtk.c (event_watcher): adapted prototype to fit new emission
hook semantics.
* gtk/gtksignal.h:
* gtk/gtksignal.c:
changed emission allocation, so we don't use a doubly linked list
but link ourselfs (singly linked).
changed emission hooks, they get the emision parameters passed as
well now and are emitted during the actuall signal emission (after
the RUN_FIRST class method, but prior to RUN_FIRST handlers).
the existing restrictions do still apply to signal emission hooks,
i.e. an emission may not be stopped or restarted from an emission hook.
due to possibly huge perfomance impacts, frequent use of emision hooks
is also not recommended.
(gtk_signal_next_and_invalidate): added an
assertments which explicits what the code assumes anyways: a
maximum amount of 65535 signals.
* gtk/gtkcontainer.h: deprecated gtk_container_foreach_interp(),
gtk_container_foreach_full() should be used instead.
* gtk/gtkmain.h:
deprecated gtk_timeout_add_interp and gtk_idle_add_interp, since
we provide _full variants.
* gtk/gtksignal.h: deprecated gtk_signal_connect_interp(), we provide
gtk_signal_connect_full() for long enough now.
1998-12-07 02:31:19 +00:00
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
( GtkObject * ) dialog_window ) ;
1998-11-30 07:09:36 +00:00
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( dialog_window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( dialog_window ) )
gtk_widget_show ( dialog_window ) ;
else
gtk_widget_destroy ( dialog_window ) ;
}
1997-11-24 22:37:52 +00:00
/*
* GtkRange
*/
1998-07-26 14:45:40 +00:00
1998-11-30 07:09:36 +00:00
static void
1998-05-03 22:41:32 +00:00
create_range_controls ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * button ;
GtkWidget * scrollbar ;
GtkWidget * scale ;
GtkWidget * separator ;
GtkObject * adjustment ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " range controls " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
gtk_widget_show ( box1 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , TRUE , TRUE , 0 ) ;
gtk_widget_show ( box2 ) ;
adjustment = gtk_adjustment_new ( 0.0 , 0.0 , 101.0 , 0.1 , 1.0 , 1.0 ) ;
scale = gtk_hscale_new ( GTK_ADJUSTMENT ( adjustment ) ) ;
gtk_widget_set_usize ( GTK_WIDGET ( scale ) , 150 , 30 ) ;
gtk_range_set_update_policy ( GTK_RANGE ( scale ) , GTK_UPDATE_DELAYED ) ;
gtk_scale_set_digits ( GTK_SCALE ( scale ) , 1 ) ;
gtk_scale_set_draw_value ( GTK_SCALE ( scale ) , TRUE ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , scale , TRUE , TRUE , 0 ) ;
gtk_widget_show ( scale ) ;
scrollbar = gtk_hscrollbar_new ( GTK_ADJUSTMENT ( adjustment ) ) ;
gtk_range_set_update_policy ( GTK_RANGE ( scrollbar ) ,
GTK_UPDATE_CONTINUOUS ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , scrollbar , TRUE , TRUE , 0 ) ;
gtk_widget_show ( scrollbar ) ;
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
gtk_widget_show ( separator ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
gtk_widget_show ( box2 ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
/*
* GtkRulers
*/
1998-07-26 14:45:40 +00:00
1997-11-24 22:37:52 +00:00
void
1998-05-03 22:41:32 +00:00
create_rulers ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * table ;
GtkWidget * ruler ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
1998-05-13 04:59:38 +00:00
gtk_window_set_policy ( GTK_WINDOW ( window ) , TRUE , TRUE , FALSE ) ;
1997-11-24 22:37:52 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " rulers " ) ;
gtk_widget_set_usize ( window , 300 , 300 ) ;
gtk_widget_set_events ( window ,
GDK_POINTER_MOTION_MASK
| GDK_POINTER_MOTION_HINT_MASK ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
table = gtk_table_new ( 2 , 2 , FALSE ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , table ) ;
gtk_widget_show ( table ) ;
ruler = gtk_hruler_new ( ) ;
1998-05-13 04:59:38 +00:00
gtk_ruler_set_metric ( GTK_RULER ( ruler ) , GTK_CENTIMETERS ) ;
gtk_ruler_set_range ( GTK_RULER ( ruler ) , 100 , 0 , 0 , 20 ) ;
1997-11-24 22:37:52 +00:00
gtk_signal_connect_object (
GTK_OBJECT ( window ) ,
" motion_notify_event " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC (
GTK_WIDGET_CLASS ( GTK_OBJECT ( ruler ) - > klass ) - > motion_notify_event ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( ruler ) ) ;
gtk_table_attach ( GTK_TABLE ( table ) , ruler , 1 , 2 , 0 , 1 ,
GTK_EXPAND | GTK_FILL , GTK_FILL , 0 , 0 ) ;
gtk_widget_show ( ruler ) ;
ruler = gtk_vruler_new ( ) ;
gtk_ruler_set_range ( GTK_RULER ( ruler ) , 5 , 15 , 0 , 20 ) ;
gtk_signal_connect_object (
GTK_OBJECT ( window ) ,
" motion_notify_event " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( GTK_WIDGET_CLASS ( GTK_OBJECT ( ruler ) - > klass ) - > motion_notify_event ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( ruler ) ) ;
gtk_table_attach ( GTK_TABLE ( table ) , ruler , 0 , 1 , 1 , 2 ,
GTK_FILL , GTK_EXPAND | GTK_FILL , 0 , 0 ) ;
gtk_widget_show ( ruler ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
1998-03-02 23:16:39 +00:00
static void
text_toggle_editable ( GtkWidget * checkbutton ,
GtkWidget * text )
{
gtk_text_set_editable ( GTK_TEXT ( text ) ,
GTK_TOGGLE_BUTTON ( checkbutton ) - > active ) ;
}
1998-03-23 06:27:31 +00:00
static void
text_toggle_word_wrap ( GtkWidget * checkbutton ,
GtkWidget * text )
{
gtk_text_set_word_wrap ( GTK_TEXT ( text ) ,
GTK_TOGGLE_BUTTON ( checkbutton ) - > active ) ;
}
1998-08-25 00:06:38 +00:00
struct {
GdkColor color ;
gchar * name ;
} text_colors [ ] = {
{ { 0 , 0x0000 , 0x0000 , 0x0000 } , " black " } ,
{ { 0 , 0xFFFF , 0xFFFF , 0xFFFF } , " white " } ,
{ { 0 , 0xFFFF , 0x0000 , 0x0000 } , " red " } ,
{ { 0 , 0x0000 , 0xFFFF , 0x0000 } , " green " } ,
{ { 0 , 0x0000 , 0x0000 , 0xFFFF } , " blue " } ,
{ { 0 , 0x0000 , 0xFFFF , 0xFFFF } , " cyan " } ,
{ { 0 , 0xFFFF , 0x0000 , 0xFFFF } , " magenta " } ,
{ { 0 , 0xFFFF , 0xFFFF , 0x0000 } , " yellow " }
} ;
int ntext_colors = sizeof ( text_colors ) / sizeof ( text_colors [ 0 ] ) ;
1997-11-24 22:37:52 +00:00
/*
* GtkText
*/
1998-08-25 00:06:38 +00:00
void
text_insert_random ( GtkWidget * w , GtkText * text )
{
int i ;
char c ;
for ( i = 0 ; i < 10 ; i + + )
{
c = ' A ' + rand ( ) % ( ' Z ' - ' A ' ) ;
gtk_text_set_point ( text , rand ( ) % gtk_text_get_length ( text ) ) ;
gtk_text_insert ( text , NULL , NULL , NULL , & c , 1 ) ;
}
}
1998-07-26 14:45:40 +00:00
1997-11-24 22:37:52 +00:00
void
1998-05-03 22:41:32 +00:00
create_text ( void )
1997-11-24 22:37:52 +00:00
{
1998-08-25 00:06:38 +00:00
int i , j ;
1997-11-24 22:37:52 +00:00
static GtkWidget * window = NULL ;
GtkWidget * box1 ;
GtkWidget * box2 ;
1998-03-23 06:27:31 +00:00
GtkWidget * hbox ;
1997-11-24 22:37:52 +00:00
GtkWidget * button ;
1998-03-23 06:27:31 +00:00
GtkWidget * check ;
1997-11-24 22:37:52 +00:00
GtkWidget * separator ;
1999-02-16 04:52:21 +00:00
GtkWidget * scrolled_window ;
1997-11-24 22:37:52 +00:00
GtkWidget * text ;
1998-08-25 00:06:38 +00:00
GdkFont * font ;
1997-11-24 22:37:52 +00:00
1998-03-07 03:05:36 +00:00
FILE * infile ;
1997-11-24 22:37:52 +00:00
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_widget_set_name ( window , " text window " ) ;
1998-03-07 03:05:36 +00:00
gtk_widget_set_usize ( window , 500 , 500 ) ;
gtk_window_set_policy ( GTK_WINDOW ( window ) , TRUE , TRUE , FALSE ) ;
1997-11-24 22:37:52 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " test " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
gtk_widget_show ( box1 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , TRUE , TRUE , 0 ) ;
gtk_widget_show ( box2 ) ;
1999-02-16 04:52:21 +00:00
scrolled_window = gtk_scrolled_window_new ( NULL , NULL ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , scrolled_window , TRUE , TRUE , 0 ) ;
gtk_scrolled_window_set_policy ( GTK_SCROLLED_WINDOW ( scrolled_window ) ,
GTK_POLICY_NEVER ,
GTK_POLICY_ALWAYS ) ;
gtk_widget_show ( scrolled_window ) ;
1997-11-24 22:37:52 +00:00
text = gtk_text_new ( NULL , NULL ) ;
1998-01-20 21:40:38 +00:00
gtk_text_set_editable ( GTK_TEXT ( text ) , TRUE ) ;
1999-02-16 04:52:21 +00:00
gtk_container_add ( GTK_CONTAINER ( scrolled_window ) , text ) ;
1998-08-11 19:06:18 +00:00
gtk_widget_grab_focus ( text ) ;
1997-11-24 22:37:52 +00:00
gtk_widget_show ( text ) ;
gtk_text_freeze ( GTK_TEXT ( text ) ) ;
1998-08-25 00:06:38 +00:00
font = gdk_font_load ( " -adobe-courier-medium-r-normal--*-120-*-*-*-*-*-* " ) ;
for ( i = 0 ; i < ntext_colors ; i + + )
{
gtk_text_insert ( GTK_TEXT ( text ) , font , NULL , NULL ,
text_colors [ i ] . name , - 1 ) ;
gtk_text_insert ( GTK_TEXT ( text ) , font , NULL , NULL , " \t " , - 1 ) ;
for ( j = 0 ; j < ntext_colors ; j + + )
{
gtk_text_insert ( GTK_TEXT ( text ) , font ,
& text_colors [ j ] . color , & text_colors [ i ] . color ,
" XYZ " , - 1 ) ;
}
gtk_text_insert ( GTK_TEXT ( text ) , NULL , NULL , NULL , " \n " , - 1 ) ;
}
/* The Text widget will reference count the font, so we
* unreference it here
*/
gdk_font_unref ( font ) ;
1997-11-24 22:37:52 +00:00
1998-03-07 03:05:36 +00:00
infile = fopen ( " testgtk.c " , " r " ) ;
if ( infile )
{
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
char * buffer ;
int nbytes_read , nbytes_alloc ;
1998-03-07 03:05:36 +00:00
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
nbytes_read = 0 ;
nbytes_alloc = 1024 ;
buffer = g_new ( char , nbytes_alloc ) ;
1998-03-07 03:05:36 +00:00
while ( 1 )
{
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
int len ;
if ( nbytes_alloc < nbytes_read + 1024 )
{
nbytes_alloc * = 2 ;
buffer = g_realloc ( buffer , nbytes_alloc ) ;
}
len = fread ( buffer + nbytes_read , 1 , 1024 , infile ) ;
nbytes_read + = len ;
if ( len < 1024 )
1998-03-07 03:05:36 +00:00
break ;
}
Destroy widgets _after_ propagating unrealize signals through the widget
Mon Dec 7 10:27:09 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c: Destroy widgets _after_ propagating unrealize
signals through the widget heirarchy. This is unpleasant, as it
causes more X traffic, but is necessary, because we have to clean
up our Input Contexts before destroying the X windows.
(from matsu-981109-0.patch)
Mon Dec 7 10:18:18 1998 Owen Taylor <otaylor@redhat.com>
Applied gtk-a-higuti-981202-0 :
[ a-higuti@math.sci.hokudai.ac.jp (Akira Higuchi) ]
* gdk/gdk.h gdk/gdk.c
(gdk_mbstowcs): New function. Nearly equals to mbstowcs, but
implemented by a combination of Xlib functions, so
it works even with X_LOCALE.
(gdk_wcstombs): New function.
(g_mbtowc): Removed. No longer needed.
* gdk/gdk.h gdk/gdkfont.c gdk/gdkdraw.c:
Added _wc() variants to gdk_text_width(),
gdk_char_width(), gdk_draw_text(),
* gdk/gdki18n.h
(mblen, mbtowc, wctomb, mbstowcs, wcstombs,
wcslen, wcscpy, wcsncpy):
Removed. No longer needed.
(iswalnum): Removed.
(gdk_iswalnum): New macro.
(gdk_iswspace): New macro.
* gdk/gdktype.h
(GdkWChar): New typedef.
* gtk/gtkentry.h, gtk/gtkentry.c
There are many changes according to the change of the
internal representation of text, from multibyte string
to wide characters.
* gtk/gtkprivate.h, gtk/gtkmain.c
Removed the variable gtk_use_mb and related codes.
* gtk/gtkspinbutton.c
Some changes according to the change of type of entry->text.
* gtk/gtktext.h, gtk/gtktext.c
Changed the internal representation of text. We use GdkWchar
if a fontset is supplied. If not, we use guchar to save
memory.
1998-12-09 06:36:57 +00:00
gtk_text_insert ( GTK_TEXT ( text ) , NULL , NULL ,
NULL , buffer , nbytes_read ) ;
g_free ( buffer ) ;
1998-03-07 03:05:36 +00:00
fclose ( infile ) ;
}
1997-11-24 22:37:52 +00:00
gtk_text_thaw ( GTK_TEXT ( text ) ) ;
1998-03-23 06:27:31 +00:00
hbox = gtk_hbutton_box_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , hbox , FALSE , FALSE , 0 ) ;
gtk_widget_show ( hbox ) ;
check = gtk_check_button_new_with_label ( " Editable " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , check , FALSE , FALSE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( check ) , " toggled " ,
1998-03-02 23:16:39 +00:00
GTK_SIGNAL_FUNC ( text_toggle_editable ) , text ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( check ) , TRUE ) ;
1998-03-23 06:27:31 +00:00
gtk_widget_show ( check ) ;
check = gtk_check_button_new_with_label ( " Wrap Words " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , check , FALSE , TRUE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( check ) , " toggled " ,
GTK_SIGNAL_FUNC ( text_toggle_word_wrap ) , text ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( check ) , FALSE ) ;
1998-03-23 06:27:31 +00:00
gtk_widget_show ( check ) ;
1998-03-02 23:16:39 +00:00
1997-11-24 22:37:52 +00:00
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
gtk_widget_show ( separator ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
gtk_widget_show ( box2 ) ;
1998-08-25 00:06:38 +00:00
button = gtk_button_new_with_label ( " insert random " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( text_insert_random ) ,
GTK_TEXT ( text ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
1997-11-24 22:37:52 +00:00
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
/*
* GtkNotebook
*/
1998-02-19 05:13:46 +00:00
GdkPixmap * book_open ;
GdkPixmap * book_closed ;
GdkBitmap * book_open_mask ;
GdkBitmap * book_closed_mask ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
GtkWidget * sample_notebook ;
1998-02-19 05:13:46 +00:00
static void
page_switch ( GtkWidget * widget , GtkNotebookPage * page , gint page_num )
{
GtkNotebookPage * oldpage ;
GtkWidget * pixwid ;
oldpage = GTK_NOTEBOOK ( widget ) - > cur_page ;
if ( page = = oldpage )
return ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
pixwid = ( ( GtkBoxChild * )
( GTK_BOX ( page - > tab_label ) - > children - > data ) ) - > widget ;
1998-02-19 05:13:46 +00:00
gtk_pixmap_set ( GTK_PIXMAP ( pixwid ) , book_open , book_open_mask ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
pixwid = ( ( GtkBoxChild * )
( GTK_BOX ( page - > menu_label ) - > children - > data ) ) - > widget ;
1998-02-19 05:13:46 +00:00
gtk_pixmap_set ( GTK_PIXMAP ( pixwid ) , book_open , book_open_mask ) ;
if ( oldpage )
{
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
pixwid = ( ( GtkBoxChild * )
( GTK_BOX ( oldpage - > tab_label ) - > children - > data ) ) - > widget ;
1998-02-19 05:13:46 +00:00
gtk_pixmap_set ( GTK_PIXMAP ( pixwid ) , book_closed , book_closed_mask ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
pixwid = ( ( GtkBoxChild * )
( GTK_BOX ( oldpage - > menu_label ) - > children - > data ) ) - > widget ;
1998-02-19 05:13:46 +00:00
gtk_pixmap_set ( GTK_PIXMAP ( pixwid ) , book_closed , book_closed_mask ) ;
}
}
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
static void
tab_fill ( GtkToggleButton * button , GtkWidget * child )
{
gboolean expand ;
GtkPackType pack_type ;
gtk_notebook_query_tab_label_packing ( GTK_NOTEBOOK ( sample_notebook ) , child ,
& expand , NULL , & pack_type ) ;
gtk_notebook_set_tab_label_packing ( GTK_NOTEBOOK ( sample_notebook ) , child ,
expand , button - > active , pack_type ) ;
}
static void
tab_expand ( GtkToggleButton * button , GtkWidget * child )
{
gboolean fill ;
GtkPackType pack_type ;
gtk_notebook_query_tab_label_packing ( GTK_NOTEBOOK ( sample_notebook ) , child ,
NULL , & fill , & pack_type ) ;
gtk_notebook_set_tab_label_packing ( GTK_NOTEBOOK ( sample_notebook ) , child ,
button - > active , fill , pack_type ) ;
}
static void
tab_pack ( GtkToggleButton * button , GtkWidget * child )
{
gboolean expand ;
gboolean fill ;
gtk_notebook_query_tab_label_packing ( GTK_NOTEBOOK ( sample_notebook ) , child ,
& expand , & fill , NULL ) ;
gtk_notebook_set_tab_label_packing ( GTK_NOTEBOOK ( sample_notebook ) , child ,
expand , fill , button - > active ) ;
}
1998-02-19 05:13:46 +00:00
static void
create_pages ( GtkNotebook * notebook , gint start , gint end )
{
GtkWidget * child = NULL ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
GtkWidget * button ;
1998-02-19 05:13:46 +00:00
GtkWidget * label ;
GtkWidget * hbox ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
GtkWidget * vbox ;
1998-02-19 05:13:46 +00:00
GtkWidget * label_box ;
GtkWidget * menu_box ;
GtkWidget * pixwid ;
gint i ;
char buffer [ 32 ] ;
for ( i = start ; i < = end ; i + + )
{
sprintf ( buffer , " Page %d " , i ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
child = gtk_frame_new ( buffer ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( child ) , 10 ) ;
1998-02-19 05:13:46 +00:00
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
vbox = gtk_vbox_new ( TRUE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( vbox ) , 10 ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
gtk_container_add ( GTK_CONTAINER ( child ) , vbox ) ;
1998-02-19 05:13:46 +00:00
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
hbox = gtk_hbox_new ( TRUE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , TRUE , 5 ) ;
1998-02-19 05:13:46 +00:00
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
button = gtk_check_button_new_with_label ( " Fill Tab " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 5 ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( button ) , TRUE ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " toggled " ,
GTK_SIGNAL_FUNC ( tab_fill ) , child ) ;
1998-02-19 05:13:46 +00:00
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
button = gtk_check_button_new_with_label ( " Expand Tab " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 5 ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " toggled " ,
GTK_SIGNAL_FUNC ( tab_expand ) , child ) ;
button = gtk_check_button_new_with_label ( " Pack end " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , button , TRUE , TRUE , 5 ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " toggled " ,
GTK_SIGNAL_FUNC ( tab_pack ) , child ) ;
button = gtk_button_new_with_label ( " Hide Page " ) ;
gtk_box_pack_end ( GTK_BOX ( vbox ) , button , FALSE , FALSE , 5 ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_hide ) ,
GTK_OBJECT ( child ) ) ;
1998-02-19 05:13:46 +00:00
gtk_widget_show_all ( child ) ;
label_box = gtk_hbox_new ( FALSE , 0 ) ;
pixwid = gtk_pixmap_new ( book_closed , book_closed_mask ) ;
gtk_box_pack_start ( GTK_BOX ( label_box ) , pixwid , FALSE , TRUE , 0 ) ;
gtk_misc_set_padding ( GTK_MISC ( pixwid ) , 3 , 1 ) ;
label = gtk_label_new ( buffer ) ;
gtk_box_pack_start ( GTK_BOX ( label_box ) , label , FALSE , TRUE , 0 ) ;
gtk_widget_show_all ( label_box ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
1998-02-19 05:13:46 +00:00
menu_box = gtk_hbox_new ( FALSE , 0 ) ;
pixwid = gtk_pixmap_new ( book_closed , book_closed_mask ) ;
gtk_box_pack_start ( GTK_BOX ( menu_box ) , pixwid , FALSE , TRUE , 0 ) ;
gtk_misc_set_padding ( GTK_MISC ( pixwid ) , 3 , 1 ) ;
label = gtk_label_new ( buffer ) ;
gtk_box_pack_start ( GTK_BOX ( menu_box ) , label , FALSE , TRUE , 0 ) ;
gtk_widget_show_all ( menu_box ) ;
gtk_notebook_append_page_menu ( notebook , child , label_box , menu_box ) ;
}
}
static void
1997-11-24 22:37:52 +00:00
rotate_notebook ( GtkButton * button ,
GtkNotebook * notebook )
{
gtk_notebook_set_tab_pos ( notebook , ( notebook - > tab_pos + 1 ) % 4 ) ;
}
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
static void
show_all_pages ( GtkButton * button ,
GtkNotebook * notebook )
{
gtk_container_foreach ( GTK_CONTAINER ( notebook ) ,
( GtkCallback ) gtk_widget_show , NULL ) ;
}
1998-02-19 05:13:46 +00:00
static void
standard_notebook ( GtkButton * button ,
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
GtkNotebook * notebook )
1998-02-19 05:13:46 +00:00
{
gint i ;
gtk_notebook_set_show_tabs ( notebook , TRUE ) ;
gtk_notebook_set_scrollable ( notebook , FALSE ) ;
if ( g_list_length ( notebook - > children ) = = 15 )
for ( i = 0 ; i < 10 ; i + + )
gtk_notebook_remove_page ( notebook , 5 ) ;
}
static void
notabs_notebook ( GtkButton * button ,
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
GtkNotebook * notebook )
1998-02-19 05:13:46 +00:00
{
gint i ;
gtk_notebook_set_show_tabs ( notebook , FALSE ) ;
if ( g_list_length ( notebook - > children ) = = 15 )
for ( i = 0 ; i < 10 ; i + + )
gtk_notebook_remove_page ( notebook , 5 ) ;
}
static void
scrollable_notebook ( GtkButton * button ,
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
GtkNotebook * notebook )
1998-02-19 05:13:46 +00:00
{
gtk_notebook_set_show_tabs ( notebook , TRUE ) ;
gtk_notebook_set_scrollable ( notebook , TRUE ) ;
if ( g_list_length ( notebook - > children ) = = 5 )
create_pages ( notebook , 6 , 15 ) ;
}
static void
notebook_popup ( GtkToggleButton * button ,
GtkNotebook * notebook )
{
if ( button - > active )
gtk_notebook_popup_enable ( notebook ) ;
else
gtk_notebook_popup_disable ( notebook ) ;
}
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
static void
notebook_homogeneous ( GtkToggleButton * button ,
GtkNotebook * notebook )
{
gtk_notebook_set_homogeneous_tabs ( notebook , button - > active ) ;
}
1998-02-19 05:13:46 +00:00
static void
1998-05-03 22:41:32 +00:00
create_notebook ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * button ;
GtkWidget * separator ;
1998-02-19 05:13:46 +00:00
GtkWidget * omenu ;
1998-03-19 01:07:48 +00:00
GdkColor * transparent = NULL ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
GtkWidget * label ;
1997-11-24 22:37:52 +00:00
1998-07-26 14:45:40 +00:00
static OptionMenuItem items [ ] =
{
{ " Standard " , standard_notebook } ,
{ " No tabs " , notabs_notebook } ,
{ " Scrollable " , scrollable_notebook }
} ;
1997-11-24 22:37:52 +00:00
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " notebook " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
sample_notebook = gtk_notebook_new ( ) ;
gtk_signal_connect ( GTK_OBJECT ( sample_notebook ) , " switch_page " ,
1998-02-19 05:13:46 +00:00
GTK_SIGNAL_FUNC ( page_switch ) , NULL ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
gtk_notebook_set_tab_pos ( GTK_NOTEBOOK ( sample_notebook ) , GTK_POS_TOP ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , sample_notebook , TRUE , TRUE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( sample_notebook ) , 10 ) ;
1997-11-24 22:37:52 +00:00
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
gtk_widget_realize ( sample_notebook ) ;
book_open = gdk_pixmap_create_from_xpm_d ( sample_notebook - > window ,
1998-02-19 05:13:46 +00:00
& book_open_mask ,
1998-03-19 01:07:48 +00:00
transparent ,
1998-02-19 05:13:46 +00:00
book_open_xpm ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
book_closed = gdk_pixmap_create_from_xpm_d ( sample_notebook - > window ,
1998-02-19 05:13:46 +00:00
& book_closed_mask ,
1998-03-19 01:07:48 +00:00
transparent ,
1998-02-19 05:13:46 +00:00
book_closed_xpm ) ;
1997-11-24 22:37:52 +00:00
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
create_pages ( GTK_NOTEBOOK ( sample_notebook ) , 1 , 5 ) ;
1997-11-24 22:37:52 +00:00
separator = gtk_hseparator_new ( ) ;
1998-02-19 05:13:46 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 10 ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
box2 = gtk_hbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1998-02-19 05:13:46 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
1998-07-26 14:45:40 +00:00
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
button = gtk_check_button_new_with_label ( " popup menu " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , FALSE , 0 ) ;
1998-02-19 05:13:46 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( notebook_popup ) ,
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
GTK_OBJECT ( sample_notebook ) ) ;
button = gtk_check_button_new_with_label ( " homogeneous tabs " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , FALSE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( notebook_homogeneous ) ,
GTK_OBJECT ( sample_notebook ) ) ;
box2 = gtk_hbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
label = gtk_label_new ( " Notebook Style : " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , label , FALSE , TRUE , 0 ) ;
omenu = build_option_menu ( items , 3 , 0 , sample_notebook ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , omenu , FALSE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " Show all Pages " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , FALSE , TRUE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( show_all_pages ) , sample_notebook ) ;
1998-07-26 14:45:40 +00:00
box2 = gtk_hbox_new ( TRUE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
button = gtk_button_new_with_label ( " prev " ) ;
1997-11-24 22:37:52 +00:00
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
GTK_SIGNAL_FUNC ( gtk_notebook_prev_page ) ,
GTK_OBJECT ( sample_notebook ) ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " next " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1998-02-19 05:13:46 +00:00
GTK_SIGNAL_FUNC ( gtk_notebook_next_page ) ,
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
GTK_OBJECT ( sample_notebook ) ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " rotate " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
GTK_SIGNAL_FUNC ( rotate_notebook ) , sample_notebook ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 5 ) ;
button = gtk_button_new_with_label ( " close " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( button ) , 5 ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , button , FALSE , FALSE , 0 ) ;
1998-05-05 15:00:12 +00:00
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
new flags : homogeneous; new guints : tab_hborder, tab_vborder; marked
Tue Nov 17 00:06:29 1998 Lars Hamann <lars@gtk.org>
* gtk/gtknotebook.h (struct _GtkNotebook): new flags : homogeneous;
new guints : tab_hborder, tab_vborder; marked tab_border deprecated
(struct _GtkNotebookPage): new flags : expand, fill, pack
* gtk/gtknotebook.h/c
(gtk_notebook_set_homogeneous_tabs): new function. set homogeneneous
tabs
(gtk_notebook_set_tab_border): set tab_h/vborder to tab_border
(gtk_notebook_set_tab_hborder): new function. set tab_hborder
(gtk_notebook_set_tab_vborder): new function. set tab_vborder
(gtk_notebook_query_tab_label): new function. get tab_label widget.
(gtk_notebook_set_tab_label): new function. set tab_label widget.
(gtk_notebook_set_tab_label_text): new function. set tab_label text.
(gtk_notebook_query_menu_label): new function. get tab_label widget.
(gtk_notebook_set_menu_label): new function. set tab_label widget.
(gtk_notebook_set_menu_label_text): new function. set tab_label text.
(gtk_notebook_set_tab_label_packing): new function. set tab_label
fill, expand, fill_type
(gtk_notebook_query_tab_label_packing): new function. get tab_label
fill, expand, fill_type
(gtk_notebook_real_page_position): return logic page number
(gtk_notebook_search_page) search next/prev logic page
(gtk_notebook_update_labels): set logic page number.
(gtk_notebook_page_compare): renamed gtk_notebook_find_page
(gtk_notebook_set/get_child_arg): new args CHILD_ARG_TAB_EXPAND,
CHILD_ARG_TAB_FILL, CHILD_ARG_TAB_PACK
(gtk_notebook_button_press) (gtk_notebook_key_press)
(gtk_notebook_focus) (gtk_notebook_pages_allocate)
(gtk_notebook_calc_tabs) (gtk_notebook_switch_focus_tab)
use gtk_notebook_search_page
(gtk_notebook_page_allocate): fixed allocation bug
(gtk_notebook_set/get_arg): new args TAB_HBORDER, TAB_VBORDER.
(gtk_notebook_init): unset GTK_NO_WINDOW flag
(gtk_notebook_size_request): check whether page->child is visible.
changes due to tab h/vborder, homogeneous tabs
(gtk_notebook_paint): don't draw invisible tabs
(gtk_notebook_switch_page): calculate page_num if it's less than 0
(gtk_notebook_append_*) (gtk_notebook_prepend_*)
(gtk_notebook_insert_page): removed sanity checks
* gtk/testgtk.c (create_notebook): extended Notebook sample a bit.
1998-11-16 23:40:50 +00:00
gtk_widget_grab_default ( button ) ;
1997-11-24 22:37:52 +00:00
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-02-19 05:13:46 +00:00
gtk_widget_show_all ( window ) ;
1997-11-24 22:37:52 +00:00
else
gtk_widget_destroy ( window ) ;
}
/*
* GtkPanes
*/
1998-07-26 14:45:40 +00:00
1998-12-15 17:56:31 +00:00
void
toggle_resize ( GtkWidget * widget , GtkWidget * child )
{
GtkPaned * paned = GTK_PANED ( child - > parent ) ;
gboolean is_child1 = ( child = = paned - > child1 ) ;
gboolean resize , shrink ;
resize = is_child1 ? paned - > child1_resize : paned - > child2_resize ;
shrink = is_child1 ? paned - > child1_shrink : paned - > child2_shrink ;
gtk_widget_ref ( child ) ;
gtk_container_remove ( GTK_CONTAINER ( child - > parent ) , child ) ;
if ( is_child1 )
gtk_paned_pack1 ( paned , child , ! resize , shrink ) ;
else
gtk_paned_pack2 ( paned , child , ! resize , shrink ) ;
gtk_widget_unref ( child ) ;
}
void
toggle_shrink ( GtkWidget * widget , GtkWidget * child )
{
GtkPaned * paned = GTK_PANED ( child - > parent ) ;
gboolean is_child1 = ( child = = paned - > child1 ) ;
gboolean resize , shrink ;
resize = is_child1 ? paned - > child1_resize : paned - > child2_resize ;
shrink = is_child1 ? paned - > child1_shrink : paned - > child2_shrink ;
gtk_widget_ref ( child ) ;
gtk_container_remove ( GTK_CONTAINER ( child - > parent ) , child ) ;
if ( is_child1 )
gtk_paned_pack1 ( paned , child , resize , ! shrink ) ;
else
gtk_paned_pack2 ( paned , child , resize , ! shrink ) ;
gtk_widget_unref ( child ) ;
}
GtkWidget *
create_pane_options ( GtkPaned * paned ,
const gchar * frame_label ,
const gchar * label1 ,
const gchar * label2 )
{
GtkWidget * frame ;
GtkWidget * table ;
GtkWidget * label ;
GtkWidget * check_button ;
frame = gtk_frame_new ( frame_label ) ;
gtk_container_set_border_width ( GTK_CONTAINER ( frame ) , 4 ) ;
table = gtk_table_new ( 3 , 2 , 4 ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , table ) ;
label = gtk_label_new ( label1 ) ;
gtk_table_attach_defaults ( GTK_TABLE ( table ) , label ,
0 , 1 , 0 , 1 ) ;
check_button = gtk_check_button_new_with_label ( " Resize " ) ;
gtk_table_attach_defaults ( GTK_TABLE ( table ) , check_button ,
0 , 1 , 1 , 2 ) ;
gtk_signal_connect ( GTK_OBJECT ( check_button ) , " toggled " ,
GTK_SIGNAL_FUNC ( toggle_resize ) ,
paned - > child1 ) ;
check_button = gtk_check_button_new_with_label ( " Shrink " ) ;
gtk_table_attach_defaults ( GTK_TABLE ( table ) , check_button ,
0 , 1 , 2 , 3 ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( check_button ) ,
1998-12-15 17:56:31 +00:00
TRUE ) ;
gtk_signal_connect ( GTK_OBJECT ( check_button ) , " toggled " ,
GTK_SIGNAL_FUNC ( toggle_shrink ) ,
paned - > child1 ) ;
label = gtk_label_new ( label2 ) ;
gtk_table_attach_defaults ( GTK_TABLE ( table ) , label ,
1 , 2 , 0 , 1 ) ;
check_button = gtk_check_button_new_with_label ( " Resize " ) ;
gtk_table_attach_defaults ( GTK_TABLE ( table ) , check_button ,
1 , 2 , 1 , 2 ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( check_button ) ,
1998-12-15 17:56:31 +00:00
TRUE ) ;
gtk_signal_connect ( GTK_OBJECT ( check_button ) , " toggled " ,
GTK_SIGNAL_FUNC ( toggle_resize ) ,
paned - > child2 ) ;
check_button = gtk_check_button_new_with_label ( " Shrink " ) ;
gtk_table_attach_defaults ( GTK_TABLE ( table ) , check_button ,
1 , 2 , 2 , 3 ) ;
1999-01-11 18:49:54 +00:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( check_button ) ,
1998-12-15 17:56:31 +00:00
TRUE ) ;
gtk_signal_connect ( GTK_OBJECT ( check_button ) , " toggled " ,
GTK_SIGNAL_FUNC ( toggle_shrink ) ,
paned - > child2 ) ;
return frame ;
}
1997-11-24 22:37:52 +00:00
void
1998-05-03 22:41:32 +00:00
create_panes ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * frame ;
GtkWidget * hpaned ;
GtkWidget * vpaned ;
1998-03-18 21:11:04 +00:00
GtkWidget * button ;
1998-12-15 17:56:31 +00:00
GtkWidget * vbox ;
1997-11-24 22:37:52 +00:00
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " Panes " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
1998-12-15 17:56:31 +00:00
vbox = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , vbox ) ;
1997-11-24 22:37:52 +00:00
vpaned = gtk_vpaned_new ( ) ;
1998-12-15 17:56:31 +00:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , vpaned , TRUE , TRUE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( vpaned ) , 5 ) ;
1997-11-24 22:37:52 +00:00
hpaned = gtk_hpaned_new ( ) ;
gtk_paned_add1 ( GTK_PANED ( vpaned ) , hpaned ) ;
frame = gtk_frame_new ( NULL ) ;
gtk_frame_set_shadow_type ( GTK_FRAME ( frame ) , GTK_SHADOW_IN ) ;
gtk_widget_set_usize ( frame , 60 , 60 ) ;
gtk_paned_add1 ( GTK_PANED ( hpaned ) , frame ) ;
1998-03-18 21:11:04 +00:00
button = gtk_button_new_with_label ( " Hi there " ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , button ) ;
1997-11-24 22:37:52 +00:00
frame = gtk_frame_new ( NULL ) ;
gtk_frame_set_shadow_type ( GTK_FRAME ( frame ) , GTK_SHADOW_IN ) ;
gtk_widget_set_usize ( frame , 80 , 60 ) ;
gtk_paned_add2 ( GTK_PANED ( hpaned ) , frame ) ;
frame = gtk_frame_new ( NULL ) ;
gtk_frame_set_shadow_type ( GTK_FRAME ( frame ) , GTK_SHADOW_IN ) ;
gtk_widget_set_usize ( frame , 60 , 80 ) ;
gtk_paned_add2 ( GTK_PANED ( vpaned ) , frame ) ;
1998-12-15 17:56:31 +00:00
/* Now create toggle buttons to control sizing */
gtk_box_pack_start ( GTK_BOX ( vbox ) ,
create_pane_options ( GTK_PANED ( hpaned ) ,
" Horizontal " ,
" Left " ,
" Right " ) ,
FALSE , FALSE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) ,
create_pane_options ( GTK_PANED ( vpaned ) ,
" Vertical " ,
" Top " ,
" Bottom " ) ,
FALSE , FALSE , 0 ) ;
gtk_widget_show_all ( vbox ) ;
1997-11-24 22:37:52 +00:00
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
/*
* Drag - N - Drop
*/
1997-12-06 22:12:10 +00:00
Added a modular client-message-filter mechanism, that is used for the DND
Sun Oct 18 18:16:39 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdk.c gdkprivate.h: Added a modular client-message-filter
mechanism, that is used for the DND messages.
Removed all the old DND code.
* gdk/gdkcolormap.c gdk/gdkcolormap.h: Add a function to
get the visual of a given colormap.
* gtk/gtkcolorsel.c: Conversion to new DND, drag
a color-swatch.
* gdk/gdk.h gdk/gdkdnd.c: The low-level
X oriented portions of drag and drop protocols.
Sending and receiving client messages, and navigating
window trees.
* gdk/gdkimage.c: added a gdk_flush() when destroying
SHM images to hopefully make it more likely that
X will gracefully handle the segment being destroyed.
* gdk/gdkprivate.h gtk/gtkdebug.h: Add new
DND debugging flags.
* gtk/gtkeditable.[ch]: Updates for the selection handling
changes.
* gtk/gtkselection.[ch]: Added GtkTargetList, a
refcounted data structure for keeping track of lists
of GdkAtom + information. Removed selection_handler_add
in favor of a "drag_data_get" signal.
* gtk/gtkdnd.[ch] gtk/gtk.h: New files - highlevel (event loop
dependent) parts of the DND protocols, display of drag icons,
drag-under highlighting, and the "default handlers".
* gtk/gtkinvisible.[ch]: New widget - InputOnly offscreen
windows that are used for reliable pointer grabs and
selection handling in the DND code.
* gtk/testdnd.c: New test program for new DND. (Old
DND tests in testgtk still need to be converted.)
* gtk/testselection.c: Use the new selection API.
* docs/dnd_internals: Start at describing how
all the new code works inside.
* docs/Changes-1.2.txt: New file describing source-incompatible
changes in GTK+-1.2.
Sat Oct 17 22:50:34 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdkwindow.c (gdk_window_remove_filter): Free
the right list node.
* gdk/gdkwindow.c (gdk_window_init): Add gdk_root_parent
to the XID table so we can receive events on it.
Wed Oct 14 12:57:40 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c gdk/gdk.h (gdk_event_get_time): New function
to get the timestamp from a generic event.
Fri Oct 9 13:16:04 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_add_events): Added function
that safely adds additional events to a widget's event
mask, even if the widget has previously been realized.
(We can do this, but not remove events from the event
mask).
Fri Oct 2 17:35:35 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Allow type == 0,
for AnyPropertyType.
Fri Oct 2 10:32:21 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Add client-local
hashing.
Thu Sep 24 20:33:54 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_send_clientmessage_toall): serial
isn't a timestamp.
Thu Sep 17 14:23:03 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_translate): Removed printing
of unknown window lookup warnings. (Made it
a GDK_NOTE) - they happen in many circumstances.
1998-10-18 22:51:24 +00:00
#if 0
1998-03-12 21:54:39 +00:00
gint
1997-12-06 22:12:10 +00:00
dnd_drop_destroy_popup ( GtkWidget * widget , GtkWindow * * window )
{
if ( GTK_IS_BUTTON ( widget ) ) /* I.e. they clicked the close button */
gtk_widget_destroy ( GTK_WIDGET ( * window ) ) ;
else {
gtk_grab_remove ( GTK_WIDGET ( * window ) ) ;
* window = NULL ;
}
1998-03-12 21:54:39 +00:00
return FALSE ;
1997-12-06 22:12:10 +00:00
}
1997-11-24 22:37:52 +00:00
void
dnd_drop ( GtkWidget * button , GdkEvent * event )
{
1997-12-06 22:12:10 +00:00
static GtkWidget * window = NULL ;
GtkWidget * vbox , * lbl , * btn ;
gchar * msg ;
1998-03-22 00:07:53 +00:00
/* DND doesn't obey gtk_grab's, so check if we're already displaying
* drop modal dialog first
*/
if ( window )
return ;
1997-12-06 22:12:10 +00:00
window = gtk_window_new ( GTK_WINDOW_DIALOG ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 10 ) ;
1997-12-06 22:12:10 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
GTK_SIGNAL_FUNC ( dnd_drop_destroy_popup ) ,
& window ) ;
1998-05-07 17:08:58 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " delete-event " ,
1998-03-22 00:07:53 +00:00
GTK_SIGNAL_FUNC ( gtk_false ) ,
1997-12-06 22:12:10 +00:00
& window ) ;
vbox = gtk_vbox_new ( FALSE , 5 ) ;
/* Display message that we got from drop source */
msg = g_malloc ( strlen ( event - > dropdataavailable . data )
+ strlen ( event - > dropdataavailable . data_type ) + 100 ) ;
sprintf ( msg , " Drop data of type %s was: \n \n %s " ,
event - > dropdataavailable . data_type ,
1998-01-02 04:31:37 +00:00
( char * ) event - > dropdataavailable . data ) ;
1997-12-06 22:12:10 +00:00
lbl = gtk_label_new ( msg ) ;
gtk_label_set_justify ( GTK_LABEL ( lbl ) , GTK_JUSTIFY_FILL ) ;
g_free ( msg ) ;
gtk_widget_show ( lbl ) ;
gtk_box_pack_start_defaults ( GTK_BOX ( vbox ) , lbl ) ;
/* Provide an obvious way out of this heinousness */
btn = gtk_button_new_with_label ( " Continue with life in \n spite of this oppression " ) ;
1998-03-22 00:07:53 +00:00
gtk_signal_connect_object ( GTK_OBJECT ( btn ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
1997-12-06 22:12:10 +00:00
gtk_widget_show ( btn ) ;
gtk_box_pack_start_defaults ( GTK_BOX ( vbox ) , btn ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , vbox ) ;
gtk_widget_show ( vbox ) ;
gtk_grab_add ( window ) ;
gtk_widget_show ( window ) ;
1997-11-24 22:37:52 +00:00
}
void
dnd_drag_request ( GtkWidget * button , GdkEvent * event )
{
1997-12-06 22:12:10 +00:00
# define DND_STRING "Bill Gates demands royalties for\nyour use of his innovation."
gtk_widget_dnd_data_set ( button , event , DND_STRING , strlen ( DND_STRING ) + 1 ) ;
1997-11-24 22:37:52 +00:00
}
void
1998-05-03 22:41:32 +00:00
create_dnd ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * box3 ;
GtkWidget * frame ;
GtkWidget * button ;
GtkWidget * separator ;
1998-01-03 23:28:28 +00:00
1997-12-06 22:12:10 +00:00
/* For clarity... */
char * possible_drag_types [ ] = { " text/plain " } ;
char * accepted_drop_types [ ] = { " text/plain " } ;
1997-11-24 22:37:52 +00:00
1998-03-22 21:31:10 +00:00
static GtkWidget * drag_icon = NULL ;
static GtkWidget * drop_icon = NULL ;
1998-02-26 21:28:00 +00:00
1997-11-24 22:37:52 +00:00
if ( ! window )
{
1998-02-26 21:28:00 +00:00
GdkPoint hotspot = { 5 , 5 } ;
1998-03-11 23:12:25 +00:00
1998-03-22 21:31:10 +00:00
if ( ! drag_icon )
{
drag_icon = shape_create_icon ( " Modeller.xpm " ,
440 , 140 , 0 , 0 , GTK_WINDOW_POPUP ) ;
gtk_signal_connect ( GTK_OBJECT ( drag_icon ) , " destroy " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& drag_icon ) ;
gtk_widget_hide ( drag_icon ) ;
}
if ( ! drop_icon )
{
drop_icon = shape_create_icon ( " 3DRings.xpm " ,
440 , 140 , 0 , 0 , GTK_WINDOW_POPUP ) ;
gtk_signal_connect ( GTK_OBJECT ( drop_icon ) , " destroy " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& drop_icon ) ;
gtk_widget_hide ( drop_icon ) ;
}
gdk_dnd_set_drag_shape ( drag_icon - > window ,
1998-02-26 21:28:00 +00:00
& hotspot ,
1998-03-22 21:31:10 +00:00
drop_icon - > window ,
1998-02-26 21:28:00 +00:00
& hotspot ) ;
1997-11-24 22:37:52 +00:00
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " Drag -N- Drop " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
gtk_widget_show ( box1 ) ;
box2 = gtk_hbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , TRUE , TRUE , 0 ) ;
gtk_widget_show ( box2 ) ;
frame = gtk_frame_new ( " Drag " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , frame , TRUE , TRUE , 0 ) ;
gtk_widget_show ( frame ) ;
box3 = gtk_vbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box3 ) , 5 ) ;
1997-11-24 22:37:52 +00:00
gtk_container_add ( GTK_CONTAINER ( frame ) , box3 ) ;
gtk_widget_show ( box3 ) ;
/*
* FROM Button
*/
1997-12-06 22:12:10 +00:00
button = gtk_button_new_with_label ( " Drag me! " ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box3 ) , button , FALSE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
/*
* currently , the widget has to be realized to
* set dnd on it , this needs to change
*/
gtk_widget_realize ( button ) ;
1997-12-06 22:12:10 +00:00
gtk_signal_connect ( GTK_OBJECT ( button ) ,
1997-11-24 22:37:52 +00:00
" drag_request_event " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( dnd_drag_request ) ,
1997-11-24 22:37:52 +00:00
button ) ;
1997-12-06 22:12:10 +00:00
gtk_widget_dnd_drag_set ( button , TRUE , possible_drag_types , 1 ) ;
1997-11-24 22:37:52 +00:00
frame = gtk_frame_new ( " Drop " ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , frame , TRUE , TRUE , 0 ) ;
gtk_widget_show ( frame ) ;
box3 = gtk_vbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box3 ) , 5 ) ;
1997-11-24 22:37:52 +00:00
gtk_container_add ( GTK_CONTAINER ( frame ) , box3 ) ;
gtk_widget_show ( box3 ) ;
/*
* TO Button
*/
button = gtk_button_new_with_label ( " To " ) ;
gtk_box_pack_start ( GTK_BOX ( box3 ) , button , FALSE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
gtk_widget_realize ( button ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) ,
" drop_data_available_event " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( dnd_drop ) ,
1997-11-24 22:37:52 +00:00
button ) ;
1997-12-06 22:12:10 +00:00
gtk_widget_dnd_drop_set ( button , TRUE , accepted_drop_types , 1 , FALSE ) ;
1997-11-24 22:37:52 +00:00
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
gtk_widget_show ( separator ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
gtk_widget_show ( box2 ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
1998-10-19 22:46:38 +00:00
# endif
1997-11-24 22:37:52 +00:00
/*
* Shaped Windows
*/
1998-07-26 14:45:40 +00:00
1997-11-24 22:37:52 +00:00
typedef struct _cursoroffset { gint x , y ; } CursorOffset ;
static void
1998-01-17 22:48:31 +00:00
shape_pressed ( GtkWidget * widget , GdkEventButton * event )
1997-11-24 22:37:52 +00:00
{
CursorOffset * p ;
1998-01-17 22:48:31 +00:00
/* ignore double and triple click */
if ( event - > type ! = GDK_BUTTON_PRESS )
return ;
1997-11-24 22:37:52 +00:00
p = gtk_object_get_user_data ( GTK_OBJECT ( widget ) ) ;
1998-01-17 22:48:31 +00:00
p - > x = ( int ) event - > x ;
p - > y = ( int ) event - > y ;
1997-11-24 22:37:52 +00:00
gtk_grab_add ( widget ) ;
gdk_pointer_grab ( widget - > window , TRUE ,
GDK_BUTTON_RELEASE_MASK |
1998-02-19 18:06:29 +00:00
GDK_BUTTON_MOTION_MASK |
GDK_POINTER_MOTION_HINT_MASK ,
1997-11-24 22:37:52 +00:00
NULL , NULL , 0 ) ;
}
static void
shape_released ( GtkWidget * widget )
{
gtk_grab_remove ( widget ) ;
gdk_pointer_ungrab ( 0 ) ;
}
static void
shape_motion ( GtkWidget * widget ,
GdkEventMotion * event )
{
gint xp , yp ;
CursorOffset * p ;
GdkModifierType mask ;
p = gtk_object_get_user_data ( GTK_OBJECT ( widget ) ) ;
1998-02-19 18:06:29 +00:00
/*
* Can ' t use event - > x / event - > y here
* because I need absolute coordinates .
*/
1999-11-08 22:33:28 +00:00
gdk_window_get_pointer ( NULL , & xp , & yp , & mask ) ;
1997-11-24 22:37:52 +00:00
gtk_widget_set_uposition ( widget , xp - p - > x , yp - p - > y ) ;
}
GtkWidget *
shape_create_icon ( char * xpm_file ,
gint x ,
gint y ,
gint px ,
gint py ,
gint window_type )
{
GtkWidget * window ;
GtkWidget * pixmap ;
GtkWidget * fixed ;
CursorOffset * icon_pos ;
GdkGC * gc ;
GdkBitmap * gdk_pixmap_mask ;
GdkPixmap * gdk_pixmap ;
GtkStyle * style ;
style = gtk_widget_get_default_style ( ) ;
gc = style - > black_gc ;
/*
* GDK_WINDOW_TOPLEVEL works also , giving you a title border
*/
window = gtk_window_new ( window_type ) ;
fixed = gtk_fixed_new ( ) ;
gtk_widget_set_usize ( fixed , 100 , 100 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , fixed ) ;
gtk_widget_show ( fixed ) ;
1998-02-13 05:33:17 +00:00
gtk_widget_set_events ( window ,
gtk_widget_get_events ( window ) |
GDK_BUTTON_MOTION_MASK |
1998-02-19 18:06:29 +00:00
GDK_POINTER_MOTION_HINT_MASK |
1998-02-13 05:33:17 +00:00
GDK_BUTTON_PRESS_MASK ) ;
gtk_widget_realize ( window ) ;
1997-11-24 22:37:52 +00:00
gdk_pixmap = gdk_pixmap_create_from_xpm ( window - > window , & gdk_pixmap_mask ,
& style - > bg [ GTK_STATE_NORMAL ] ,
xpm_file ) ;
pixmap = gtk_pixmap_new ( gdk_pixmap , gdk_pixmap_mask ) ;
gtk_fixed_put ( GTK_FIXED ( fixed ) , pixmap , px , py ) ;
gtk_widget_show ( pixmap ) ;
gtk_widget_shape_combine_mask ( window , gdk_pixmap_mask , px , py ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " button_press_event " ,
GTK_SIGNAL_FUNC ( shape_pressed ) , NULL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " button_release_event " ,
GTK_SIGNAL_FUNC ( shape_released ) , NULL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " motion_notify_event " ,
GTK_SIGNAL_FUNC ( shape_motion ) , NULL ) ;
icon_pos = g_new ( CursorOffset , 1 ) ;
gtk_object_set_user_data ( GTK_OBJECT ( window ) , icon_pos ) ;
gtk_widget_set_uposition ( window , x , y ) ;
gtk_widget_show ( window ) ;
1998-03-22 21:31:10 +00:00
1997-11-24 22:37:52 +00:00
return window ;
}
void
1998-05-03 22:41:32 +00:00
create_shapes ( void )
1997-11-24 22:37:52 +00:00
{
1998-03-22 21:31:10 +00:00
/* Variables used by the Drag/Drop and Shape Window demos */
static GtkWidget * modeller = NULL ;
static GtkWidget * sheets = NULL ;
static GtkWidget * rings = NULL ;
1997-11-24 22:37:52 +00:00
if ( ! modeller )
{
modeller = shape_create_icon ( " Modeller.xpm " ,
440 , 140 , 0 , 0 , GTK_WINDOW_POPUP ) ;
gtk_signal_connect ( GTK_OBJECT ( modeller ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& modeller ) ;
}
else
gtk_widget_destroy ( modeller ) ;
if ( ! sheets )
{
sheets = shape_create_icon ( " FilesQueue.xpm " ,
580 , 170 , 0 , 0 , GTK_WINDOW_POPUP ) ;
gtk_signal_connect ( GTK_OBJECT ( sheets ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& sheets ) ;
}
else
gtk_widget_destroy ( sheets ) ;
if ( ! rings )
{
rings = shape_create_icon ( " 3DRings.xpm " ,
460 , 270 , 25 , 25 , GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( rings ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& rings ) ;
}
else
gtk_widget_destroy ( rings ) ;
}
1998-07-26 14:45:40 +00:00
/*
* WM Hints demo
*/
1998-02-27 06:13:22 +00:00
void
1998-05-03 22:41:32 +00:00
create_wmhints ( void )
1998-02-27 06:13:22 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * label ;
GtkWidget * separator ;
GtkWidget * button ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GdkBitmap * circles ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1998-02-27 06:13:22 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " WM Hints " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1998-02-27 06:13:22 +00:00
gtk_widget_realize ( window ) ;
circles = gdk_bitmap_create_from_data ( window - > window ,
circles_bits ,
circles_width ,
circles_height ) ;
gdk_window_set_icon ( window - > window , NULL ,
circles , circles ) ;
gdk_window_set_icon_name ( window - > window , " WMHints Test Icon " ) ;
gdk_window_set_decorations ( window - > window , GDK_DECOR_ALL | GDK_DECOR_MENU ) ;
gdk_window_set_functions ( window - > window , GDK_FUNC_ALL | GDK_FUNC_RESIZE ) ;
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
gtk_widget_show ( box1 ) ;
label = gtk_label_new ( " Try iconizing me! " ) ;
gtk_widget_set_usize ( label , 150 , 50 ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , label , TRUE , TRUE , 0 ) ;
gtk_widget_show ( label ) ;
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
gtk_widget_show ( separator ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1998-02-27 06:13:22 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
gtk_widget_show ( box2 ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
1997-11-24 22:37:52 +00:00
/*
1998-07-26 14:45:40 +00:00
* GtkProgressBar
1997-11-24 22:37:52 +00:00
*/
1998-07-19 10:35:39 +00:00
typedef struct _ProgressData {
GtkWidget * window ;
GtkWidget * pbar ;
GtkWidget * block_spin ;
GtkWidget * x_align_spin ;
GtkWidget * y_align_spin ;
GtkWidget * step_spin ;
1998-07-21 04:49:01 +00:00
GtkWidget * act_blocks_spin ;
1998-07-19 10:35:39 +00:00
GtkWidget * label ;
GtkWidget * omenu1 ;
1998-07-26 14:45:40 +00:00
GtkWidget * omenu2 ;
1998-07-19 10:35:39 +00:00
GtkWidget * entry ;
int timer ;
} ProgressData ;
1997-11-24 22:37:52 +00:00
gint
progress_timeout ( gpointer data )
{
gfloat new_val ;
1998-07-19 10:35:39 +00:00
GtkAdjustment * adj ;
adj = GTK_PROGRESS ( data ) - > adjustment ;
1997-11-24 22:37:52 +00:00
1998-07-19 10:35:39 +00:00
new_val = adj - > value + 1 ;
if ( new_val > adj - > upper )
new_val = adj - > lower ;
1997-11-24 22:37:52 +00:00
1998-07-19 10:35:39 +00:00
gtk_progress_set_value ( GTK_PROGRESS ( data ) , new_val ) ;
1997-11-24 22:37:52 +00:00
return TRUE ;
}
1998-03-12 21:54:39 +00:00
static void
1998-07-19 10:35:39 +00:00
destroy_progress ( GtkWidget * widget ,
ProgressData * * pdata )
1997-11-24 22:37:52 +00:00
{
1998-07-19 10:35:39 +00:00
gtk_timeout_remove ( ( * pdata ) - > timer ) ;
( * pdata ) - > timer = 0 ;
( * pdata ) - > window = NULL ;
g_free ( * pdata ) ;
* pdata = NULL ;
}
static void
1998-07-26 14:45:40 +00:00
progressbar_toggle_orientation ( GtkWidget * widget , ProgressData * pdata )
1998-07-19 10:35:39 +00:00
{
gint i ;
if ( ! GTK_WIDGET_MAPPED ( widget ) )
return ;
RADIOMENUTOGGLED ( ( GtkRadioMenuItem * )
( ( ( GtkOptionMenu * ) ( pdata - > omenu1 ) ) - > menu_item ) , i ) ;
gtk_progress_bar_set_orientation ( GTK_PROGRESS_BAR ( pdata - > pbar ) ,
( GtkProgressBarOrientation ) ( 3 - i ) ) ;
}
static void
toggle_show_text ( GtkWidget * widget , ProgressData * pdata )
{
gtk_progress_set_show_text ( GTK_PROGRESS ( pdata - > pbar ) ,
GTK_TOGGLE_BUTTON ( widget ) - > active ) ;
gtk_widget_set_sensitive ( pdata - > entry , GTK_TOGGLE_BUTTON ( widget ) - > active ) ;
gtk_widget_set_sensitive ( pdata - > x_align_spin ,
GTK_TOGGLE_BUTTON ( widget ) - > active ) ;
gtk_widget_set_sensitive ( pdata - > y_align_spin ,
GTK_TOGGLE_BUTTON ( widget ) - > active ) ;
}
static void
1998-07-26 14:45:40 +00:00
progressbar_toggle_bar_style ( GtkWidget * widget , ProgressData * pdata )
1998-07-19 10:35:39 +00:00
{
gint i ;
if ( ! GTK_WIDGET_MAPPED ( widget ) )
return ;
RADIOMENUTOGGLED ( ( GtkRadioMenuItem * )
1998-07-26 14:45:40 +00:00
( ( ( GtkOptionMenu * ) ( pdata - > omenu2 ) ) - > menu_item ) , i ) ;
1998-07-19 10:35:39 +00:00
i = 1 - i ;
if ( i = = 1 )
gtk_widget_set_sensitive ( pdata - > block_spin , TRUE ) ;
else
gtk_widget_set_sensitive ( pdata - > block_spin , FALSE ) ;
gtk_progress_bar_set_bar_style ( GTK_PROGRESS_BAR ( pdata - > pbar ) ,
( GtkProgressBarStyle ) i ) ;
}
static void
progress_value_changed ( GtkAdjustment * adj , ProgressData * pdata )
{
char buf [ 20 ] ;
if ( GTK_PROGRESS ( pdata - > pbar ) - > activity_mode )
sprintf ( buf , " ??? " ) ;
else
sprintf ( buf , " %.0f%% " , 100 *
gtk_progress_get_current_percentage ( GTK_PROGRESS ( pdata - > pbar ) ) ) ;
1998-12-15 20:31:26 +00:00
gtk_label_set_text ( GTK_LABEL ( pdata - > label ) , buf ) ;
1998-07-19 10:35:39 +00:00
}
static void
adjust_blocks ( GtkAdjustment * adj , ProgressData * pdata )
{
gtk_progress_set_percentage ( GTK_PROGRESS ( pdata - > pbar ) , 0 ) ;
1998-07-21 04:49:01 +00:00
gtk_progress_bar_set_discrete_blocks ( GTK_PROGRESS_BAR ( pdata - > pbar ) ,
1998-07-19 10:35:39 +00:00
gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON ( pdata - > block_spin ) ) ) ;
}
static void
adjust_step ( GtkAdjustment * adj , ProgressData * pdata )
{
gtk_progress_bar_set_activity_step ( GTK_PROGRESS_BAR ( pdata - > pbar ) ,
gtk_spin_button_get_value_as_int ( GTK_SPIN_BUTTON ( pdata - > step_spin ) ) ) ;
}
1998-07-21 04:49:01 +00:00
static void
adjust_act_blocks ( GtkAdjustment * adj , ProgressData * pdata )
{
gtk_progress_bar_set_activity_blocks ( GTK_PROGRESS_BAR ( pdata - > pbar ) ,
gtk_spin_button_get_value_as_int
( GTK_SPIN_BUTTON ( pdata - > act_blocks_spin ) ) ) ;
}
1998-07-19 10:35:39 +00:00
static void
adjust_align ( GtkAdjustment * adj , ProgressData * pdata )
{
gtk_progress_set_text_alignment ( GTK_PROGRESS ( pdata - > pbar ) ,
gtk_spin_button_get_value_as_float
( GTK_SPIN_BUTTON ( pdata - > x_align_spin ) ) ,
gtk_spin_button_get_value_as_float
( GTK_SPIN_BUTTON ( pdata - > y_align_spin ) ) ) ;
}
static void
toggle_activity_mode ( GtkWidget * widget , ProgressData * pdata )
{
gtk_progress_set_activity_mode ( GTK_PROGRESS ( pdata - > pbar ) ,
GTK_TOGGLE_BUTTON ( widget ) - > active ) ;
gtk_widget_set_sensitive ( pdata - > step_spin ,
GTK_TOGGLE_BUTTON ( widget ) - > active ) ;
1998-07-21 04:49:01 +00:00
gtk_widget_set_sensitive ( pdata - > act_blocks_spin ,
GTK_TOGGLE_BUTTON ( widget ) - > active ) ;
1998-07-19 10:35:39 +00:00
}
static void
entry_changed ( GtkWidget * widget , ProgressData * pdata )
{
gtk_progress_set_format_string ( GTK_PROGRESS ( pdata - > pbar ) ,
gtk_entry_get_text ( GTK_ENTRY ( pdata - > entry ) ) ) ;
1997-11-24 22:37:52 +00:00
}
void
1998-05-03 22:41:32 +00:00
create_progress_bar ( void )
1997-11-24 22:37:52 +00:00
{
GtkWidget * button ;
GtkWidget * vbox ;
1998-07-19 10:35:39 +00:00
GtkWidget * vbox2 ;
GtkWidget * hbox ;
GtkWidget * check ;
GtkWidget * frame ;
GtkWidget * tab ;
1997-11-24 22:37:52 +00:00
GtkWidget * label ;
1998-07-19 10:35:39 +00:00
GtkWidget * align ;
GtkAdjustment * adj ;
static ProgressData * pdata = NULL ;
1998-07-26 14:45:40 +00:00
static OptionMenuItem items1 [ ] =
{
{ " Left-Right " , progressbar_toggle_orientation } ,
{ " Right-Left " , progressbar_toggle_orientation } ,
{ " Bottom-Top " , progressbar_toggle_orientation } ,
{ " Top-Bottom " , progressbar_toggle_orientation }
} ;
static OptionMenuItem items2 [ ] =
{
{ " Continuous " , progressbar_toggle_bar_style } ,
{ " Discrete " , progressbar_toggle_bar_style }
} ;
1998-07-19 10:35:39 +00:00
if ( ! pdata )
pdata = g_new0 ( ProgressData , 1 ) ;
if ( ! pdata - > window )
1997-11-24 22:37:52 +00:00
{
1998-07-19 10:35:39 +00:00
pdata - > window = gtk_dialog_new ( ) ;
1997-11-24 22:37:52 +00:00
1998-07-19 10:35:39 +00:00
gtk_window_set_policy ( GTK_WINDOW ( pdata - > window ) , FALSE , FALSE , TRUE ) ;
1997-11-24 22:37:52 +00:00
1998-07-19 10:35:39 +00:00
gtk_signal_connect ( GTK_OBJECT ( pdata - > window ) , " destroy " ,
GTK_SIGNAL_FUNC ( destroy_progress ) ,
& pdata ) ;
1997-11-24 22:37:52 +00:00
1998-07-19 10:35:39 +00:00
pdata - > timer = 0 ;
gtk_window_set_title ( GTK_WINDOW ( pdata - > window ) , " GtkProgressBar " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( pdata - > window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
vbox = gtk_vbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( vbox ) , 10 ) ;
1998-07-19 10:35:39 +00:00
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( pdata - > window ) - > vbox ) ,
vbox , FALSE , TRUE , 0 ) ;
1997-11-24 22:37:52 +00:00
1998-07-19 10:35:39 +00:00
frame = gtk_frame_new ( " Progress " ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , frame , FALSE , TRUE , 0 ) ;
vbox2 = gtk_vbox_new ( FALSE , 5 ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , vbox2 ) ;
align = gtk_alignment_new ( 0.5 , 0.5 , 0 , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , align , FALSE , FALSE , 5 ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 0 , 1 , 300 , 0 , 0 , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( adj ) , " value_changed " ,
GTK_SIGNAL_FUNC ( progress_value_changed ) , pdata ) ;
1997-11-24 22:37:52 +00:00
1998-07-19 10:35:39 +00:00
pdata - > pbar = gtk_progress_bar_new_with_adjustment ( adj ) ;
gtk_progress_set_format_string ( GTK_PROGRESS ( pdata - > pbar ) ,
" %v from [%l,%u] (=%p%%) " ) ;
gtk_container_add ( GTK_CONTAINER ( align ) , pdata - > pbar ) ;
pdata - > timer = gtk_timeout_add ( 100 , progress_timeout , pdata - > pbar ) ;
1997-11-24 22:37:52 +00:00
1998-07-19 10:35:39 +00:00
align = gtk_alignment_new ( 0.5 , 0.5 , 0 , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , align , FALSE , FALSE , 5 ) ;
hbox = gtk_hbox_new ( FALSE , 5 ) ;
gtk_container_add ( GTK_CONTAINER ( align ) , hbox ) ;
label = gtk_label_new ( " Label updated by user : " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , TRUE , 0 ) ;
pdata - > label = gtk_label_new ( " " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , pdata - > label , FALSE , TRUE , 0 ) ;
frame = gtk_frame_new ( " Options " ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , frame , FALSE , TRUE , 0 ) ;
vbox2 = gtk_vbox_new ( FALSE , 5 ) ;
gtk_container_add ( GTK_CONTAINER ( frame ) , vbox2 ) ;
1998-07-21 04:49:01 +00:00
tab = gtk_table_new ( 7 , 2 , FALSE ) ;
1998-07-19 10:35:39 +00:00
gtk_box_pack_start ( GTK_BOX ( vbox2 ) , tab , FALSE , TRUE , 0 ) ;
label = gtk_label_new ( " Orientation : " ) ;
gtk_table_attach ( GTK_TABLE ( tab ) , label , 0 , 1 , 0 , 1 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL ,
5 , 5 ) ;
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0 , 0.5 ) ;
1998-07-26 14:45:40 +00:00
pdata - > omenu1 = build_option_menu ( items1 , 4 , 0 , pdata ) ;
1998-07-19 10:35:39 +00:00
hbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_table_attach ( GTK_TABLE ( tab ) , hbox , 1 , 2 , 0 , 1 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL ,
5 , 5 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , pdata - > omenu1 , TRUE , TRUE , 0 ) ;
check = gtk_check_button_new_with_label ( " Show text " ) ;
gtk_signal_connect ( GTK_OBJECT ( check ) , " clicked " ,
GTK_SIGNAL_FUNC ( toggle_show_text ) ,
pdata ) ;
gtk_table_attach ( GTK_TABLE ( tab ) , check , 0 , 1 , 1 , 2 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL ,
5 , 5 ) ;
hbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_table_attach ( GTK_TABLE ( tab ) , hbox , 1 , 2 , 1 , 2 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL ,
5 , 5 ) ;
label = gtk_label_new ( " Format : " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , TRUE , 0 ) ;
pdata - > entry = gtk_entry_new ( ) ;
gtk_signal_connect ( GTK_OBJECT ( pdata - > entry ) , " changed " ,
GTK_SIGNAL_FUNC ( entry_changed ) ,
pdata ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , pdata - > entry , TRUE , TRUE , 0 ) ;
gtk_entry_set_text ( GTK_ENTRY ( pdata - > entry ) , " %v from [%l,%u] (=%p%%) " ) ;
gtk_widget_set_usize ( pdata - > entry , 100 , - 1 ) ;
gtk_widget_set_sensitive ( pdata - > entry , FALSE ) ;
label = gtk_label_new ( " Text align : " ) ;
gtk_table_attach ( GTK_TABLE ( tab ) , label , 0 , 1 , 2 , 3 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL ,
5 , 5 ) ;
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0 , 0.5 ) ;
hbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_table_attach ( GTK_TABLE ( tab ) , hbox , 1 , 2 , 2 , 3 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL ,
5 , 5 ) ;
label = gtk_label_new ( " x : " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , TRUE , 5 ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 0.5 , 0 , 1 , 0.1 , 0.1 , 0 ) ;
pdata - > x_align_spin = gtk_spin_button_new ( adj , 0 , 1 ) ;
gtk_signal_connect ( GTK_OBJECT ( adj ) , " value_changed " ,
GTK_SIGNAL_FUNC ( adjust_align ) , pdata ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , pdata - > x_align_spin , FALSE , TRUE , 0 ) ;
gtk_widget_set_sensitive ( pdata - > x_align_spin , FALSE ) ;
label = gtk_label_new ( " y : " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , TRUE , 5 ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 0.5 , 0 , 1 , 0.1 , 0.1 , 0 ) ;
pdata - > y_align_spin = gtk_spin_button_new ( adj , 0 , 1 ) ;
gtk_signal_connect ( GTK_OBJECT ( adj ) , " value_changed " ,
GTK_SIGNAL_FUNC ( adjust_align ) , pdata ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , pdata - > y_align_spin , FALSE , TRUE , 0 ) ;
gtk_widget_set_sensitive ( pdata - > y_align_spin , FALSE ) ;
label = gtk_label_new ( " Bar Style : " ) ;
gtk_table_attach ( GTK_TABLE ( tab ) , label , 0 , 1 , 3 , 4 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL ,
5 , 5 ) ;
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0 , 0.5 ) ;
1998-07-26 14:45:40 +00:00
pdata - > omenu2 = build_option_menu ( items2 , 2 , 0 , pdata ) ;
1998-07-19 10:35:39 +00:00
hbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_table_attach ( GTK_TABLE ( tab ) , hbox , 1 , 2 , 3 , 4 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL ,
5 , 5 ) ;
1998-07-26 14:45:40 +00:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , pdata - > omenu2 , TRUE , TRUE , 0 ) ;
1998-07-19 10:35:39 +00:00
label = gtk_label_new ( " Block count : " ) ;
gtk_table_attach ( GTK_TABLE ( tab ) , label , 0 , 1 , 4 , 5 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL ,
5 , 5 ) ;
gtk_misc_set_alignment ( GTK_MISC ( label ) , 0 , 0.5 ) ;
hbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_table_attach ( GTK_TABLE ( tab ) , hbox , 1 , 2 , 4 , 5 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL ,
5 , 5 ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 10 , 2 , 20 , 1 , 5 , 0 ) ;
pdata - > block_spin = gtk_spin_button_new ( adj , 0 , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( adj ) , " value_changed " ,
GTK_SIGNAL_FUNC ( adjust_blocks ) , pdata ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , pdata - > block_spin , FALSE , TRUE , 0 ) ;
gtk_widget_set_sensitive ( pdata - > block_spin , FALSE ) ;
check = gtk_check_button_new_with_label ( " Activity mode " ) ;
gtk_signal_connect ( GTK_OBJECT ( check ) , " clicked " ,
GTK_SIGNAL_FUNC ( toggle_activity_mode ) ,
pdata ) ;
gtk_table_attach ( GTK_TABLE ( tab ) , check , 0 , 1 , 5 , 6 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL ,
5 , 5 ) ;
hbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_table_attach ( GTK_TABLE ( tab ) , hbox , 1 , 2 , 5 , 6 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL ,
5 , 5 ) ;
label = gtk_label_new ( " Step size : " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , TRUE , 0 ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 3 , 1 , 20 , 1 , 5 , 0 ) ;
pdata - > step_spin = gtk_spin_button_new ( adj , 0 , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( adj ) , " value_changed " ,
GTK_SIGNAL_FUNC ( adjust_step ) , pdata ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , pdata - > step_spin , FALSE , TRUE , 0 ) ;
gtk_widget_set_sensitive ( pdata - > step_spin , FALSE ) ;
1997-11-24 22:37:52 +00:00
1998-07-21 04:49:01 +00:00
hbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_table_attach ( GTK_TABLE ( tab ) , hbox , 1 , 2 , 6 , 7 ,
GTK_EXPAND | GTK_FILL , GTK_EXPAND | GTK_FILL ,
5 , 5 ) ;
label = gtk_label_new ( " Blocks : " ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , TRUE , 0 ) ;
adj = ( GtkAdjustment * ) gtk_adjustment_new ( 5 , 2 , 10 , 1 , 5 , 0 ) ;
pdata - > act_blocks_spin = gtk_spin_button_new ( adj , 0 , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( adj ) , " value_changed " ,
GTK_SIGNAL_FUNC ( adjust_act_blocks ) , pdata ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , pdata - > act_blocks_spin , FALSE , TRUE ,
0 ) ;
gtk_widget_set_sensitive ( pdata - > act_blocks_spin , FALSE ) ;
1997-11-24 22:37:52 +00:00
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1998-07-19 10:35:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( pdata - > window ) ) ;
1997-11-24 22:37:52 +00:00
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
1998-07-19 10:35:39 +00:00
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( pdata - > window ) - > action_area ) ,
1997-11-24 22:37:52 +00:00
button , TRUE , TRUE , 0 ) ;
gtk_widget_grab_default ( button ) ;
}
1998-07-19 10:35:39 +00:00
if ( ! GTK_WIDGET_VISIBLE ( pdata - > window ) )
gtk_widget_show_all ( pdata - > window ) ;
1997-11-24 22:37:52 +00:00
else
1998-07-19 10:35:39 +00:00
gtk_widget_destroy ( pdata - > window ) ;
1997-11-24 22:37:52 +00:00
}
/*
* Color Preview
*/
1998-07-26 14:45:40 +00:00
1997-11-24 22:37:52 +00:00
static int color_idle = 0 ;
gint
color_idle_func ( GtkWidget * preview )
{
static int count = 1 ;
guchar buf [ 768 ] ;
int i , j , k ;
for ( i = 0 ; i < 256 ; i + + )
{
for ( j = 0 , k = 0 ; j < 256 ; j + + )
{
buf [ k + 0 ] = i + count ;
buf [ k + 1 ] = 0 ;
buf [ k + 2 ] = j + count ;
k + = 3 ;
}
gtk_preview_draw_row ( GTK_PREVIEW ( preview ) , buf , 0 , i , 256 ) ;
}
count + = 1 ;
gtk_widget_draw ( preview , NULL ) ;
return TRUE ;
}
1998-03-12 21:54:39 +00:00
static void
1997-11-24 22:37:52 +00:00
color_preview_destroy ( GtkWidget * widget ,
GtkWidget * * window )
{
gtk_idle_remove ( color_idle ) ;
color_idle = 0 ;
1998-03-12 21:54:39 +00:00
* window = NULL ;
1997-11-24 22:37:52 +00:00
}
void
1998-05-03 22:41:32 +00:00
create_color_preview ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * preview ;
guchar buf [ 768 ] ;
int i , j , k ;
if ( ! window )
{
1998-08-20 06:59:26 +00:00
gtk_widget_push_visual ( gdk_rgb_get_visual ( ) ) ;
gtk_widget_push_colormap ( gdk_rgb_get_cmap ( ) ) ;
1997-11-24 22:37:52 +00:00
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
1998-08-20 06:59:26 +00:00
gtk_widget_pop_colormap ( ) ;
gtk_widget_pop_visual ( ) ;
1997-11-24 22:37:52 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( color_preview_destroy ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " test " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 10 ) ;
1997-11-24 22:37:52 +00:00
preview = gtk_preview_new ( GTK_PREVIEW_COLOR ) ;
gtk_preview_size ( GTK_PREVIEW ( preview ) , 256 , 256 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , preview ) ;
for ( i = 0 ; i < 256 ; i + + )
{
for ( j = 0 , k = 0 ; j < 256 ; j + + )
{
buf [ k + 0 ] = i ;
buf [ k + 1 ] = 0 ;
buf [ k + 2 ] = j ;
k + = 3 ;
}
gtk_preview_draw_row ( GTK_PREVIEW ( preview ) , buf , 0 , i , 256 ) ;
}
color_idle = gtk_idle_add ( ( GtkFunction ) color_idle_func , preview ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1997-11-24 22:37:52 +00:00
else
gtk_widget_destroy ( window ) ;
}
/*
* Gray Preview
*/
1998-07-26 14:45:40 +00:00
1997-11-24 22:37:52 +00:00
static int gray_idle = 0 ;
gint
gray_idle_func ( GtkWidget * preview )
{
static int count = 1 ;
guchar buf [ 256 ] ;
int i , j ;
for ( i = 0 ; i < 256 ; i + + )
{
for ( j = 0 ; j < 256 ; j + + )
buf [ j ] = i + j + count ;
gtk_preview_draw_row ( GTK_PREVIEW ( preview ) , buf , 0 , i , 256 ) ;
}
count + = 1 ;
gtk_widget_draw ( preview , NULL ) ;
return TRUE ;
}
1998-03-12 21:54:39 +00:00
static void
1997-11-24 22:37:52 +00:00
gray_preview_destroy ( GtkWidget * widget ,
GtkWidget * * window )
{
gtk_idle_remove ( gray_idle ) ;
gray_idle = 0 ;
1998-03-12 21:54:39 +00:00
* window = NULL ;
1997-11-24 22:37:52 +00:00
}
void
1998-05-03 22:41:32 +00:00
create_gray_preview ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * preview ;
guchar buf [ 256 ] ;
int i , j ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gray_preview_destroy ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " test " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 10 ) ;
1997-11-24 22:37:52 +00:00
preview = gtk_preview_new ( GTK_PREVIEW_GRAYSCALE ) ;
gtk_preview_size ( GTK_PREVIEW ( preview ) , 256 , 256 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , preview ) ;
for ( i = 0 ; i < 256 ; i + + )
{
for ( j = 0 ; j < 256 ; j + + )
buf [ j ] = i + j ;
gtk_preview_draw_row ( GTK_PREVIEW ( preview ) , buf , 0 , i , 256 ) ;
}
gray_idle = gtk_idle_add ( ( GtkFunction ) gray_idle_func , preview ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1997-11-24 22:37:52 +00:00
else
gtk_widget_destroy ( window ) ;
}
/*
* Selection Test
*/
1998-07-26 14:45:40 +00:00
1997-11-24 22:37:52 +00:00
void
selection_test_received ( GtkWidget * list , GtkSelectionData * data )
{
GdkAtom * atoms ;
GtkWidget * list_item ;
GList * item_list ;
int i , l ;
if ( data - > length < 0 )
{
g_print ( " Selection retrieval failed \n " ) ;
return ;
}
if ( data - > type ! = GDK_SELECTION_TYPE_ATOM )
{
g_print ( " Selection \" TARGETS \" was not returned as atoms! \n " ) ;
return ;
}
/* Clear out any current list items */
gtk_list_clear_items ( GTK_LIST ( list ) , 0 , - 1 ) ;
/* Add new items to list */
atoms = ( GdkAtom * ) data - > data ;
item_list = NULL ;
l = data - > length / sizeof ( GdkAtom ) ;
for ( i = 0 ; i < l ; i + + )
{
char * name ;
name = gdk_atom_name ( atoms [ i ] ) ;
if ( name ! = NULL )
{
list_item = gtk_list_item_new_with_label ( name ) ;
g_free ( name ) ;
}
else
list_item = gtk_list_item_new_with_label ( " (bad atom) " ) ;
gtk_widget_show ( list_item ) ;
item_list = g_list_append ( item_list , list_item ) ;
}
gtk_list_append_items ( GTK_LIST ( list ) , item_list ) ;
return ;
}
void
selection_test_get_targets ( GtkWidget * widget , GtkWidget * list )
{
static GdkAtom targets_atom = GDK_NONE ;
if ( targets_atom = = GDK_NONE )
targets_atom = gdk_atom_intern ( " TARGETS " , FALSE ) ;
gtk_selection_convert ( list , GDK_SELECTION_PRIMARY , targets_atom ,
GDK_CURRENT_TIME ) ;
}
void
1998-05-03 22:41:32 +00:00
create_selection_test ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * button ;
GtkWidget * vbox ;
GtkWidget * scrolled_win ;
GtkWidget * list ;
GtkWidget * label ;
if ( ! window )
{
window = gtk_dialog_new ( ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " Selection Test " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
/* Create the list */
vbox = gtk_vbox_new ( FALSE , 5 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( vbox ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > vbox ) , vbox ,
TRUE , TRUE , 0 ) ;
label = gtk_label_new ( " Gets available targets for current selection " ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , label , FALSE , FALSE , 0 ) ;
scrolled_win = gtk_scrolled_window_new ( NULL , NULL ) ;
gtk_scrolled_window_set_policy ( GTK_SCROLLED_WINDOW ( scrolled_win ) ,
GTK_POLICY_AUTOMATIC ,
GTK_POLICY_AUTOMATIC ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , scrolled_win , TRUE , TRUE , 0 ) ;
gtk_widget_set_usize ( scrolled_win , 100 , 200 ) ;
list = gtk_list_new ( ) ;
added args ::show_text, ::text_xalign, ::text_yalign, ::activity_mode.
Sun Nov 22 16:21:28 1998 Tim Janik <timj@gtk.org>
* gtk/gtkprogress.c: added args ::show_text, ::text_xalign,
::text_yalign, ::activity_mode.
* gtk/gtkprogressbar.c: added construct arg ::adjustment. added args
::bar_style, ::orientation, ::discrete_blocks, ::activity_step,
::activity_blocks.
(gtk_progress_bar_new):
(gtk_progress_bar_new_with_adjustment): use gtk_widget_new().
(gtk_progress_bar_construct): deprecated.
* gtk/gtkvscrollbar.c:
(gtk_vscrollbar_draw_step_back):
(gtk_vscrollbar_draw_step_forw): use "vscrollbar" as detail for
gtk_paint_arrow, to be consistent with hscrollbar.
* gtk/gtktext.c
added construct args ::hadjustment, ::vadjustment.
added args ::line_wrap, ::word_wrap.
(gtk_text_class_init): added scroll_adjustments signal.
(gtk_text_new): use gtk_widget_new.
(gtk_text_disconnect): remove adjustement with gtk_text_set_adjustments,
so we don't screw the reference counts and don't leave signals connected.
(gtk_text_destroy): disconnect adjustments signals.
(gtk_text_finalize): unref adjustments.
* gtk/gtkctree.c: added construct args ::n_columns and ::tree_column.
added args ::indent, ::spacing, ::show_stub, ::reorderable,
::use_drag_icons, ::line_style and ::expander_style.
(gtk_ctree_set_show_stub): renamed from gtk_ctree_show_stub, which is
deprecated now.
* gtk/gtkclist.h: remove GTK_CLIST_CONSTRUCT flag.
* gtk/gtkclist.c:
removed ::vadjustment and ::hadjustment args, introduced
::scroll_adjustments signal.
added ::shadow_type, ::selection_mode and ::row_height args.
added n_columns construct arg.
(gtk_clist_construct): call gtk_object_constructed().
(gtk_clist_set_row_height): if height is passed as 0,
revert to automatic height calculation.
(gtk_clist_destroy): before unrefing the adjustments, disconnect our
signal handlers.
Fri Nov 21 22:34:58 1998 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_new): call gtk_object_default_construct
like gtk_object_new.
(gtk_widget_destroy): assert that we only destroy constructed widgets.
* gtk/gtkobject.h (enum GtkArgFlags): new flag GTK_ARG_CONSTRUCT_ONLY
to identify args that may only be used for construction.
GTK_ARG_CONSTRUCT maybe used as normal arguments besides construction
time.
* gtk/gtkobject.c (gtk_object_new): invoke gtk_object_default_construct
at the end if the object is not fully constructed.
(gtk_object_newv): likewise.
(gtk_object_destroy): assert that we only destroy constructed objects.
(gtk_object_init): setup GTK_CONSTRUCTED from the
objects real klass.
(gtk_object_default_construct): new function to complete default
construction of an object by applying missing construtor args with
default values of 0, 0.0 or NULL.
(gtk_object_constructed): new function to mark an object as being
constructed (used from within constructors).
* gtk/gtkarg.c (gtk_arg_type_new_static): return the args info pointer
so it is immediatedly available for the caller.
* gtk/gtktypeutils.c (gtk_type_new): pass an object's real class to
the object initilizer (GtkObjectInitFunc takes a second arg now, the
real klass), and asure that object initializers may temporarily alter
the class pointer.
Fri Nov 20 08:00:30 1998 Tim Janik <timj@gtk.org>
* gtk/testgtk.c: change all occourances of gtk_container_add (
scrolled_window, widget) to gtk_scrolled_window_add_with_viewport (...)
for widget!=(clist, ctree, text, viewport).
* gtk/gtkcombo.c:
(gtk_combo_init): use gtk_scrolled_window_add_with_viewport()
to add children to the scrolled window.
* gtk/gtkscrolledwindow.h:
* gtk/gtkscrolledwindow.c:
changed scrolled_window->viewport to scrolled_window->child, and use
gtk_widget_scroll_adjustements() to set the scroll adjustments for the
widget, we do not create an additional viewport anymore.
added ::hadjustment and ::vadjustment constructor args.
(gtk_scrolled_window_new): use gtk_widget_new() to create the widget.
(gtk_scrolled_window_set_hadjustment):
(gtk_scrolled_window_set_vadjustment): new functions that superceed
gtk_scrolled_window_construct.
(gtk_scrolled_window_construct): deprecated this function.
* gtk/gtkhscrollbar.c:
* gtk/gtkvscrollbar.c:
* gtk/gtkhscale.c:
* gtk/gtkvscale.c:
support a constructor arg "::adjustment", and use gtk_widget_new() for
the widget creation.
* gtk/gtkrange.c: added ::update_policy arg.
(gtk_range_set_adjustment): if adjustment is passed in as NULL, create
a default adjustment so this function can be used for derived widgets
that depend on the adjustment's existance.
(gtk_range_destroy): disconnect the adjustment signal, so we don't
get called after we got destroyed, we don't destroy the adjustment
in here, because it might have been provided from another widget.
* gtk/gtkviewport.c: introduced ::scroll_adjustments signal.
(gtk_viewport_destroy): same as gtk_range_destroy.
* gtk/gtkprogress.c (gtk_progress_destroy): same as gtk_range_destroy.
* gtk/gtkwidget.h:
* gtk/gtkwidget.c: changed gtk_widget_activate() to return a
gboolean, indicating whether this widget supports activation.
added gtk_widget_scroll_adjustements() to set the scrolling
adjustments of a widget.
Wed Nov 19 01:22:42 1998 Tim Janik <timj@gtk.org>
* gtk/gtkoptionmenu.c:
(gtk_option_menu_remove_contents):
(gtk_option_menu_update_contents): removed
gtk_container_[un]block_resize() pairs.
* gtk/gtknotebook.h:
* gtk/gtknotebook.c: removed the tab_border field, since it shouldn't
be used outside of gtknotebook.c anyways. made ARG_TAB_BORDER a
wrtie-only argument.
* *.c: made deprecated functions issue a message:
gtk_clist_set_border, gtk_container_block_resize,
gtk_container_unblock_resize, gtk_container_need_resize,
gtk_object_class_add_user_signal, gtk_spin_button_construct,
gtk_scrolled_window_construct.
removed non-functional functions:
gtk_container_disable_resize, gtk_container_enable_resize,
gtk_clist_set_policy.
Wed Nov 18 22:54:36 1998 Tim Janik <timj@gtk.org>
* gtk/gtkbox.c (gtk_box_init):
* gtk/gtkdrawingarea.c (gtk_drawing_area_init):
* gtk/gtkeventbox.c (gtk_event_box_init):
* gtk/gtkfixed.c (gtk_fixed_init):
* gtk/gtkframe.c (gtk_frame_init):
* gtk/gtkhandlebox.c (gtk_handle_box_init):
* gtk/gtkpacker.c (gtk_packer_init):
* gtk/gtkmisc.c (gtk_misc_init):
* gtk/gtkpreview.c (gtk_preview_init):
* gtk/gtkprogress.c (gtk_progress_init):
* gtk/gtkprogressbar.c (gtk_progress_bar_init):
* gtk/gtkseparator.c (gtk_separator_init):
* gtk/gtktable.c (gtk_table_init):
* gtk/gtkviewport.c (gtk_viewport_init):
* gtk/gtkalignment.c (gtk_alignment_init):
removed setting of the GTK_BASIC flag.
* gtk/gtkwidget.h:
* gtk/gtkwidget.c:
removed GTK_BASIC, GTK_WIDGET_BASIC and gtk_widget_basic.
* miscellaneous GtkType and macro fixups.
1998-11-23 01:54:45 +00:00
gtk_scrolled_window_add_with_viewport ( GTK_SCROLLED_WINDOW ( scrolled_win ) , list ) ;
1997-11-24 22:37:52 +00:00
gtk_signal_connect ( GTK_OBJECT ( list ) , " selection_received " ,
GTK_SIGNAL_FUNC ( selection_test_received ) , NULL ) ;
/* .. And create some buttons */
button = gtk_button_new_with_label ( " Get Targets " ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( selection_test_get_targets ) , list ) ;
button = gtk_button_new_with_label ( " Quit " ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1997-11-24 22:37:52 +00:00
else
gtk_widget_destroy ( window ) ;
}
/*
* Gamma Curve
*/
1998-07-26 14:45:40 +00:00
1997-11-24 22:37:52 +00:00
void
1998-05-03 22:41:32 +00:00
create_gamma_curve ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL , * curve ;
static int count = 0 ;
gfloat vec [ 256 ] ;
gint max ;
gint i ;
if ( ! window )
{
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " test " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
curve = gtk_gamma_curve_new ( ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , curve ) ;
gtk_widget_show ( curve ) ;
}
max = 127 + ( count % 2 ) * 128 ;
gtk_curve_set_range ( GTK_CURVE ( GTK_GAMMA_CURVE ( curve ) - > curve ) ,
0 , max , 0 , max ) ;
for ( i = 0 ; i < max ; + + i )
vec [ i ] = ( 127 / sqrt ( max ) ) * sqrt ( i ) ;
gtk_curve_set_vector ( GTK_CURVE ( GTK_GAMMA_CURVE ( curve ) - > curve ) ,
max , vec ) ;
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else if ( count % 4 = = 3 )
{
gtk_widget_destroy ( window ) ;
window = NULL ;
}
+ + count ;
}
1998-07-26 14:45:40 +00:00
/*
* Test scrolling
*/
1997-12-18 02:17:14 +00:00
static int scroll_test_pos = 0.0 ;
static GdkGC * scroll_test_gc = NULL ;
static gint
scroll_test_expose ( GtkWidget * widget , GdkEventExpose * event ,
GtkAdjustment * adj )
{
gint i , j ;
gint imin , imax , jmin , jmax ;
imin = ( event - > area . x ) / 10 ;
imax = ( event - > area . x + event - > area . width + 9 ) / 10 ;
jmin = ( ( int ) adj - > value + event - > area . y ) / 10 ;
jmax = ( ( int ) adj - > value + event - > area . y + event - > area . height + 9 ) / 10 ;
gdk_window_clear_area ( widget - > window ,
event - > area . x , event - > area . y ,
event - > area . width , event - > area . height ) ;
for ( i = imin ; i < imax ; i + + )
for ( j = jmin ; j < jmax ; j + + )
if ( ( i + j ) % 2 )
gdk_draw_rectangle ( widget - > window ,
widget - > style - > black_gc ,
TRUE ,
10 * i , 10 * j - ( int ) adj - > value , 1 + i % 10 , 1 + j % 10 ) ;
return TRUE ;
}
static void
scroll_test_configure ( GtkWidget * widget , GdkEventConfigure * event ,
GtkAdjustment * adj )
{
adj - > page_increment = 0.9 * widget - > allocation . height ;
adj - > page_size = widget - > allocation . height ;
gtk_signal_emit_by_name ( GTK_OBJECT ( adj ) , " changed " ) ;
}
static void
scroll_test_adjustment_changed ( GtkAdjustment * adj , GtkWidget * widget )
{
gint source_min = ( int ) adj - > value - scroll_test_pos ;
gint source_max = source_min + widget - > allocation . height ;
gint dest_min = 0 ;
gint dest_max = widget - > allocation . height ;
GdkRectangle rect ;
GdkEvent * event ;
scroll_test_pos = adj - > value ;
if ( ! GTK_WIDGET_DRAWABLE ( widget ) )
return ;
if ( source_min < 0 )
{
rect . x = 0 ;
rect . y = 0 ;
rect . width = widget - > allocation . width ;
rect . height = - source_min ;
if ( rect . height > widget - > allocation . height )
rect . height = widget - > allocation . height ;
source_min = 0 ;
dest_min = rect . height ;
}
else
{
rect . x = 0 ;
rect . y = 2 * widget - > allocation . height - source_max ;
if ( rect . y < 0 )
rect . y = 0 ;
rect . width = widget - > allocation . width ;
rect . height = widget - > allocation . height - rect . y ;
source_max = widget - > allocation . height ;
dest_max = rect . y ;
}
if ( source_min ! = source_max )
{
if ( scroll_test_gc = = NULL )
{
scroll_test_gc = gdk_gc_new ( widget - > window ) ;
gdk_gc_set_exposures ( scroll_test_gc , TRUE ) ;
}
gdk_draw_pixmap ( widget - > window ,
scroll_test_gc ,
widget - > window ,
0 , source_min ,
0 , dest_min ,
widget - > allocation . width ,
source_max - source_min ) ;
/* Make sure graphics expose events are processed before scrolling
* again */
while ( ( event = gdk_event_get_graphics_expose ( widget - > window ) ) ! = NULL )
{
gtk_widget_event ( widget , event ) ;
if ( event - > expose . count = = 0 )
{
gdk_event_free ( event ) ;
break ;
}
gdk_event_free ( event ) ;
}
}
if ( rect . height ! = 0 )
gtk_widget_draw ( widget , & rect ) ;
}
void
1998-05-03 22:41:32 +00:00
create_scroll_test ( void )
1997-12-18 02:17:14 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * hbox ;
GtkWidget * drawing_area ;
GtkWidget * scrollbar ;
GtkWidget * button ;
GtkAdjustment * adj ;
1998-12-07 06:37:27 +00:00
GdkGeometry geometry ;
GdkWindowHints geometry_mask ;
1997-12-18 02:17:14 +00:00
if ( ! window )
{
window = gtk_dialog_new ( ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
1997-12-18 02:17:14 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " Scroll Test " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-12-18 02:17:14 +00:00
hbox = gtk_hbox_new ( FALSE , 0 ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > vbox ) , hbox ,
TRUE , TRUE , 0 ) ;
gtk_widget_show ( hbox ) ;
drawing_area = gtk_drawing_area_new ( ) ;
gtk_drawing_area_size ( GTK_DRAWING_AREA ( drawing_area ) , 200 , 200 ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , drawing_area , TRUE , TRUE , 0 ) ;
gtk_widget_show ( drawing_area ) ;
gtk_widget_set_events ( drawing_area , GDK_EXPOSURE_MASK ) ;
adj = GTK_ADJUSTMENT ( gtk_adjustment_new ( 0.0 , 0.0 , 1000.0 , 1.0 , 180.0 , 200.0 ) ) ;
scroll_test_pos = 0.0 ;
scrollbar = gtk_vscrollbar_new ( adj ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , scrollbar , FALSE , FALSE , 0 ) ;
gtk_widget_show ( scrollbar ) ;
gtk_signal_connect ( GTK_OBJECT ( drawing_area ) , " expose_event " ,
GTK_SIGNAL_FUNC ( scroll_test_expose ) , adj ) ;
gtk_signal_connect ( GTK_OBJECT ( drawing_area ) , " configure_event " ,
GTK_SIGNAL_FUNC ( scroll_test_configure ) , adj ) ;
gtk_signal_connect ( GTK_OBJECT ( adj ) , " value_changed " ,
GTK_SIGNAL_FUNC ( scroll_test_adjustment_changed ) ,
drawing_area ) ;
/* .. And create some buttons */
button = gtk_button_new_with_label ( " Quit " ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
gtk_widget_show ( button ) ;
1998-12-07 06:37:27 +00:00
/* Set up gridded geometry */
geometry_mask = GDK_HINT_MIN_SIZE |
GDK_HINT_BASE_SIZE |
GDK_HINT_RESIZE_INC ;
geometry . min_width = 20 ;
geometry . min_height = 20 ;
geometry . base_width = 0 ;
geometry . base_height = 0 ;
geometry . width_inc = 10 ;
geometry . height_inc = 10 ;
gtk_window_set_geometry_hints ( GTK_WINDOW ( window ) ,
drawing_area , & geometry , geometry_mask ) ;
1997-12-18 02:17:14 +00:00
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
1997-11-24 22:37:52 +00:00
/*
* Timeout Test
*/
1998-07-26 14:45:40 +00:00
1997-11-24 22:37:52 +00:00
static int timer = 0 ;
1998-03-30 23:04:51 +00:00
gint
1997-11-24 22:37:52 +00:00
timeout_test ( GtkWidget * label )
{
static int count = 0 ;
static char buffer [ 32 ] ;
sprintf ( buffer , " count: %d " , + + count ) ;
1998-12-15 20:31:26 +00:00
gtk_label_set_text ( GTK_LABEL ( label ) , buffer ) ;
1998-03-30 23:04:51 +00:00
return TRUE ;
1997-11-24 22:37:52 +00:00
}
void
start_timeout_test ( GtkWidget * widget ,
GtkWidget * label )
{
if ( ! timer )
{
timer = gtk_timeout_add ( 100 , ( GtkFunction ) timeout_test , label ) ;
}
}
void
stop_timeout_test ( GtkWidget * widget ,
gpointer data )
{
if ( timer )
{
gtk_timeout_remove ( timer ) ;
timer = 0 ;
}
}
void
destroy_timeout_test ( GtkWidget * widget ,
GtkWidget * * window )
{
stop_timeout_test ( NULL , NULL ) ;
1998-03-12 21:54:39 +00:00
* window = NULL ;
1997-11-24 22:37:52 +00:00
}
void
1998-05-03 22:41:32 +00:00
create_timeout_test ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * button ;
GtkWidget * label ;
if ( ! window )
{
window = gtk_dialog_new ( ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( destroy_timeout_test ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " Timeout Test " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
label = gtk_label_new ( " count: 0 " ) ;
gtk_misc_set_padding ( GTK_MISC ( label ) , 10 , 10 ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > vbox ) ,
label , TRUE , TRUE , 0 ) ;
gtk_widget_show ( label ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
button = gtk_button_new_with_label ( " start " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( start_timeout_test ) ,
1997-11-24 22:37:52 +00:00
label ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
button = gtk_button_new_with_label ( " stop " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( stop_timeout_test ) ,
1997-11-24 22:37:52 +00:00
NULL ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
/*
* Idle Test
*/
1998-07-26 14:45:40 +00:00
1997-11-24 22:37:52 +00:00
static int idle = 0 ;
1998-06-24 06:25:14 +00:00
static gint
1997-11-24 22:37:52 +00:00
idle_test ( GtkWidget * label )
{
static int count = 0 ;
static char buffer [ 32 ] ;
sprintf ( buffer , " count: %d " , + + count ) ;
1998-12-15 20:31:26 +00:00
gtk_label_set_text ( GTK_LABEL ( label ) , buffer ) ;
1997-11-24 22:37:52 +00:00
return TRUE ;
}
1998-06-24 06:25:14 +00:00
static void
1997-11-24 22:37:52 +00:00
start_idle_test ( GtkWidget * widget ,
GtkWidget * label )
{
if ( ! idle )
{
idle = gtk_idle_add ( ( GtkFunction ) idle_test , label ) ;
}
}
1998-06-24 06:25:14 +00:00
static void
1997-11-24 22:37:52 +00:00
stop_idle_test ( GtkWidget * widget ,
gpointer data )
{
if ( idle )
{
gtk_idle_remove ( idle ) ;
idle = 0 ;
}
}
1998-06-24 06:25:14 +00:00
static void
1997-11-24 22:37:52 +00:00
destroy_idle_test ( GtkWidget * widget ,
GtkWidget * * window )
{
stop_idle_test ( NULL , NULL ) ;
1998-03-12 21:54:39 +00:00
* window = NULL ;
1997-11-24 22:37:52 +00:00
}
1998-06-24 06:25:14 +00:00
static void
toggle_idle_container ( GtkObject * button ,
GtkContainer * container )
{
1998-12-24 17:47:02 +00:00
gtk_container_set_resize_mode ( container , GPOINTER_TO_INT ( gtk_object_get_user_data ( button ) ) ) ;
1998-06-24 06:25:14 +00:00
}
static void
1998-05-03 22:41:32 +00:00
create_idle_test ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * button ;
GtkWidget * label ;
1998-06-24 06:25:14 +00:00
GtkWidget * container ;
1997-11-24 22:37:52 +00:00
if ( ! window )
{
1998-06-24 06:25:14 +00:00
GtkWidget * frame ;
GtkWidget * box ;
1997-11-24 22:37:52 +00:00
window = gtk_dialog_new ( ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( destroy_idle_test ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " Idle Test " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1997-11-24 22:37:52 +00:00
label = gtk_label_new ( " count: 0 " ) ;
gtk_misc_set_padding ( GTK_MISC ( label ) , 10 , 10 ) ;
gtk_widget_show ( label ) ;
1998-06-24 06:25:14 +00:00
container =
gtk_widget_new ( GTK_TYPE_HBOX ,
" GtkWidget::visible " , TRUE ,
/* "GtkContainer::child", gtk_widget_new (GTK_TYPE_HBOX,
* " GtkWidget::visible " , TRUE ,
*/
" GtkContainer::child " , label ,
/* NULL), */
NULL ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > vbox ) ,
container , TRUE , TRUE , 0 ) ;
frame =
gtk_widget_new ( GTK_TYPE_FRAME ,
" GtkContainer::border_width " , 5 ,
" GtkFrame::label " , " Label Container " ,
" GtkWidget::visible " , TRUE ,
" GtkWidget::parent " , GTK_DIALOG ( window ) - > vbox ,
NULL ) ;
box =
gtk_widget_new ( GTK_TYPE_VBOX ,
" GtkWidget::visible " , TRUE ,
" GtkWidget::parent " , frame ,
NULL ) ;
button =
gtk_widget_new ( GTK_TYPE_RADIO_BUTTON ,
" GtkButton::label " , " Resize-Parent " ,
" GtkObject::user_data " , ( void * ) GTK_RESIZE_PARENT ,
" GtkObject::signal::clicked " , toggle_idle_container , container ,
" GtkWidget::visible " , TRUE ,
" GtkWidget::parent " , box ,
NULL ) ;
button =
gtk_widget_new ( GTK_TYPE_RADIO_BUTTON ,
" GtkButton::label " , " Resize-Queue " ,
" GtkObject::user_data " , ( void * ) GTK_RESIZE_QUEUE ,
" GtkObject::signal::clicked " , toggle_idle_container , container ,
" GtkRadioButton::group " , button ,
" GtkWidget::visible " , TRUE ,
" GtkWidget::parent " , box ,
NULL ) ;
button =
gtk_widget_new ( GTK_TYPE_RADIO_BUTTON ,
" GtkButton::label " , " Resize-Immediate " ,
" GtkObject::user_data " , ( void * ) GTK_RESIZE_IMMEDIATE ,
" GtkObject::signal::clicked " , toggle_idle_container , container ,
" GtkRadioButton::group " , button ,
" GtkWidget::visible " , TRUE ,
" GtkWidget::parent " , box ,
NULL ) ;
1997-11-24 22:37:52 +00:00
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
1997-11-24 22:37:52 +00:00
GTK_OBJECT ( window ) ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
button = gtk_button_new_with_label ( " start " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( start_idle_test ) ,
1997-11-24 22:37:52 +00:00
label ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
button = gtk_button_new_with_label ( " stop " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( stop_idle_test ) ,
1997-11-24 22:37:52 +00:00
NULL ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
1998-07-26 14:45:40 +00:00
/*
* rc file test
*/
1998-05-01 16:15:39 +00:00
void
reload_rc_file ( void )
{
GList * toplevels ;
1998-05-03 22:41:32 +00:00
if ( gtk_rc_reparse_all ( ) )
1998-05-01 16:15:39 +00:00
{
1998-05-03 22:41:32 +00:00
toplevels = gdk_window_get_toplevels ( ) ;
while ( toplevels )
{
GtkWidget * widget ;
gdk_window_get_user_data ( toplevels - > data , ( gpointer * ) & widget ) ;
if ( widget )
gtk_widget_reset_rc_styles ( widget ) ;
toplevels = toplevels - > next ;
}
g_list_free ( toplevels ) ;
1998-05-01 16:15:39 +00:00
}
}
1998-05-10 02:46:20 +00:00
void
reload_all_rc_files ( void )
{
static GdkAtom atom_rcfiles = GDK_NONE ;
GdkEventClient sev ;
int i ;
if ( ! atom_rcfiles )
atom_rcfiles = gdk_atom_intern ( " _GTK_READ_RCFILES " , FALSE ) ;
for ( i = 0 ; i < 5 ; i + + )
sev . data . l [ i ] = 0 ;
sev . data_format = 32 ;
sev . message_type = atom_rcfiles ;
gdk_event_send_clientmessage_toall ( ( GdkEvent * ) & sev ) ;
}
1998-05-01 16:15:39 +00:00
void
1998-05-03 22:41:32 +00:00
create_rc_file ( void )
1998-05-01 16:15:39 +00:00
{
static GtkWidget * window = NULL ;
GtkWidget * button ;
if ( ! window )
{
window = gtk_dialog_new ( ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
GTK_SIGNAL_FUNC ( destroy_idle_test ) ,
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " Reload Rc file " ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( window ) , 0 ) ;
1998-05-01 16:15:39 +00:00
button = gtk_button_new_with_label ( " Reload " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( reload_rc_file ) , NULL ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
1998-05-10 02:46:20 +00:00
button = gtk_button_new_with_label ( " Reload All " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( reload_all_rc_files ) , NULL ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
1998-05-01 16:15:39 +00:00
button = gtk_button_new_with_label ( " Close " ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) ,
button , TRUE , TRUE , 0 ) ;
gtk_widget_show ( button ) ;
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
gtk_widget_show ( window ) ;
else
gtk_widget_destroy ( window ) ;
}
1997-11-24 22:37:52 +00:00
/*
1998-03-30 23:04:51 +00:00
* Test of recursive mainloop
1997-11-24 22:37:52 +00:00
*/
1998-03-30 23:04:51 +00:00
void
mainloop_destroyed ( GtkWidget * w , GtkWidget * * window )
{
* window = NULL ;
gtk_main_quit ( ) ;
}
1997-11-24 22:37:52 +00:00
void
1998-05-03 22:41:32 +00:00
create_mainloop ( void )
1997-11-24 22:37:52 +00:00
{
static GtkWidget * window = NULL ;
1998-03-30 23:04:51 +00:00
GtkWidget * label ;
GtkWidget * button ;
1997-11-24 22:37:52 +00:00
if ( ! window )
{
1998-03-30 23:04:51 +00:00
window = gtk_dialog_new ( ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " Test Main Loop " ) ;
1997-11-24 22:37:52 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1998-03-30 23:04:51 +00:00
GTK_SIGNAL_FUNC ( mainloop_destroyed ) ,
1997-11-24 22:37:52 +00:00
& window ) ;
1998-03-30 23:04:51 +00:00
label = gtk_label_new ( " In recursive main loop... " ) ;
gtk_misc_set_padding ( GTK_MISC ( label ) , 20 , 20 ) ;
1997-11-24 22:37:52 +00:00
1998-03-30 23:04:51 +00:00
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > vbox ) , label ,
TRUE , TRUE , 0 ) ;
gtk_widget_show ( label ) ;
button = gtk_button_new_with_label ( " Leave " ) ;
gtk_box_pack_start ( GTK_BOX ( GTK_DIALOG ( window ) - > action_area ) , button ,
FALSE , TRUE , 0 ) ;
gtk_signal_connect_object ( GTK_OBJECT ( button ) , " clicked " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroy ) ,
GTK_OBJECT ( window ) ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
gtk_widget_show ( button ) ;
1997-11-24 22:37:52 +00:00
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
{
gtk_widget_show ( window ) ;
1998-03-30 23:04:51 +00:00
g_print ( " create_mainloop: start \n " ) ;
1997-11-24 22:37:52 +00:00
gtk_main ( ) ;
1998-03-30 23:04:51 +00:00
g_print ( " create_mainloop: done \n " ) ;
1997-11-24 22:37:52 +00:00
}
else
gtk_widget_destroy ( window ) ;
}
1998-11-24 04:45:29 +00:00
gint
layout_expose_handler ( GtkWidget * widget , GdkEventExpose * event )
{
GtkLayout * layout ;
gint i , j ;
gint imin , imax , jmin , jmax ;
layout = GTK_LAYOUT ( widget ) ;
imin = ( layout - > xoffset + event - > area . x ) / 10 ;
imax = ( layout - > xoffset + event - > area . x + event - > area . width + 9 ) / 10 ;
jmin = ( layout - > yoffset + event - > area . y ) / 10 ;
jmax = ( layout - > yoffset + event - > area . y + event - > area . height + 9 ) / 10 ;
gdk_window_clear_area ( widget - > window ,
event - > area . x , event - > area . y ,
event - > area . width , event - > area . height ) ;
for ( i = imin ; i < imax ; i + + )
for ( j = jmin ; j < jmax ; j + + )
if ( ( i + j ) % 2 )
gdk_draw_rectangle ( layout - > bin_window ,
widget - > style - > black_gc ,
TRUE ,
10 * i - layout - > xoffset , 10 * j - layout - > yoffset ,
1 + i % 10 , 1 + j % 10 ) ;
return TRUE ;
}
void create_layout ( void )
{
static GtkWidget * window = NULL ;
GtkWidget * layout ;
GtkWidget * scrolledwindow ;
GtkWidget * button ;
if ( ! window )
{
gchar buf [ 16 ] ;
gint i , j ;
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
GTK_SIGNAL_FUNC ( gtk_widget_destroyed ) ,
& window ) ;
gtk_window_set_title ( GTK_WINDOW ( window ) , " Layout " ) ;
gtk_widget_set_usize ( window , 200 , 200 ) ;
scrolledwindow = gtk_scrolled_window_new ( NULL , NULL ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , scrolledwindow ) ;
layout = gtk_layout_new ( NULL , NULL ) ;
gtk_container_add ( GTK_CONTAINER ( scrolledwindow ) , layout ) ;
1999-01-27 18:21:20 +00:00
/* We set step sizes here since GtkLayout does not set
* them itself .
*/
GTK_LAYOUT ( layout ) - > hadjustment - > step_increment = 10.0 ;
GTK_LAYOUT ( layout ) - > vadjustment - > step_increment = 10.0 ;
1998-11-24 04:45:29 +00:00
gtk_widget_set_events ( layout , GDK_EXPOSURE_MASK ) ;
gtk_signal_connect ( GTK_OBJECT ( layout ) , " expose_event " ,
GTK_SIGNAL_FUNC ( layout_expose_handler ) , NULL ) ;
1999-01-27 18:21:20 +00:00
gtk_layout_set_size ( GTK_LAYOUT ( layout ) , 1600 , 128000 ) ;
1998-11-24 04:45:29 +00:00
for ( i = 0 ; i < 16 ; i + + )
for ( j = 0 ; j < 16 ; j + + )
{
sprintf ( buf , " Button %d, %d " , i , j ) ;
if ( ( i + j ) % 2 )
1998-12-16 02:37:41 +00:00
button = gtk_button_new_with_label ( buf ) ;
1998-11-24 04:45:29 +00:00
else
button = gtk_label_new ( buf ) ;
1998-11-24 19:33:01 +00:00
1998-11-24 04:45:29 +00:00
gtk_layout_put ( GTK_LAYOUT ( layout ) , button ,
j * 100 , i * 100 ) ;
}
1998-11-24 19:33:01 +00:00
1999-01-27 18:21:20 +00:00
for ( i = 16 ; i < 1280 ; i + + )
1998-11-24 19:33:01 +00:00
{
sprintf ( buf , " Button %d, %d " , i , 0 ) ;
if ( i % 2 )
button = gtk_button_new_with_label ( buf ) ;
else
button = gtk_label_new ( buf ) ;
gtk_layout_put ( GTK_LAYOUT ( layout ) , button ,
0 , i * 100 ) ;
}
1998-11-24 04:45:29 +00:00
}
if ( ! GTK_WIDGET_VISIBLE ( window ) )
1998-11-24 19:33:01 +00:00
gtk_widget_show_all ( window ) ;
1998-11-24 04:45:29 +00:00
else
gtk_widget_destroy ( window ) ;
}
1997-11-24 22:37:52 +00:00
/*
* Main Window and Exit
*/
1998-07-26 14:45:40 +00:00
1997-11-24 22:37:52 +00:00
void
1998-01-30 23:47:09 +00:00
do_exit ( GtkWidget * widget , GtkWidget * window )
1997-11-24 22:37:52 +00:00
{
1998-01-30 23:47:09 +00:00
gtk_widget_destroy ( window ) ;
gtk_main_quit ( ) ;
1997-11-24 22:37:52 +00:00
}
void
1998-05-03 22:41:32 +00:00
create_main_window ( void )
1997-11-24 22:37:52 +00:00
{
struct {
char * label ;
void ( * func ) ( ) ;
} buttons [ ] =
{
1998-03-18 21:11:04 +00:00
{ " button box " , create_button_box } ,
1997-11-24 22:37:52 +00:00
{ " buttons " , create_buttons } ,
{ " check buttons " , create_check_buttons } ,
1998-01-03 03:31:03 +00:00
{ " clist " , create_clist } ,
1997-11-24 22:37:52 +00:00
{ " color selection " , create_color_selection } ,
1998-05-01 13:16:49 +00:00
{ " ctree " , create_ctree } ,
1998-03-18 21:11:04 +00:00
{ " cursors " , create_cursors } ,
1997-11-24 22:37:52 +00:00
{ " dialog " , create_dialog } ,
Added a modular client-message-filter mechanism, that is used for the DND
Sun Oct 18 18:16:39 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdk.c gdkprivate.h: Added a modular client-message-filter
mechanism, that is used for the DND messages.
Removed all the old DND code.
* gdk/gdkcolormap.c gdk/gdkcolormap.h: Add a function to
get the visual of a given colormap.
* gtk/gtkcolorsel.c: Conversion to new DND, drag
a color-swatch.
* gdk/gdk.h gdk/gdkdnd.c: The low-level
X oriented portions of drag and drop protocols.
Sending and receiving client messages, and navigating
window trees.
* gdk/gdkimage.c: added a gdk_flush() when destroying
SHM images to hopefully make it more likely that
X will gracefully handle the segment being destroyed.
* gdk/gdkprivate.h gtk/gtkdebug.h: Add new
DND debugging flags.
* gtk/gtkeditable.[ch]: Updates for the selection handling
changes.
* gtk/gtkselection.[ch]: Added GtkTargetList, a
refcounted data structure for keeping track of lists
of GdkAtom + information. Removed selection_handler_add
in favor of a "drag_data_get" signal.
* gtk/gtkdnd.[ch] gtk/gtk.h: New files - highlevel (event loop
dependent) parts of the DND protocols, display of drag icons,
drag-under highlighting, and the "default handlers".
* gtk/gtkinvisible.[ch]: New widget - InputOnly offscreen
windows that are used for reliable pointer grabs and
selection handling in the DND code.
* gtk/testdnd.c: New test program for new DND. (Old
DND tests in testgtk still need to be converted.)
* gtk/testselection.c: Use the new selection API.
* docs/dnd_internals: Start at describing how
all the new code works inside.
* docs/Changes-1.2.txt: New file describing source-incompatible
changes in GTK+-1.2.
Sat Oct 17 22:50:34 1998 Owen Taylor <otaylor@gtk.org>
* gdk/gdkwindow.c (gdk_window_remove_filter): Free
the right list node.
* gdk/gdkwindow.c (gdk_window_init): Add gdk_root_parent
to the XID table so we can receive events on it.
Wed Oct 14 12:57:40 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c gdk/gdk.h (gdk_event_get_time): New function
to get the timestamp from a generic event.
Fri Oct 9 13:16:04 1998 Owen Taylor <otaylor@redhat.com>
* gtk/gtkwidget.c (gtk_widget_add_events): Added function
that safely adds additional events to a widget's event
mask, even if the widget has previously been realized.
(We can do this, but not remove events from the event
mask).
Fri Oct 2 17:35:35 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_property_get): Allow type == 0,
for AnyPropertyType.
Fri Oct 2 10:32:21 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdkproperty.c (gdk_atom_intern): Add client-local
hashing.
Thu Sep 24 20:33:54 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_send_clientmessage_toall): serial
isn't a timestamp.
Thu Sep 17 14:23:03 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.c (gdk_event_translate): Removed printing
of unknown window lookup warnings. (Made it
a GDK_NOTE) - they happen in many circumstances.
1998-10-18 22:51:24 +00:00
/* { "dnd", create_dnd }, */
1998-03-18 21:11:04 +00:00
{ " entry " , create_entry } ,
1998-11-30 07:09:36 +00:00
{ " event watcher " , create_event_watcher } ,
1998-03-18 21:11:04 +00:00
{ " file selection " , create_file_selection } ,
1998-06-15 21:27:17 +00:00
{ " font selection " , create_font_selection } ,
1998-03-18 21:11:04 +00:00
{ " gamma curve " , create_gamma_curve } ,
{ " handle box " , create_handle_box } ,
Added gdk_text/string_extents() - too calculate all the metrics at once of
Tue Jul 21 12:42:01 1998 Owen Taylor <otaylor@redhat.com>
* gdk/gdk.h gdk/gdkfont.c: Added gdk_text/string_extents() -
too calculate all the metrics at once of a string, including
things which weren't calculated before.
* gtk/Makefile.am gtk/gtk.h gtk/gtktearoffmenu.[ch]: New
MenuItem type, that when put as the first thing in a
menu, makes the menu tearoff. Currently drawn as a
dashed line.
* gtk/gtkmenuitem.h gtk/gtkcheckmenuitem.c: Added a flag
"hide_on_activate" to the MenuItem class structure to allow
check and radio buttons to be changed with <Space> without
hiding the menu.
* gtk/gtkaccellabel.[ch]: Added new capabilities to set
a underline_group and underline_mods for the label -
accelerators added in the underline group matching
underline_mods will be displayed as an underline character.
This doesn't work - Save As needs to be underlined
as Save _As.
* gtk/gtkitemfactory.c:
- Create a AccelGroup for each MenuShell we create.
- If an '&' appears before a character 'c' in the path,
then make 'c' an accelerator in the menu's accel group,
and if the menuitem is menubar <alt>C an accelerator
in the itemfactory's accel group.
* gtk/gtklabel.[ch]: Add support for a pattern arg -
which is a string. If an '_' appears in this string,
the corresponding position in the label is underlined.
Add gtk_label_parse_uline() convenience function which
takes a string with embedded underlines, sets the
pattern and label, and returns the accelerator keyval.
* gtk/gtkmenu.[ch]: Make menus no longer a toplevel widget.
Instead, they create a GtkWindow and add themselves
to that. (When torn off, another new feature, they
create another GtkWindow to hold the torn off menu)
New function gtk_menu_set_tearoff_state()
* gtk/gtkenums.h gtk/gtkmenushell.[ch] gtk/gtkenums.h:
Added action signals for keyboard navigation of menus.
* gtk/gtkmenushell.c: Key press handler which activates
bindings for navigation, and accelerators, for handling
underline accelerators. Exported functions to select
and activate menu items in a menushell.
* gtk/testgtk.c: Added a new "Item Factory" test which
tests GtkItemFactory and the new keyboard navigation
of menus.
1998-08-12 16:49:13 +00:00
{ " item factory " , create_item_factory } ,
1998-12-15 20:31:26 +00:00
{ " labels " , create_labels } ,
1998-11-24 04:45:29 +00:00
{ " layout " , create_layout } ,
1998-03-18 21:11:04 +00:00
{ " list " , create_list } ,
{ " menus " , create_menus } ,
1998-08-11 19:06:18 +00:00
{ " modal window " , create_modal_window } ,
1997-11-24 22:37:52 +00:00
{ " notebook " , create_notebook } ,
{ " panes " , create_panes } ,
1998-03-18 21:11:04 +00:00
{ " pixmap " , create_pixmap } ,
1997-11-24 22:37:52 +00:00
{ " preview color " , create_color_preview } ,
{ " preview gray " , create_gray_preview } ,
1998-03-18 21:11:04 +00:00
{ " progress bar " , create_progress_bar } ,
{ " radio buttons " , create_radio_buttons } ,
{ " range controls " , create_range_controls } ,
1998-05-01 16:15:39 +00:00
{ " rc file " , create_rc_file } ,
1998-03-18 21:11:04 +00:00
{ " reparent " , create_reparent } ,
{ " rulers " , create_rulers } ,
new function to get the *real* geometry position of a window, taken
Sat Sep 25 23:33:55 1998 Tim Janik <timj@gtk.org>
* gdk/gdkwindow.c (gdk_window_get_root_origin): new function to get
the *real* geometry position of a window, taken possible window
manager offsets into account.
this has been succesfully tested with fvwm, fvwm-2, bowman, olwm,
olvwm, twm, ctwm, mlvwm, windowmaker and enlightenment.
it does fail though for amiwm which adds windows to a pseudo root
window, and for icewm by a small offset because it defines the
geometry position whithin its border.
* gtk/testgtk.c: added "saved position" test to figure how
gdk_window_get_root_origin() interacts with window managers (repopup
this window to figure ;).
1998-09-25 23:04:32 +00:00
{ " saved position " , create_saved_position } ,
1998-03-18 21:11:04 +00:00
{ " scrolled windows " , create_scrolled_windows } ,
{ " shapes " , create_shapes } ,
{ " spinbutton " , create_spins } ,
{ " statusbar " , create_statusbar } ,
{ " test idle " , create_idle_test } ,
1998-03-30 23:04:51 +00:00
{ " test mainloop " , create_mainloop } ,
1997-12-18 02:17:14 +00:00
{ " test scrolling " , create_scroll_test } ,
1997-11-24 22:37:52 +00:00
{ " test selection " , create_selection_test } ,
{ " test timeout " , create_timeout_test } ,
1998-03-18 21:11:04 +00:00
{ " text " , create_text } ,
{ " toggle buttons " , create_toggle_buttons } ,
{ " toolbar " , create_toolbar } ,
{ " tooltips " , create_tooltips } ,
{ " tree " , create_tree_mode_window } ,
{ " WM hints " , create_wmhints } ,
1997-11-24 22:37:52 +00:00
} ;
int nbuttons = sizeof ( buttons ) / sizeof ( buttons [ 0 ] ) ;
GtkWidget * window ;
GtkWidget * box1 ;
GtkWidget * box2 ;
GtkWidget * scrolled_window ;
GtkWidget * button ;
1998-03-08 02:04:26 +00:00
GtkWidget * label ;
gchar buffer [ 64 ] ;
1997-11-24 22:37:52 +00:00
GtkWidget * separator ;
int i ;
window = gtk_window_new ( GTK_WINDOW_TOPLEVEL ) ;
1998-05-01 04:23:59 +00:00
gtk_window_set_policy ( GTK_WINDOW ( window ) , FALSE , FALSE , FALSE ) ;
1997-11-24 22:37:52 +00:00
gtk_widget_set_name ( window , " main window " ) ;
gtk_widget_set_usize ( window , 200 , 400 ) ;
gtk_widget_set_uposition ( window , 20 , 20 ) ;
gtk_signal_connect ( GTK_OBJECT ( window ) , " destroy " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( gtk_main_quit ) ,
1997-11-24 22:37:52 +00:00
NULL ) ;
1998-05-07 17:08:58 +00:00
gtk_signal_connect ( GTK_OBJECT ( window ) , " delete-event " ,
1998-03-12 21:54:39 +00:00
GTK_SIGNAL_FUNC ( gtk_false ) ,
1997-11-24 22:37:52 +00:00
NULL ) ;
box1 = gtk_vbox_new ( FALSE , 0 ) ;
gtk_container_add ( GTK_CONTAINER ( window ) , box1 ) ;
1998-03-08 02:04:26 +00:00
if ( gtk_micro_version > 0 )
sprintf ( buffer ,
" Gtk+ v%d.%d.%d " ,
gtk_major_version ,
gtk_minor_version ,
gtk_micro_version ) ;
else
sprintf ( buffer ,
" Gtk+ v%d.%d " ,
gtk_major_version ,
gtk_minor_version ) ;
label = gtk_label_new ( buffer ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , label , FALSE , FALSE , 0 ) ;
1997-11-24 22:37:52 +00:00
scrolled_window = gtk_scrolled_window_new ( NULL , NULL ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( scrolled_window ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_scrolled_window_set_policy ( GTK_SCROLLED_WINDOW ( scrolled_window ) ,
GTK_POLICY_AUTOMATIC ,
GTK_POLICY_AUTOMATIC ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , scrolled_window , TRUE , TRUE , 0 ) ;
box2 = gtk_vbox_new ( FALSE , 0 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
added args ::show_text, ::text_xalign, ::text_yalign, ::activity_mode.
Sun Nov 22 16:21:28 1998 Tim Janik <timj@gtk.org>
* gtk/gtkprogress.c: added args ::show_text, ::text_xalign,
::text_yalign, ::activity_mode.
* gtk/gtkprogressbar.c: added construct arg ::adjustment. added args
::bar_style, ::orientation, ::discrete_blocks, ::activity_step,
::activity_blocks.
(gtk_progress_bar_new):
(gtk_progress_bar_new_with_adjustment): use gtk_widget_new().
(gtk_progress_bar_construct): deprecated.
* gtk/gtkvscrollbar.c:
(gtk_vscrollbar_draw_step_back):
(gtk_vscrollbar_draw_step_forw): use "vscrollbar" as detail for
gtk_paint_arrow, to be consistent with hscrollbar.
* gtk/gtktext.c
added construct args ::hadjustment, ::vadjustment.
added args ::line_wrap, ::word_wrap.
(gtk_text_class_init): added scroll_adjustments signal.
(gtk_text_new): use gtk_widget_new.
(gtk_text_disconnect): remove adjustement with gtk_text_set_adjustments,
so we don't screw the reference counts and don't leave signals connected.
(gtk_text_destroy): disconnect adjustments signals.
(gtk_text_finalize): unref adjustments.
* gtk/gtkctree.c: added construct args ::n_columns and ::tree_column.
added args ::indent, ::spacing, ::show_stub, ::reorderable,
::use_drag_icons, ::line_style and ::expander_style.
(gtk_ctree_set_show_stub): renamed from gtk_ctree_show_stub, which is
deprecated now.
* gtk/gtkclist.h: remove GTK_CLIST_CONSTRUCT flag.
* gtk/gtkclist.c:
removed ::vadjustment and ::hadjustment args, introduced
::scroll_adjustments signal.
added ::shadow_type, ::selection_mode and ::row_height args.
added n_columns construct arg.
(gtk_clist_construct): call gtk_object_constructed().
(gtk_clist_set_row_height): if height is passed as 0,
revert to automatic height calculation.
(gtk_clist_destroy): before unrefing the adjustments, disconnect our
signal handlers.
Fri Nov 21 22:34:58 1998 Tim Janik <timj@gtk.org>
* gtk/gtkwidget.c (gtk_widget_new): call gtk_object_default_construct
like gtk_object_new.
(gtk_widget_destroy): assert that we only destroy constructed widgets.
* gtk/gtkobject.h (enum GtkArgFlags): new flag GTK_ARG_CONSTRUCT_ONLY
to identify args that may only be used for construction.
GTK_ARG_CONSTRUCT maybe used as normal arguments besides construction
time.
* gtk/gtkobject.c (gtk_object_new): invoke gtk_object_default_construct
at the end if the object is not fully constructed.
(gtk_object_newv): likewise.
(gtk_object_destroy): assert that we only destroy constructed objects.
(gtk_object_init): setup GTK_CONSTRUCTED from the
objects real klass.
(gtk_object_default_construct): new function to complete default
construction of an object by applying missing construtor args with
default values of 0, 0.0 or NULL.
(gtk_object_constructed): new function to mark an object as being
constructed (used from within constructors).
* gtk/gtkarg.c (gtk_arg_type_new_static): return the args info pointer
so it is immediatedly available for the caller.
* gtk/gtktypeutils.c (gtk_type_new): pass an object's real class to
the object initilizer (GtkObjectInitFunc takes a second arg now, the
real klass), and asure that object initializers may temporarily alter
the class pointer.
Fri Nov 20 08:00:30 1998 Tim Janik <timj@gtk.org>
* gtk/testgtk.c: change all occourances of gtk_container_add (
scrolled_window, widget) to gtk_scrolled_window_add_with_viewport (...)
for widget!=(clist, ctree, text, viewport).
* gtk/gtkcombo.c:
(gtk_combo_init): use gtk_scrolled_window_add_with_viewport()
to add children to the scrolled window.
* gtk/gtkscrolledwindow.h:
* gtk/gtkscrolledwindow.c:
changed scrolled_window->viewport to scrolled_window->child, and use
gtk_widget_scroll_adjustements() to set the scroll adjustments for the
widget, we do not create an additional viewport anymore.
added ::hadjustment and ::vadjustment constructor args.
(gtk_scrolled_window_new): use gtk_widget_new() to create the widget.
(gtk_scrolled_window_set_hadjustment):
(gtk_scrolled_window_set_vadjustment): new functions that superceed
gtk_scrolled_window_construct.
(gtk_scrolled_window_construct): deprecated this function.
* gtk/gtkhscrollbar.c:
* gtk/gtkvscrollbar.c:
* gtk/gtkhscale.c:
* gtk/gtkvscale.c:
support a constructor arg "::adjustment", and use gtk_widget_new() for
the widget creation.
* gtk/gtkrange.c: added ::update_policy arg.
(gtk_range_set_adjustment): if adjustment is passed in as NULL, create
a default adjustment so this function can be used for derived widgets
that depend on the adjustment's existance.
(gtk_range_destroy): disconnect the adjustment signal, so we don't
get called after we got destroyed, we don't destroy the adjustment
in here, because it might have been provided from another widget.
* gtk/gtkviewport.c: introduced ::scroll_adjustments signal.
(gtk_viewport_destroy): same as gtk_range_destroy.
* gtk/gtkprogress.c (gtk_progress_destroy): same as gtk_range_destroy.
* gtk/gtkwidget.h:
* gtk/gtkwidget.c: changed gtk_widget_activate() to return a
gboolean, indicating whether this widget supports activation.
added gtk_widget_scroll_adjustements() to set the scrolling
adjustments of a widget.
Wed Nov 19 01:22:42 1998 Tim Janik <timj@gtk.org>
* gtk/gtkoptionmenu.c:
(gtk_option_menu_remove_contents):
(gtk_option_menu_update_contents): removed
gtk_container_[un]block_resize() pairs.
* gtk/gtknotebook.h:
* gtk/gtknotebook.c: removed the tab_border field, since it shouldn't
be used outside of gtknotebook.c anyways. made ARG_TAB_BORDER a
wrtie-only argument.
* *.c: made deprecated functions issue a message:
gtk_clist_set_border, gtk_container_block_resize,
gtk_container_unblock_resize, gtk_container_need_resize,
gtk_object_class_add_user_signal, gtk_spin_button_construct,
gtk_scrolled_window_construct.
removed non-functional functions:
gtk_container_disable_resize, gtk_container_enable_resize,
gtk_clist_set_policy.
Wed Nov 18 22:54:36 1998 Tim Janik <timj@gtk.org>
* gtk/gtkbox.c (gtk_box_init):
* gtk/gtkdrawingarea.c (gtk_drawing_area_init):
* gtk/gtkeventbox.c (gtk_event_box_init):
* gtk/gtkfixed.c (gtk_fixed_init):
* gtk/gtkframe.c (gtk_frame_init):
* gtk/gtkhandlebox.c (gtk_handle_box_init):
* gtk/gtkpacker.c (gtk_packer_init):
* gtk/gtkmisc.c (gtk_misc_init):
* gtk/gtkpreview.c (gtk_preview_init):
* gtk/gtkprogress.c (gtk_progress_init):
* gtk/gtkprogressbar.c (gtk_progress_bar_init):
* gtk/gtkseparator.c (gtk_separator_init):
* gtk/gtktable.c (gtk_table_init):
* gtk/gtkviewport.c (gtk_viewport_init):
* gtk/gtkalignment.c (gtk_alignment_init):
removed setting of the GTK_BASIC flag.
* gtk/gtkwidget.h:
* gtk/gtkwidget.c:
removed GTK_BASIC, GTK_WIDGET_BASIC and gtk_widget_basic.
* miscellaneous GtkType and macro fixups.
1998-11-23 01:54:45 +00:00
gtk_scrolled_window_add_with_viewport ( GTK_SCROLLED_WINDOW ( scrolled_window ) , box2 ) ;
1998-05-01 04:23:59 +00:00
gtk_container_set_focus_vadjustment ( GTK_CONTAINER ( box2 ) ,
gtk_scrolled_window_get_vadjustment ( GTK_SCROLLED_WINDOW ( scrolled_window ) ) ) ;
1997-11-24 22:37:52 +00:00
gtk_widget_show ( box2 ) ;
for ( i = 0 ; i < nbuttons ; i + + )
{
button = gtk_button_new_with_label ( buttons [ i ] . label ) ;
if ( buttons [ i ] . func )
gtk_signal_connect ( GTK_OBJECT ( button ) ,
" clicked " ,
1997-12-06 22:12:10 +00:00
GTK_SIGNAL_FUNC ( buttons [ i ] . func ) ,
NULL ) ;
1997-11-24 22:37:52 +00:00
else
gtk_widget_set_sensitive ( button , FALSE ) ;
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
}
separator = gtk_hseparator_new ( ) ;
gtk_box_pack_start ( GTK_BOX ( box1 ) , separator , FALSE , TRUE , 0 ) ;
box2 = gtk_vbox_new ( FALSE , 10 ) ;
1998-11-28 07:42:37 +00:00
gtk_container_set_border_width ( GTK_CONTAINER ( box2 ) , 10 ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box1 ) , box2 , FALSE , TRUE , 0 ) ;
button = gtk_button_new_with_label ( " close " ) ;
gtk_signal_connect ( GTK_OBJECT ( button ) , " clicked " ,
1998-01-30 23:47:09 +00:00
GTK_SIGNAL_FUNC ( do_exit ) ,
window ) ;
1997-11-24 22:37:52 +00:00
gtk_box_pack_start ( GTK_BOX ( box2 ) , button , TRUE , TRUE , 0 ) ;
GTK_WIDGET_SET_FLAGS ( button , GTK_CAN_DEFAULT ) ;
gtk_widget_grab_default ( button ) ;
1998-07-26 14:45:40 +00:00
gtk_widget_show_all ( window ) ;
1997-11-24 22:37:52 +00:00
}
int
main ( int argc , char * argv [ ] )
{
1998-07-22 22:29:10 +00:00
GtkBindingSet * binding_set ;
1998-06-28 06:24:49 +00:00
srand ( time ( NULL ) ) ;
1997-11-24 22:37:52 +00:00
gtk_set_locale ( ) ;
1998-12-09 01:05:41 +00:00
gtk_rc_add_default_file ( " testgtkrc " ) ;
1997-11-24 22:37:52 +00:00
gtk_init ( & argc , & argv ) ;
1998-02-21 04:46:21 +00:00
1998-08-20 20:10:52 +00:00
gdk_rgb_init ( ) ;
1998-07-22 22:29:10 +00:00
/* bindings test
*/
binding_set = gtk_binding_set_by_class ( gtk_type_class ( GTK_TYPE_WIDGET ) ) ;
gtk_binding_entry_add_signal ( binding_set ,
' 9 ' , GDK_CONTROL_MASK | GDK_RELEASE_MASK ,
" debug_msg " ,
1 ,
GTK_TYPE_STRING , " GtkWidgetClass <ctrl><release>9 test " ) ;
1997-11-24 22:37:52 +00:00
create_main_window ( ) ;
gtk_main ( ) ;
return 0 ;
}