~ubuntu-branches/ubuntu/trusty/xiphos/trusty

« back to all changes in this revision

Viewing changes to src/gui/mod_mgr.h

  • Committer: Package Import Robot
  • Author(s): Dmitrijs Ledkovs, Dmitrijs Ledkovs
  • Date: 2012-03-11 18:43:32 UTC
  • mfrom: (17.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120311184332-splq3ecpx7tyi87d
Tags: 3.1.5+dfsg-1
[ Dmitrijs Ledkovs <dmitrij.ledkov@ubuntu.com> ]  
* New upstream release.
* Build using webkit backend
* Contains unpacked source for waf binary (Closes: #654511)
* Update debian/copyright to latest specification

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
 * Xiphos Bible Study Tool
3
3
 * mod_mgr.h
4
4
 *
5
 
 * Copyright (C) 2000-2010 Xiphos Developer Team
 
5
 * Copyright (C) 2000-2011 Xiphos Developer Team
6
6
 *
7
7
 * This program is free software; you can redistribute it and/or modify
8
8
 * it under the terms of the GNU General Public License as published by
26
26
extern "C" {
27
27
#endif
28
28
#include "main/mod_mgr.h"
 
29
#include <gtk/gtk.h>
29
30
 
30
31
void gui_update_install_status(glong total, glong done, const gchar *message);
31
32
void gui_update_install_progressbar(gdouble fraction);
32
33
void gui_open_mod_mgr(void);
33
34
void gui_open_mod_mgr_initial_run(void);
34
35
void clear_and_hide_progress_bar(void);
35
 
void on_notebook1_switch_page(GtkNotebook * notebook, GtkNotebookPage * page, guint page_num, gpointer user_data);
 
36
 
 
37
#ifdef USE_GTK_3
 
38
void
 
39
on_notebook1_switch_page(GtkNotebook * notebook,
 
40
                         gpointer arg,
 
41
             guint page_num, gpointer user_data);
 
42
#else
 
43
void
 
44
on_notebook1_switch_page(GtkNotebook * notebook,
 
45
                         GtkNotebookPage * page,
 
46
                         guint page_num, gpointer user_data);
 
47
#endif  
 
48
//void on_notebook1_switch_page(GtkNotebook * notebook, guint page_num, gpointer user_data);
36
49
void on_radiobutton2_toggled(GtkToggleButton * togglebutton, gpointer user_data);
37
50
void on_radiobutton4_toggled(GtkToggleButton * togglebutton, gpointer user_data);
38
51
void save_sources(void);