diff options
author | Arturo Espinosa <unammx@src.gnome.org> | 1998-09-14 12:50:58 +0800 |
---|---|---|
committer | Arturo Espinosa <unammx@src.gnome.org> | 1998-09-14 12:50:58 +0800 |
commit | 95099ae101afb0f56803478a93ac5a0b2ca09915 (patch) | |
tree | bc92e2233caace793a38fbbb466c4b9d2ccc9831 /widgets | |
parent | 1fad87fb62d829d24edaf472e6a32b4980fb72bf (diff) | |
download | gsoc2013-evolution-95099ae101afb0f56803478a93ac5a0b2ca09915.tar gsoc2013-evolution-95099ae101afb0f56803478a93ac5a0b2ca09915.tar.gz gsoc2013-evolution-95099ae101afb0f56803478a93ac5a0b2ca09915.tar.bz2 gsoc2013-evolution-95099ae101afb0f56803478a93ac5a0b2ca09915.tar.lz gsoc2013-evolution-95099ae101afb0f56803478a93ac5a0b2ca09915.tar.xz gsoc2013-evolution-95099ae101afb0f56803478a93ac5a0b2ca09915.tar.zst gsoc2013-evolution-95099ae101afb0f56803478a93ac5a0b2ca09915.zip |
Color attributes in formats work (ie, you can get colored cells now);
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.
svn path=/trunk/; revision=376
Diffstat (limited to 'widgets')
-rw-r--r-- | widgets/misc/e-cursors.c | 8 | ||||
-rw-r--r-- | widgets/misc/e-cursors.h | 8 |
2 files changed, 16 insertions, 0 deletions
diff --git a/widgets/misc/e-cursors.c b/widgets/misc/e-cursors.c new file mode 100644 index 0000000000..973602e175 --- /dev/null +++ b/widgets/misc/e-cursors.c @@ -0,0 +1,8 @@ +#ifndef CURSORS_H +#define CURSORS_H + +extern GdkCursor *gnumeric_cursors []; + +void cursors_init (void); +void cursors_shutdown (void); +#endif diff --git a/widgets/misc/e-cursors.h b/widgets/misc/e-cursors.h new file mode 100644 index 0000000000..973602e175 --- /dev/null +++ b/widgets/misc/e-cursors.h @@ -0,0 +1,8 @@ +#ifndef CURSORS_H +#define CURSORS_H + +extern GdkCursor *gnumeric_cursors []; + +void cursors_init (void); +void cursors_shutdown (void); +#endif |