~ubuntu-branches/ubuntu/jaunty/xdaliclock/jaunty

« back to all changes in this revision

Viewing changes to OSX/DaliClockWidgetView.h

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2007-12-02 11:28:00 UTC
  • mfrom: (1.1.4 upstream) (4.1.1 lenny)
  • Revision ID: james.westby@ubuntu.com-20071202112800-347g6j06sgjp0s1f
Tags: 2.25-1
* New upstream release
* Do the menu transition: Apps/Tools -> Games/Toys
* Make use of Homepage control field

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* xdaliclock - a melting digital clock
 
2
 * Copyright (c) 1991-2007 Jamie Zawinski <jwz@jwz.org>
 
3
 *
 
4
 * Permission to use, copy, modify, distribute, and sell this software and its
 
5
 * documentation for any purpose is hereby granted without fee, provided that
 
6
 * the above copyright notice appear in all copies and that both that
 
7
 * copyright notice and this permission notice appear in supporting
 
8
 * documentation.  No representations are made about the suitability of this
 
9
 * software for any purpose.  It is provided "as is" without express or
 
10
 * implied warranty.
 
11
 */
 
12
 
 
13
#import <Cocoa/Cocoa.h>
 
14
#import <WebKit/WebKit.h>
 
15
#import "DaliClockView.h"
 
16
 
 
17
@interface DaliClockWidgetView : DaliClockView
 
18
{
 
19
  WebView *webView;
 
20
}
 
21
 
 
22
/* JavaScript-ready methods
 
23
 */
 
24
- (id) web_hourStyle;
 
25
- (id) web_timeStyle;
 
26
- (id) web_dateStyle;
 
27
- (id) web_cycleSpeed;
 
28
- (id) web_usesCountdownTimer;
 
29
- (id) web_countdownDate;
 
30
- (id) web_initialForegroundColor;
 
31
- (id) web_initialBackgroundColor;
 
32
 
 
33
- (void) web_setHourStyle:  (id)arg;
 
34
- (void) web_setTimeStyle:  (id)arg;
 
35
- (void) web_setDateStyle:  (id)arg;
 
36
- (void) web_setCycleSpeed: (id)arg;
 
37
- (void) web_setUsesCountdownTimer:     (id)arg;
 
38
- (void) web_setCountdownDate:          (id)arg;
 
39
- (void) web_setInitialForegroundColor: (id)arg;
 
40
- (void) web_setInitialBackgroundColor: (id)arg;
 
41
 
 
42
- (void) web_setFrame: (WebScriptObject *)frame;
 
43
- (void) web_show;
 
44
- (void) web_hide;
 
45
 
 
46
@end