~kklimonda/ubuntu/natty/hamster-applet/lp.697667

« back to all changes in this revision

Viewing changes to src/hamster/keybinder/tomboykeybinder.h

  • Committer: Bazaar Package Importer
  • Author(s): Chris Coulson
  • Date: 2010-02-10 02:52:31 UTC
  • mfrom: (1.1.14 upstream)
  • Revision ID: james.westby@ubuntu.com-20100210025231-x0q5h4q7nlvihl09
Tags: 2.29.90-0ubuntu1
* New upstream version
  - workspace tracking - switch activity, when switching desktops
  - chart improvements - theme friendly and less noisier
  - for those without GNOME panel there is now a standalone version, 
    accessible via Applications -> Accessories -> Time Tracker
  - overview window remembers position
  - maintaining cursor on the selected row after edits / refreshes
  - descriptions once again in the main input field, delimited by comma
  - activity suggestion box now sorts items by recency (Patryk Zawadzki)
  - searching
  - simplified save report dialog, thanks to the what you see is what you 
    report revamp
  - overview/stats replaced with activities / totals and stats accessible 
    from totals
  - interactive graphs to drill down in totals
  - miscellaneous performance improvements
  - pixel-perfect graphs
* Updated 01_startup-fix.patch to apply to new source layout
* debian/control:
  - Add build-depend on gnome-doc-utils

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* tomboykeybinder.h
 
2
 * Copyright (C) 2008 Novell
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or
 
5
 * modify it under the terms of the GNU Library General Public
 
6
 * License as published by the Free Software Foundation; either
 
7
 * version 2 of the License, or (at your option) any later version.
 
8
 *
 
9
 * This library is distributed in the hope that it will be useful,
 
10
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
11
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
12
 * Library General Public License for more details.
 
13
 *
 
14
 * You should have received a copy of the GNU Library General Public
 
15
 * License along with this library; if not, write to the
 
16
 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110, USA 
 
17
 */
 
18
#ifndef __TOMBOY_KEY_BINDER_H__
 
19
#define __TOMBOY_KEY_BINDER_H__
 
20
 
 
21
#include <glib.h>
 
22
 
 
23
G_BEGIN_DECLS
 
24
 
 
25
typedef void (* TomboyBindkeyHandler) (char *keystring, gpointer user_data);
 
26
 
 
27
void tomboy_keybinder_init   (void);
 
28
 
 
29
gboolean tomboy_keybinder_bind   (const char           *keystring,
 
30
                              TomboyBindkeyHandler  handler,
 
31
                              gpointer              user_data);
 
32
 
 
33
void tomboy_keybinder_unbind (const char           *keystring,
 
34
                              TomboyBindkeyHandler  handler);
 
35
 
 
36
gboolean tomboy_keybinder_is_modifier (guint keycode);
 
37
 
 
38
guint32 tomboy_keybinder_get_current_event_time (void);
 
39
 
 
40
G_END_DECLS
 
41
 
 
42
#endif /* __TOMBOY_KEY_BINDER_H__ */
 
43