~ubuntu-branches/debian/lenny/gworldclock/lenny

« back to all changes in this revision

Viewing changes to timer.h

  • Committer: Bazaar Package Importer
  • Author(s): Drew Parsons
  • Date: 2005-03-28 13:50:18 UTC
  • mfrom: (1.2.1 upstream) (2.1.2 hoary)
  • Revision ID: james.westby@ubuntu.com-20050328135018-jk2szisqaovghn3s
Tags: 1.4.4-1
* New upstream version.
  - modernised design of AddZone dialog. Closes: #193952.
  - removed use of deprecated GTK functions and objects.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* functions related to running the timer, displaying the times in each zone */
 
2
 
 
3
#ifndef GWORLDCLOCK_TIMER
 
4
#define GWORLDCLOCK_TIMER
 
5
 
 
6
/* size of string buffer receiving the formatted time/date as a string in strftime */
 
7
#define TIME_DISPLAY_SIZE 50
 
8
 
 
9
void  start_clocks(gpointer clocklist);
 
10
 
 
11
gint SetTime(gpointer clocklist);
 
12
 
 
13
gboolean SetToGivenTime  (GtkTreeModel *clocklistModel,
 
14
                          GtkTreePath *path,
 
15
                          GtkTreeIter *iter,
 
16
                          gpointer timeToSet);
 
17
 
 
18
gint start_timer( gpointer clocklist );
 
19
 
 
20
void stop_timer();
 
21
 
 
22
void reset_timer( gpointer clocklist );
 
23
 
 
24
#endif