- 22 Sep, 1998 4 commits
-
-
Arturo Espinosa authored
-
Arturo Espinosa authored
-
Arturo Espinosa authored
-
Miguel de Icaza authored
1998-09-21 Miguel de Icaza <miguel@nuclecu.unam.mx> * src/fn-math.c: Changed the way we tag the function definitions before its too late. * src/item-cursor.c (item_cursor_point): Made the thresholds for the cursor a little better. * src/dialog-cell-format.c: Small changes to the color configuration code. * src/expr.c (do_expr_decode_tree): When decoding a tree, include
-
- 21 Sep, 1998 2 commits
-
-
Adrian Likins authored
1998-09-21 Adrian Likins <adrian@gimp.org> *src/fn-math.c: first stab at fleshing out the help blurbs here. -adrian
-
Miguel de Icaza authored
1998-09-21 Miguel de Icaza <miguel@nuclecu.unam.mx> * src/expr.c (do_expr_decode_tree): When decoding a tree, include the argument separator. Also, loop properly trough the arguments being decoded. (function_call_with_values, function_def_call_with_values): New functions: these ones are for the plugins so that a plugin can invoke other functions in Gnumeric. * src/fn-date.c (gnumeric_now): The serial number returned by NOW() should be relative to 1900/1/1, not year zero. 1998-09-20 Miguel de Icaza <miguel@nuclecu.unam.mx> * src/expr.c (eval_expr): Fix the way we computed expressions. * src/eval.c (cell_eval): Maintain a CELL_ERROR flag to know if the value is NULL due to an error or to the cell not being evaluated. * src/expr.c (funcion_call_with_values): Add a routine to allow plugins to call other functions defined in Gnumeric. * src/style.c: Handle the pattern property of the styles. * src/style.h: Pattern style is now just a 4 bit quantity, instead of a RefCounted structure. * src/plugin.c: Include gnumeric-util.h
-
- 20 Sep, 1998 2 commits
-
-
Miguel de Icaza authored
1998-09-19 Miguel de Icaza <miguel@nuclecu.unam.mx> * src/item-cursor.c (item_cursor_do_drop): Use button-1 to select an option on the popup menu.
-
Arturo Espinosa authored
-
- 19 Sep, 1998 7 commits
-
-
Miguel de Icaza authored
1998-09-19 Miguel de Icaza <miguel@nuclecu.unam.mx> * src/fn-date.c: New file, implements various date and time manipulation routines. * src/main.c: Accept --dump-func-defs flag to dump the help available for our built in functions. * src/symbol.c: Export the symbol hash table.
-
Miguel de Icaza authored
1998-09-19 Miguel de Icaza <miguel@nuclecu.unam.mx> * src/format.c (render_number): Use the locale provided rendering number. This will require translators to also translate correctly the default formats for their locale.
-
Arturo Espinosa authored
-
Miguel de Icaza authored
1998-09-19 Miguel de Icaza <miguel@nuclecu.unam.mx> * src/format.c (split_time): New code that works correctly in the range expected by Microsoft Excel [1900,1900+65535]. We of course work on a wider range than Excel can. We can work on pre-1900 dates and on 1900+2^31 dates, but it might make little sense.
-
Arturo Espinosa authored
-
Arturo Espinosa authored
-
Miguel de Icaza authored
1998-09-18 Miguel de Icaza <miguel@nuclecu.unam.mx> * src/item-cursor.c (item_cursor_autofill_event): Accept pending input when the user autofills. * README, Doc/Design: Updated * configure.in: autoconf tests for python. * src/sheet-autofill.c (sheet_autofill_dir): Only fill the region we were requested.
-
- 18 Sep, 1998 5 commits
-
-
Tom Dyas authored
into gnumeric string values.
-
Tom Dyas authored
-
Tom Dyas authored
1998-09-17 Tom Dyas <tdyas@vger.rutgers.edu> * plugins/sample/plugin-sample.c: Update to the new plugin API. * src/plugin.c (plugin_load,plugin_unload): Replaced g_print's with gnumeric_notice. Call new API function "can_unload" to see if a plugin is still in use. * src/plugin.h: New API function "can_unload". Removed refcount.
-
Tom Dyas authored
Python, do something like: import gnumeric # Simple function to add two numbers. def foobar(a,b): return a + b gnumeric.register_function("adder", "ff", foobar) Use Makefile.temp to compile the plugin for now until detection of Python path is put into configure.in. Python code will be loaded from ~/.gnumeric/main.py so stick the above Python code snippet in that file to see it run.
-
Miguel de Icaza authored
1998-09-17 Miguel de Icaza <miguel@nuclecu.unam.mx> * src/sheet-view.c (sheet_view_row_size_changed, sheet_view_col_size_changed): If there is a selection of columns or rows, change the sizes of all of the columns. * src/sheet.c (sheet_row_get_distance, sheet_col_get_distance): optimized to be O(n) instead of O(n^2) using (col_row_distance): new routine to compute distances. * src/sheet-view.c (sheet_view_redraw_cell_region): Add the scrolling offset to the x and y positions to draw properly * src/xml-io.c (readXmlSheet): Call sheet_set_zoom_factor to initialize the ->pixels field.
-
- 17 Sep, 1998 5 commits
-
-
Miguel de Icaza authored
1998-09-17 Miguel de Icaza <miguel@nuclecu.unam.mx> * src/cellspan.c (row_cell_get_displayed_at): row->data might be NULL. (cell_unregister_span): row->data might be NULL. * src/main.c (main): Add support to load more than one file from the command line. Drop requirement for --file option.
-
Miguel de Icaza authored
1998-09-17 Miguel de Icaza <miguel@nuclecu.unam.mx> * src/main.c (main): Add support to load more than one file from the command line. Drop requirement for --file option.
-
Arturo Espinosa authored
-
Miguel de Icaza authored
1998-09-17 Miguel de Icaza <miguel@nuclecu.unam.mx> * src/sheet-object.c (sheet_object_destroy): Keep track of the sheet->objects structure. (sheet_object_create_line, sheet_object_create_filled): Keep track of the sheet->objects structure. (sheet_object_realize, sheet_object_unrealize): Export these functions. (sheet_object_destroy): Keep track of the sheet->objects structure * src/sheet-autofill.c (autofill_cell): Implemented autofill on strings that contains numbers. This allows autofill to handle stuff like "Product1" -> "Product2", ...
-
Daniel Veillard authored
-
- 16 Sep, 1998 7 commits
-
-
Miguel de Icaza authored
1998-09-16 Miguel de Icaza <miguel@nuclecu.unam.mx> * src/cursors.c (cursors_shutdown): Fix bug. Destroy the ith cursor, nor cursor 0 over and over. * src/sheet-autofill.c (type_is_compatible, autofill_create_fill_items): Better type compatible routine. This is required for the list fill type. (autofill_init): startup the autofill code. It registers a number of default lists (weekdays and months for now). 1998-09-16 Tom Dyas <tdyas@vger.rutgers.edu>
-
Erik Troan authored
-
Erik Troan authored
2) recalc worksheets on load
-
Tom Dyas authored
1998-09-15 Tom Dyas <tdyas@vger.rutgers.edu> * src/plugin-manager.c: Changed where the Remove button was made sensitive so that it actually sync's with the list selection.
-
Tristan Tarrant authored
-
Miguel de Icaza authored
1998-09-16 Miguel de Icaza <miguel@nuclecu.unam.mx> * src/workbook.c: Use the new accelerator setup from gnome-app-helper.
-
Arturo Espinosa authored
Autofill lists work: Integers, Floats, Formulas and constant strings works. Todo: Lists of known strings and strings with numbers embedded Miguel.
-
- 15 Sep, 1998 1 commit
-
-
Arturo Espinosa authored
Got cursors working. Use the cursors properly on the spreadhseet (gives good feedback on what is going to happen). More work on autofill. miguel.
-
- 14 Sep, 1998 5 commits
-
-
Tom Dyas authored
-
Tristan Tarrant authored
-
Arturo Espinosa authored
-
Arturo Espinosa authored
Color attributes in formats work (ie, you can get colored cells now); My first -futile attempts- at getting various different cursors working on the spreadsheet (we need a cross and various other cursors for a better emulation of Excel). The beginning of autofill, but I really need to see Excel live before implementing this. Miguel.
-
Tom Dyas authored
-
- 12 Sep, 1998 1 commit
-
-
Arturo Espinosa authored
-
- 11 Sep, 1998 1 commit
-
-
Arturo Espinosa authored
-