pspp
10 years agogtkxpaned: Use GTK+3 painting functions instead of deprecated ones.
Ben Pfaff [Tue, 30 Jul 2013 05:07:16 +0000 (22:07 -0700)]
gtkxpaned: Use GTK+3 painting functions instead of deprecated ones.

10 years agogtkxpaned: Remove style code from gtk_xpaned_realize().
Ben Pfaff [Tue, 30 Jul 2013 05:03:17 +0000 (22:03 -0700)]
gtkxpaned: Remove style code from gtk_xpaned_realize().

gtk_style_attach() is deprecated in GTK+3 and the migration guide says
that it is no longer needed.  I guess it is possible that the
gtk_widget_set_style() call is somehow still needed, but I don't
understand the intent of that call and removing it seems to have no
visible effect.

10 years agogtkxpaned: Use g_object_unref() instead of gdk_cursor_unref().
Ben Pfaff [Tue, 30 Jul 2013 05:01:52 +0000 (22:01 -0700)]
gtkxpaned: Use g_object_unref() instead of gdk_cursor_unref().

gdk_cursor_unref() is deprecated in GTK+3.

10 years agogtkxpaned: Implement GTK+3 sizing.
Ben Pfaff [Tue, 30 Jul 2013 04:58:07 +0000 (21:58 -0700)]
gtkxpaned: Implement GTK+3 sizing.

10 years agogtkxpaned: Remove write-only variables.
Ben Pfaff [Tue, 30 Jul 2013 04:28:19 +0000 (21:28 -0700)]
gtkxpaned: Remove write-only variables.

10 years agoMerge remote-tracking branch 'origin/master' into gtk3
John Darrington [Mon, 24 Jun 2013 19:34:33 +0000 (21:34 +0200)]
Merge remote-tracking branch 'origin/master' into gtk3

Conflicts:
INSTALL

10 years agovariable.c: New function var_set_width_and_formats
John Darrington [Sun, 23 Jun 2013 10:07:56 +0000 (12:07 +0200)]
variable.c: New function var_set_width_and_formats

Added a new function to set the width and formats of a variable as
an atomic operation. This is necessary to allow values to re-interpreted
without going through an intermediate format and thereby perhaps loosing
information.

Closes bug #39252

10 years agovariable.c: (var_set_width) traits other than width may also be set
John Darrington [Sun, 23 Jun 2013 08:49:12 +0000 (10:49 +0200)]
variable.c: (var_set_width)  traits other than width may also be set

10 years agoSplit VAR_TRAIT_FORMAT into PRINT and WRITE variants
John Darrington [Sun, 23 Jun 2013 08:33:43 +0000 (10:33 +0200)]
Split VAR_TRAIT_FORMAT into PRINT and WRITE variants

10 years agoFix and simplify the code for converting variables between types
John Darrington [Sat, 22 Jun 2013 10:09:56 +0000 (12:09 +0200)]
Fix and simplify the code for converting variables between types

Before this commit, changing a variable from string to numeric or
vici-versa would cause all values of that variable to become SYSMIS.
This commit fixes this problem at least partially.

Partial fix for bug #39252

10 years agoFix constness of datasheet_resize_column arguments
John Darrington [Sat, 22 Jun 2013 09:42:02 +0000 (11:42 +0200)]
Fix constness of datasheet_resize_column arguments

The aux variable should not be changed, so make it const

10 years agodictionary.c: Remove the var_resized and var_display_width_changed callbacks
John Darrington [Sat, 22 Jun 2013 07:37:11 +0000 (09:37 +0200)]
dictionary.c: Remove the var_resized and var_display_width_changed callbacks

Remove the resized and display width changed callbacks, and
transfer their actions to the variable_changed callback.

10 years agoChanged the signature of the VARIABLE_CHANGED signal to take the WHAT and OLDVAR...
John Darrington [Sat, 22 Jun 2013 06:25:36 +0000 (08:25 +0200)]
Changed the signature of the VARIABLE_CHANGED signal to take the WHAT and OLDVAR parameters

Re-implement signal handlers of the variable-changed signal to PsppireDict to take
the new WHAT and OLDVAR parameters.

10 years agoAdded the WHAT and OLDVAR parameters to the var_changed dictionary callback
John Darrington [Sat, 22 Jun 2013 06:14:12 +0000 (08:14 +0200)]
Added the WHAT and OLDVAR parameters to the var_changed dictionary callback

Propagate the newly implemented WHAT and OLDVAR parameters in the PsppireDict
class.

10 years agodictionary.c: Added a oldvar parameter to the var_changed callback
John Darrington [Sat, 22 Jun 2013 05:33:00 +0000 (07:33 +0200)]
dictionary.c: Added a oldvar parameter to the var_changed callback

The var_changed callback needs a copy of the old (unchanged) variable,
so that implementations can compare and act accordingly.

10 years agodictionary.c: Added a WHAT argument to dict_var_changed callback
John Darrington [Sat, 22 Jun 2013 05:23:16 +0000 (07:23 +0200)]
dictionary.c: Added a WHAT argument to dict_var_changed callback

Defined some bitwise constants to indicate which aspect of a variable has
changed.  Added an argument to the dict_var_changed callback taking an
argument which contains a combination of these types.

This is used in later commits to avoid the callback implementation having
to guess what exactly changed.

10 years agovariable.c: Add _quiet versions of the var_set_ methods and use in var_clone
John Darrington [Sat, 22 Jun 2013 04:52:10 +0000 (06:52 +0200)]
variable.c: Add _quiet versions of the var_set_ methods and use in var_clone

var_clone doesn't need to provoke callbacks, since the new variable does not
(yet) have a dictionary  hence the callbacks can do nothing.  Also the callbacks
cause problems for later commits, since they themselves could call var_clone.

This change therefore defines _quiet versions of all the var_set methods, which
do not generate any callbacks, and uses those versions in the implementation
of var_clone.

10 years agoMinor additions and updates to the meta documentation 20130618010502/pspp 20130619010509/pspp 20130620010506/pspp 20130621010504/pspp 20130622010505/pspp 20130623010503/pspp 20130624010502/pspp
John Darrington [Wed, 5 Jun 2013 10:33:11 +0000 (12:33 +0200)]
Minor additions and updates to the meta documentation

10 years agoRemove generation of GSignal marshallers which are no longer required 20130617010502/pspp
John Darrington [Sun, 16 Jun 2013 16:34:24 +0000 (18:34 +0200)]
Remove generation of GSignal marshallers which are  no longer required

10 years agopsppire_var_type_dialog: Remove global functions which are not used
John Darrington [Sat, 15 Jun 2013 04:44:22 +0000 (06:44 +0200)]
psppire_var_type_dialog: Remove global functions which are not used

10 years agoINPUT PROGRAM: Use a separate dataset for the input program. 20130613010503/pspp 20130614010504/pspp 20130615010505/pspp 20130616010503/pspp
Ben Pfaff [Thu, 13 Jun 2013 07:03:51 +0000 (00:03 -0700)]
INPUT PROGRAM: Use a separate dataset for the input program.

Without this change, INPUT PROGRAM uses the same dataset as the following
syntax.  This usually is fine, but there's at least one case where it
doesn't work: if the INPUT PROGRAM defines a vector, then a following
proc_execute() without any intervening transformations causes
proc_execute() to follow a "fast path" where it skips running the procedure
but instead just does a few things, like clearing the set of vectors.
Unfortunately, this means that later when the input program is really run,
  it doesn't have the vectors and accesses freed memory.

This commit switches to a different tactic.  INPUT PROGRAM creates a
special session and dataset that are used only for the input program.  This
keeps the dataset and the transformations used for the input program
separate from those used after the input program.

Bug #39097.
Reported by John Darrington.

10 years agocommand.def: Disallow DATASET commands inside INPUT PROGRAM, FILE TYPE.
Ben Pfaff [Wed, 5 Jun 2013 06:25:36 +0000 (23:25 -0700)]
command.def: Disallow DATASET commands inside INPUT PROGRAM, FILE TYPE.

It doesn't make sense to try to switch datasets within INPUT PROGRAM, and
so we shouldn't allow it.

10 years agoCorrect typo in documentation of SAVE TRANSLATE 20130607010503/pspp 20130608010506/pspp 20130609010502/pspp 20130610010502/pspp 20130611010504/pspp 20130612010503/pspp
John Darrington [Fri, 7 Jun 2013 04:58:31 +0000 (06:58 +0200)]
Correct typo in documentation of SAVE TRANSLATE

10 years agoFix broken expose callback in pspp-sheet-view
John Darrington [Fri, 31 May 2013 17:42:34 +0000 (19:42 +0200)]
Fix broken expose callback in pspp-sheet-view

10 years agoSimplify the draw callback
John Darrington [Fri, 31 May 2013 17:22:23 +0000 (19:22 +0200)]
Simplify the draw callback

10 years agoSyntax editor: Remove obsolete property "has-resize-grip"
John Darrington [Wed, 29 May 2013 13:54:03 +0000 (15:54 +0200)]
Syntax editor: Remove obsolete property "has-resize-grip"

10 years agoPsppOutputWindow: Change "expose" callback to "draw" callback and update accordingly
John Darrington [Tue, 28 May 2013 17:59:51 +0000 (19:59 +0200)]
PsppOutputWindow: Change "expose" callback to "draw" callback and update accordingly

10 years agoCorrect problems with psppire-cell-renderer-button
John Darrington [Tue, 28 May 2013 16:07:06 +0000 (18:07 +0200)]
Correct problems with psppire-cell-renderer-button

10 years agoPsppSheetView: Convert expose callback to draw callback.
John Darrington [Tue, 28 May 2013 08:56:14 +0000 (10:56 +0200)]
PsppSheetView: Convert expose callback to draw callback.

This is somewhat kludgy, since we need to know which window is being
drawn.  I can't see a very elegant way of figuring this out.

10 years agoRemove set_scroll_adjustment_signal
John Darrington [Tue, 28 May 2013 08:43:36 +0000 (10:43 +0200)]
Remove set_scroll_adjustment_signal

10 years agopspp_sheet_view_class_init: Change size_request method to get_preferred_height/width
John Darrington [Tue, 28 May 2013 08:42:00 +0000 (10:42 +0200)]
pspp_sheet_view_class_init: Change size_request method to get_preferred_height/width

10 years agopspp_sheet_view_bin_expose : remove GdkEventExpose parameter and replace with cairo_t
John Darrington [Tue, 28 May 2013 08:39:50 +0000 (10:39 +0200)]
pspp_sheet_view_bin_expose : remove GdkEventExpose parameter and replace with cairo_t

10 years agoUpdate remaining gtk_paint_focus calls to Gtk3 signature
John Darrington [Tue, 28 May 2013 07:58:51 +0000 (09:58 +0200)]
Update remaining gtk_paint_focus calls to Gtk3 signature

10 years agoAvoid call to gdk_display_get_core_pointer which is gone in Gtk3
John Darrington [Tue, 28 May 2013 07:21:55 +0000 (09:21 +0200)]
Avoid call to gdk_display_get_core_pointer which is gone in Gtk3

10 years agoUpdate several calls to gtk_paint_flat_box to new signature
John Darrington [Tue, 28 May 2013 06:33:58 +0000 (08:33 +0200)]
Update several calls to gtk_paint_flat_box to new signature

10 years agoRemove unused expose_area parameters from pspp_sheet_view_column functions
John Darrington [Tue, 28 May 2013 06:26:31 +0000 (08:26 +0200)]
Remove unused expose_area parameters from pspp_sheet_view_column functions

10 years agoPass the corrent arguments to pspp_sheet_view_column_cell_render
John Darrington [Tue, 28 May 2013 06:04:14 +0000 (08:04 +0200)]
Pass the corrent arguments to pspp_sheet_view_column_cell_render
 and to pspp_sheet_view_column_draw_focus

10 years agoDisable GDK3 deprecation warnings.
John Darrington [Tue, 28 May 2013 15:44:22 +0000 (17:44 +0200)]
Disable GDK3 deprecation warnings.

At the moment I am not worried about deprecated constructs, so long as they are valid in Gtk+3.

10 years agoChange GTK_OBJECT -> G_OBJECT
John Darrington [Mon, 27 May 2013 19:30:21 +0000 (21:30 +0200)]
Change GTK_OBJECT -> G_OBJECT

10 years agoPsppSheetView (draw_empty_focus): Port to Gtk3
John Darrington [Mon, 27 May 2013 17:16:41 +0000 (19:16 +0200)]
PsppSheetView (draw_empty_focus): Port to Gtk3

10 years agoPsppSheetView: Remove reference to colormap which is removed in Gtk3
John Darrington [Mon, 27 May 2013 15:12:41 +0000 (17:12 +0200)]
PsppSheetView: Remove reference to colormap which is removed in Gtk3

10 years agoPsppSheetViewColumn (*_cell_draw_focus): Replace GdkWindow with cairo_t
John Darrington [Mon, 27 May 2013 14:45:02 +0000 (16:45 +0200)]
PsppSheetViewColumn (*_cell_draw_focus): Replace GdkWindow with cairo_t

10 years agoPsppSheetViewColumn (*_cell_render): Replace GdkWindow with cairo_t
John Darrington [Mon, 27 May 2013 14:39:10 +0000 (16:39 +0200)]
PsppSheetViewColumn (*_cell_render): Replace GdkWindow with cairo_t

10 years agoPsppSheetViewColumn: Remove colormap reference which is obsolete
John Darrington [Mon, 27 May 2013 13:56:52 +0000 (15:56 +0200)]
PsppSheetViewColumn: Remove colormap reference which is obsolete

10 years agoGtkXPaned: Convert size_request to get_preferred_height/width
John Darrington [Mon, 27 May 2013 13:35:20 +0000 (15:35 +0200)]
GtkXPaned: Convert size_request to get_preferred_height/width

10 years agoGtkXPaned: Convert expose-event signal to draw signal
John Darrington [Mon, 27 May 2013 13:28:58 +0000 (15:28 +0200)]
GtkXPaned: Convert expose-event signal to draw signal

10 years agoPsppWidgetFacade and PsppCellRender: Update to Gtk3 paint functions
John Darrington [Mon, 27 May 2013 12:19:43 +0000 (14:19 +0200)]
PsppWidgetFacade and PsppCellRender: Update to Gtk3 paint functions

10 years agoPsppire*ButtonBox: replace size_request with get_preferred_height/width
John Darrington [Mon, 27 May 2013 12:00:22 +0000 (14:00 +0200)]
Psppire*ButtonBox: replace size_request with get_preferred_height/width

10 years agoPsppireDataEditor: Cope with another change to the GtkNotebook switch_page signature
John Darrington [Mon, 27 May 2013 10:11:34 +0000 (12:11 +0200)]
PsppireDataEditor: Cope with another change to the GtkNotebook switch_page signature

10 years agoUpdate required GTK version from 2.x to 3.x
John Darrington [Mon, 27 May 2013 08:40:14 +0000 (10:40 +0200)]
Update required GTK version from 2.x to 3.x

10 years agoPsppireOutputWindow: Draw the entire page instead of just the exposed area.
John Darrington [Tue, 28 May 2013 17:35:01 +0000 (19:35 +0200)]
PsppireOutputWindow: Draw the entire page instead of just the exposed area.

Gtk3 doesn't require (or provide the necessary information for) the drawn
widget to be cliped to the exposed area.  So this change removes the clip
from the expose callback of the PsppireOutputWindow.  It also removes some
functions which are now not necessary.

10 years agoPsppSheetView: Update the whole widget on expose not just the exposed bits.
John Darrington [Tue, 28 May 2013 05:42:22 +0000 (07:42 +0200)]
PsppSheetView: Update the whole widget on expose not just the exposed bits.

This makes things easier to port to Gtk3 (hopefully).

10 years agoRemove expose optimisation which is moot in Gtk3
John Darrington [Mon, 27 May 2013 20:04:40 +0000 (22:04 +0200)]
Remove expose optimisation which is moot in Gtk3

10 years agoUse cairo_t instead of GdkEvent->Window
John Darrington [Mon, 27 May 2013 18:53:37 +0000 (20:53 +0200)]
Use cairo_t instead of GdkEvent->Window

10 years agoTemporarily disable unused rubber banding feature
John Darrington [Mon, 27 May 2013 18:04:43 +0000 (20:04 +0200)]
Temporarily disable unused rubber banding feature

So far as I can see, we don't use this feature and it is a pain to
port.

10 years agoTemporarily remove optimisation in expose callback.
John Darrington [Mon, 27 May 2013 18:02:50 +0000 (20:02 +0200)]
Temporarily remove optimisation in expose callback.

I think this will be easier to manager after everything has been ported

10 years agoPsppSheetView: Remove calls to gdk_window_set_back_pixmap
John Darrington [Mon, 27 May 2013 17:19:46 +0000 (19:19 +0200)]
PsppSheetView: Remove calls to gdk_window_set_back_pixmap

This function is gone in Gtk3 and so far as I can tell it is
superfluous here.

10 years agoPsppSheetView: Avoid using GdkRegion
John Darrington [Mon, 27 May 2013 16:58:55 +0000 (18:58 +0200)]
PsppSheetView: Avoid using GdkRegion

10 years agoIncluded gdkkeysyms-compat.h where necessary
John Darrington [Mon, 27 May 2013 08:55:49 +0000 (10:55 +0200)]
Included gdkkeysyms-compat.h where necessary

10 years agoPsppSheetView: Temporarily avoid drag begin
John Darrington [Mon, 27 May 2013 14:59:57 +0000 (16:59 +0200)]
PsppSheetView: Temporarily avoid drag begin

10 years agoPsppSheetViewColumn: Avoid name conflict with Gtk3 standard headers
John Darrington [Mon, 27 May 2013 14:17:02 +0000 (16:17 +0200)]
PsppSheetViewColumn: Avoid name conflict with Gtk3 standard headers

10 years agoGtkXPaned: Remove xor_gc member.
John Darrington [Mon, 27 May 2013 10:23:18 +0000 (12:23 +0200)]
GtkXPaned: Remove xor_gc member.

This member was allocated and deallocated, but never used!

10 years agoPsppSheetView: Disable function pspp_sheet_view_create_row_drag_icon
John Darrington [Mon, 27 May 2013 08:47:53 +0000 (10:47 +0200)]
PsppSheetView: Disable function pspp_sheet_view_create_row_drag_icon

10 years agoMissing Value Dialog: Remove GTK_DIALOG_NO_SEPARATOR flag which does not exist in...
John Darrington [Mon, 27 May 2013 10:15:48 +0000 (12:15 +0200)]
Missing Value Dialog: Remove GTK_DIALOG_NO_SEPARATOR flag which does not exist in Gtk3

10 years agoReplace some instances of GdkDrawable with GdkWindow
John Darrington [Mon, 27 May 2013 10:32:46 +0000 (12:32 +0200)]
Replace some instances of GdkDrawable with GdkWindow

GdkDrawable is gone in Gtk3

10 years agoPsppireButtonBox: Remove dependence on flags deprecated in Gtk3
John Darrington [Mon, 27 May 2013 10:27:53 +0000 (12:27 +0200)]
PsppireButtonBox: Remove dependence on flags deprecated in Gtk3

10 years agoGtkXPaned: Replace GSEALed member access with the corresponding function calls
John Darrington [Mon, 27 May 2013 09:23:20 +0000 (11:23 +0200)]
GtkXPaned: Replace GSEALed member access with the corresponding function calls

10 years agoGtkXPaned: Avoid direct inclusion of gtk library header
John Darrington [Mon, 27 May 2013 08:52:37 +0000 (10:52 +0200)]
GtkXPaned: Avoid direct inclusion of gtk library header

10 years agogtk.h wrapper: Remove workarounds which are no longer required.
John Darrington [Mon, 27 May 2013 08:18:28 +0000 (10:18 +0200)]
gtk.h wrapper: Remove workarounds which are no longer required.

10 years agoDisable the remaining Gtk+2 features.
John Darrington [Mon, 27 May 2013 08:12:58 +0000 (10:12 +0200)]
Disable the remaining Gtk+2 features.

These do not seem easy to work around.  But none of them are
essential.  Postponing them till after the transition.

10 years agoPsppSheetViewColumn reparented to GObject
John Darrington [Mon, 27 May 2013 08:39:37 +0000 (10:39 +0200)]
PsppSheetViewColumn reparented to GObject

Previously the parent was GtkObject which no longer exists in Gtk3

10 years agoMore sealage
John Darrington [Sun, 26 May 2013 17:26:35 +0000 (19:26 +0200)]
More sealage

10 years agoSealage old_width
John Darrington [Sun, 26 May 2013 17:19:46 +0000 (19:19 +0200)]
Sealage old_width

10 years agoRename allocation -> col_allocation
John Darrington [Sun, 26 May 2013 17:10:12 +0000 (19:10 +0200)]
Rename allocation -> col_allocation

10 years agoMore sealage
John Darrington [Sun, 26 May 2013 16:39:52 +0000 (18:39 +0200)]
More sealage

10 years agoGet window
John Darrington [Sun, 26 May 2013 15:52:48 +0000 (17:52 +0200)]
Get window

10 years agoUse gtk_adjustment methods instead of direct access
John Darrington [Sun, 26 May 2013 15:09:15 +0000 (17:09 +0200)]
Use gtk_adjustment methods instead of direct access

10 years agoYet more sealage
John Darrington [Sun, 26 May 2013 14:03:30 +0000 (16:03 +0200)]
Yet more sealage

10 years agoTemporarily disable the splash screen
John Darrington [Sun, 26 May 2013 13:44:23 +0000 (15:44 +0200)]
Temporarily disable the splash screen

10 years agoYet more Gseal stuff
John Darrington [Sun, 26 May 2013 13:35:48 +0000 (15:35 +0200)]
Yet more Gseal stuff

10 years agoGtkSelectionData: only access using functions
John Darrington [Sun, 26 May 2013 13:28:51 +0000 (15:28 +0200)]
GtkSelectionData: only access using functions

10 years agoAvoid yet more sealed access
John Darrington [Sun, 26 May 2013 13:11:39 +0000 (15:11 +0200)]
Avoid yet more sealed access

10 years agoPsppireDataWindow : Avoid direct access to sealed widget members
John Darrington [Sun, 26 May 2013 12:17:39 +0000 (14:17 +0200)]
PsppireDataWindow : Avoid direct access to sealed widget members

10 years agoIndependent Samples dialog: Avoid direct access to sealed widget members
John Darrington [Sun, 26 May 2013 11:37:56 +0000 (13:37 +0200)]
Independent Samples dialog: Avoid direct access to sealed widget members

10 years agoMissing value dialog: Avoid access to sealed Gtk members
John Darrington [Sun, 26 May 2013 11:44:44 +0000 (13:44 +0200)]
Missing value dialog: Avoid access to sealed Gtk members

10 years agoAvoid direct access to sealed Gtk Widget members.
John Darrington [Sun, 26 May 2013 11:21:38 +0000 (13:21 +0200)]
Avoid direct access to sealed Gtk Widget members.

10 years agoText import dialog : Avoid deprecated Gtk functions
John Darrington [Sun, 26 May 2013 11:21:02 +0000 (13:21 +0200)]
Text import dialog : Avoid deprecated Gtk functions

10 years agoReplace GSEAL in widget headers by a different symbol
John Darrington [Sun, 26 May 2013 10:53:01 +0000 (12:53 +0200)]
Replace GSEAL in widget headers by a different symbol

We don't want our own data members to be sealed by Gtk

10 years agoDisable code which is not used and is Gtk3 unfriendly
John Darrington [Sun, 26 May 2013 10:23:48 +0000 (12:23 +0200)]
Disable code which is not used and is Gtk3 unfriendly

10 years agoRemove grid_line_gc
John Darrington [Sun, 26 May 2013 10:14:40 +0000 (12:14 +0200)]
Remove grid_line_gc

10 years agoAvoid use of gdk_draw_line
John Darrington [Sat, 25 May 2013 16:23:47 +0000 (18:23 +0200)]
Avoid use of gdk_draw_line

10 years agoAvoid use of deprecated GTK_SET_FLAGS
John Darrington [Fri, 24 May 2013 16:51:04 +0000 (18:51 +0200)]
Avoid use of deprecated GTK_SET_FLAGS

Based upon a patch from the Gtk+ project:

From: Emmanuele Bassi <ebassi@linux.intel.com>
Date: Mon, 12 Apr 2010 14:54:41 +0100
Subject: [PATCH] tree-view: Use gtk_widget_send_focus_change()

Remove the second (and last) internal user of the GTK_HAS_FOCUS flag.

https://bugzilla.gnome.org/show_bug.cgi?id=593671

10 years agoAvoid use of deprecated gdk_drawable_get_size
John Darrington [Mon, 20 May 2013 08:04:52 +0000 (10:04 +0200)]
Avoid use of deprecated gdk_drawable_get_size

Use gdk_window_get_{width,height} instead.  Some calls were completely unnecessary, so those
have simply been deleted.

10 years agoAvoid use of deprecated gdk_drawable_get_screen
John Darrington [Mon, 20 May 2013 07:47:47 +0000 (09:47 +0200)]
Avoid use of deprecated gdk_drawable_get_screen

10 years agoAvoid use of deprecated gdk_drawable_get_display
John Darrington [Mon, 20 May 2013 07:31:34 +0000 (09:31 +0200)]
Avoid use of deprecated gdk_drawable_get_display

10 years agoAvoid gdk_drawable_get_size which is now deprecated
John Darrington [Mon, 20 May 2013 05:17:23 +0000 (07:17 +0200)]
Avoid gdk_drawable_get_size which is now deprecated

10 years agoAvoid problems with G_CONST_RETURN
John Darrington [Mon, 20 May 2013 05:13:10 +0000 (07:13 +0200)]
Avoid problems with G_CONST_RETURN

This is no longer used by us.  But may be used by other 3rd party libraries.

10 years agoAvoid use of deprecated GtkComboBoxEntry
John Darrington [Mon, 20 May 2013 04:42:43 +0000 (06:42 +0200)]
Avoid use of deprecated GtkComboBoxEntry

10 years agoRecent GTK version to 2.24
John Darrington [Sun, 19 May 2013 10:11:18 +0000 (12:11 +0200)]
Recent GTK version to 2.24

10 years agoText Import Dialog: Fix initialisation of pages which had got broken 20130529010502/pspp 20130530010503/pspp 20130531010501/pspp 20130601010502/pspp 20130602010502/pspp 20130603010502/pspp 20130604010502/pspp 20130605010506/pspp 20130606010503/pspp
John Darrington [Tue, 28 May 2013 13:52:12 +0000 (15:52 +0200)]
Text Import Dialog: Fix initialisation of pages which had got broken