Commit Graph

256 Commits

Author SHA1 Message Date
Michael Jennings 9cbe26bb39 Mon Dec 6 20:18:45 PST 1999
(KainX)

E-Slides now has a full-featured working config dialog.  Damn good work, Tom.


SVN revision: 1523
1999-12-06 23:29:54 +00:00
Michael Jennings 11e876b0a0 Duh =P
SVN revision: 1516
1999-12-06 17:49:31 +00:00
Michael Jennings be1583b088 Mon Dec 6 14:31:34 PST 1999
(KainX)

Applied Tom's patch to E-Slides to support maintaining the aspect ratio when
displaying images in the epplet window.  Also cleaned up the E-MoonClock code
and set the buffer size to 1024 so that everyone will hush. =)


SVN revision: 1515
1999-12-06 17:45:23 +00:00
Michael Jennings d08d658e7f Mon Dec 6 12:53:49 PST 1999
(KainX)

Patches to E-MoonClock from Valdis Kletnieks <valdis.kletnieks@vt.edu>.


SVN revision: 1503
1999-12-06 16:08:41 +00:00
Tom Gilbert a62adeccd3 Just changed the wording in the dialog a smidge.
SVN revision: 1501
1999-12-05 16:42:33 +00:00
Tom Gilbert 6cf1d4f692 Sun Dec 05 19:02:45 GMT 1999
(gilbertt)

Added config dialog to E-Urlwatch, it is much more useable now :)


SVN revision: 1500
1999-12-05 14:28:59 +00:00
Tom Gilbert e6f7c2c4a0 Sat Dec 04 16:59:29 GMT 1999
(gilbertt)

Added config dialog to E-ScreenShoot.


SVN revision: 1496
1999-12-04 12:32:17 +00:00
Tom Gilbert 4c98b7a9dc Sat Dec 04 12:38:14 GMT 1999
(gilbertt)

Okay. E-ScreenSave now has a working config window which actually changes
the things config! Its really basic, 'cos the epplet is really basic, but it
works. Press the configure button to see it :)

It has working Ok, Apply and Cancel buttons, try them and see. There is
always a dilemna over how stuff like this should work, but in my epplets at
least, cancel undoes everything you changed since opening the window, even
stuff you "apply"ed. See it for yourself, it was really easy to do ;)

Hey StriderZ, there's a textbox on there too :) I'll be talking to you later
about that =P


SVN revision: 1495
1999-12-04 08:16:16 +00:00
Tom Gilbert eb5b17c67f Sat Dec 04 01:05:38 GMT 1999
(gilbertt)

So, say hello to Epplet_create_window_config.

It rules ;)

Here's the definition:

Window Epplet_create_window_config(int w,int h,char *title,
         void (*ok_func) (void *data),void *ok_data,
         void (*apply_func) (void *data),void *apply_data,
         void (*cancel_func) (void *data),void *cancel_data);

You can picture what it does, and check it out in E-ScreenSave. (Press the
"Lock" button).

The cool thing is that if you supply NULL for any of the callbacks, that
button won't be added to the dialog. So, for an Ok, Cancel dialog, just
supply NULL for apply_func.

I have added explanation to the epplet.h file, and would like people to bang
at this now? I will set my epplets up to use the new functions fully over
the weekend. This will help me find any problems, as I haven't tested adding
every type of gadget to config windows yet, there may still be redraw issues
I missed.

Its pretty nice now though, and I have checked for memory leaks and bad
handling, please point out anything dubious you see. The api will become
more rich over the next few days, then it should stabilise.

Any feature suggestions, send 'em now :)


SVN revision: 1493
1999-12-03 20:56:49 +00:00
Michael Jennings 180b8b08ea Added stuff to the focus in/out handlers. I skipped Tom's in case he's
testing shit. :-)


SVN revision: 1492
1999-12-03 19:52:28 +00:00
Tom Gilbert 48ce42038e Fri Dec 03 23:47:45 GMT 1999
(gilbertt)

Okay. Lots has changed. It was pretty inconsistant to have loads of
functions returning or requiring a "Window win" paramater, and mine dealing
with "Epplet_window" parameters. I had to lose one, so I lost the one which
caused no breakage. Mine :)

I still use Epplet_window internally to encapsulate data on a per-window
basis. However, all public functions deal with "Window win" again. Now
things are consistant. The Epplet_window type is now private and hidden.

To do this, I have implemented a little lookup function to relate
Epplet_windows to Windows, which should be more than adequate for our needs.

You can now declare a delete event handler for your whole epplet, although I
may change to per-window delete event handlers if people request it.

If you return 1 from the delete event handler, or don't supply one, or
supply NULL, the window will be destroyed for you, if you return 0, the
delete event will be ignored. Use this to do things like saying "hrm, those
two settings cannot coexist" or "that file does not exist" etc.

I'm nearly finished with the window functions now, and will next add
convenience wrappers such as Epplet_create_window_config(...) to add ok,
apply and save buttons and setup callbacks for you, and some other stuff
too.

I'd appreciate it if people would poke around and see what they think, I'm
new at this Xlib stuf...


SVN revision: 1490
1999-12-03 19:34:55 +00:00
Tom Gilbert 34f7e90373 Fri Dec 03 20:22:56 GMT 1999
(gilbertt)

Removed the int x, and int y properties for Epplet_create_window, as they
were pretty pointless, and I hate it when windows decide where they should
go ;)


SVN revision: 1487
1999-12-03 16:05:33 +00:00
Tom Gilbert aad5f10990 Fri Dec 03 20:11:23 GMT 1999
(gilbertt)

Right. You can now specify a "vertical" property for your new window. Works
the same as the vertical parameter in Epplet_init. Uses the same
imageclasses too.

I had a big headache debugging this, it just didn't seem to work, I knew
BrushedMetal (the theme I use) had a different (green) vertical pixmap, but
the windows always came up grey. Just when I was about to go mental, I found
this in epplet.cfg:

__ICLASS __BGN
  __NAME EPPLET_BACKGROUND_HORIZONTAL
  __NORMAL "epplets/images/bg.png"
  __EDGE_SCALING   2 2 2 2
__END

__ICLASS __BGN
  __NAME EPPLET_BACKGROUND_VERTICAL
  __NORMAL "epplets/images/bg.png"
  __EDGE_SCALING   2 2 2 2
__END

Gah. No wonder the images weren't changing!

Is there a reason for this? If not, could it be changed to:

__ICLASS __BGN
  __NAME EPPLET_BACKGROUND_HORIZONTAL
  __NORMAL "epplets/images/bg.png"
  __EDGE_SCALING   2 2 2 2
__END

__ICLASS __BGN
  __NAME EPPLET_BACKGROUND_VERTICAL
  __NORMAL "epplets/images/bg_v.png"
  __EDGE_SCALING   2 2 2 2
__END

Please?

Anyway, the vertical stuff works now, and probably did an hour ago, before I
went off chasing nonexistant bugs :)

I also tidied up some other stuff, and killed another global :)

See E-ScreenSave in cvs for an example, press the "lock" button to see it in
action :)


SVN revision: 1486
1999-12-03 15:59:17 +00:00
Tom Gilbert 137ade0aa3 Fri Dec 03 18:34:47 GMT 1999
(gilbertt)

Hrm. Bye bye hardcoding, hello malloc()ed context stack. Improved the test
app further.


SVN revision: 1484
1999-12-03 14:17:56 +00:00
Tom Gilbert 768eebf738 Fri Dec 03 17:20:15 GMT 1999
(gilbertt)

More config window stuff. Fixed a memleak, and now destroying an
Epplet_window also destroys any child gadgets attached to the window. I
think this works better, let me know otherwise.

I also cleaned up a couple of things, fixed adding buttons to new windows,
and improved the test epplet to be a better demo (E-ScreenSave right now).

I removed the Epplet_draw_window* functions, 'cos I don't need them :) What
I actually needed to do was fix Epplet_draw_image - so I have :)

Lots more to do tonight :)


SVN revision: 1483
1999-12-03 13:07:03 +00:00
Tom Gilbert ded180a361 Thu Dec 02 23:07:45 GMT 1999
(gilbertt)

Ok. More config window stuff.

Fun fun. I had to create a new type, Epplet_window to hold some window info,
and a stack to push and pop contexts for adding gadgets to different new
windows. This stuff works real well, and I am chuffed with it :)

The extra windows now redraw themselves on exposes, and new gadgets can be
added to them successfully. W00p.

I had to implement some new stuff, so please check nothing is broke (I am
not finished, but I don't want to commit code that breaks stuff).

Here are some details on the new stuff :)

---------------
PUBLIC STUFF

typedef struct epplet_window
{
    Window win;
    int w;
    int h;
    Pixmap bg_pmap;
    Pixmap bg_mask;
    Pixmap bg_bg;
}EppWindow;
typedef EppWindow *Epplet_window;

Epplet_window Epplet_create_window(int w,int h,int x,int y,char *title);
void Epplet_window_show(Epplet_window win);
void Epplet_window_hide(Epplet_window win);
void Epplet_window_destroy(Epplet_window win);
void Epplet_window_push_context(Epplet_window newwin);
Epplet_window Epplet_window_pop_context(void);
---------------
PRIVATE STUFF

static Epplet_window context_win;       /* Current context win */
static int          window_stack_pos;   /* For context changes */
static Epplet_window window_stack[20];  /* For context changes */
static Epplet_window mainwin;           /* Always the main epplet window */

static int          window_num = 0;     /* For window list */
static Epplet_window *windows = NULL;   /* List of windows to loop though */

/* For Keeping a list of windows owned by the epplet, to loop through and
 * do stuff with. */
static void         Epplet_register_window(Epplet_window win);
static void         Epplet_unregister_window(Epplet_window win);

/* Redraw all epplet windows (excluding the main epplet window) */
static void         Epplet_draw_windows(void);
/* Redraw window win */
static void         Epplet_draw_window(Epplet_window win);

/* Refresh window backgrounds on theme change */
static void Epplet_refresh_backgrounds(void);

-------------
I also added an item to GadGeneral so that I can find what window a gadget
was created on:

typedef struct gad_general
{
   GadType             type;
   char                visible;
   Epplet_window       parent;
}
GadGeneral;

-------------

Not to mention the reworking of code which draws or handles windows.

I have more tinkering to do in the event handling, to catch delete_events,
and to filter out mouseovers etc for separate windows. Tomorrow :)


SVN revision: 1478
1999-12-02 19:08:48 +00:00
Michael Jennings 3fe418dd58 Added auto_setbg to automatically set your background to the current image
at every switch.


SVN revision: 1477
1999-12-01 23:23:17 +00:00
Michael Jennings 664df20d8c Wed Dec 1 19:11:13 PST 1999
(KainX)

For one thing, I think I've fixed the seg fault in E-MoonClock.  Here's
hoping.

I also added the background setting functionality to E-Slides, but this time
it was done *right*. :-)  Take a look and see for yourself.  If you look at
the code, it also demonstrates how to use E IPC to set backgrounds.


SVN revision: 1476
1999-12-01 23:09:48 +00:00
Tom Gilbert 586fb5e90c A more useful test app.
SVN revision: 1474
1999-12-01 19:28:34 +00:00
Tom Gilbert 4d1ca43a00 Wed Dec 01 23:05:13 GMT 1999
(gilbertt)

api changes.

Ok. I have added some functions to the api, they are not yet perfect, but
they compile cleanly and don't create any problems. Don't use them yet
though, the api may change.

Window Epplet_create_window(int w,int h,int x,int y,char *title);
void Epplet_window_show(Window win);
void Epplet_window_hide(Window win);
void Epplet_window_destroy(Window win);
void Epplet_window_switch_context(Window newwin);
void Epplet_window_reset_context(void);

All of these functions are in place and work. I have yet to add code to
handle delete_events. At the moment, if you close the dialog window, the
epplet exits. This is clearly not intended ;) I'll fix it tomorrow, its late
here now.

You can even switch context and add widgets to your new window with no
problems ;)

Other things to fix tomorrow is the event handling stuff which assumes only
one window will be around...

I am currently using E-ScreenSave as my test epplet for this code, as I know
only about 2 people use it ;) Try it to see the code working.


SVN revision: 1472
1999-12-01 19:12:33 +00:00
Tom Gilbert f317508254 (please don't notice this KainX)
(please don't notice this KainX)
(please don't notice this KainX)
(please don't notice this KainX)
s/free/XFree
(please don't notice this KainX)
(please don't notice this KainX)
(please don't notice this KainX)
(please don't notice this KainX)


SVN revision: 1463
1999-11-30 16:53:33 +00:00
Tom Gilbert 9ce2ad30c3 Tue Nov 30 17:48:31 GMT 1999
(gilbertt)

E-ScreenShoot.c E-SD.c E-ScreenSave.c

Urm. Should've done this before. Removed some duplication, and one omission
in my cloaking code. Silly really, most people won't notice any difference,
but I will :)


SVN revision: 1462
1999-11-30 14:45:32 +00:00
Michael Jennings 2f3ce3aef4 This should work on Linux 2.0.x now.
SVN revision: 1461
1999-11-30 00:58:32 +00:00
Michael Jennings 3e6a527f10 Mon Nov 29 20:34:40 PST 1999
(KainX)

All the network stats stuff has been moved to a centralized location, and all
the network stats epplets have been converted to use the new functions.  Thus,
all network epplets can now have a portable interface to the data without
having to worry about portability; the backend takes care of it.

I also added copyright statements and a license to all my epplets.  And I
removed my name from the E-Mountbox copyright since my contributions were
negligible. :-)


SVN revision: 1460
1999-11-30 00:52:31 +00:00
Michael Jennings 26747a14ea Those variables were actually needed, cK. :-)
SVN revision: 1459
1999-11-29 23:52:59 +00:00
Michael Jennings 8ab0c9d1cf Mon Nov 29 19:03:00 PST 1999
(KainX)

Applied and modified significantly a patch to support E-NetFlame on Solaris.
Thanks to Tomas Calvo Gomez <tcalvo@tid.es> and Mark Bowyer
<Moredhel@earthling.net> for supplying the Solaris-isms. :-)


SVN revision: 1458
1999-11-29 23:21:26 +00:00
Christian Kreibich 7e989c8e19 Added Epplet_unremember to E-Mountbox. Added layout options to
E-Mixer and updated docs. Tom, change as you see fit, ok?


SVN revision: 1457
1999-11-29 21:50:40 +00:00
Michael Jennings 8e16291969 Mon Nov 29 16:03:53 PST 1999
(KainX)

Added support for specifying the width and height (in epplet units, 16 pixels)
of the E-Slides window.  -w <width> and -h <height> are the options.  The
default is the traditional 3x3, of course.  Note that this cannot be done via
config file options since the size is set before the config loader can be
called.


SVN revision: 1455
1999-11-29 20:23:05 +00:00
Tom Gilbert d343608385 Dammit. The random cloak code was slightly off. I screwed it up by removing
an anim without decrementing a number. Fixed.


SVN revision: 1454
1999-11-29 18:31:01 +00:00
Laurence J. Lane 6c730b1e68 that evil install-data-hook was eating small domestic pets and data
files with "C", "V" or "S" in the name, it had to be stopped


SVN revision: 1452
1999-11-29 11:33:38 +00:00
Tom Gilbert 6680bc8f5d Mon Nov 29 14:08:10 GMT 1999
(gilbertt)

Tidied up E-UrlWatch lots. Its pretty lean now.


SVN revision: 1451
1999-11-29 10:29:22 +00:00
Tom Gilbert 517bc09e71 Mon Nov 29 01:08:58 GMT 1999
(gilbertt)

Hrm. A segfault with a certain form of url. Fixed.


SVN revision: 1446
1999-11-28 21:31:57 +00:00
Tom Gilbert 1b47bfe241 Ok. This should be better, the list code was a bit messy. Now its super cool
:)


SVN revision: 1445
1999-11-28 20:44:37 +00:00
Tom Gilbert 3c94fbc165 Hrm. Duplicates are no longer added to the popup.
SVN revision: 1435
1999-11-28 19:07:34 +00:00
Tom Gilbert 6f5f6103ae Sun Nov 28 21:52:12 GMT 1999
(gilbertt)

Made the screensaver lock command configurable in E-ScreenSave.


SVN revision: 1430
1999-11-28 18:17:18 +00:00
Carsten Haitzler ea9b3ecfc9 atexit() added to E-Time
SVN revision: 1429
1999-11-28 17:53:06 +00:00
Tom Gilbert b0d77efe53 Sun Nov 28 21:06:21 GMT 1999
(gilbertt)

Added a popup containing a history of the urls you launch, of the urls found
in the file being watched. This is cool :)


SVN revision: 1428
1999-11-28 17:31:59 +00:00
Tom Gilbert b3b4eae813 *cough*
Check the return from malloc in the strdup function in utils.c


SVN revision: 1427
1999-11-28 16:32:59 +00:00
Tom Gilbert 3c1f201311 More sensible default options. Please blow away your old configs ;)
SVN revision: 1423
1999-11-28 15:02:28 +00:00
Tom Gilbert 4bf297095d d'oh
SVN revision: 1422
1999-11-27 21:48:24 +00:00
Tom Gilbert b732ee2c88 Sun Nov 28 01:12:11 GMT 1999
(gilbertt)

Added some help dox for E-UrlWatch.


SVN revision: 1421
1999-11-27 21:45:32 +00:00
Tom Gilbert 2d446b79dc Hrm. Trying to debug a problem Demonishi was having...
Maybe it'll be ok now?


SVN revision: 1416
1999-11-27 13:03:19 +00:00
Tom Gilbert a9f9e51483 Hrm. Could do with an icon. (Wish I was artistic).
SVN revision: 1415
1999-11-26 21:56:26 +00:00
Tom Gilbert 921c8df941 Sat Nov 26 00:48:19 GMT 1999
(gilbertt)

Added a groovy new noise for E-UrlWatch to make when a new URL is found.
Coolness. Now supports TE ootb.


SVN revision: 1414
1999-11-26 21:34:02 +00:00
Tom Gilbert 4d330ad97b need this now
SVN revision: 1413
1999-11-26 21:17:18 +00:00
Tom Gilbert 2d018c6bf3 *cough*
Note to self:
When you printf an int, it is conventional *not* to use %f :)


SVN revision: 1410
1999-11-26 16:23:16 +00:00
Tom Gilbert 92ecfe4aad Fri Nov 25 19:17:05 GMT 1999
(gilbertt)

E-UrlWatch

Added support for URL grabbers such as that found in TE/Epic. In the example
of TE, urls are stripped from irc convo, and dumped into ~/.te/.urls
If told to via the config (as it will by default), E-UrlWatch will watch
that file, and will strip out new urls and allow you to view them at the
touch of a button. (Or automatically if you specify). It'll also perform a
configurable command (I use it to play a sound) when a new URL appears.

Other misc cleanups have taken place, and I have very carefully hidden a
couple of juicy bugs. Find them for me, and you win a prize ;)


SVN revision: 1409
1999-11-26 16:08:48 +00:00
Tom Gilbert d0693cdabb Added some debugging code, and tidy, tidy, tidy.
SVN revision: 1407
1999-11-25 17:59:23 +00:00
Tom Gilbert 014e7ab5cc Thu Nov 25 20:48:51 GMT 1999
(gilbertt)

Oops. Fixed a naughty segfault with my shoddy string handling routines.


SVN revision: 1402
1999-11-25 17:42:17 +00:00
Michael Jennings 89085f3eee Wed Nov 24 18:33:45 PST 1999
(KainX)

Major restructuring and cleanup.  I think the new standard should be pretty
self-explanatory, but let me know if you have any questions.  CVS developers,
PLEASE read epplets/Makefile.am carefully to see how it all works now.

Icons are stored in epplets/icons/ and are installed into
$EROOT/epplet_icons/.  All miscellaneous data files (including images) are
stored in epplets/<epplet name>-data/ and are installed into
$EROOT/epplet_data/<epplet name>/.  Also note that, if you're going to use the
same old aircut3.ttf and bg.png in your help section, add your epplet's name
to NEED_BG and NEED_FONT in epplets/Makefile.am.  Do NOT commit duplicates of
those two files.


SVN revision: 1394
1999-11-24 23:36:51 +00:00
Tom Gilbert 893ccf7d6a tidying the looks of E-UrlWatch
SVN revision: 1393
1999-11-24 18:02:28 +00:00
Tom Gilbert b00a41b4e9 Wed Nov 24 20:11:57 GMT 1999
(gilbertt)

E-UrlWatch.

Now displays the url it launches, and scrolls long urls back and forth, so
you can see 'em.


SVN revision: 1391
1999-11-24 17:13:47 +00:00
Tom Gilbert e6787866ee Wed Nov 24 18:29:19 GMT 1999
(gilbertt)

E-UrlWatch.

Changed size. Added buttons to allow several different "modes" of action.
When you have a url in the X paste buffer, each button will grab the url,
and perform a configurable action upon it. The three are www, ftp, and get.
The default is gnome-moz-remote for the first two, and wget for the third.
The epplet is extremely ugly right now, but I'm working on the code atm, so
ignore that :)

More cool stuff to come :)


SVN revision: 1389
1999-11-24 15:35:07 +00:00
Tom Gilbert e73575f1d3 Tue Nov 23 23:26:47 GMT 1999
(gilbertt)

Now save all urls processed to ~/.Urls

Auto e-mailing to your mom is not yet supported.


SVN revision: 1385
1999-11-23 20:39:49 +00:00
Tom Gilbert cbca3d5cd6 What just happened?
I added these files, commited, and then cvs removed them for me...

Bizarre!


SVN revision: 1384
1999-11-23 20:16:04 +00:00
Tom Gilbert a11c775d15 forgot this little baby
SVN revision: 1383
1999-11-23 19:52:52 +00:00
Tom Gilbert 112d70f585 Tue Nov 23 21:32:21 GMT 1999
(gilbertt)

I am such a dufus.

Changed my epplets to actually save their config when you finish your X
session, instead of only when you click the close button.

How did I let this go unfixed???


SVN revision: 1381
1999-11-23 18:51:27 +00:00
Michael Jennings a7ce9b2707 Tue Nov 23 11:03:39 PST 1999
(KainX)

Fixed a seg fault bug in E-Slides.


SVN revision: 1372
1999-11-23 16:19:42 +00:00
Michael Jennings 87ab8f2613 I'm tired of cleaning up these messes. Enough already.
SVN revision: 1366
1999-11-22 17:14:54 +00:00
Richard Barnes 2abef1bc16 Added an option to E-Slides config to change root bg when image changes.
SVN revision: 1363
1999-11-22 04:18:43 +00:00
Richard Barnes 910865b613 Added a button to set the bg to the current E-Slides pic
SVN revision: 1360
1999-11-22 01:44:12 +00:00
Richard Barnes 1e7b2e44e9 Added a popup command history to E-Exec and made it wider.
SVN revision: 1355
1999-11-20 20:56:12 +00:00
Tom Gilbert e37a5b5f7b Floop.
SVN revision: 1353
1999-11-20 19:52:34 +00:00
Tom Gilbert e66bb2dc9d Fixed a couple of warnings. Lots more to do though, no prototypes =P
SVN revision: 1352
1999-11-20 19:47:43 +00:00
Tom Gilbert fbbb3a628b Changed #include <epplet.h> to "epplet.h"
SVN revision: 1351
1999-11-20 19:40:12 +00:00
Tom Gilbert 598354a379 Oops.
That won't do.


SVN revision: 1350
1999-11-20 19:38:49 +00:00
Richard Barnes 934981389d You'll never guess... (E-MoonClock)
SVN revision: 1349
1999-11-20 19:30:36 +00:00
Richard Barnes ba9e68c662 Still E-MoonClock
SVN revision: 1348
1999-11-20 19:29:14 +00:00
Richard Barnes 4e763543af Adding E-MoonClock by mazeone
SVN revision: 1347
1999-11-20 19:25:32 +00:00
Tom Gilbert 87448696d2 Sat Nov 20 19:55:22 GMT 1999
(gilbertt)

Changed the Makefile.am to put epplet images in $EROOT/epplet_data.

I wanted to have epplet subdirs under this directory, but it really
complicated the Makefile, so I left it for now. It was easy for me the make
the changes with sed this way too ;)

Any stuff your app needs to install should go in epplet_data, preferably
with the filename prefixed with the name of your epplet.

Flame me if this bugs you...


SVN revision: 1345
1999-11-20 17:55:56 +00:00
Michael Jennings dfffee2676 Forgot this part.
SVN revision: 1341
1999-11-20 00:05:43 +00:00
Michael Jennings 4d54be14f9 Fri Nov 19 17:49:09 PST 1999
(KainX)

Fixes and cleanups to E-NetGraph.  It now does config files properly and
includes all the options in them.


SVN revision: 1340
1999-11-19 23:56:08 +00:00
Carsten Haitzler 39890b6ac4 make distcheck properly... :)
SVN revision: 1338
1999-11-19 23:01:40 +00:00
Michael Jennings cfe314b476 Fri Nov 19 12:35:48 PST 1999
(KainX)

Okay, all the conditional build stuff should be fixed up now.  I'll need some
SGI people to test this as well as Solaris people, since it's entirely
possible I borked them both. :-)


SVN revision: 1336
1999-11-19 18:46:24 +00:00
Tom Gilbert 806f36865a Thu Nov 18 19:15:14 GMT 1999
(gilbertt)

Changes to E-NetGraph.c

Removed some warnings which show up when compiling with -Wall.


SVN revision: 1331
1999-11-18 18:04:30 +00:00
Tom Gilbert 72811c2786 I'll be needing to commit these then
SVN revision: 1330
1999-11-18 17:57:16 +00:00
Tom Gilbert 8ff8586bd2 Thu Nov 18 19:15:14 GMT 1999
(gilbertt)

Changes to E-ScreenShoot

Added a couple of new config options. They're in the dox, but I'll yip about
them too.

VIEW_SHOT & VIEWER   -   View shot after taking it using VIEWER (ee default)
RUN_SCRIPT & SCRIPT_TO_RUN  -  Run script/program after taking shot, sending
filename as parameter.

Also cleaned up some of that code, it was hairy.


SVN revision: 1329
1999-11-18 17:55:21 +00:00
Tom Gilbert 5b1e03039a Thu Nov 18 18:42:45 GMT 1999
(gilbertt)

Changes to cloak.[ch]

If those functions are not going to be static any more, declare them in
cloak.h, so other epplets can use them


SVN revision: 1328
1999-11-18 17:08:12 +00:00
Tom Gilbert 30f5ffa096 Thu Nov 18 18:16:12 GMT 1999
(gilbertt)

Working towards cool new E-ScreenShoot features.

They're not there yet though :)


SVN revision: 1327
1999-11-18 16:41:37 +00:00
Richard Barnes dd5ea78699 Ok, added the *real* E-NetGraph to cvs. Coded by Daniel Erat
(http://www2.ucsc.edu/~erat/). I had no idea this existed, it rocks. It takes
hella command-line options, but I modified it to use a config file too. It may
not run at first if your net device is not ppp0 and you don't specify. This
will be changed.


SVN revision: 1326
1999-11-18 15:27:22 +00:00
Richard Barnes f2fa15235c Made most of the functions in epplets/cloak.c non-static so that they can be
accessed by other epplets. Also Added E-NetGraph, a wmnet wannabe epplet.


SVN revision: 1325
1999-11-18 01:35:21 +00:00
Michael Jennings 59d9e9cdff Damn thing filled up my .xlog.
SVN revision: 1323
1999-11-17 23:51:35 +00:00
Michael Jennings 00c98e327a Wed Nov 17 14:18:42 PST 1999
(KainX)

Cleanups to the libgtop stuff.  Someone (Mark) please tell me if this doesn't
work on Solaris....


SVN revision: 1322
1999-11-17 20:55:49 +00:00
Carsten Haitzler 3798c6a812 added test for libgtop etc. - you will need libgtop 1.0.1 i think or higher as
libgtop-config no-linger has the --cflags etc. :)


SVN revision: 1321
1999-11-17 15:42:50 +00:00
Christian Kreibich 4d0e20be5b Changed the button management of E-Mountbox -- added a third
button at the bottom that shows the additional buttons when clicked.

Q: How does a UNIX Guru do Sex ?
A: unzip; strip; touch; finger; \
   mount; fsck; more; yes; umount; sleep

Uhm ... apologies for my bad taste ... I graded the code of 30
breadth/depth-first graph searches today, believe me, that can
really deteriorate one's taste =)


SVN revision: 1320
1999-11-17 00:18:31 +00:00
Michael Jennings 5ae5797f94 Mon Nov 15 12:30:13 PST 1999
(KainX)

Another morning, another cleanup.  Doesn't anyone use warning flags besides
me?


SVN revision: 1313
1999-11-15 19:37:56 +00:00
Richard Barnes 885174b675 Guess people like it like this...
SVN revision: 1308
1999-11-15 00:42:04 +00:00
Richard Barnes 9928f4f346 Who screwed up my layout?
SVN revision: 1307
1999-11-14 23:38:11 +00:00
Tom Gilbert 99e803c8d5 Sun Nov 14 02:53:54 GMT 1999
(gilbertt)

Added another animation to E-SD, "History Bar", its cooler.


SVN revision: 1305
1999-11-14 02:18:24 +00:00
Tom Gilbert 1483a268ec *cough*
SVN revision: 1302
1999-11-14 01:59:41 +00:00
Tom Gilbert 62e6c346c0 Sun Nov 14 02:24:13 GMT 1999
(gilbertt)

Added new animation to E-SD, called history, it is responsive to sound, and
will hopefully keep StriderZ off my back for a day or two :P


SVN revision: 1301
1999-11-14 01:49:14 +00:00
Tom Gilbert 6d7152f12f Sun Nov 14 01:34:43 GMT 1999
(gilbertt)

Should have quashed all lag in E-SD. Please let me know

You will have to remove your old .cfg from epplet_configs for the changes to
take effect.


SVN revision: 1300
1999-11-14 01:00:12 +00:00
Tom Gilbert 2d7903c6ec That shouldn't happen
SVN revision: 1299
1999-11-14 00:45:48 +00:00
Tom Gilbert 49b584a369 Put some words in here
SVN revision: 1298
1999-11-14 00:40:51 +00:00
Tom Gilbert bea6a107ad Added help and icon to E-ScreenSave
SVN revision: 1297
1999-11-14 00:19:49 +00:00
Tom Gilbert c5f91b508b Sat Nov 13 21:03:02 GMT 1999
(gilbertt)

Added E-ScreenSave. Will control xscreensaver, but currently just locks the
screen on demand.


SVN revision: 1296
1999-11-14 00:02:31 +00:00
Tom Gilbert 6a6e15730b Sat Nov 13 21:03:02 GMT 1999
(gilbertt)

Changes to : E-ScreenShoot.[ch] clock.[ch]

Renamed "Rotator" to "Mesh", and added new cloak-animation, "Funky Mesh"

I was bored. Ok?


SVN revision: 1295
1999-11-13 20:32:21 +00:00
Tom Gilbert 649f340477 Well I kinda need these too, clearly.
SVN revision: 1288
1999-11-13 00:12:38 +00:00
Tom Gilbert 3541b79799 Credit where its due ;-)
SVN revision: 1287
1999-11-13 00:11:47 +00:00
Tom Gilbert 5c88d7889d Sat Nov 13 00:34:12 GMT 1999
(gilbertt)

Thanks to code from Steve Brunton <brunton@dweeb.turner.com>, E-Mixer should
now support IRIX. Please test this for me you funny hardware people you ;-)


SVN revision: 1286
1999-11-13 00:09:31 +00:00