[Python-gtkextra-commits] CVS: python-gtkextra ChangeLog,1.1.1.1,1.2 INSTALL,1.1.1.1,1.2 NEWS,1.1.1.
Status: Beta
Brought to you by:
treeves
From: Andreas V?g. <voe...@us...> - 2002-01-03 22:44:07
|
Update of /cvsroot/python-gtkextra/python-gtkextra In directory usw-pr-cvs1:/tmp/cvs-serv18294 Modified Files: ChangeLog INSTALL NEWS setup.py Log Message: GtkExtra-0.99.17 update Index: ChangeLog =================================================================== RCS file: /cvsroot/python-gtkextra/python-gtkextra/ChangeLog,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** ChangeLog 2001/09/15 18:50:55 1.1.1.1 --- ChangeLog 2002/01/03 22:44:04 1.2 *************** *** 1,2 **** --- 1,116 ---- + 2002-01-03 Andreas Voegele <voe...@us...> + + * gtkextra/__init__.py: Added PLOT_CANVAS_MARKER. Updated + PLOT_CANVAS_CUSTOM. + + Added selections PLOT_CANVAS_SELECT_NONE, + PLOT_CANVAS_SELECT_MARKERS, PLOT_CANVAS_SELECT_TARGET. + + Added selection modes PLOT_CANVAS_SELECT_CLICK_1, + PLOT_CANVAS_SELECT_CLICK_2. + + Added iterator masks PLOT_DATA_X, PLOT_DATA_Y, PLOT_DATA_Z, + PLOT_DATA_A, PLOT_DATA_DX, PLOT_DATA_DY, PLOT_DATA_DZ, + PLOT_DATA_DA, PLOT_DATA_LABELS. + + Added GtkPlot.axis_set_labels_offset(), axis_get_labels_offset(). + + Added GtkPlotCanvas.freeze(), thaw(). + + Added GtkPlotData.update(), get_point(), set_a_scale(), + get_a_scale(), draw_gradient(), gradient_autoscale_a(), + gradient_autoscale_da(), gradient_autoscale_z(), add_marker(), + remove_marker(), remove_markers(), show_markers(), + markers_visible(). + + Updated GtkPlotData.set_gradient(), get_gradient(). + + Added GtkPlotSurface.use_height_gradient(), set_transparent(), + build_mesh() and recalc_nodes(). + + Added GtkSheet.get_entry_widget(), set_background(), set_grid(), + show_grid() and grid_visible(). + + Added history_combo to GtkIconFileSelection. + + * examples/testboxes.py: Updated the array py1 and the arguments + of set_symbol(). + + * examples/testcontour.py: Added an additional argument to + set_gradient(). Added surface.set_lines_visible(FALSE). + + * examples/testgtkplot.py: Added move_item(). + + * examples/testgtksheet.py: Added self.set_background(), + self.set_grid() and self.show_grid(). + + * gtkextra/gtkextra.defs: Added gtk_plot_set_pc(), + gtk_plot_axis_set_labels_offset(), + gtk_plot_axis_get_labels_offset(). + + Added gtk_plot_canvas_set_pc(), gtk_plot_canvas_freeze(), + gtk_plot_canvas_thaw(). Updated gtk_plot_canvas_grid_set_step(). + + Added gtk_plot_data_new_iterator(), gtk_plot_data_update(), + gtk_plot_data_get_point(), gtk_plot_data_set_a_scale(), + gtk_plot_data_get_a_scale(), gtk_plot_data_draw_gradient(), + gtk_plot_data_gradient_autoscale_a(), + gtk_plot_data_gradient_autoscale_da(), + gtk_plot_data_gradient_autoscale_z(), gtk_plot_data_add_marker(), + gtk_plot_data_remove_marker(), gtk_plot_data_remove_markers(), + gtk_plot_data_show_markers(), gtk_plot_data_markers_visible(). + + Updated gtk_plot_data_set_gradient(), + gtk_plot_data_get_gradient(). + + Added gtk_plot_surface_use_height_gradient(), + gtk_plot_surface_set_transparent(), gtk_plot_surface_build_mesh() + and gtk_plot_surface_recalc_nodes(). + + Added gtk_sheet_get_entry_widget(), gtk_sheet_set_background(), + gtk_sheet_set_grid(), gtk_sheet_show_grid() and + gtk_sheet_grid_visible(). + + Added history_combo to IconFileSelection. + + Replaced "int" and "uint" with the correct types. + + * gtkextra/gtkextra-extrafuncs.defs: Added GTK_PLOT_CANVAS_MARKER. + Added PlotCanvasSelection. Added PlotCanvasSelectionMode. Added + GTK_PLOT_DATA_X etc. Replaced "int" with "GtkJustification". + + * gtkextra/pygtkextra-private.h: Added + pygtkextra_plot_data_register_plot_iterator() and + pygtkextra_plot_data_call_plot_iterator(). + + * gtkextra/gtkplotdata-support.c: Added + pygtkextra_plot_data_register_plot_iterator() and + pygtkextra_plot_data_call_plot_iterator(). + + * gtkextra/gtkplotcanvaschild-type.c: Added + GtkPlotCanvasChild.set_selection(), set_selection_mode(). + + * gtkextra/gtkextramodule.c: Added gtk_plot_data_get_point(), + gtk_plot_data_add_marker(), gtk_plot_data_remove_marker(). + Updated gtk_plot_data_get_gradient(), gtk_plot_data_set_points(), + gtk_plot_surface_set_points() gtk_sheet_get_entry_widget(). + + * gtkextra/gtkextra.override: Added gtk_plot_set_pc(), + gtk_plot_canvas_set_pc() to the list of ignored functions. Added + gtk_plot_data_get_point(), gtk_plot_data_add_marker(), + gtk_plot_data_remove_marker(). Updated + gtk_plot_data_get_gradient(), gtk_plot_data_set_points(), + gtk_plot_surface_set_points(). + + * codegen/mkgtkextra.py: Added gtk_plot_set_pc(), + gtk_plot_canvas_set_pc(), gtk_plot_data_new_iterator(). + Added several types that are mapped to "int" or "uint". + + * setup.py: Updated the version number. + + * NEWS: Added a new entry. Modified several old entries. + + * INSTALL: Minor changes. + 2001-09-15 Andreas Voegele <voe...@us...> Index: INSTALL =================================================================== RCS file: /cvsroot/python-gtkextra/python-gtkextra/INSTALL,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** INSTALL 2001/09/15 18:50:56 1.1.1.1 --- INSTALL 2002/01/03 22:44:04 1.2 *************** *** 12,17 **** python setup.py install ! You can build RPM packages with: python setup.py bdist_rpm --- 12,18 ---- python setup.py install ! You can build Tar and RPM archives with: + python setup.py bdist python setup.py bdist_rpm *************** *** 22,36 **** cd examples ! ./testgtksheet.py ! ./testgtkplot.py ! ./testboxes.py ! ./testbubbles.py ! ./testflux.py ! ./testpolar.py ! ./testgtkplot3d.py ! ./testcontour.py ! ./testrealtime.py ! ./testgtkiconlist.py ! ./testgtkfilesel.py ! ./testgtkfont.py cd .. --- 23,37 ---- cd examples ! python testgtksheet.py ! python testgtkplot.py ! python testboxes.py ! python testbubbles.py ! python testflux.py ! python testpolar.py ! python testgtkplot3d.py ! python testcontour.py ! python testrealtime.py ! python testgtkiconlist.py ! python testgtkfilesel.py ! python testgtkfont.py cd .. Index: NEWS =================================================================== RCS file: /cvsroot/python-gtkextra/python-gtkextra/NEWS,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** NEWS 2001/09/15 18:50:55 1.1.1.1 --- NEWS 2002/01/03 22:44:04 1.2 *************** *** 1,6 **** New in 0.21: ! * The bindings are now a package, ie gtkextra/__init__.py is used ! instead of gtkextra.py. Please remove the old files before the ! the new files are installed. New in 0.20: --- 1,15 ---- + New in 0.22: + * Requires gtk+extra-0.99.17. + * GtkPlotData.set_gradient() and get_gradient() now get/return the number + of sublevels as an additional parameter. + * GtkPlotData.set_points() accepts the tuple returned by get_points() as + input. + * GtkCheckItem will be removed in the next version. Please use the + standard GtkCheckButton instead. + New in 0.21: ! * The bindings are now a package, ie. gtkextra/__init__.py is used ! instead of gtkextra.py. Please remove the old bindings before ! installing the new version. New in 0.20: *************** *** 23,43 **** * Removed GtkPlot.plot_set_flags(), plot_unset_flags() and PLOT_TRANSPARENT. Use GtkPlot.set_transparent() instead. - * Added GtkPlot.grids_set_on_top() and grids_on_top(). - * Added PLOT_BAR_POINTS, PLOT_BAR_RELATIVE, PLOT_BAR_ABSOLUTE. - * Added GtkPlotCSurface.set_lines_only(), lines_only(), - set_labels_visible() and labels_visible(). - * Added GtkPlotFlux.center() and is_centered(). - * Added GtkPlotText.set_border(). - * Added GtkPlotCanvas.put_pixmap() and PLOT_CANVAS_PIXMAP. * GtkFileList.open_dir() now returns a boolean value indicating success or failure. - * Added GtkFileList.get_filetype(), add_type() and add_type_filter(). * Added GtkIconFileSelection.show_tree(). Note: Use show() instead of show_all() to manage a GtkIconFileSelection dialog. If the dialog is managed with show_all() the tree widget, that is now disabled by default, will be shown and the GtkExtra code won't work correctly. - * Added GtkIconList.add_from_pixmap(). - * Added the attributes GtkPSFont.i18n_latinfamily and vertical. - * Added the function psfont_add_i18n_font(). * Applied a patch from Joe Van Andel that fixes a Numerical Python problem. --- 32,41 ---- *************** *** 69,84 **** axis_set_labels_numbers(). * Removed GtkPlot.axis_set_tick_labels(). Custom labels are now set ! with the signal "tick_label". Note: This signal is not supported by ! the Python bindings since the signal "tick_label" uses ! GTK_TYPE_POINTER. ! * Added GtkPlot.axis_set_labels_suffix(), axis_set_labels_prefix(), ! axis_get_labels_suffix() and axis_get_labels_prefix(). * Updated GtkPlot3D.corner_set_attributes(), corner_get_attributes(), frame_set_attributes(), frame_get_attributes() and axis_set_ticks_width(). The width is now a floating point value. - * Added GtkIconFileSelection.show_hidden() and set_filter(). - * Added GtkIconList.set_mode(), get_mode(), set_editable(), - is_editable(), set_row_spacing(), get_row_spacing(), - set_col_spacing(), get_col_spacing(), set_text_space(), - get_text_space(), set_icon_border(), get_icon_border(), - set_icon_width() and get_icon_width(). --- 67,73 ---- axis_set_labels_numbers(). * Removed GtkPlot.axis_set_tick_labels(). Custom labels are now set ! with the signal "tick_label". This signal is not supported by the ! Python bindings. * Updated GtkPlot3D.corner_set_attributes(), corner_get_attributes(), frame_set_attributes(), frame_get_attributes() and axis_set_ticks_width(). The width is now a floating point value. Index: setup.py =================================================================== RCS file: /cvsroot/python-gtkextra/python-gtkextra/setup.py,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** setup.py 2001/09/15 18:50:55 1.1.1.1 --- setup.py 2002/01/03 22:44:04 1.2 *************** *** 37,41 **** setup (name = "python-gtkextra", ! version = "0.21", description = "Python bindings for the GtkExtra widget set", long_description = "This package contains modules that allow "\ --- 37,41 ---- setup (name = "python-gtkextra", ! version = "0.22", description = "Python bindings for the GtkExtra widget set", long_description = "This package contains modules that allow "\ |