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

« back to all changes in this revision

Viewing changes to src/main/global_ops.hh

  • 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_global_ops.h - setup for SWORD global options in the gui
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
47
47
        gboolean transliteration;
48
48
        gboolean commentary_by_chapter;
49
49
        gboolean doublespace;
50
 
        gint module_type;
 
50
        gboolean verse_per_line;
 
51
        gboolean xrefnotenumbers;
51
52
        gint image_content;
52
53
        gint respect_font_faces;
53
 
 
54
 
        gboolean dialog;
55
54
};
56
55
 
57
 
GLOBAL_OPS *main_new_globals(gchar * mod_name, int dialog);
58
 
int main_save_module_options(const char * mod_name, const char * option, int choice, int dialog);
 
56
GLOBAL_OPS *main_new_globals(gchar * mod_name);
 
57
int main_save_module_options(const char * mod_name, const char * option, int choice);
 
58
int main_get_one_option(const char *mod_name, const char *op);
59
59
 
60
 
/* main window */
61
60
void main_set_global_options(GLOBAL_OPS * ops);
62
 
/* dialog */
63
 
void main_dialog_set_global_options(gpointer backend, GLOBAL_OPS * ops);
64
61
 
65
62
#ifdef __cplusplus
66
63
}