~ubuntu-branches/ubuntu/quantal/xdaliclock/quantal

« back to all changes in this revision

Viewing changes to OSX/xdaliclock.h

  • Committer: Bazaar Package Importer
  • Author(s): Kartik Mistry
  • Date: 2010-04-20 08:42:20 UTC
  • mfrom: (1.1.5 upstream)
  • Revision ID: james.westby@ubuntu.com-20100420084220-j7ykvh34b2jx7hyv
Tags: 2.31-1
* New maintainer (Closes: #561233)
* New upstream release (Closes: #578379)
* debian/control:
  + Updated to Standards-Version 3.8.4
  + Added ${misc:Depends} to Depends
  + Updated debhelper dependency to 7
* debian/rules:
  + Do not do append to copyright file trick
  + Used dh_prep instead of dh_clean -k
* Converted package to new source format 3.0 (quilt)
* debian/copyright:
  + Added missing vroot.h copyright
  + Better copyright assignment, year for Author
* debian/patches/spelling-error-in-manpage_xdaliclock:
  + Added patch to fix manpage spelling mistake by Florian Ernst
    <florian@debian.org>

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/* xdaliclock - a melting digital clock
2
 
 * Copyright (c) 1991-2006 Jamie Zawinski <jwz@jwz.org>
 
2
 * Copyright (c) 1991-2010 Jamie Zawinski <jwz@jwz.org>
3
3
 *
4
4
 * Permission to use, copy, modify, distribute, and sell this software and its
5
5
 * documentation for any purpose is hereby granted without fee, provided that
22
22
  enum { MMDDYY, DDMMYY, YYMMDD } date_mode;
23
23
  int display_date_p;                        /* displaying time, or date */
24
24
  int twelve_hour_p;                         /* 12 hour time vs 24 hour time */
25
 
/*  int cycle_p;        */                           /* color cycling */
26
 
/*  int transparent_p;  */                   /* shaped window */
27
25
  time_t countdown;                          /* countdown to/from here */
28
26
  char test_hack;                            /* display this character once */
29
27
 
37
35
 
38
36
extern void render_init (dali_config *);
39
37
extern void render_free (dali_config *);
40
 
extern void render_once (dali_config *,
41
 
                         unsigned long time,
42
 
                         unsigned long usecs);
 
38
extern void render_once (dali_config *);
43
39
extern void render_bitmap_size (dali_config *c,
44
40
                                unsigned int *w_ret, unsigned int *h_ret);
45
41