~ubuntu-branches/debian/jessie/xiphos/jessie

« back to all changes in this revision

Viewing changes to src/editor/slib-editor.h

  • Committer: Bazaar Package Importer
  • Author(s): Dmitrijs Ledkovs
  • Date: 2010-03-22 18:15:54 UTC
  • mfrom: (4.1.4 sid)
  • Revision ID: james.westby@ubuntu.com-20100322181554-qlqchymwhcw28c0c
* New upstream release:
  + Bugfix only
  + Compatible with xulrunner 1.9.2
  + Update translations

* Revert changes introduced in 3.1.2-1ubuntu1. Thank you Chris Coulson
  for temporary fix.
* debian/xiphos.1 - spelling mistake
* waf is now default buildsystem
* help is now licensed under GPL
* Bumped standards version no changes required
* Changed email to @ubuntu.com

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 * along with this program; if not, write to the Free Software
19
19
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
20
20
 */
21
 
 
 
21
 
22
22
#ifndef _SLIB_EDITOR_H
23
23
#define _SLIB_EDITOR_H
24
24
 
30
30
#include <config.h>
31
31
 
32
32
#include <gtk/gtk.h>
33
 
        
34
 
#ifdef USE_GTKHTML3_14_23
35
 
        
 
33
 
36
34
#include "main/navbar_versekey.h"
37
35
 
38
36
typedef struct _editor EDITOR;
45
43
        GtkWidget *statusbar;
46
44
 
47
45
        NAVBAR_VERSEKEY navbar;
48
 
        
 
46
 
49
47
        gint type;
50
48
 
51
49
        gboolean studypad;
55
53
        gchar *filename;
56
54
        gchar *module;
57
55
        gchar *key;
58
 
};      
 
56
};
59
57
 
60
58
enum {
61
59
        STUDYPAD_EDITOR,
68
66
void button_test_clicked_cb(GtkObject *object, gpointer user_data);
69
67
void button_ok_clicked_cb(GtkObject *object, gpointer user_data);
70
68
void button_cancel_clicked_cb(GtkObject *object, gpointer user_data);*/
71
 
void editor_sync_toggled(GtkToggleButton * button, EDITOR * e);
72
69
void editor_sync_with_main(void);
73
 
gboolean editor_close_all(void);
74
70
void editor_load_note(EDITOR * e, const gchar * module_name, const gchar * key);
75
71
void editor_load_book(EDITOR * e);
76
72
gint editor_create_new(const gchar * filename, const gchar * key, gint note);
78
74
void editor_maybe_save_all(void);
79
75
GtkWidget * editor_new (const gchar * title, EDITOR *e);
80
76
 
81
 
#endif /* USE_GTKHTML3_14_23 */
82
77
 
83
78
#ifdef __cplusplus
84
79
}