~ubuntu-branches/ubuntu/oneiric/cairo-dock/oneiric-201110111206

« back to all changes in this revision

Viewing changes to src/cairo-dock-gui-callbacks.h

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lavergne, Matthieu Baerts (matttbe), Julien Lavergne
  • Date: 2009-10-04 16:33:52 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20091004163352-ttbbjfmpb8uzl8j4
Tags: 2.0.9-0ubuntu1
[ Matthieu Baerts (matttbe) ]
* New Upstream Version. (LP: #435587)
* Added apport hook in debian/apport
 - Add debian/apport
 - debian/cairo-dock-core.install: Added debian/apport/cairo-dock.py
* Use .desktop provided by upstream
 - Removed debian/*.desktop
 - debian/cairo-dock-core.install: install upstream desktop files. 

[ Julien Lavergne ]
* Adjust debian/changelog with Daniel Holbach suggestions.
* debian/patches/01_rename_cairo-dock-package-theme.patch: drop, 
  merged upstream.
* debian/patches/01-desktop-file-category.patch:
 - Remove Encoding field and set category to Utility.
* debian/patches/02-merge-changelog.patch:
 - Merge ChangeLog and ChangeLog-2.0.9.
* debian/apport: Remove commands with grep, python doesn't like it.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**
2
 
* Gui Callbacks headers for Cairo-Dock
 
2
* This file is a part of the Cairo-Dock project
3
3
*
4
 
* Copyright : (C) 2009 by Fabrice Rey
5
 
* E-mail    : fabounet@users.berlios.de
 
4
* Copyright : (C) see the 'copyright' file.
 
5
* E-mail    : see the 'copyright' file.
6
6
*
7
7
* This program is free software; you can redistribute it and/or
8
8
* modify it under the terms of the GNU General Public License
13
13
* but WITHOUT ANY WARRANTY; without even the implied warranty of
14
14
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
15
* GNU General Public License for more details.
16
 
*   http://www.gnu.org/licenses/licenses.html#GPL
 
16
* You should have received a copy of the GNU General Public License
 
17
* along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18
*/
18
19
 
 
20
 
19
21
#ifndef __CAIRO_DOCK_GUI_CALLBACKS__
20
22
#define  __CAIRO_DOCK_GUI_CALLBACKS__
21
23
 
37
39
void on_click_apply (GtkButton *button, GtkWidget *pWindow);
38
40
void on_click_ok (GtkButton *button, GtkWidget *pWindow);
39
41
void on_click_quit (GtkButton *button, GtkWidget *pWindow);
 
42
gboolean on_delete_main_gui (GtkWidget *pWidget, GdkEvent *event, GMainLoop *pBlockingLoop);
40
43
 
41
44
void on_click_activate_given_group (GtkToggleButton *button, CairoDockGroupDescription *pGroupDescription);
42
45
void on_click_activate_current_group (GtkToggleButton *button, gpointer *data);
45
48
void on_click_normal_apply (GtkButton *button, GtkWidget *pWindow);
46
49
void on_click_normal_ok (GtkButton *button, GtkWidget *pWindow);
47
50
void on_click_normal_quit (GtkButton *button, GtkWidget *pWindow);
48
 
 
49
 
gboolean on_delete_main_gui (GtkWidget *pWidget, GdkEvent *event, GMainLoop *pBlockingLoop);
50
51
gboolean on_delete_normal_gui (GtkWidget *pWidget, GdkEvent *event, GMainLoop *pBlockingLoop);
51
52
 
52
53
 
 
54
void on_click_launcher_apply (GtkButton *button, GtkWidget *pWindow);
 
55
void on_click_launcher_quit (GtkButton *button, GtkWidget *pWindow);
 
56
gboolean on_delete_launcher_gui (GtkWidget *pWidget, GdkEvent *event, gpointer data);
 
57
 
 
58
 
 
59
 
53
60
void cairo_dock_reset_filter_state (void);
54
61
void cairo_dock_activate_filter (GtkEntry *pEntry, gpointer data);
55
62
void cairo_dock_toggle_all_words (GtkToggleButton *pButton, gpointer data);